-
Notifications
You must be signed in to change notification settings - Fork 843
/
models.go
2389 lines (2176 loc) · 85.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 account
// 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 (
"context"
"encoding/json"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/tracing"
"github.com/satori/go.uuid"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/datalake/store/mgmt/2016-11-01/account"
// DataLakeStoreAccountState enumerates the values for data lake store account state.
type DataLakeStoreAccountState string
const (
// Active ...
Active DataLakeStoreAccountState = "Active"
// Suspended ...
Suspended DataLakeStoreAccountState = "Suspended"
)
// PossibleDataLakeStoreAccountStateValues returns an array of possible values for the DataLakeStoreAccountState const type.
func PossibleDataLakeStoreAccountStateValues() []DataLakeStoreAccountState {
return []DataLakeStoreAccountState{Active, Suspended}
}
// DataLakeStoreAccountStatus enumerates the values for data lake store account status.
type DataLakeStoreAccountStatus string
const (
// Canceled ...
Canceled DataLakeStoreAccountStatus = "Canceled"
// Creating ...
Creating DataLakeStoreAccountStatus = "Creating"
// Deleted ...
Deleted DataLakeStoreAccountStatus = "Deleted"
// Deleting ...
Deleting DataLakeStoreAccountStatus = "Deleting"
// Failed ...
Failed DataLakeStoreAccountStatus = "Failed"
// Patching ...
Patching DataLakeStoreAccountStatus = "Patching"
// Resuming ...
Resuming DataLakeStoreAccountStatus = "Resuming"
// Running ...
Running DataLakeStoreAccountStatus = "Running"
// Succeeded ...
Succeeded DataLakeStoreAccountStatus = "Succeeded"
// Suspending ...
Suspending DataLakeStoreAccountStatus = "Suspending"
// Undeleting ...
Undeleting DataLakeStoreAccountStatus = "Undeleting"
)
// PossibleDataLakeStoreAccountStatusValues returns an array of possible values for the DataLakeStoreAccountStatus const type.
func PossibleDataLakeStoreAccountStatusValues() []DataLakeStoreAccountStatus {
return []DataLakeStoreAccountStatus{Canceled, Creating, Deleted, Deleting, Failed, Patching, Resuming, Running, Succeeded, Suspending, Undeleting}
}
// EncryptionConfigType enumerates the values for encryption config type.
type EncryptionConfigType string
const (
// ServiceManaged ...
ServiceManaged EncryptionConfigType = "ServiceManaged"
// UserManaged ...
UserManaged EncryptionConfigType = "UserManaged"
)
// PossibleEncryptionConfigTypeValues returns an array of possible values for the EncryptionConfigType const type.
func PossibleEncryptionConfigTypeValues() []EncryptionConfigType {
return []EncryptionConfigType{ServiceManaged, UserManaged}
}
// EncryptionProvisioningState enumerates the values for encryption provisioning state.
type EncryptionProvisioningState string
const (
// EncryptionProvisioningStateCreating ...
EncryptionProvisioningStateCreating EncryptionProvisioningState = "Creating"
// EncryptionProvisioningStateSucceeded ...
EncryptionProvisioningStateSucceeded EncryptionProvisioningState = "Succeeded"
)
// PossibleEncryptionProvisioningStateValues returns an array of possible values for the EncryptionProvisioningState const type.
func PossibleEncryptionProvisioningStateValues() []EncryptionProvisioningState {
return []EncryptionProvisioningState{EncryptionProvisioningStateCreating, EncryptionProvisioningStateSucceeded}
}
// EncryptionState enumerates the values for encryption state.
type EncryptionState string
const (
// Disabled ...
Disabled EncryptionState = "Disabled"
// Enabled ...
Enabled EncryptionState = "Enabled"
)
// PossibleEncryptionStateValues returns an array of possible values for the EncryptionState const type.
func PossibleEncryptionStateValues() []EncryptionState {
return []EncryptionState{Disabled, Enabled}
}
// FirewallAllowAzureIpsState enumerates the values for firewall allow azure ips state.
type FirewallAllowAzureIpsState string
const (
// FirewallAllowAzureIpsStateDisabled ...
FirewallAllowAzureIpsStateDisabled FirewallAllowAzureIpsState = "Disabled"
// FirewallAllowAzureIpsStateEnabled ...
FirewallAllowAzureIpsStateEnabled FirewallAllowAzureIpsState = "Enabled"
)
// PossibleFirewallAllowAzureIpsStateValues returns an array of possible values for the FirewallAllowAzureIpsState const type.
func PossibleFirewallAllowAzureIpsStateValues() []FirewallAllowAzureIpsState {
return []FirewallAllowAzureIpsState{FirewallAllowAzureIpsStateDisabled, FirewallAllowAzureIpsStateEnabled}
}
// FirewallState enumerates the values for firewall state.
type FirewallState string
const (
// FirewallStateDisabled ...
FirewallStateDisabled FirewallState = "Disabled"
// FirewallStateEnabled ...
FirewallStateEnabled FirewallState = "Enabled"
)
// PossibleFirewallStateValues returns an array of possible values for the FirewallState const type.
func PossibleFirewallStateValues() []FirewallState {
return []FirewallState{FirewallStateDisabled, FirewallStateEnabled}
}
// OperationOrigin enumerates the values for operation origin.
type OperationOrigin string
const (
// System ...
System OperationOrigin = "system"
// User ...
User OperationOrigin = "user"
// Usersystem ...
Usersystem OperationOrigin = "user,system"
)
// PossibleOperationOriginValues returns an array of possible values for the OperationOrigin const type.
func PossibleOperationOriginValues() []OperationOrigin {
return []OperationOrigin{System, User, Usersystem}
}
// SubscriptionState enumerates the values for subscription state.
type SubscriptionState string
const (
// SubscriptionStateDeleted ...
SubscriptionStateDeleted SubscriptionState = "Deleted"
// SubscriptionStateRegistered ...
SubscriptionStateRegistered SubscriptionState = "Registered"
// SubscriptionStateSuspended ...
SubscriptionStateSuspended SubscriptionState = "Suspended"
// SubscriptionStateUnregistered ...
SubscriptionStateUnregistered SubscriptionState = "Unregistered"
// SubscriptionStateWarned ...
SubscriptionStateWarned SubscriptionState = "Warned"
)
// PossibleSubscriptionStateValues returns an array of possible values for the SubscriptionState const type.
func PossibleSubscriptionStateValues() []SubscriptionState {
return []SubscriptionState{SubscriptionStateDeleted, SubscriptionStateRegistered, SubscriptionStateSuspended, SubscriptionStateUnregistered, SubscriptionStateWarned}
}
// TierType enumerates the values for tier type.
type TierType string
const (
// Commitment100TB ...
Commitment100TB TierType = "Commitment_100TB"
// Commitment10TB ...
Commitment10TB TierType = "Commitment_10TB"
// Commitment1PB ...
Commitment1PB TierType = "Commitment_1PB"
// Commitment1TB ...
Commitment1TB TierType = "Commitment_1TB"
// Commitment500TB ...
Commitment500TB TierType = "Commitment_500TB"
// Commitment5PB ...
Commitment5PB TierType = "Commitment_5PB"
// Consumption ...
Consumption TierType = "Consumption"
)
// PossibleTierTypeValues returns an array of possible values for the TierType const type.
func PossibleTierTypeValues() []TierType {
return []TierType{Commitment100TB, Commitment10TB, Commitment1PB, Commitment1TB, Commitment500TB, Commitment5PB, Consumption}
}
// TrustedIDProviderState enumerates the values for trusted id provider state.
type TrustedIDProviderState string
const (
// TrustedIDProviderStateDisabled ...
TrustedIDProviderStateDisabled TrustedIDProviderState = "Disabled"
// TrustedIDProviderStateEnabled ...
TrustedIDProviderStateEnabled TrustedIDProviderState = "Enabled"
)
// PossibleTrustedIDProviderStateValues returns an array of possible values for the TrustedIDProviderState const type.
func PossibleTrustedIDProviderStateValues() []TrustedIDProviderState {
return []TrustedIDProviderState{TrustedIDProviderStateDisabled, TrustedIDProviderStateEnabled}
}
// AccountsCreateFutureType an abstraction for monitoring and retrieving the results of a long-running
// operation.
type AccountsCreateFutureType struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *AccountsCreateFutureType) Result(client AccountsClient) (dlsa DataLakeStoreAccount, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsCreateFutureType", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("account.AccountsCreateFutureType")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if dlsa.Response.Response, err = future.GetResult(sender); err == nil && dlsa.Response.Response.StatusCode != http.StatusNoContent {
dlsa, err = client.CreateResponder(dlsa.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsCreateFutureType", "Result", dlsa.Response.Response, "Failure responding to request")
}
}
return
}
// AccountsDeleteFutureType an abstraction for monitoring and retrieving the results of a long-running
// operation.
type AccountsDeleteFutureType struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *AccountsDeleteFutureType) Result(client AccountsClient) (ar autorest.Response, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsDeleteFutureType", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("account.AccountsDeleteFutureType")
return
}
ar.Response = future.Response()
return
}
// AccountsUpdateFutureType an abstraction for monitoring and retrieving the results of a long-running
// operation.
type AccountsUpdateFutureType struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *AccountsUpdateFutureType) Result(client AccountsClient) (dlsa DataLakeStoreAccount, err error) {
var done bool
done, err = future.Done(client)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsUpdateFutureType", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("account.AccountsUpdateFutureType")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if dlsa.Response.Response, err = future.GetResult(sender); err == nil && dlsa.Response.Response.StatusCode != http.StatusNoContent {
dlsa, err = client.UpdateResponder(dlsa.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsUpdateFutureType", "Result", dlsa.Response.Response, "Failure responding to request")
}
}
return
}
// CapabilityInformation subscription-level properties and limits for Data Lake Store.
type CapabilityInformation struct {
autorest.Response `json:"-"`
// SubscriptionID - The subscription credentials that uniquely identifies the subscription.
SubscriptionID *uuid.UUID `json:"subscriptionId,omitempty"`
// State - The subscription state. Possible values include: 'SubscriptionStateRegistered', 'SubscriptionStateSuspended', 'SubscriptionStateDeleted', 'SubscriptionStateUnregistered', 'SubscriptionStateWarned'
State SubscriptionState `json:"state,omitempty"`
// MaxAccountCount - The maximum supported number of accounts under this subscription.
MaxAccountCount *int32 `json:"maxAccountCount,omitempty"`
// AccountCount - The current number of accounts under this subscription.
AccountCount *int32 `json:"accountCount,omitempty"`
// MigrationState - The Boolean value of true or false to indicate the maintenance state.
MigrationState *bool `json:"migrationState,omitempty"`
}
// CheckNameAvailabilityParameters data Lake Store account name availability check parameters.
type CheckNameAvailabilityParameters struct {
// Name - The Data Lake Store name to check availability for.
Name *string `json:"name,omitempty"`
// Type - The resource type. Note: This should not be set by the user, as the constant value is Microsoft.DataLakeStore/accounts
Type *string `json:"type,omitempty"`
}
// CreateDataLakeStoreAccountParameters ...
type CreateDataLakeStoreAccountParameters struct {
// Location - The resource location.
Location *string `json:"location,omitempty"`
// Tags - The resource tags.
Tags map[string]*string `json:"tags"`
// Identity - The Key Vault encryption identity, if any.
Identity *EncryptionIdentity `json:"identity,omitempty"`
// CreateDataLakeStoreAccountProperties - The Data Lake Store account properties to use for creating.
*CreateDataLakeStoreAccountProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateDataLakeStoreAccountParameters.
func (cdlsap CreateDataLakeStoreAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cdlsap.Location != nil {
objectMap["location"] = cdlsap.Location
}
if cdlsap.Tags != nil {
objectMap["tags"] = cdlsap.Tags
}
if cdlsap.Identity != nil {
objectMap["identity"] = cdlsap.Identity
}
if cdlsap.CreateDataLakeStoreAccountProperties != nil {
objectMap["properties"] = cdlsap.CreateDataLakeStoreAccountProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateDataLakeStoreAccountParameters struct.
func (cdlsap *CreateDataLakeStoreAccountParameters) 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
}
cdlsap.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
cdlsap.Tags = tags
}
case "identity":
if v != nil {
var identity EncryptionIdentity
err = json.Unmarshal(*v, &identity)
if err != nil {
return err
}
cdlsap.Identity = &identity
}
case "properties":
if v != nil {
var createDataLakeStoreAccountProperties CreateDataLakeStoreAccountProperties
err = json.Unmarshal(*v, &createDataLakeStoreAccountProperties)
if err != nil {
return err
}
cdlsap.CreateDataLakeStoreAccountProperties = &createDataLakeStoreAccountProperties
}
}
}
return nil
}
// CreateDataLakeStoreAccountProperties ...
type CreateDataLakeStoreAccountProperties struct {
// DefaultGroup - The default owner group for all new folders and files created in the Data Lake Store account.
DefaultGroup *string `json:"defaultGroup,omitempty"`
// EncryptionConfig - The Key Vault encryption configuration.
EncryptionConfig *EncryptionConfig `json:"encryptionConfig,omitempty"`
// EncryptionState - The current state of encryption for this Data Lake Store account. Possible values include: 'Enabled', 'Disabled'
EncryptionState EncryptionState `json:"encryptionState,omitempty"`
// FirewallRules - The list of firewall rules associated with this Data Lake Store account.
FirewallRules *[]CreateFirewallRuleWithAccountParameters `json:"firewallRules,omitempty"`
// VirtualNetworkRules - The list of virtual network rules associated with this Data Lake Store account.
VirtualNetworkRules *[]CreateVirtualNetworkRuleWithAccountParameters `json:"virtualNetworkRules,omitempty"`
// FirewallState - The current state of the IP address firewall for this Data Lake Store account. Possible values include: 'FirewallStateEnabled', 'FirewallStateDisabled'
FirewallState FirewallState `json:"firewallState,omitempty"`
// FirewallAllowAzureIps - The current state of allowing or disallowing IPs originating within Azure through the firewall. If the firewall is disabled, this is not enforced. Possible values include: 'FirewallAllowAzureIpsStateEnabled', 'FirewallAllowAzureIpsStateDisabled'
FirewallAllowAzureIps FirewallAllowAzureIpsState `json:"firewallAllowAzureIps,omitempty"`
// TrustedIDProviders - The list of trusted identity providers associated with this Data Lake Store account.
TrustedIDProviders *[]CreateTrustedIDProviderWithAccountParameters `json:"trustedIdProviders,omitempty"`
// TrustedIDProviderState - The current state of the trusted identity provider feature for this Data Lake Store account. Possible values include: 'TrustedIDProviderStateEnabled', 'TrustedIDProviderStateDisabled'
TrustedIDProviderState TrustedIDProviderState `json:"trustedIdProviderState,omitempty"`
// NewTier - The commitment tier to use for next month. Possible values include: 'Consumption', 'Commitment1TB', 'Commitment10TB', 'Commitment100TB', 'Commitment500TB', 'Commitment1PB', 'Commitment5PB'
NewTier TierType `json:"newTier,omitempty"`
}
// CreateFirewallRuleWithAccountParameters the parameters used to create a new firewall rule while creating
// a new Data Lake Store account.
type CreateFirewallRuleWithAccountParameters struct {
// Name - The unique name of the firewall rule to create.
Name *string `json:"name,omitempty"`
// CreateOrUpdateFirewallRuleProperties - The firewall rule properties to use when creating a new firewall rule.
*CreateOrUpdateFirewallRuleProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateFirewallRuleWithAccountParameters.
func (cfrwap CreateFirewallRuleWithAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cfrwap.Name != nil {
objectMap["name"] = cfrwap.Name
}
if cfrwap.CreateOrUpdateFirewallRuleProperties != nil {
objectMap["properties"] = cfrwap.CreateOrUpdateFirewallRuleProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateFirewallRuleWithAccountParameters struct.
func (cfrwap *CreateFirewallRuleWithAccountParameters) 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
}
cfrwap.Name = &name
}
case "properties":
if v != nil {
var createOrUpdateFirewallRuleProperties CreateOrUpdateFirewallRuleProperties
err = json.Unmarshal(*v, &createOrUpdateFirewallRuleProperties)
if err != nil {
return err
}
cfrwap.CreateOrUpdateFirewallRuleProperties = &createOrUpdateFirewallRuleProperties
}
}
}
return nil
}
// CreateOrUpdateFirewallRuleParameters the parameters used to create a new firewall rule.
type CreateOrUpdateFirewallRuleParameters struct {
// CreateOrUpdateFirewallRuleProperties - The firewall rule properties to use when creating a new firewall rule.
*CreateOrUpdateFirewallRuleProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateOrUpdateFirewallRuleParameters.
func (coufrp CreateOrUpdateFirewallRuleParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if coufrp.CreateOrUpdateFirewallRuleProperties != nil {
objectMap["properties"] = coufrp.CreateOrUpdateFirewallRuleProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateOrUpdateFirewallRuleParameters struct.
func (coufrp *CreateOrUpdateFirewallRuleParameters) 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 createOrUpdateFirewallRuleProperties CreateOrUpdateFirewallRuleProperties
err = json.Unmarshal(*v, &createOrUpdateFirewallRuleProperties)
if err != nil {
return err
}
coufrp.CreateOrUpdateFirewallRuleProperties = &createOrUpdateFirewallRuleProperties
}
}
}
return nil
}
// CreateOrUpdateFirewallRuleProperties the firewall rule properties to use when creating a new firewall
// rule.
type CreateOrUpdateFirewallRuleProperties struct {
// StartIPAddress - The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.
StartIPAddress *string `json:"startIpAddress,omitempty"`
// EndIPAddress - The end IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.
EndIPAddress *string `json:"endIpAddress,omitempty"`
}
// CreateOrUpdateTrustedIDProviderParameters the parameters used to create a new trusted identity provider.
type CreateOrUpdateTrustedIDProviderParameters struct {
// CreateOrUpdateTrustedIDProviderProperties - The trusted identity provider properties to use when creating a new trusted identity provider.
*CreateOrUpdateTrustedIDProviderProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateOrUpdateTrustedIDProviderParameters.
func (coutipp CreateOrUpdateTrustedIDProviderParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if coutipp.CreateOrUpdateTrustedIDProviderProperties != nil {
objectMap["properties"] = coutipp.CreateOrUpdateTrustedIDProviderProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateOrUpdateTrustedIDProviderParameters struct.
func (coutipp *CreateOrUpdateTrustedIDProviderParameters) 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 createOrUpdateTrustedIDProviderProperties CreateOrUpdateTrustedIDProviderProperties
err = json.Unmarshal(*v, &createOrUpdateTrustedIDProviderProperties)
if err != nil {
return err
}
coutipp.CreateOrUpdateTrustedIDProviderProperties = &createOrUpdateTrustedIDProviderProperties
}
}
}
return nil
}
// CreateOrUpdateTrustedIDProviderProperties the trusted identity provider properties to use when creating
// a new trusted identity provider.
type CreateOrUpdateTrustedIDProviderProperties struct {
// IDProvider - The URL of this trusted identity provider.
IDProvider *string `json:"idProvider,omitempty"`
}
// CreateOrUpdateVirtualNetworkRuleParameters the parameters used to create a new virtual network rule.
type CreateOrUpdateVirtualNetworkRuleParameters struct {
// CreateOrUpdateVirtualNetworkRuleProperties - The virtual network rule properties to use when creating a new virtual network rule.
*CreateOrUpdateVirtualNetworkRuleProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateOrUpdateVirtualNetworkRuleParameters.
func (couvnrp CreateOrUpdateVirtualNetworkRuleParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if couvnrp.CreateOrUpdateVirtualNetworkRuleProperties != nil {
objectMap["properties"] = couvnrp.CreateOrUpdateVirtualNetworkRuleProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateOrUpdateVirtualNetworkRuleParameters struct.
func (couvnrp *CreateOrUpdateVirtualNetworkRuleParameters) 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 createOrUpdateVirtualNetworkRuleProperties CreateOrUpdateVirtualNetworkRuleProperties
err = json.Unmarshal(*v, &createOrUpdateVirtualNetworkRuleProperties)
if err != nil {
return err
}
couvnrp.CreateOrUpdateVirtualNetworkRuleProperties = &createOrUpdateVirtualNetworkRuleProperties
}
}
}
return nil
}
// CreateOrUpdateVirtualNetworkRuleProperties the virtual network rule properties to use when creating a
// new virtual network rule.
type CreateOrUpdateVirtualNetworkRuleProperties struct {
// SubnetID - The resource identifier for the subnet.
SubnetID *string `json:"subnetId,omitempty"`
}
// CreateTrustedIDProviderWithAccountParameters the parameters used to create a new trusted identity
// provider while creating a new Data Lake Store account.
type CreateTrustedIDProviderWithAccountParameters struct {
// Name - The unique name of the trusted identity provider to create.
Name *string `json:"name,omitempty"`
// CreateOrUpdateTrustedIDProviderProperties - The trusted identity provider properties to use when creating a new trusted identity provider.
*CreateOrUpdateTrustedIDProviderProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateTrustedIDProviderWithAccountParameters.
func (ctipwap CreateTrustedIDProviderWithAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ctipwap.Name != nil {
objectMap["name"] = ctipwap.Name
}
if ctipwap.CreateOrUpdateTrustedIDProviderProperties != nil {
objectMap["properties"] = ctipwap.CreateOrUpdateTrustedIDProviderProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateTrustedIDProviderWithAccountParameters struct.
func (ctipwap *CreateTrustedIDProviderWithAccountParameters) 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
}
ctipwap.Name = &name
}
case "properties":
if v != nil {
var createOrUpdateTrustedIDProviderProperties CreateOrUpdateTrustedIDProviderProperties
err = json.Unmarshal(*v, &createOrUpdateTrustedIDProviderProperties)
if err != nil {
return err
}
ctipwap.CreateOrUpdateTrustedIDProviderProperties = &createOrUpdateTrustedIDProviderProperties
}
}
}
return nil
}
// CreateVirtualNetworkRuleWithAccountParameters the parameters used to create a new virtual network rule
// while creating a new Data Lake Store account.
type CreateVirtualNetworkRuleWithAccountParameters struct {
// Name - The unique name of the virtual network rule to create.
Name *string `json:"name,omitempty"`
// CreateOrUpdateVirtualNetworkRuleProperties - The virtual network rule properties to use when creating a new virtual network rule.
*CreateOrUpdateVirtualNetworkRuleProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateVirtualNetworkRuleWithAccountParameters.
func (cvnrwap CreateVirtualNetworkRuleWithAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cvnrwap.Name != nil {
objectMap["name"] = cvnrwap.Name
}
if cvnrwap.CreateOrUpdateVirtualNetworkRuleProperties != nil {
objectMap["properties"] = cvnrwap.CreateOrUpdateVirtualNetworkRuleProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateVirtualNetworkRuleWithAccountParameters struct.
func (cvnrwap *CreateVirtualNetworkRuleWithAccountParameters) 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
}
cvnrwap.Name = &name
}
case "properties":
if v != nil {
var createOrUpdateVirtualNetworkRuleProperties CreateOrUpdateVirtualNetworkRuleProperties
err = json.Unmarshal(*v, &createOrUpdateVirtualNetworkRuleProperties)
if err != nil {
return err
}
cvnrwap.CreateOrUpdateVirtualNetworkRuleProperties = &createOrUpdateVirtualNetworkRuleProperties
}
}
}
return nil
}
// DataLakeStoreAccount data Lake Store account information.
type DataLakeStoreAccount struct {
autorest.Response `json:"-"`
// Identity - The Key Vault encryption identity, if any.
Identity *EncryptionIdentity `json:"identity,omitempty"`
// DataLakeStoreAccountProperties - The Data Lake Store account properties.
*DataLakeStoreAccountProperties `json:"properties,omitempty"`
// ID - The resource identifier.
ID *string `json:"id,omitempty"`
// Name - The resource name.
Name *string `json:"name,omitempty"`
// Type - The resource type.
Type *string `json:"type,omitempty"`
// Location - The resource location.
Location *string `json:"location,omitempty"`
// Tags - The resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for DataLakeStoreAccount.
func (dlsa DataLakeStoreAccount) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dlsa.Identity != nil {
objectMap["identity"] = dlsa.Identity
}
if dlsa.DataLakeStoreAccountProperties != nil {
objectMap["properties"] = dlsa.DataLakeStoreAccountProperties
}
if dlsa.ID != nil {
objectMap["id"] = dlsa.ID
}
if dlsa.Name != nil {
objectMap["name"] = dlsa.Name
}
if dlsa.Type != nil {
objectMap["type"] = dlsa.Type
}
if dlsa.Location != nil {
objectMap["location"] = dlsa.Location
}
if dlsa.Tags != nil {
objectMap["tags"] = dlsa.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DataLakeStoreAccount struct.
func (dlsa *DataLakeStoreAccount) 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 "identity":
if v != nil {
var identity EncryptionIdentity
err = json.Unmarshal(*v, &identity)
if err != nil {
return err
}
dlsa.Identity = &identity
}
case "properties":
if v != nil {
var dataLakeStoreAccountProperties DataLakeStoreAccountProperties
err = json.Unmarshal(*v, &dataLakeStoreAccountProperties)
if err != nil {
return err
}
dlsa.DataLakeStoreAccountProperties = &dataLakeStoreAccountProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
dlsa.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
dlsa.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
dlsa.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
dlsa.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
dlsa.Tags = tags
}
}
}
return nil
}
// DataLakeStoreAccountBasic basic Data Lake Store account information, returned on list calls.
type DataLakeStoreAccountBasic struct {
// DataLakeStoreAccountPropertiesBasic - The basic Data Lake Store account properties.
*DataLakeStoreAccountPropertiesBasic `json:"properties,omitempty"`
// ID - The resource identifier.
ID *string `json:"id,omitempty"`
// Name - The resource name.
Name *string `json:"name,omitempty"`
// Type - The resource type.
Type *string `json:"type,omitempty"`
// Location - The resource location.
Location *string `json:"location,omitempty"`
// Tags - The resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for DataLakeStoreAccountBasic.
func (dlsab DataLakeStoreAccountBasic) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if dlsab.DataLakeStoreAccountPropertiesBasic != nil {
objectMap["properties"] = dlsab.DataLakeStoreAccountPropertiesBasic
}
if dlsab.ID != nil {
objectMap["id"] = dlsab.ID
}
if dlsab.Name != nil {
objectMap["name"] = dlsab.Name
}
if dlsab.Type != nil {
objectMap["type"] = dlsab.Type
}
if dlsab.Location != nil {
objectMap["location"] = dlsab.Location
}
if dlsab.Tags != nil {
objectMap["tags"] = dlsab.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DataLakeStoreAccountBasic struct.
func (dlsab *DataLakeStoreAccountBasic) 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 dataLakeStoreAccountPropertiesBasic DataLakeStoreAccountPropertiesBasic
err = json.Unmarshal(*v, &dataLakeStoreAccountPropertiesBasic)
if err != nil {
return err
}
dlsab.DataLakeStoreAccountPropertiesBasic = &dataLakeStoreAccountPropertiesBasic
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
dlsab.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
dlsab.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
dlsab.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
dlsab.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
dlsab.Tags = tags
}
}
}
return nil
}
// DataLakeStoreAccountListResult data Lake Store account list information response.
type DataLakeStoreAccountListResult struct {
autorest.Response `json:"-"`
// Value - The results of the list operation.
Value *[]DataLakeStoreAccountBasic `json:"value,omitempty"`
// NextLink - The link (url) to the next page of results.
NextLink *string `json:"nextLink,omitempty"`
}
// DataLakeStoreAccountListResultIterator provides access to a complete listing of
// DataLakeStoreAccountBasic values.
type DataLakeStoreAccountListResultIterator struct {
i int
page DataLakeStoreAccountListResultPage
}
// NextWithContext advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
func (iter *DataLakeStoreAccountListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/DataLakeStoreAccountListResultIterator.NextWithContext")