-
Notifications
You must be signed in to change notification settings - Fork 859
/
Copy pathmodels.go
1848 lines (1674 loc) · 57.5 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 eventhub
// 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"
"github.com/Azure/go-autorest/autorest/date"
"github.com/Azure/go-autorest/autorest/to"
"net/http"
)
// AccessRights enumerates the values for access rights.
type AccessRights string
const (
// Listen ...
Listen AccessRights = "Listen"
// Manage ...
Manage AccessRights = "Manage"
// Send ...
Send AccessRights = "Send"
)
// PossibleAccessRightsValues returns an array of possible values for the AccessRights const type.
func PossibleAccessRightsValues() []AccessRights {
return []AccessRights{Listen, Manage, Send}
}
// EncodingCaptureDescription enumerates the values for encoding capture description.
type EncodingCaptureDescription string
const (
// Avro ...
Avro EncodingCaptureDescription = "Avro"
// AvroDeflate ...
AvroDeflate EncodingCaptureDescription = "AvroDeflate"
)
// PossibleEncodingCaptureDescriptionValues returns an array of possible values for the EncodingCaptureDescription const type.
func PossibleEncodingCaptureDescriptionValues() []EncodingCaptureDescription {
return []EncodingCaptureDescription{Avro, AvroDeflate}
}
// EntityStatus enumerates the values for entity status.
type EntityStatus string
const (
// Active ...
Active EntityStatus = "Active"
// Creating ...
Creating EntityStatus = "Creating"
// Deleting ...
Deleting EntityStatus = "Deleting"
// Disabled ...
Disabled EntityStatus = "Disabled"
// ReceiveDisabled ...
ReceiveDisabled EntityStatus = "ReceiveDisabled"
// Renaming ...
Renaming EntityStatus = "Renaming"
// Restoring ...
Restoring EntityStatus = "Restoring"
// SendDisabled ...
SendDisabled EntityStatus = "SendDisabled"
// Unknown ...
Unknown EntityStatus = "Unknown"
)
// PossibleEntityStatusValues returns an array of possible values for the EntityStatus const type.
func PossibleEntityStatusValues() []EntityStatus {
return []EntityStatus{Active, Creating, Deleting, Disabled, ReceiveDisabled, Renaming, Restoring, SendDisabled, Unknown}
}
// KeyType enumerates the values for key type.
type KeyType string
const (
// PrimaryKey ...
PrimaryKey KeyType = "PrimaryKey"
// SecondaryKey ...
SecondaryKey KeyType = "SecondaryKey"
)
// PossibleKeyTypeValues returns an array of possible values for the KeyType const type.
func PossibleKeyTypeValues() []KeyType {
return []KeyType{PrimaryKey, SecondaryKey}
}
// ProvisioningStateDR enumerates the values for provisioning state dr.
type ProvisioningStateDR string
const (
// Accepted ...
Accepted ProvisioningStateDR = "Accepted"
// Failed ...
Failed ProvisioningStateDR = "Failed"
// Succeeded ...
Succeeded ProvisioningStateDR = "Succeeded"
)
// PossibleProvisioningStateDRValues returns an array of possible values for the ProvisioningStateDR const type.
func PossibleProvisioningStateDRValues() []ProvisioningStateDR {
return []ProvisioningStateDR{Accepted, Failed, Succeeded}
}
// RoleDisasterRecovery enumerates the values for role disaster recovery.
type RoleDisasterRecovery string
const (
// Primary ...
Primary RoleDisasterRecovery = "Primary"
// PrimaryNotReplicating ...
PrimaryNotReplicating RoleDisasterRecovery = "PrimaryNotReplicating"
// Secondary ...
Secondary RoleDisasterRecovery = "Secondary"
)
// PossibleRoleDisasterRecoveryValues returns an array of possible values for the RoleDisasterRecovery const type.
func PossibleRoleDisasterRecoveryValues() []RoleDisasterRecovery {
return []RoleDisasterRecovery{Primary, PrimaryNotReplicating, Secondary}
}
// SkuName enumerates the values for sku name.
type SkuName string
const (
// Basic ...
Basic SkuName = "Basic"
// Standard ...
Standard SkuName = "Standard"
)
// PossibleSkuNameValues returns an array of possible values for the SkuName const type.
func PossibleSkuNameValues() []SkuName {
return []SkuName{Basic, Standard}
}
// SkuTier enumerates the values for sku tier.
type SkuTier string
const (
// SkuTierBasic ...
SkuTierBasic SkuTier = "Basic"
// SkuTierStandard ...
SkuTierStandard SkuTier = "Standard"
)
// PossibleSkuTierValues returns an array of possible values for the SkuTier const type.
func PossibleSkuTierValues() []SkuTier {
return []SkuTier{SkuTierBasic, SkuTierStandard}
}
// UnavailableReason enumerates the values for unavailable reason.
type UnavailableReason string
const (
// InvalidName ...
InvalidName UnavailableReason = "InvalidName"
// NameInLockdown ...
NameInLockdown UnavailableReason = "NameInLockdown"
// NameInUse ...
NameInUse UnavailableReason = "NameInUse"
// None ...
None UnavailableReason = "None"
// SubscriptionIsDisabled ...
SubscriptionIsDisabled UnavailableReason = "SubscriptionIsDisabled"
// TooManyNamespaceInCurrentSubscription ...
TooManyNamespaceInCurrentSubscription UnavailableReason = "TooManyNamespaceInCurrentSubscription"
)
// PossibleUnavailableReasonValues returns an array of possible values for the UnavailableReason const type.
func PossibleUnavailableReasonValues() []UnavailableReason {
return []UnavailableReason{InvalidName, NameInLockdown, NameInUse, None, SubscriptionIsDisabled, TooManyNamespaceInCurrentSubscription}
}
// AccessKeys namespace/EventHub Connection String
type AccessKeys struct {
autorest.Response `json:"-"`
// PrimaryConnectionString - Primary connection string of the created namespace AuthorizationRule.
PrimaryConnectionString *string `json:"primaryConnectionString,omitempty"`
// SecondaryConnectionString - Secondary connection string of the created namespace AuthorizationRule.
SecondaryConnectionString *string `json:"secondaryConnectionString,omitempty"`
// AliasPrimaryConnectionString - Primary connection string of the alias if GEO DR is enabled
AliasPrimaryConnectionString *string `json:"aliasPrimaryConnectionString,omitempty"`
// AliasSecondaryConnectionString - Secondary connection string of the alias if GEO DR is enabled
AliasSecondaryConnectionString *string `json:"aliasSecondaryConnectionString,omitempty"`
// PrimaryKey - A base64-encoded 256-bit primary key for signing and validating the SAS token.
PrimaryKey *string `json:"primaryKey,omitempty"`
// SecondaryKey - A base64-encoded 256-bit primary key for signing and validating the SAS token.
SecondaryKey *string `json:"secondaryKey,omitempty"`
// KeyName - A string that describes the AuthorizationRule.
KeyName *string `json:"keyName,omitempty"`
}
// ArmDisasterRecovery single item in List or Get Alias(Disaster Recovery configuration) operation
type ArmDisasterRecovery struct {
autorest.Response `json:"-"`
// ArmDisasterRecoveryProperties - Properties required to the Create Or Update Alias(Disaster Recovery configurations)
*ArmDisasterRecoveryProperties `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 ArmDisasterRecovery.
func (adr ArmDisasterRecovery) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if adr.ArmDisasterRecoveryProperties != nil {
objectMap["properties"] = adr.ArmDisasterRecoveryProperties
}
if adr.ID != nil {
objectMap["id"] = adr.ID
}
if adr.Name != nil {
objectMap["name"] = adr.Name
}
if adr.Type != nil {
objectMap["type"] = adr.Type
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ArmDisasterRecovery struct.
func (adr *ArmDisasterRecovery) 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 armDisasterRecoveryProperties ArmDisasterRecoveryProperties
err = json.Unmarshal(*v, &armDisasterRecoveryProperties)
if err != nil {
return err
}
adr.ArmDisasterRecoveryProperties = &armDisasterRecoveryProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
adr.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
adr.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
adr.Type = &typeVar
}
}
}
return nil
}
// ArmDisasterRecoveryListResult the result of the List Alias(Disaster Recovery configuration) operation.
type ArmDisasterRecoveryListResult struct {
autorest.Response `json:"-"`
// Value - List of Alias(Disaster Recovery configurations)
Value *[]ArmDisasterRecovery `json:"value,omitempty"`
// NextLink - Link to the next set of results. Not empty if Value contains incomplete list of Alias(Disaster Recovery configuration)
NextLink *string `json:"nextLink,omitempty"`
}
// ArmDisasterRecoveryListResultIterator provides access to a complete listing of ArmDisasterRecovery values.
type ArmDisasterRecoveryListResultIterator struct {
i int
page ArmDisasterRecoveryListResultPage
}
// Next 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 *ArmDisasterRecoveryListResultIterator) Next() error {
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err := iter.page.Next()
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ArmDisasterRecoveryListResultIterator) 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 ArmDisasterRecoveryListResultIterator) Response() ArmDisasterRecoveryListResult {
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 ArmDisasterRecoveryListResultIterator) Value() ArmDisasterRecovery {
if !iter.page.NotDone() {
return ArmDisasterRecovery{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (adrlr ArmDisasterRecoveryListResult) IsEmpty() bool {
return adrlr.Value == nil || len(*adrlr.Value) == 0
}
// armDisasterRecoveryListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (adrlr ArmDisasterRecoveryListResult) armDisasterRecoveryListResultPreparer() (*http.Request, error) {
if adrlr.NextLink == nil || len(to.String(adrlr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(adrlr.NextLink)))
}
// ArmDisasterRecoveryListResultPage contains a page of ArmDisasterRecovery values.
type ArmDisasterRecoveryListResultPage struct {
fn func(ArmDisasterRecoveryListResult) (ArmDisasterRecoveryListResult, error)
adrlr ArmDisasterRecoveryListResult
}
// 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.
func (page *ArmDisasterRecoveryListResultPage) Next() error {
next, err := page.fn(page.adrlr)
if err != nil {
return err
}
page.adrlr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ArmDisasterRecoveryListResultPage) NotDone() bool {
return !page.adrlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ArmDisasterRecoveryListResultPage) Response() ArmDisasterRecoveryListResult {
return page.adrlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ArmDisasterRecoveryListResultPage) Values() []ArmDisasterRecovery {
if page.adrlr.IsEmpty() {
return nil
}
return *page.adrlr.Value
}
// ArmDisasterRecoveryProperties properties required to the Create Or Update Alias(Disaster Recovery
// configurations)
type ArmDisasterRecoveryProperties struct {
// ProvisioningState - Provisioning state of the Alias(Disaster Recovery configuration) - possible values 'Accepted' or 'Succeeded' or 'Failed'. Possible values include: 'Accepted', 'Succeeded', 'Failed'
ProvisioningState ProvisioningStateDR `json:"provisioningState,omitempty"`
// PartnerNamespace - ARM Id of the Primary/Secondary eventhub namespace name, which is part of GEO DR pairning
PartnerNamespace *string `json:"partnerNamespace,omitempty"`
// AlternateName - Alternate name specified when alias and namespace names are same.
AlternateName *string `json:"alternateName,omitempty"`
// Role - role of namespace in GEO DR - possible values 'Primary' or 'PrimaryNotReplicating' or 'Secondary'. Possible values include: 'Primary', 'PrimaryNotReplicating', 'Secondary'
Role RoleDisasterRecovery `json:"role,omitempty"`
// PendingReplicationOperationsCount - Number of entities pending to be replicated.
PendingReplicationOperationsCount *int64 `json:"pendingReplicationOperationsCount,omitempty"`
}
// AuthorizationRule single item in a List or Get AuthorizationRule operation
type AuthorizationRule struct {
autorest.Response `json:"-"`
// AuthorizationRuleProperties - Properties supplied to create or update AuthorizationRule
*AuthorizationRuleProperties `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 AuthorizationRule.
func (ar AuthorizationRule) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ar.AuthorizationRuleProperties != nil {
objectMap["properties"] = ar.AuthorizationRuleProperties
}
if ar.ID != nil {
objectMap["id"] = ar.ID
}
if ar.Name != nil {
objectMap["name"] = ar.Name
}
if ar.Type != nil {
objectMap["type"] = ar.Type
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AuthorizationRule struct.
func (ar *AuthorizationRule) 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 authorizationRuleProperties AuthorizationRuleProperties
err = json.Unmarshal(*v, &authorizationRuleProperties)
if err != nil {
return err
}
ar.AuthorizationRuleProperties = &authorizationRuleProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
ar.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
ar.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
ar.Type = &typeVar
}
}
}
return nil
}
// AuthorizationRuleListResult the response from the List namespace operation.
type AuthorizationRuleListResult struct {
autorest.Response `json:"-"`
// Value - Result of the List Authorization Rules operation.
Value *[]AuthorizationRule `json:"value,omitempty"`
// NextLink - Link to the next set of results. Not empty if Value contains an incomplete list of Authorization Rules
NextLink *string `json:"nextLink,omitempty"`
}
// AuthorizationRuleListResultIterator provides access to a complete listing of AuthorizationRule values.
type AuthorizationRuleListResultIterator struct {
i int
page AuthorizationRuleListResultPage
}
// Next 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 *AuthorizationRuleListResultIterator) Next() error {
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err := iter.page.Next()
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter AuthorizationRuleListResultIterator) 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 AuthorizationRuleListResultIterator) Response() AuthorizationRuleListResult {
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 AuthorizationRuleListResultIterator) Value() AuthorizationRule {
if !iter.page.NotDone() {
return AuthorizationRule{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (arlr AuthorizationRuleListResult) IsEmpty() bool {
return arlr.Value == nil || len(*arlr.Value) == 0
}
// authorizationRuleListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (arlr AuthorizationRuleListResult) authorizationRuleListResultPreparer() (*http.Request, error) {
if arlr.NextLink == nil || len(to.String(arlr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(arlr.NextLink)))
}
// AuthorizationRuleListResultPage contains a page of AuthorizationRule values.
type AuthorizationRuleListResultPage struct {
fn func(AuthorizationRuleListResult) (AuthorizationRuleListResult, error)
arlr AuthorizationRuleListResult
}
// 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.
func (page *AuthorizationRuleListResultPage) Next() error {
next, err := page.fn(page.arlr)
if err != nil {
return err
}
page.arlr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page AuthorizationRuleListResultPage) NotDone() bool {
return !page.arlr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page AuthorizationRuleListResultPage) Response() AuthorizationRuleListResult {
return page.arlr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page AuthorizationRuleListResultPage) Values() []AuthorizationRule {
if page.arlr.IsEmpty() {
return nil
}
return *page.arlr.Value
}
// AuthorizationRuleProperties properties supplied to create or update AuthorizationRule
type AuthorizationRuleProperties struct {
// Rights - The rights associated with the rule.
Rights *[]AccessRights `json:"rights,omitempty"`
}
// CaptureDescription properties to configure capture description for eventhub
type CaptureDescription struct {
// Enabled - A value that indicates whether capture description is enabled.
Enabled *bool `json:"enabled,omitempty"`
// Encoding - Enumerates the possible values for the encoding format of capture description. Note: 'AvroDeflate' will be deprecated in New API Version. Possible values include: 'Avro', 'AvroDeflate'
Encoding EncodingCaptureDescription `json:"encoding,omitempty"`
// IntervalInSeconds - The time window allows you to set the frequency with which the capture to Azure Blobs will happen, value should between 60 to 900 seconds
IntervalInSeconds *int32 `json:"intervalInSeconds,omitempty"`
// SizeLimitInBytes - The size window defines the amount of data built up in your Event Hub before an capture operation, value should be between 10485760 to 524288000 bytes
SizeLimitInBytes *int32 `json:"sizeLimitInBytes,omitempty"`
// Destination - Properties of Destination where capture will be stored. (Storage Account, Blob Names)
Destination *Destination `json:"destination,omitempty"`
}
// CheckNameAvailabilityParameter parameter supplied to check Namespace name availability operation
type CheckNameAvailabilityParameter struct {
// Name - Name to check the namespace name availability
Name *string `json:"name,omitempty"`
}
// CheckNameAvailabilityResult the Result of the CheckNameAvailability operation
type CheckNameAvailabilityResult struct {
autorest.Response `json:"-"`
// Message - The detailed info regarding the reason associated with the Namespace.
Message *string `json:"message,omitempty"`
// NameAvailable - Value indicating Namespace is availability, true if the Namespace is available; otherwise, false.
NameAvailable *bool `json:"nameAvailable,omitempty"`
// Reason - The reason for unavailability of a Namespace. Possible values include: 'None', 'InvalidName', 'SubscriptionIsDisabled', 'NameInUse', 'NameInLockdown', 'TooManyNamespaceInCurrentSubscription'
Reason UnavailableReason `json:"reason,omitempty"`
}
// ConsumerGroup single item in List or Get Consumer group operation
type ConsumerGroup struct {
autorest.Response `json:"-"`
// ConsumerGroupProperties - Single item in List or Get Consumer group operation
*ConsumerGroupProperties `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 ConsumerGroup.
func (cg ConsumerGroup) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cg.ConsumerGroupProperties != nil {
objectMap["properties"] = cg.ConsumerGroupProperties
}
if cg.ID != nil {
objectMap["id"] = cg.ID
}
if cg.Name != nil {
objectMap["name"] = cg.Name
}
if cg.Type != nil {
objectMap["type"] = cg.Type
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ConsumerGroup struct.
func (cg *ConsumerGroup) 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 consumerGroupProperties ConsumerGroupProperties
err = json.Unmarshal(*v, &consumerGroupProperties)
if err != nil {
return err
}
cg.ConsumerGroupProperties = &consumerGroupProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
cg.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
cg.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
cg.Type = &typeVar
}
}
}
return nil
}
// ConsumerGroupListResult the result to the List Consumer Group operation.
type ConsumerGroupListResult struct {
autorest.Response `json:"-"`
// Value - Result of the List Consumer Group operation.
Value *[]ConsumerGroup `json:"value,omitempty"`
// NextLink - Link to the next set of results. Not empty if Value contains incomplete list of Consumer Group
NextLink *string `json:"nextLink,omitempty"`
}
// ConsumerGroupListResultIterator provides access to a complete listing of ConsumerGroup values.
type ConsumerGroupListResultIterator struct {
i int
page ConsumerGroupListResultPage
}
// Next 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 *ConsumerGroupListResultIterator) Next() error {
iter.i++
if iter.i < len(iter.page.Values()) {
return nil
}
err := iter.page.Next()
if err != nil {
iter.i--
return err
}
iter.i = 0
return nil
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ConsumerGroupListResultIterator) 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 ConsumerGroupListResultIterator) Response() ConsumerGroupListResult {
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 ConsumerGroupListResultIterator) Value() ConsumerGroup {
if !iter.page.NotDone() {
return ConsumerGroup{}
}
return iter.page.Values()[iter.i]
}
// IsEmpty returns true if the ListResult contains no values.
func (cglr ConsumerGroupListResult) IsEmpty() bool {
return cglr.Value == nil || len(*cglr.Value) == 0
}
// consumerGroupListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (cglr ConsumerGroupListResult) consumerGroupListResultPreparer() (*http.Request, error) {
if cglr.NextLink == nil || len(to.String(cglr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(cglr.NextLink)))
}
// ConsumerGroupListResultPage contains a page of ConsumerGroup values.
type ConsumerGroupListResultPage struct {
fn func(ConsumerGroupListResult) (ConsumerGroupListResult, error)
cglr ConsumerGroupListResult
}
// 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.
func (page *ConsumerGroupListResultPage) Next() error {
next, err := page.fn(page.cglr)
if err != nil {
return err
}
page.cglr = next
return nil
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ConsumerGroupListResultPage) NotDone() bool {
return !page.cglr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ConsumerGroupListResultPage) Response() ConsumerGroupListResult {
return page.cglr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ConsumerGroupListResultPage) Values() []ConsumerGroup {
if page.cglr.IsEmpty() {
return nil
}
return *page.cglr.Value
}
// ConsumerGroupProperties single item in List or Get Consumer group operation
type ConsumerGroupProperties struct {
// CreatedAt - Exact time the message was created.
CreatedAt *date.Time `json:"createdAt,omitempty"`
// UpdatedAt - The exact time the message was updated.
UpdatedAt *date.Time `json:"updatedAt,omitempty"`
// UserMetadata - Usermetadata is a placeholder to store user-defined string data with maximum length 1024. e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.
UserMetadata *string `json:"userMetadata,omitempty"`
}
// Destination capture storage details for capture description
type Destination struct {
// Name - Name for capture destination
Name *string `json:"name,omitempty"`
// DestinationProperties - Properties describing the storage account, blob container and acrchive anme format for capture destination
*DestinationProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for Destination.
func (d Destination) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if d.Name != nil {
objectMap["name"] = d.Name
}
if d.DestinationProperties != nil {
objectMap["properties"] = d.DestinationProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Destination struct.
func (d *Destination) 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
}
d.Name = &name
}
case "properties":
if v != nil {
var destinationProperties DestinationProperties
err = json.Unmarshal(*v, &destinationProperties)
if err != nil {
return err
}
d.DestinationProperties = &destinationProperties
}
}
}
return nil
}
// DestinationProperties properties describing the storage account, blob container and acrchive anme format for
// capture destination
type DestinationProperties struct {
// StorageAccountResourceID - Resource id of the storage account to be used to create the blobs
StorageAccountResourceID *string `json:"storageAccountResourceId,omitempty"`
// BlobContainer - Blob container Name
BlobContainer *string `json:"blobContainer,omitempty"`
// ArchiveNameFormat - Blob naming convention for archive, e.g. {Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}. Here all the parameters (Namespace,EventHub .. etc) are mandatory irrespective of order
ArchiveNameFormat *string `json:"archiveNameFormat,omitempty"`
}
// EHNamespace single Namespace item in List or Get Operation
type EHNamespace struct {
autorest.Response `json:"-"`
// Sku - Properties of sku resource
Sku *Sku `json:"sku,omitempty"`
// EHNamespaceProperties - Namespace properties supplied for create namespace operation.
*EHNamespaceProperties `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 EHNamespace.
func (en EHNamespace) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if en.Sku != nil {
objectMap["sku"] = en.Sku
}
if en.EHNamespaceProperties != nil {
objectMap["properties"] = en.EHNamespaceProperties
}
if en.Location != nil {
objectMap["location"] = en.Location
}
if en.Tags != nil {
objectMap["tags"] = en.Tags
}
if en.ID != nil {
objectMap["id"] = en.ID
}
if en.Name != nil {
objectMap["name"] = en.Name
}
if en.Type != nil {
objectMap["type"] = en.Type
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EHNamespace struct.
func (en *EHNamespace) 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 "sku":
if v != nil {
var sku Sku
err = json.Unmarshal(*v, &sku)
if err != nil {
return err
}
en.Sku = &sku
}
case "properties":
if v != nil {
var eHNamespaceProperties EHNamespaceProperties
err = json.Unmarshal(*v, &eHNamespaceProperties)
if err != nil {
return err
}
en.EHNamespaceProperties = &eHNamespaceProperties
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
en.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
en.Tags = tags
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
en.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
en.Name = &name
}
case "type":
if v != nil {
var typeVar string