forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
1559 lines (1434 loc) · 53.6 KB
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package cdn
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/cdn/mgmt/2016-04-02/cdn"
// CustomDomainResourceState enumerates the values for custom domain resource state.
type CustomDomainResourceState string
const (
// Active ...
Active CustomDomainResourceState = "Active"
// Creating ...
Creating CustomDomainResourceState = "Creating"
// Deleting ...
Deleting CustomDomainResourceState = "Deleting"
)
// PossibleCustomDomainResourceStateValues returns an array of possible values for the CustomDomainResourceState const type.
func PossibleCustomDomainResourceStateValues() []CustomDomainResourceState {
return []CustomDomainResourceState{Active, Creating, Deleting}
}
// EndpointResourceState enumerates the values for endpoint resource state.
type EndpointResourceState string
const (
// EndpointResourceStateCreating ...
EndpointResourceStateCreating EndpointResourceState = "Creating"
// EndpointResourceStateDeleting ...
EndpointResourceStateDeleting EndpointResourceState = "Deleting"
// EndpointResourceStateRunning ...
EndpointResourceStateRunning EndpointResourceState = "Running"
// EndpointResourceStateStarting ...
EndpointResourceStateStarting EndpointResourceState = "Starting"
// EndpointResourceStateStopped ...
EndpointResourceStateStopped EndpointResourceState = "Stopped"
// EndpointResourceStateStopping ...
EndpointResourceStateStopping EndpointResourceState = "Stopping"
)
// PossibleEndpointResourceStateValues returns an array of possible values for the EndpointResourceState const type.
func PossibleEndpointResourceStateValues() []EndpointResourceState {
return []EndpointResourceState{EndpointResourceStateCreating, EndpointResourceStateDeleting, EndpointResourceStateRunning, EndpointResourceStateStarting, EndpointResourceStateStopped, EndpointResourceStateStopping}
}
// OriginResourceState enumerates the values for origin resource state.
type OriginResourceState string
const (
// OriginResourceStateActive ...
OriginResourceStateActive OriginResourceState = "Active"
// OriginResourceStateCreating ...
OriginResourceStateCreating OriginResourceState = "Creating"
// OriginResourceStateDeleting ...
OriginResourceStateDeleting OriginResourceState = "Deleting"
)
// PossibleOriginResourceStateValues returns an array of possible values for the OriginResourceState const type.
func PossibleOriginResourceStateValues() []OriginResourceState {
return []OriginResourceState{OriginResourceStateActive, OriginResourceStateCreating, OriginResourceStateDeleting}
}
// ProfileResourceState enumerates the values for profile resource state.
type ProfileResourceState string
const (
// ProfileResourceStateActive ...
ProfileResourceStateActive ProfileResourceState = "Active"
// ProfileResourceStateCreating ...
ProfileResourceStateCreating ProfileResourceState = "Creating"
// ProfileResourceStateDeleting ...
ProfileResourceStateDeleting ProfileResourceState = "Deleting"
// ProfileResourceStateDisabled ...
ProfileResourceStateDisabled ProfileResourceState = "Disabled"
)
// PossibleProfileResourceStateValues returns an array of possible values for the ProfileResourceState const type.
func PossibleProfileResourceStateValues() []ProfileResourceState {
return []ProfileResourceState{ProfileResourceStateActive, ProfileResourceStateCreating, ProfileResourceStateDeleting, ProfileResourceStateDisabled}
}
// ProvisioningState enumerates the values for provisioning state.
type ProvisioningState string
const (
// ProvisioningStateCreating ...
ProvisioningStateCreating ProvisioningState = "Creating"
// ProvisioningStateFailed ...
ProvisioningStateFailed ProvisioningState = "Failed"
// ProvisioningStateSucceeded ...
ProvisioningStateSucceeded ProvisioningState = "Succeeded"
)
// PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type.
func PossibleProvisioningStateValues() []ProvisioningState {
return []ProvisioningState{ProvisioningStateCreating, ProvisioningStateFailed, ProvisioningStateSucceeded}
}
// QueryStringCachingBehavior enumerates the values for query string caching behavior.
type QueryStringCachingBehavior string
const (
// BypassCaching ...
BypassCaching QueryStringCachingBehavior = "BypassCaching"
// IgnoreQueryString ...
IgnoreQueryString QueryStringCachingBehavior = "IgnoreQueryString"
// NotSet ...
NotSet QueryStringCachingBehavior = "NotSet"
// UseQueryString ...
UseQueryString QueryStringCachingBehavior = "UseQueryString"
)
// PossibleQueryStringCachingBehaviorValues returns an array of possible values for the QueryStringCachingBehavior const type.
func PossibleQueryStringCachingBehaviorValues() []QueryStringCachingBehavior {
return []QueryStringCachingBehavior{BypassCaching, IgnoreQueryString, NotSet, UseQueryString}
}
// ResourceType enumerates the values for resource type.
type ResourceType string
const (
// MicrosoftCdnProfilesEndpoints ...
MicrosoftCdnProfilesEndpoints ResourceType = "Microsoft.Cdn/Profiles/Endpoints"
)
// PossibleResourceTypeValues returns an array of possible values for the ResourceType const type.
func PossibleResourceTypeValues() []ResourceType {
return []ResourceType{MicrosoftCdnProfilesEndpoints}
}
// SkuName enumerates the values for sku name.
type SkuName string
const (
// CustomVerizon ...
CustomVerizon SkuName = "Custom_Verizon"
// PremiumVerizon ...
PremiumVerizon SkuName = "Premium_Verizon"
// StandardAkamai ...
StandardAkamai SkuName = "Standard_Akamai"
// StandardVerizon ...
StandardVerizon SkuName = "Standard_Verizon"
)
// PossibleSkuNameValues returns an array of possible values for the SkuName const type.
func PossibleSkuNameValues() []SkuName {
return []SkuName{CustomVerizon, PremiumVerizon, StandardAkamai, StandardVerizon}
}
// CheckNameAvailabilityInput input of CheckNameAvailability API.
type CheckNameAvailabilityInput struct {
// Name - The resource name to validate.
Name *string `json:"name,omitempty"`
// Type - The type of the resource whose name is to be validated.
Type *string `json:"type,omitempty"`
}
// CheckNameAvailabilityOutput output of check name availability API.
type CheckNameAvailabilityOutput struct {
autorest.Response `json:"-"`
// NameAvailable - Indicates whether the name is available.
NameAvailable *bool `json:"NameAvailable,omitempty"`
// Reason - The reason why the name is not available.
Reason *string `json:"Reason,omitempty"`
// Message - The detailed error message describing why the name is not available.
Message *string `json:"Message,omitempty"`
}
// CustomDomain CDN CustomDomain represents a mapping between a user specified domain name and a CDN
// endpoint. This is to use custom domain names to represent the URLs for branding purposes.
type CustomDomain struct {
autorest.Response `json:"-"`
*CustomDomainProperties `json:"properties,omitempty"`
// ID - Resource ID
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for CustomDomain.
func (cd CustomDomain) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cd.CustomDomainProperties != nil {
objectMap["properties"] = cd.CustomDomainProperties
}
if cd.ID != nil {
objectMap["id"] = cd.ID
}
if cd.Name != nil {
objectMap["name"] = cd.Name
}
if cd.Type != nil {
objectMap["type"] = cd.Type
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CustomDomain struct.
func (cd *CustomDomain) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var customDomainProperties CustomDomainProperties
err = json.Unmarshal(*v, &customDomainProperties)
if err != nil {
return err
}
cd.CustomDomainProperties = &customDomainProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
cd.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
cd.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
cd.Type = &typeVar
}
}
}
return nil
}
// CustomDomainListResult ...
type CustomDomainListResult struct {
autorest.Response `json:"-"`
// Value - List of CDN CustomDomains within an endpoint.
Value *[]CustomDomain `json:"value,omitempty"`
}
// CustomDomainParameters customDomain properties required for custom domain creation or update.
type CustomDomainParameters struct {
*CustomDomainPropertiesParameters `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CustomDomainParameters.
func (cdp CustomDomainParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cdp.CustomDomainPropertiesParameters != nil {
objectMap["properties"] = cdp.CustomDomainPropertiesParameters
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CustomDomainParameters struct.
func (cdp *CustomDomainParameters) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var customDomainPropertiesParameters CustomDomainPropertiesParameters
err = json.Unmarshal(*v, &customDomainPropertiesParameters)
if err != nil {
return err
}
cdp.CustomDomainPropertiesParameters = &customDomainPropertiesParameters
}
}
}
return nil
}
// CustomDomainProperties ...
type CustomDomainProperties struct {
// HostName - The host name of the custom domain. Must be a domain name.
HostName *string `json:"hostName,omitempty"`
// ResourceState - Resource status of the custom domain. Possible values include: 'Creating', 'Active', 'Deleting'
ResourceState CustomDomainResourceState `json:"resourceState,omitempty"`
// ProvisioningState - Provisioning status of the custom domain. Possible values include: 'ProvisioningStateCreating', 'ProvisioningStateSucceeded', 'ProvisioningStateFailed'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
}
// CustomDomainPropertiesParameters ...
type CustomDomainPropertiesParameters struct {
// HostName - The host name of the custom domain. Must be a domain name.
HostName *string `json:"hostName,omitempty"`
}
// CustomDomainsCreateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type CustomDomainsCreateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *CustomDomainsCreateFuture) Result(client CustomDomainsClient) (cd CustomDomain, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.CustomDomainsCreateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.CustomDomainsCreateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if cd.Response.Response, err = future.GetResult(sender); err == nil && cd.Response.Response.StatusCode != http.StatusNoContent {
cd, err = client.CreateResponder(cd.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.CustomDomainsCreateFuture", "Result", cd.Response.Response, "Failure responding to request")
}
}
return
}
// CustomDomainsDeleteIfExistsFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type CustomDomainsDeleteIfExistsFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *CustomDomainsDeleteIfExistsFuture) Result(client CustomDomainsClient) (cd CustomDomain, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.CustomDomainsDeleteIfExistsFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.CustomDomainsDeleteIfExistsFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if cd.Response.Response, err = future.GetResult(sender); err == nil && cd.Response.Response.StatusCode != http.StatusNoContent {
cd, err = client.DeleteIfExistsResponder(cd.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.CustomDomainsDeleteIfExistsFuture", "Result", cd.Response.Response, "Failure responding to request")
}
}
return
}
// DeepCreatedOrigin deep created origins within a CDN endpoint.
type DeepCreatedOrigin struct {
// Name - Origin name
Name *string `json:"name,omitempty"`
*DeepCreatedOriginProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for DeepCreatedOrigin.
func (dco DeepCreatedOrigin) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dco.Name != nil {
objectMap["name"] = dco.Name
}
if dco.DeepCreatedOriginProperties != nil {
objectMap["properties"] = dco.DeepCreatedOriginProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DeepCreatedOrigin struct.
func (dco *DeepCreatedOrigin) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
dco.Name = &name
}
case "properties":
if v != nil {
var deepCreatedOriginProperties DeepCreatedOriginProperties
err = json.Unmarshal(*v, &deepCreatedOriginProperties)
if err != nil {
return err
}
dco.DeepCreatedOriginProperties = &deepCreatedOriginProperties
}
}
}
return nil
}
// DeepCreatedOriginProperties properties of deep created origin on a CDN endpoint.
type DeepCreatedOriginProperties struct {
// HostName - The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.
HostName *string `json:"hostName,omitempty"`
// HTTPPort - The value of the HTTP port. Must be between 1 and 65535
HTTPPort *int32 `json:"httpPort,omitempty"`
// HTTPSPort - The value of the HTTPS port. Must be between 1 and 65535
HTTPSPort *int32 `json:"httpsPort,omitempty"`
}
// Endpoint CDN endpoint is the entity within a CDN profile containing configuration information regarding
// caching behaviors and origins. The CDN endpoint is exposed using the URL format
// <endpointname>.azureedge.net by default, but custom domains can also be created.
type Endpoint struct {
autorest.Response `json:"-"`
*EndpointProperties `json:"properties,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
// ID - Resource ID
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for Endpoint.
func (e Endpoint) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if e.EndpointProperties != nil {
objectMap["properties"] = e.EndpointProperties
}
if e.Location != nil {
objectMap["location"] = e.Location
}
if e.Tags != nil {
objectMap["tags"] = e.Tags
}
if e.ID != nil {
objectMap["id"] = e.ID
}
if e.Name != nil {
objectMap["name"] = e.Name
}
if e.Type != nil {
objectMap["type"] = e.Type
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Endpoint struct.
func (e *Endpoint) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var endpointProperties EndpointProperties
err = json.Unmarshal(*v, &endpointProperties)
if err != nil {
return err
}
e.EndpointProperties = &endpointProperties
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
e.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
e.Tags = tags
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
e.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
e.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
e.Type = &typeVar
}
}
}
return nil
}
// EndpointCreateParameters endpoint properties required for new endpoint creation.
type EndpointCreateParameters struct {
// Location - Endpoint location
Location *string `json:"location,omitempty"`
// Tags - Endpoint tags
Tags map[string]*string `json:"tags"`
*EndpointPropertiesCreateParameters `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for EndpointCreateParameters.
func (ecp EndpointCreateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ecp.Location != nil {
objectMap["location"] = ecp.Location
}
if ecp.Tags != nil {
objectMap["tags"] = ecp.Tags
}
if ecp.EndpointPropertiesCreateParameters != nil {
objectMap["properties"] = ecp.EndpointPropertiesCreateParameters
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EndpointCreateParameters struct.
func (ecp *EndpointCreateParameters) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ecp.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ecp.Tags = tags
}
case "properties":
if v != nil {
var endpointPropertiesCreateParameters EndpointPropertiesCreateParameters
err = json.Unmarshal(*v, &endpointPropertiesCreateParameters)
if err != nil {
return err
}
ecp.EndpointPropertiesCreateParameters = &endpointPropertiesCreateParameters
}
}
}
return nil
}
// EndpointListResult ...
type EndpointListResult struct {
autorest.Response `json:"-"`
// Value - List of CDN endpoints within a profile
Value *[]Endpoint `json:"value,omitempty"`
}
// EndpointProperties ...
type EndpointProperties struct {
// HostName - The host name of the endpoint {endpointName}.{DNSZone}
HostName *string `json:"hostName,omitempty"`
// OriginHostHeader - The host header the CDN provider will send along with content requests to origins. The default value is the host name of the origin.
OriginHostHeader *string `json:"originHostHeader,omitempty"`
// OriginPath - The path used for origin requests.
OriginPath *string `json:"originPath,omitempty"`
// ContentTypesToCompress - List of content types on which compression will be applied. The value for the elements should be a valid MIME type.
ContentTypesToCompress *[]string `json:"contentTypesToCompress,omitempty"`
// IsCompressionEnabled - Indicates whether the compression is enabled. Default value is false. If compression is enabled, the content transferred from cdn endpoint to end user will be compressed. The requested content must be larger than 1 byte and smaller than 1 MB.
IsCompressionEnabled *bool `json:"isCompressionEnabled,omitempty"`
// IsHTTPAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
IsHTTPAllowed *bool `json:"isHttpAllowed,omitempty"`
// IsHTTPSAllowed - Indicates whether https traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
IsHTTPSAllowed *bool `json:"isHttpsAllowed,omitempty"`
// QueryStringCachingBehavior - Defines the query string caching behavior. Possible values include: 'IgnoreQueryString', 'BypassCaching', 'UseQueryString', 'NotSet'
QueryStringCachingBehavior QueryStringCachingBehavior `json:"queryStringCachingBehavior,omitempty"`
// Origins - The set of origins for the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options.
Origins *[]DeepCreatedOrigin `json:"origins,omitempty"`
// ResourceState - Resource status of the endpoint. Possible values include: 'EndpointResourceStateCreating', 'EndpointResourceStateDeleting', 'EndpointResourceStateRunning', 'EndpointResourceStateStarting', 'EndpointResourceStateStopped', 'EndpointResourceStateStopping'
ResourceState EndpointResourceState `json:"resourceState,omitempty"`
// ProvisioningState - Provisioning status of the endpoint. Possible values include: 'ProvisioningStateCreating', 'ProvisioningStateSucceeded', 'ProvisioningStateFailed'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
}
// EndpointPropertiesCreateParameters ...
type EndpointPropertiesCreateParameters struct {
// OriginHostHeader - The host header CDN provider will send along with content requests to origins. The default value is the host name of the origin.
OriginHostHeader *string `json:"originHostHeader,omitempty"`
// OriginPath - The path used for origin requests.
OriginPath *string `json:"originPath,omitempty"`
// ContentTypesToCompress - List of content types on which compression will be applied. The value for the elements should be a valid MIME type.
ContentTypesToCompress *[]string `json:"contentTypesToCompress,omitempty"`
// IsCompressionEnabled - Indicates whether content compression is enabled. Default value is false. If compression is enabled, the content transferred from the CDN endpoint to the end user will be compressed. The requested content must be larger than 1 byte and smaller than 1 MB.
IsCompressionEnabled *bool `json:"isCompressionEnabled,omitempty"`
// IsHTTPAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
IsHTTPAllowed *bool `json:"isHttpAllowed,omitempty"`
// IsHTTPSAllowed - Indicates whether https traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
IsHTTPSAllowed *bool `json:"isHttpsAllowed,omitempty"`
// QueryStringCachingBehavior - Defines the query string caching behavior. Possible values include: 'IgnoreQueryString', 'BypassCaching', 'UseQueryString', 'NotSet'
QueryStringCachingBehavior QueryStringCachingBehavior `json:"queryStringCachingBehavior,omitempty"`
// Origins - The set of origins for the CDN endpoint. When multiple origins exist, the first origin will be used as primary and rest will be used as failover options.
Origins *[]DeepCreatedOrigin `json:"origins,omitempty"`
}
// EndpointPropertiesUpdateParameters ...
type EndpointPropertiesUpdateParameters struct {
// OriginHostHeader - The host header the CDN provider will send along with content requests to origins. The default value is the host name of the origin.
OriginHostHeader *string `json:"originHostHeader,omitempty"`
// OriginPath - The path used for origin requests.
OriginPath *string `json:"originPath,omitempty"`
// ContentTypesToCompress - List of content types on which compression will be applied. The value for the elements should be a valid MIME type.
ContentTypesToCompress *[]string `json:"contentTypesToCompress,omitempty"`
// IsCompressionEnabled - Indicates whether content compression is enabled. Default value is false. If compression is enabled, the content transferred from the CDN endpoint to the end user will be compressed. The requested content must be larger than 1 byte and smaller than 1 MB.
IsCompressionEnabled *bool `json:"isCompressionEnabled,omitempty"`
// IsHTTPAllowed - Indicates whether HTTP traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
IsHTTPAllowed *bool `json:"isHttpAllowed,omitempty"`
// IsHTTPSAllowed - Indicates whether HTTPS traffic is allowed on the endpoint. Default value is true. At least one protocol (HTTP or HTTPS) must be allowed.
IsHTTPSAllowed *bool `json:"isHttpsAllowed,omitempty"`
// QueryStringCachingBehavior - Defines the query string caching behavior. Possible values include: 'IgnoreQueryString', 'BypassCaching', 'UseQueryString', 'NotSet'
QueryStringCachingBehavior QueryStringCachingBehavior `json:"queryStringCachingBehavior,omitempty"`
}
// EndpointsCreateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsCreateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsCreateFuture) Result(client EndpointsClient) (e Endpoint, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsCreateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsCreateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if e.Response.Response, err = future.GetResult(sender); err == nil && e.Response.Response.StatusCode != http.StatusNoContent {
e, err = client.CreateResponder(e.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsCreateFuture", "Result", e.Response.Response, "Failure responding to request")
}
}
return
}
// EndpointsDeleteIfExistsFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsDeleteIfExistsFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsDeleteIfExistsFuture) Result(client EndpointsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsDeleteIfExistsFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsDeleteIfExistsFuture")
return
}
ar.Response = future.Response()
return
}
// EndpointsLoadContentFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsLoadContentFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsLoadContentFuture) Result(client EndpointsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsLoadContentFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsLoadContentFuture")
return
}
ar.Response = future.Response()
return
}
// EndpointsPurgeContentFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsPurgeContentFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsPurgeContentFuture) Result(client EndpointsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsPurgeContentFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsPurgeContentFuture")
return
}
ar.Response = future.Response()
return
}
// EndpointsStartFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsStartFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsStartFuture) Result(client EndpointsClient) (e Endpoint, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsStartFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsStartFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if e.Response.Response, err = future.GetResult(sender); err == nil && e.Response.Response.StatusCode != http.StatusNoContent {
e, err = client.StartResponder(e.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsStartFuture", "Result", e.Response.Response, "Failure responding to request")
}
}
return
}
// EndpointsStopFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsStopFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsStopFuture) Result(client EndpointsClient) (e Endpoint, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsStopFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsStopFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if e.Response.Response, err = future.GetResult(sender); err == nil && e.Response.Response.StatusCode != http.StatusNoContent {
e, err = client.StopResponder(e.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsStopFuture", "Result", e.Response.Response, "Failure responding to request")
}
}
return
}
// EndpointsUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EndpointsUpdateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EndpointsUpdateFuture) Result(client EndpointsClient) (e Endpoint, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("cdn.EndpointsUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if e.Response.Response, err = future.GetResult(sender); err == nil && e.Response.Response.StatusCode != http.StatusNoContent {
e, err = client.UpdateResponder(e.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "cdn.EndpointsUpdateFuture", "Result", e.Response.Response, "Failure responding to request")
}
}
return
}
// EndpointUpdateParameters endpoint properties required for new endpoint creation.
type EndpointUpdateParameters struct {
// Tags - Endpoint tags
Tags map[string]*string `json:"tags"`
*EndpointPropertiesUpdateParameters `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for EndpointUpdateParameters.
func (eup EndpointUpdateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if eup.Tags != nil {
objectMap["tags"] = eup.Tags
}
if eup.EndpointPropertiesUpdateParameters != nil {
objectMap["properties"] = eup.EndpointPropertiesUpdateParameters
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EndpointUpdateParameters struct.
func (eup *EndpointUpdateParameters) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
eup.Tags = tags
}
case "properties":
if v != nil {
var endpointPropertiesUpdateParameters EndpointPropertiesUpdateParameters
err = json.Unmarshal(*v, &endpointPropertiesUpdateParameters)
if err != nil {
return err
}
eup.EndpointPropertiesUpdateParameters = &endpointPropertiesUpdateParameters
}
}
}
return nil
}
// ErrorResponse ...
type ErrorResponse struct {
autorest.Response `json:"-"`
// Code - Error code
Code *string `json:"code,omitempty"`
// Message - Error message indicating why the operation failed.
Message *string `json:"message,omitempty"`
}
// LoadParameters parameters required for endpoint load.
type LoadParameters struct {
// ContentPaths - The path to the content to be loaded. Should describe a file path.
ContentPaths *[]string `json:"contentPaths,omitempty"`
}
// Operation CDN REST API operation
type Operation struct {
// Name - Operation name: {provider}/{resource}/{operation}
Name *string `json:"name,omitempty"`
Display *OperationDisplay `json:"display,omitempty"`
}
// OperationDisplay ...
type OperationDisplay struct {
// Provider - Service provider: Microsoft.Cdn
Provider *string `json:"provider,omitempty"`
// Resource - Resource on which the operation is performed: Profile, endpoint, etc.
Resource *string `json:"resource,omitempty"`
// Operation - Operation type: Read, write, delete, etc.
Operation *string `json:"operation,omitempty"`
}
// OperationListResult ...
type OperationListResult struct {
autorest.Response `json:"-"`
// Value - List of CDN operations supported by the CDN resource provider.
Value *[]Operation `json:"value,omitempty"`
}
// Origin CDN origin is the source of the content being delivered via CDN. When the edge nodes represented
// by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of
// the configured origins.
type Origin struct {
autorest.Response `json:"-"`
*OriginProperties `json:"properties,omitempty"`
// ID - Resource ID
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for Origin.
func (o Origin) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if o.OriginProperties != nil {
objectMap["properties"] = o.OriginProperties
}
if o.ID != nil {