-
Notifications
You must be signed in to change notification settings - Fork 844
/
models.go
2909 lines (2651 loc) · 106 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/analytics/mgmt/2016-11-01/account"
// 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) (dlaa DataLakeAnalyticsAccount, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), 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 dlaa.Response.Response, err = future.GetResult(sender); err == nil && dlaa.Response.Response.StatusCode != http.StatusNoContent {
dlaa, err = client.CreateResponder(dlaa.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsCreateFutureType", "Result", dlaa.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.DoneWithContext(context.Background(), 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) (dlaa DataLakeAnalyticsAccount, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), 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 dlaa.Response.Response, err = future.GetResult(sender); err == nil && dlaa.Response.Response.StatusCode != http.StatusNoContent {
dlaa, err = client.UpdateResponder(dlaa.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "account.AccountsUpdateFutureType", "Result", dlaa.Response.Response, "Failure responding to request")
}
}
return
}
// AddDataLakeStoreParameters the parameters used to add a new Data Lake Store account.
type AddDataLakeStoreParameters struct {
// AddDataLakeStoreProperties - The Data Lake Store account properties to use when adding a new Data Lake Store account.
*AddDataLakeStoreProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for AddDataLakeStoreParameters.
func (adlsp AddDataLakeStoreParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if adlsp.AddDataLakeStoreProperties != nil {
objectMap["properties"] = adlsp.AddDataLakeStoreProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AddDataLakeStoreParameters struct.
func (adlsp *AddDataLakeStoreParameters) 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 addDataLakeStoreProperties AddDataLakeStoreProperties
err = json.Unmarshal(*v, &addDataLakeStoreProperties)
if err != nil {
return err
}
adlsp.AddDataLakeStoreProperties = &addDataLakeStoreProperties
}
}
}
return nil
}
// AddDataLakeStoreProperties the Data Lake Store account properties to use when adding a new Data Lake Store
// account.
type AddDataLakeStoreProperties struct {
// Suffix - The optional suffix for the Data Lake Store account.
Suffix *string `json:"suffix,omitempty"`
}
// AddDataLakeStoreWithAccountParameters the parameters used to add a new Data Lake Store account while
// creating a new Data Lake Analytics account.
type AddDataLakeStoreWithAccountParameters struct {
// Name - The unique name of the Data Lake Store account to add.
Name *string `json:"name,omitempty"`
// AddDataLakeStoreProperties - The Data Lake Store account properties to use when adding a new Data Lake Store account.
*AddDataLakeStoreProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for AddDataLakeStoreWithAccountParameters.
func (adlswap AddDataLakeStoreWithAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if adlswap.Name != nil {
objectMap["name"] = adlswap.Name
}
if adlswap.AddDataLakeStoreProperties != nil {
objectMap["properties"] = adlswap.AddDataLakeStoreProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AddDataLakeStoreWithAccountParameters struct.
func (adlswap *AddDataLakeStoreWithAccountParameters) 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
}
adlswap.Name = &name
}
case "properties":
if v != nil {
var addDataLakeStoreProperties AddDataLakeStoreProperties
err = json.Unmarshal(*v, &addDataLakeStoreProperties)
if err != nil {
return err
}
adlswap.AddDataLakeStoreProperties = &addDataLakeStoreProperties
}
}
}
return nil
}
// AddStorageAccountParameters the parameters used to add a new Azure Storage account.
type AddStorageAccountParameters struct {
// AddStorageAccountProperties - The Azure Storage account properties to use when adding a new Azure Storage account.
*AddStorageAccountProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for AddStorageAccountParameters.
func (asap AddStorageAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if asap.AddStorageAccountProperties != nil {
objectMap["properties"] = asap.AddStorageAccountProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AddStorageAccountParameters struct.
func (asap *AddStorageAccountParameters) 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 addStorageAccountProperties AddStorageAccountProperties
err = json.Unmarshal(*v, &addStorageAccountProperties)
if err != nil {
return err
}
asap.AddStorageAccountProperties = &addStorageAccountProperties
}
}
}
return nil
}
// AddStorageAccountProperties the Azure Storage account properties to use when adding a new Azure Storage
// account.
type AddStorageAccountProperties struct {
// AccessKey - The access key associated with this Azure Storage account that will be used to connect to it.
AccessKey *string `json:"accessKey,omitempty"`
// Suffix - The optional suffix for the storage account.
Suffix *string `json:"suffix,omitempty"`
}
// AddStorageAccountWithAccountParameters the parameters used to add a new Azure Storage account while creating
// a new Data Lake Analytics account.
type AddStorageAccountWithAccountParameters struct {
// Name - The unique name of the Azure Storage account to add.
Name *string `json:"name,omitempty"`
// AddStorageAccountProperties - The Azure Storage account properties to use when adding a new Azure Storage account.
*AddStorageAccountProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for AddStorageAccountWithAccountParameters.
func (asawap AddStorageAccountWithAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if asawap.Name != nil {
objectMap["name"] = asawap.Name
}
if asawap.AddStorageAccountProperties != nil {
objectMap["properties"] = asawap.AddStorageAccountProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AddStorageAccountWithAccountParameters struct.
func (asawap *AddStorageAccountWithAccountParameters) 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
}
asawap.Name = &name
}
case "properties":
if v != nil {
var addStorageAccountProperties AddStorageAccountProperties
err = json.Unmarshal(*v, &addStorageAccountProperties)
if err != nil {
return err
}
asawap.AddStorageAccountProperties = &addStorageAccountProperties
}
}
}
return nil
}
// CapabilityInformation subscription-level properties and limits for Data Lake Analytics.
type CapabilityInformation struct {
autorest.Response `json:"-"`
// SubscriptionID - READ-ONLY; The subscription credentials that uniquely identifies the subscription.
SubscriptionID *uuid.UUID `json:"subscriptionId,omitempty"`
// State - READ-ONLY; The subscription state. Possible values include: 'SubscriptionStateRegistered', 'SubscriptionStateSuspended', 'SubscriptionStateDeleted', 'SubscriptionStateUnregistered', 'SubscriptionStateWarned'
State SubscriptionState `json:"state,omitempty"`
// MaxAccountCount - READ-ONLY; The maximum supported number of accounts under this subscription.
MaxAccountCount *int32 `json:"maxAccountCount,omitempty"`
// AccountCount - READ-ONLY; The current number of accounts under this subscription.
AccountCount *int32 `json:"accountCount,omitempty"`
// MigrationState - READ-ONLY; The Boolean value of true or false to indicate the maintenance state.
MigrationState *bool `json:"migrationState,omitempty"`
}
// CheckNameAvailabilityParameters data Lake Analytics account name availability check parameters.
type CheckNameAvailabilityParameters struct {
// Name - The Data Lake Analytics 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.DataLakeAnalytics/accounts
Type *string `json:"type,omitempty"`
}
// ComputePolicy data Lake Analytics compute policy information.
type ComputePolicy struct {
autorest.Response `json:"-"`
// ComputePolicyProperties - READ-ONLY; The compute policy properties.
*ComputePolicyProperties `json:"properties,omitempty"`
// ID - READ-ONLY; The resource identifier.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The resource name.
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The resource type.
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for ComputePolicy.
func (cp ComputePolicy) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ComputePolicy struct.
func (cp *ComputePolicy) 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 computePolicyProperties ComputePolicyProperties
err = json.Unmarshal(*v, &computePolicyProperties)
if err != nil {
return err
}
cp.ComputePolicyProperties = &computePolicyProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
cp.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
cp.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
cp.Type = &typeVar
}
}
}
return nil
}
// ComputePolicyListResult the list of compute policies in the account.
type ComputePolicyListResult struct {
autorest.Response `json:"-"`
// Value - READ-ONLY; The results of the list operation.
Value *[]ComputePolicy `json:"value,omitempty"`
// NextLink - READ-ONLY; The link (url) to the next page of results.
NextLink *string `json:"nextLink,omitempty"`
}
// ComputePolicyListResultIterator provides access to a complete listing of ComputePolicy values.
type ComputePolicyListResultIterator struct {
i int
page ComputePolicyListResultPage
}
// 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 *ComputePolicyListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ComputePolicyListResultIterator.NextWithContext")
defer func() {
sc := -1
if iter.Response().Response.Response != nil {
sc = iter.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err = iter.page.NextWithContext(ctx)
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// Next advances to the next value. If there was an error making
// the request the iterator does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (iter *ComputePolicyListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ComputePolicyListResultIterator) NotDone() bool {
return iter.page.NotDone() && iter.i < len(iter.page.Values())
}
// Response returns the raw server response from the last page request.
func (iter ComputePolicyListResultIterator) Response() ComputePolicyListResult {
return iter.page.Response()
}
// Value returns the current value or a zero-initialized value if the
// iterator has advanced beyond the end of the collection.
func (iter ComputePolicyListResultIterator) Value() ComputePolicy {
if !iter.page.NotDone() {
return ComputePolicy{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the ComputePolicyListResultIterator type.
func NewComputePolicyListResultIterator(page ComputePolicyListResultPage) ComputePolicyListResultIterator {
return ComputePolicyListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (cplr ComputePolicyListResult) IsEmpty() bool {
return cplr.Value == nil || len(*cplr.Value) == 0
}
// hasNextLink returns true if the NextLink is not empty.
func (cplr ComputePolicyListResult) hasNextLink() bool {
return cplr.NextLink != nil && len(*cplr.NextLink) != 0
}
// computePolicyListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (cplr ComputePolicyListResult) computePolicyListResultPreparer(ctx context.Context) (*http.Request, error) {
if !cplr.hasNextLink() {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(cplr.NextLink)))
}
// ComputePolicyListResultPage contains a page of ComputePolicy values.
type ComputePolicyListResultPage struct {
fn func(context.Context, ComputePolicyListResult) (ComputePolicyListResult, error)
cplr ComputePolicyListResult
}
// NextWithContext advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
func (page *ComputePolicyListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ComputePolicyListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
for {
next, err := page.fn(ctx, page.cplr)
if err != nil {
return err
}
page.cplr = next
if !next.hasNextLink() || !next.IsEmpty() {
break
}
}
return nil
}
// Next advances to the next page of values. If there was an error making
// the request the page does not advance and the error is returned.
// Deprecated: Use NextWithContext() instead.
func (page *ComputePolicyListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ComputePolicyListResultPage) NotDone() bool {
return !page.cplr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ComputePolicyListResultPage) Response() ComputePolicyListResult {
return page.cplr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ComputePolicyListResultPage) Values() []ComputePolicy {
if page.cplr.IsEmpty() {
return nil
}
return *page.cplr.Value
}
// Creates a new instance of the ComputePolicyListResultPage type.
func NewComputePolicyListResultPage(getNextPage func(context.Context, ComputePolicyListResult) (ComputePolicyListResult, error)) ComputePolicyListResultPage {
return ComputePolicyListResultPage{fn: getNextPage}
}
// ComputePolicyProperties the compute policy properties.
type ComputePolicyProperties struct {
// ObjectID - READ-ONLY; The AAD object identifier for the entity to create a policy for.
ObjectID *uuid.UUID `json:"objectId,omitempty"`
// ObjectType - READ-ONLY; The type of AAD object the object identifier refers to. Possible values include: 'User', 'Group', 'ServicePrincipal'
ObjectType AADObjectType `json:"objectType,omitempty"`
// MaxDegreeOfParallelismPerJob - READ-ONLY; The maximum degree of parallelism per job this user can use to submit jobs.
MaxDegreeOfParallelismPerJob *int32 `json:"maxDegreeOfParallelismPerJob,omitempty"`
// MinPriorityPerJob - READ-ONLY; The minimum priority per job this user can use to submit jobs.
MinPriorityPerJob *int32 `json:"minPriorityPerJob,omitempty"`
}
// CreateComputePolicyWithAccountParameters the parameters used to create a new compute policy while creating a
// new Data Lake Analytics account.
type CreateComputePolicyWithAccountParameters struct {
// Name - The unique name of the compute policy to create.
Name *string `json:"name,omitempty"`
// CreateOrUpdateComputePolicyProperties - The compute policy properties to use when creating a new compute policy.
*CreateOrUpdateComputePolicyProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateComputePolicyWithAccountParameters.
func (ccpwap CreateComputePolicyWithAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ccpwap.Name != nil {
objectMap["name"] = ccpwap.Name
}
if ccpwap.CreateOrUpdateComputePolicyProperties != nil {
objectMap["properties"] = ccpwap.CreateOrUpdateComputePolicyProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateComputePolicyWithAccountParameters struct.
func (ccpwap *CreateComputePolicyWithAccountParameters) 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
}
ccpwap.Name = &name
}
case "properties":
if v != nil {
var createOrUpdateComputePolicyProperties CreateOrUpdateComputePolicyProperties
err = json.Unmarshal(*v, &createOrUpdateComputePolicyProperties)
if err != nil {
return err
}
ccpwap.CreateOrUpdateComputePolicyProperties = &createOrUpdateComputePolicyProperties
}
}
}
return nil
}
// CreateDataLakeAnalyticsAccountParameters the parameters to use for creating a Data Lake Analytics account.
type CreateDataLakeAnalyticsAccountParameters struct {
// Location - The resource location.
Location *string `json:"location,omitempty"`
// Tags - The resource tags.
Tags map[string]*string `json:"tags"`
// CreateDataLakeAnalyticsAccountProperties - The Data Lake Analytics account properties to use for creating.
*CreateDataLakeAnalyticsAccountProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateDataLakeAnalyticsAccountParameters.
func (cdlaap CreateDataLakeAnalyticsAccountParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cdlaap.Location != nil {
objectMap["location"] = cdlaap.Location
}
if cdlaap.Tags != nil {
objectMap["tags"] = cdlaap.Tags
}
if cdlaap.CreateDataLakeAnalyticsAccountProperties != nil {
objectMap["properties"] = cdlaap.CreateDataLakeAnalyticsAccountProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateDataLakeAnalyticsAccountParameters struct.
func (cdlaap *CreateDataLakeAnalyticsAccountParameters) 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
}
cdlaap.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
cdlaap.Tags = tags
}
case "properties":
if v != nil {
var createDataLakeAnalyticsAccountProperties CreateDataLakeAnalyticsAccountProperties
err = json.Unmarshal(*v, &createDataLakeAnalyticsAccountProperties)
if err != nil {
return err
}
cdlaap.CreateDataLakeAnalyticsAccountProperties = &createDataLakeAnalyticsAccountProperties
}
}
}
return nil
}
// CreateDataLakeAnalyticsAccountProperties ...
type CreateDataLakeAnalyticsAccountProperties struct {
// DefaultDataLakeStoreAccount - The default Data Lake Store account associated with this account.
DefaultDataLakeStoreAccount *string `json:"defaultDataLakeStoreAccount,omitempty"`
// DataLakeStoreAccounts - The list of Data Lake Store accounts associated with this account.
DataLakeStoreAccounts *[]AddDataLakeStoreWithAccountParameters `json:"dataLakeStoreAccounts,omitempty"`
// StorageAccounts - The list of Azure Blob Storage accounts associated with this account.
StorageAccounts *[]AddStorageAccountWithAccountParameters `json:"storageAccounts,omitempty"`
// ComputePolicies - The list of compute policies associated with this account.
ComputePolicies *[]CreateComputePolicyWithAccountParameters `json:"computePolicies,omitempty"`
// FirewallRules - The list of firewall rules associated with this account.
FirewallRules *[]CreateFirewallRuleWithAccountParameters `json:"firewallRules,omitempty"`
// FirewallState - The current state of the IP address firewall for this 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: 'Enabled', 'Disabled'
FirewallAllowAzureIps FirewallAllowAzureIpsState `json:"firewallAllowAzureIps,omitempty"`
// NewTier - The commitment tier for the next month. Possible values include: 'Consumption', 'Commitment100AUHours', 'Commitment500AUHours', 'Commitment1000AUHours', 'Commitment5000AUHours', 'Commitment10000AUHours', 'Commitment50000AUHours', 'Commitment100000AUHours', 'Commitment500000AUHours'
NewTier TierType `json:"newTier,omitempty"`
// MaxJobCount - The maximum supported jobs running under the account at the same time.
MaxJobCount *int32 `json:"maxJobCount,omitempty"`
// MaxDegreeOfParallelism - The maximum supported degree of parallelism for this account.
MaxDegreeOfParallelism *int32 `json:"maxDegreeOfParallelism,omitempty"`
// MaxDegreeOfParallelismPerJob - The maximum supported degree of parallelism per job for this account.
MaxDegreeOfParallelismPerJob *int32 `json:"maxDegreeOfParallelismPerJob,omitempty"`
// MinPriorityPerJob - The minimum supported priority per job for this account.
MinPriorityPerJob *int32 `json:"minPriorityPerJob,omitempty"`
// QueryStoreRetention - The number of days that job metadata is retained.
QueryStoreRetention *int32 `json:"queryStoreRetention,omitempty"`
}
// CreateFirewallRuleWithAccountParameters the parameters used to create a new firewall rule while creating a
// new Data Lake Analytics 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
}
// CreateOrUpdateComputePolicyParameters the parameters used to create a new compute policy.
type CreateOrUpdateComputePolicyParameters struct {
// CreateOrUpdateComputePolicyProperties - The compute policy properties to use when creating a new compute policy.
*CreateOrUpdateComputePolicyProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for CreateOrUpdateComputePolicyParameters.
func (coucpp CreateOrUpdateComputePolicyParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if coucpp.CreateOrUpdateComputePolicyProperties != nil {
objectMap["properties"] = coucpp.CreateOrUpdateComputePolicyProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for CreateOrUpdateComputePolicyParameters struct.
func (coucpp *CreateOrUpdateComputePolicyParameters) 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 createOrUpdateComputePolicyProperties CreateOrUpdateComputePolicyProperties
err = json.Unmarshal(*v, &createOrUpdateComputePolicyProperties)
if err != nil {
return err
}
coucpp.CreateOrUpdateComputePolicyProperties = &createOrUpdateComputePolicyProperties
}
}
}
return nil
}
// CreateOrUpdateComputePolicyProperties the compute policy properties to use when creating a new compute
// policy.
type CreateOrUpdateComputePolicyProperties struct {
// ObjectID - The AAD object identifier for the entity to create a policy for.
ObjectID *uuid.UUID `json:"objectId,omitempty"`
// ObjectType - The type of AAD object the object identifier refers to. Possible values include: 'User', 'Group', 'ServicePrincipal'
ObjectType AADObjectType `json:"objectType,omitempty"`
// MaxDegreeOfParallelismPerJob - The maximum degree of parallelism per job this user can use to submit jobs. This property, the min priority per job property, or both must be passed.
MaxDegreeOfParallelismPerJob *int32 `json:"maxDegreeOfParallelismPerJob,omitempty"`
// MinPriorityPerJob - The minimum priority per job this user can use to submit jobs. This property, the max degree of parallelism per job property, or both must be passed.
MinPriorityPerJob *int32 `json:"minPriorityPerJob,omitempty"`
}
// 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"`
}
// DataLakeAnalyticsAccount a Data Lake Analytics account object, containing all information associated with
// the named Data Lake Analytics account.
type DataLakeAnalyticsAccount struct {
autorest.Response `json:"-"`
// DataLakeAnalyticsAccountProperties - READ-ONLY; The properties defined by Data Lake Analytics all properties are specific to each resource provider.
*DataLakeAnalyticsAccountProperties `json:"properties,omitempty"`
// ID - READ-ONLY; The resource identifer.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The resource name.
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The resource type.
Type *string `json:"type,omitempty"`
// Location - READ-ONLY; The resource location.
Location *string `json:"location,omitempty"`
// Tags - READ-ONLY; The resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for DataLakeAnalyticsAccount.
func (dlaa DataLakeAnalyticsAccount) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DataLakeAnalyticsAccount struct.
func (dlaa *DataLakeAnalyticsAccount) 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 dataLakeAnalyticsAccountProperties DataLakeAnalyticsAccountProperties
err = json.Unmarshal(*v, &dataLakeAnalyticsAccountProperties)
if err != nil {
return err
}
dlaa.DataLakeAnalyticsAccountProperties = &dataLakeAnalyticsAccountProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
dlaa.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
dlaa.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
dlaa.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
dlaa.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
dlaa.Tags = tags
}
}
}
return nil
}
// DataLakeAnalyticsAccountBasic a Data Lake Analytics account object, containing all information associated
// with the named Data Lake Analytics account.
type DataLakeAnalyticsAccountBasic struct {
// DataLakeAnalyticsAccountPropertiesBasic - READ-ONLY; The properties defined by Data Lake Analytics all properties are specific to each resource provider.
*DataLakeAnalyticsAccountPropertiesBasic `json:"properties,omitempty"`
// ID - READ-ONLY; The resource identifer.
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; The resource name.
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; The resource type.
Type *string `json:"type,omitempty"`
// Location - READ-ONLY; The resource location.
Location *string `json:"location,omitempty"`
// Tags - READ-ONLY; The resource tags.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for DataLakeAnalyticsAccountBasic.
func (dlaab DataLakeAnalyticsAccountBasic) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for DataLakeAnalyticsAccountBasic struct.
func (dlaab *DataLakeAnalyticsAccountBasic) UnmarshalJSON(body []byte) error {