-
Notifications
You must be signed in to change notification settings - Fork 844
/
models.go
2206 lines (2019 loc) · 82.8 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 timeseriesinsights
// 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/preview/timeseriesinsights/mgmt/2017-02-28-preview/timeseriesinsights"
// AccessPolicyRole enumerates the values for access policy role.
type AccessPolicyRole string
const (
// Contributor ...
Contributor AccessPolicyRole = "Contributor"
// Reader ...
Reader AccessPolicyRole = "Reader"
)
// PossibleAccessPolicyRoleValues returns an array of possible values for the AccessPolicyRole const type.
func PossibleAccessPolicyRoleValues() []AccessPolicyRole {
return []AccessPolicyRole{Contributor, Reader}
}
// Kind enumerates the values for kind.
type Kind string
const (
// KindEventSourceCreateOrUpdateParameters ...
KindEventSourceCreateOrUpdateParameters Kind = "EventSourceCreateOrUpdateParameters"
// KindMicrosoftEventHub ...
KindMicrosoftEventHub Kind = "Microsoft.EventHub"
// KindMicrosoftIoTHub ...
KindMicrosoftIoTHub Kind = "Microsoft.IoTHub"
)
// PossibleKindValues returns an array of possible values for the Kind const type.
func PossibleKindValues() []Kind {
return []Kind{KindEventSourceCreateOrUpdateParameters, KindMicrosoftEventHub, KindMicrosoftIoTHub}
}
// KindBasicEventSourceResource enumerates the values for kind basic event source resource.
type KindBasicEventSourceResource string
const (
// KindBasicEventSourceResourceKindEventSourceResource ...
KindBasicEventSourceResourceKindEventSourceResource KindBasicEventSourceResource = "EventSourceResource"
// KindBasicEventSourceResourceKindMicrosoftEventHub ...
KindBasicEventSourceResourceKindMicrosoftEventHub KindBasicEventSourceResource = "Microsoft.EventHub"
// KindBasicEventSourceResourceKindMicrosoftIotHub ...
KindBasicEventSourceResourceKindMicrosoftIotHub KindBasicEventSourceResource = "Microsoft.IotHub"
)
// PossibleKindBasicEventSourceResourceValues returns an array of possible values for the KindBasicEventSourceResource const type.
func PossibleKindBasicEventSourceResourceValues() []KindBasicEventSourceResource {
return []KindBasicEventSourceResource{KindBasicEventSourceResourceKindEventSourceResource, KindBasicEventSourceResourceKindMicrosoftEventHub, KindBasicEventSourceResourceKindMicrosoftIotHub}
}
// LocalTimestampFormat enumerates the values for local timestamp format.
type LocalTimestampFormat string
const (
// Embedded ...
Embedded LocalTimestampFormat = "Embedded"
// Iana ...
Iana LocalTimestampFormat = "Iana"
// TimeSpan ...
TimeSpan LocalTimestampFormat = "TimeSpan"
)
// PossibleLocalTimestampFormatValues returns an array of possible values for the LocalTimestampFormat const type.
func PossibleLocalTimestampFormatValues() []LocalTimestampFormat {
return []LocalTimestampFormat{Embedded, Iana, TimeSpan}
}
// ProvisioningState enumerates the values for provisioning state.
type ProvisioningState string
const (
// Accepted ...
Accepted ProvisioningState = "Accepted"
// Creating ...
Creating ProvisioningState = "Creating"
// Deleting ...
Deleting ProvisioningState = "Deleting"
// Failed ...
Failed ProvisioningState = "Failed"
// Succeeded ...
Succeeded ProvisioningState = "Succeeded"
// Updating ...
Updating ProvisioningState = "Updating"
)
// PossibleProvisioningStateValues returns an array of possible values for the ProvisioningState const type.
func PossibleProvisioningStateValues() []ProvisioningState {
return []ProvisioningState{Accepted, Creating, Deleting, Failed, Succeeded, Updating}
}
// ReferenceDataKeyPropertyType enumerates the values for reference data key property type.
type ReferenceDataKeyPropertyType string
const (
// Bool ...
Bool ReferenceDataKeyPropertyType = "Bool"
// DateTime ...
DateTime ReferenceDataKeyPropertyType = "DateTime"
// Double ...
Double ReferenceDataKeyPropertyType = "Double"
// String ...
String ReferenceDataKeyPropertyType = "String"
)
// PossibleReferenceDataKeyPropertyTypeValues returns an array of possible values for the ReferenceDataKeyPropertyType const type.
func PossibleReferenceDataKeyPropertyTypeValues() []ReferenceDataKeyPropertyType {
return []ReferenceDataKeyPropertyType{Bool, DateTime, Double, String}
}
// SkuName enumerates the values for sku name.
type SkuName string
const (
// S1 ...
S1 SkuName = "S1"
// S2 ...
S2 SkuName = "S2"
)
// PossibleSkuNameValues returns an array of possible values for the SkuName const type.
func PossibleSkuNameValues() []SkuName {
return []SkuName{S1, S2}
}
// StorageLimitExceededBehavior enumerates the values for storage limit exceeded behavior.
type StorageLimitExceededBehavior string
const (
// PauseIngress ...
PauseIngress StorageLimitExceededBehavior = "PauseIngress"
// PurgeOldData ...
PurgeOldData StorageLimitExceededBehavior = "PurgeOldData"
)
// PossibleStorageLimitExceededBehaviorValues returns an array of possible values for the StorageLimitExceededBehavior const type.
func PossibleStorageLimitExceededBehaviorValues() []StorageLimitExceededBehavior {
return []StorageLimitExceededBehavior{PauseIngress, PurgeOldData}
}
// AccessPolicyCreateOrUpdateParameters ...
type AccessPolicyCreateOrUpdateParameters struct {
*AccessPolicyResourceProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for AccessPolicyCreateOrUpdateParameters.
func (apcoup AccessPolicyCreateOrUpdateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if apcoup.AccessPolicyResourceProperties != nil {
objectMap["properties"] = apcoup.AccessPolicyResourceProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AccessPolicyCreateOrUpdateParameters struct.
func (apcoup *AccessPolicyCreateOrUpdateParameters) 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 accessPolicyResourceProperties AccessPolicyResourceProperties
err = json.Unmarshal(*v, &accessPolicyResourceProperties)
if err != nil {
return err
}
apcoup.AccessPolicyResourceProperties = &accessPolicyResourceProperties
}
}
}
return nil
}
// AccessPolicyListResponse the response of the List access policies operation.
type AccessPolicyListResponse struct {
autorest.Response `json:"-"`
// Value - Result of the List access policies operation.
Value *[]AccessPolicyResource `json:"value,omitempty"`
}
// AccessPolicyMutableProperties an object that represents a set of mutable access policy resource
// properties.
type AccessPolicyMutableProperties struct {
// Description - An description of the access policy.
Description *string `json:"description,omitempty"`
// Roles - The list of roles the principal is assigned on the environment.
Roles *[]AccessPolicyRole `json:"roles,omitempty"`
}
// AccessPolicyResource an access policy is used to grant users and applications access to the environment.
// Roles are assigned to service principals in Azure Active Directory. These roles define the actions the
// principal can perform through the Time Series Insights data plane APIs.
type AccessPolicyResource struct {
autorest.Response `json:"-"`
*AccessPolicyResourceProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Resource Id
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for AccessPolicyResource.
func (apr AccessPolicyResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if apr.AccessPolicyResourceProperties != nil {
objectMap["properties"] = apr.AccessPolicyResourceProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AccessPolicyResource struct.
func (apr *AccessPolicyResource) 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 accessPolicyResourceProperties AccessPolicyResourceProperties
err = json.Unmarshal(*v, &accessPolicyResourceProperties)
if err != nil {
return err
}
apr.AccessPolicyResourceProperties = &accessPolicyResourceProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
apr.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
apr.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
apr.Type = &typeVar
}
}
}
return nil
}
// AccessPolicyResourceProperties ...
type AccessPolicyResourceProperties struct {
// PrincipalObjectID - The objectId of the principal in Azure Active Directory.
PrincipalObjectID *string `json:"principalObjectId,omitempty"`
// Description - An description of the access policy.
Description *string `json:"description,omitempty"`
// Roles - The list of roles the principal is assigned on the environment.
Roles *[]AccessPolicyRole `json:"roles,omitempty"`
}
// AccessPolicyUpdateParameters ...
type AccessPolicyUpdateParameters struct {
*AccessPolicyMutableProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for AccessPolicyUpdateParameters.
func (apup AccessPolicyUpdateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if apup.AccessPolicyMutableProperties != nil {
objectMap["properties"] = apup.AccessPolicyMutableProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for AccessPolicyUpdateParameters struct.
func (apup *AccessPolicyUpdateParameters) 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 accessPolicyMutableProperties AccessPolicyMutableProperties
err = json.Unmarshal(*v, &accessPolicyMutableProperties)
if err != nil {
return err
}
apup.AccessPolicyMutableProperties = &accessPolicyMutableProperties
}
}
}
return nil
}
// AzureEventSourceProperties properties of an event source that reads events from an event broker in
// Azure.
type AzureEventSourceProperties struct {
// EventSourceResourceID - The resource id of the event source in Azure Resource Manager.
EventSourceResourceID *string `json:"eventSourceResourceId,omitempty"`
// TimestampPropertyName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
TimestampPropertyName *string `json:"timestampPropertyName,omitempty"`
// ProvisioningState - READ-ONLY; Provisioning state of the resource. Possible values include: 'Accepted', 'Creating', 'Updating', 'Succeeded', 'Failed', 'Deleting'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// CreationTime - READ-ONLY; The time the resource was created.
CreationTime *date.Time `json:"creationTime,omitempty"`
}
// CloudError contains information about an API error.
type CloudError struct {
Error *CloudErrorBody `json:"error,omitempty"`
}
// CloudErrorBody describes a particular API error with an error code and a message.
type CloudErrorBody struct {
// Code - An error code that describes the error condition more precisely than an HTTP status code. Can be used to programmatically handle specific error cases.
Code *string `json:"code,omitempty"`
// Message - A message that describes the error in detail and provides debugging information.
Message *string `json:"message,omitempty"`
// Target - The target of the particular error (for example, the name of the property in error).
Target *string `json:"target,omitempty"`
// Details - Contains nested errors that are related to this error.
Details *[]CloudErrorBody `json:"details,omitempty"`
}
// CreateOrUpdateTrackedResourceProperties properties required to create any resource tracked by Azure
// Resource Manager.
type CreateOrUpdateTrackedResourceProperties struct {
// Location - The location of the resource.
Location *string `json:"location,omitempty"`
// Tags - Key-value pairs of additional properties for the resource.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for CreateOrUpdateTrackedResourceProperties.
func (coutrp CreateOrUpdateTrackedResourceProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if coutrp.Location != nil {
objectMap["location"] = coutrp.Location
}
if coutrp.Tags != nil {
objectMap["tags"] = coutrp.Tags
}
return json.Marshal(objectMap)
}
// EnvironmentCreateOrUpdateParameters parameters supplied to the CreateOrUpdate Environment operation.
type EnvironmentCreateOrUpdateParameters struct {
Sku *Sku `json:"sku,omitempty"`
*EnvironmentCreationProperties `json:"properties,omitempty"`
// Location - The location of the resource.
Location *string `json:"location,omitempty"`
// Tags - Key-value pairs of additional properties for the resource.
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for EnvironmentCreateOrUpdateParameters.
func (ecoup EnvironmentCreateOrUpdateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if ecoup.Sku != nil {
objectMap["sku"] = ecoup.Sku
}
if ecoup.EnvironmentCreationProperties != nil {
objectMap["properties"] = ecoup.EnvironmentCreationProperties
}
if ecoup.Location != nil {
objectMap["location"] = ecoup.Location
}
if ecoup.Tags != nil {
objectMap["tags"] = ecoup.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EnvironmentCreateOrUpdateParameters struct.
func (ecoup *EnvironmentCreateOrUpdateParameters) 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
}
ecoup.Sku = &sku
}
case "properties":
if v != nil {
var environmentCreationProperties EnvironmentCreationProperties
err = json.Unmarshal(*v, &environmentCreationProperties)
if err != nil {
return err
}
ecoup.EnvironmentCreationProperties = &environmentCreationProperties
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ecoup.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ecoup.Tags = tags
}
}
}
return nil
}
// EnvironmentCreationProperties properties used to create an environment.
type EnvironmentCreationProperties struct {
// DataRetentionTime - ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
DataRetentionTime *string `json:"dataRetentionTime,omitempty"`
// StorageLimitExceededBehavior - The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData. Possible values include: 'PurgeOldData', 'PauseIngress'
StorageLimitExceededBehavior StorageLimitExceededBehavior `json:"storageLimitExceededBehavior,omitempty"`
}
// EnvironmentListResponse the response of the List Environments operation.
type EnvironmentListResponse struct {
autorest.Response `json:"-"`
// Value - Result of the List Environments operation.
Value *[]EnvironmentResource `json:"value,omitempty"`
}
// EnvironmentMutableProperties an object that represents a set of mutable environment resource properties.
type EnvironmentMutableProperties struct {
// DataRetentionTime - ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
DataRetentionTime *string `json:"dataRetentionTime,omitempty"`
}
// EnvironmentResource an environment is a set of time-series data available for query, and is the top
// level Azure Time Series Insights resource.
type EnvironmentResource struct {
autorest.Response `json:"-"`
Sku *Sku `json:"sku,omitempty"`
*EnvironmentResourceProperties `json:"properties,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
// ID - READ-ONLY; Resource Id
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
}
// MarshalJSON is the custom marshaler for EnvironmentResource.
func (er EnvironmentResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if er.Sku != nil {
objectMap["sku"] = er.Sku
}
if er.EnvironmentResourceProperties != nil {
objectMap["properties"] = er.EnvironmentResourceProperties
}
if er.Location != nil {
objectMap["location"] = er.Location
}
if er.Tags != nil {
objectMap["tags"] = er.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EnvironmentResource struct.
func (er *EnvironmentResource) 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
}
er.Sku = &sku
}
case "properties":
if v != nil {
var environmentResourceProperties EnvironmentResourceProperties
err = json.Unmarshal(*v, &environmentResourceProperties)
if err != nil {
return err
}
er.EnvironmentResourceProperties = &environmentResourceProperties
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
er.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
er.Tags = tags
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
er.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
er.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
er.Type = &typeVar
}
}
}
return nil
}
// EnvironmentResourceProperties properties of the environment.
type EnvironmentResourceProperties struct {
// DataRetentionTime - ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
DataRetentionTime *string `json:"dataRetentionTime,omitempty"`
// StorageLimitExceededBehavior - The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData. Possible values include: 'PurgeOldData', 'PauseIngress'
StorageLimitExceededBehavior StorageLimitExceededBehavior `json:"storageLimitExceededBehavior,omitempty"`
// ProvisioningState - READ-ONLY; Provisioning state of the resource. Possible values include: 'Accepted', 'Creating', 'Updating', 'Succeeded', 'Failed', 'Deleting'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// CreationTime - READ-ONLY; The time the resource was created.
CreationTime *date.Time `json:"creationTime,omitempty"`
// DataAccessID - READ-ONLY; An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
DataAccessID *uuid.UUID `json:"dataAccessId,omitempty"`
// DataAccessFqdn - READ-ONLY; The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
DataAccessFqdn *string `json:"dataAccessFqdn,omitempty"`
}
// EnvironmentsCreateOrUpdateFuture an abstraction for monitoring and retrieving the results of a
// long-running operation.
type EnvironmentsCreateOrUpdateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EnvironmentsCreateOrUpdateFuture) Result(client EnvironmentsClient) (er EnvironmentResource, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "timeseriesinsights.EnvironmentsCreateOrUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("timeseriesinsights.EnvironmentsCreateOrUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if er.Response.Response, err = future.GetResult(sender); err == nil && er.Response.Response.StatusCode != http.StatusNoContent {
er, err = client.CreateOrUpdateResponder(er.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "timeseriesinsights.EnvironmentsCreateOrUpdateFuture", "Result", er.Response.Response, "Failure responding to request")
}
}
return
}
// EnvironmentsUpdateFuture an abstraction for monitoring and retrieving the results of a long-running
// operation.
type EnvironmentsUpdateFuture struct {
azure.Future
}
// Result returns the result of the asynchronous operation.
// If the operation has not completed it will return an error.
func (future *EnvironmentsUpdateFuture) Result(client EnvironmentsClient) (er EnvironmentResource, err error) {
var done bool
done, err = future.DoneWithContext(context.Background(), client)
if err != nil {
err = autorest.NewErrorWithError(err, "timeseriesinsights.EnvironmentsUpdateFuture", "Result", future.Response(), "Polling failure")
return
}
if !done {
err = azure.NewAsyncOpIncompleteError("timeseriesinsights.EnvironmentsUpdateFuture")
return
}
sender := autorest.DecorateSender(client, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...))
if er.Response.Response, err = future.GetResult(sender); err == nil && er.Response.Response.StatusCode != http.StatusNoContent {
er, err = client.UpdateResponder(er.Response.Response)
if err != nil {
err = autorest.NewErrorWithError(err, "timeseriesinsights.EnvironmentsUpdateFuture", "Result", er.Response.Response, "Failure responding to request")
}
}
return
}
// EnvironmentUpdateParameters parameters supplied to the Update Environment operation.
type EnvironmentUpdateParameters struct {
// Sku - The sku of the environment.
Sku *Sku `json:"sku,omitempty"`
// Tags - Key-value pairs of additional properties for the environment.
Tags map[string]*string `json:"tags"`
// EnvironmentMutableProperties - Properties of the environment.
*EnvironmentMutableProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for EnvironmentUpdateParameters.
func (eup EnvironmentUpdateParameters) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if eup.Sku != nil {
objectMap["sku"] = eup.Sku
}
if eup.Tags != nil {
objectMap["tags"] = eup.Tags
}
if eup.EnvironmentMutableProperties != nil {
objectMap["properties"] = eup.EnvironmentMutableProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for EnvironmentUpdateParameters struct.
func (eup *EnvironmentUpdateParameters) 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
}
eup.Sku = &sku
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
eup.Tags = tags
}
case "properties":
if v != nil {
var environmentMutableProperties EnvironmentMutableProperties
err = json.Unmarshal(*v, &environmentMutableProperties)
if err != nil {
return err
}
eup.EnvironmentMutableProperties = &environmentMutableProperties
}
}
}
return nil
}
// EventHubEventSourceCommonProperties properties of the EventHub event source.
type EventHubEventSourceCommonProperties struct {
// ServiceBusNamespace - The name of the service bus that contains the event hub.
ServiceBusNamespace *string `json:"serviceBusNamespace,omitempty"`
// EventHubName - The name of the event hub.
EventHubName *string `json:"eventHubName,omitempty"`
// ConsumerGroupName - The name of the event hub's consumer group that holds the partitions from which events will be read.
ConsumerGroupName *string `json:"consumerGroupName,omitempty"`
// KeyName - The name of the SAS key that grants the Time Series Insights service access to the event hub. The shared access policies for this key must grant 'Listen' permissions to the event hub.
KeyName *string `json:"keyName,omitempty"`
// EventSourceResourceID - The resource id of the event source in Azure Resource Manager.
EventSourceResourceID *string `json:"eventSourceResourceId,omitempty"`
// TimestampPropertyName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
TimestampPropertyName *string `json:"timestampPropertyName,omitempty"`
// ProvisioningState - READ-ONLY; Provisioning state of the resource. Possible values include: 'Accepted', 'Creating', 'Updating', 'Succeeded', 'Failed', 'Deleting'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// CreationTime - READ-ONLY; The time the resource was created.
CreationTime *date.Time `json:"creationTime,omitempty"`
}
// EventHubEventSourceCreateOrUpdateParameters parameters supplied to the Create or Update Event Source
// operation for an EventHub event source.
type EventHubEventSourceCreateOrUpdateParameters struct {
*EventHubEventSourceCreationProperties `json:"properties,omitempty"`
// Location - The location of the resource.
Location *string `json:"location,omitempty"`
// Tags - Key-value pairs of additional properties for the resource.
Tags map[string]*string `json:"tags"`
// Kind - Possible values include: 'KindEventSourceCreateOrUpdateParameters', 'KindMicrosoftEventHub', 'KindMicrosoftIoTHub'
Kind Kind `json:"kind,omitempty"`
}
// MarshalJSON is the custom marshaler for EventHubEventSourceCreateOrUpdateParameters.
func (ehescoup EventHubEventSourceCreateOrUpdateParameters) MarshalJSON() ([]byte, error) {
ehescoup.Kind = KindMicrosoftEventHub
objectMap := make(map[string]interface{})
if ehescoup.EventHubEventSourceCreationProperties != nil {
objectMap["properties"] = ehescoup.EventHubEventSourceCreationProperties
}
if ehescoup.Kind != "" {
objectMap["kind"] = ehescoup.Kind
}
if ehescoup.Location != nil {
objectMap["location"] = ehescoup.Location
}
if ehescoup.Tags != nil {
objectMap["tags"] = ehescoup.Tags
}
return json.Marshal(objectMap)
}
// AsEventHubEventSourceCreateOrUpdateParameters is the BasicEventSourceCreateOrUpdateParameters implementation for EventHubEventSourceCreateOrUpdateParameters.
func (ehescoup EventHubEventSourceCreateOrUpdateParameters) AsEventHubEventSourceCreateOrUpdateParameters() (*EventHubEventSourceCreateOrUpdateParameters, bool) {
return &ehescoup, true
}
// AsIoTHubEventSourceCreateOrUpdateParameters is the BasicEventSourceCreateOrUpdateParameters implementation for EventHubEventSourceCreateOrUpdateParameters.
func (ehescoup EventHubEventSourceCreateOrUpdateParameters) AsIoTHubEventSourceCreateOrUpdateParameters() (*IoTHubEventSourceCreateOrUpdateParameters, bool) {
return nil, false
}
// AsEventSourceCreateOrUpdateParameters is the BasicEventSourceCreateOrUpdateParameters implementation for EventHubEventSourceCreateOrUpdateParameters.
func (ehescoup EventHubEventSourceCreateOrUpdateParameters) AsEventSourceCreateOrUpdateParameters() (*EventSourceCreateOrUpdateParameters, bool) {
return nil, false
}
// AsBasicEventSourceCreateOrUpdateParameters is the BasicEventSourceCreateOrUpdateParameters implementation for EventHubEventSourceCreateOrUpdateParameters.
func (ehescoup EventHubEventSourceCreateOrUpdateParameters) AsBasicEventSourceCreateOrUpdateParameters() (BasicEventSourceCreateOrUpdateParameters, bool) {
return &ehescoup, true
}
// UnmarshalJSON is the custom unmarshaler for EventHubEventSourceCreateOrUpdateParameters struct.
func (ehescoup *EventHubEventSourceCreateOrUpdateParameters) 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 eventHubEventSourceCreationProperties EventHubEventSourceCreationProperties
err = json.Unmarshal(*v, &eventHubEventSourceCreationProperties)
if err != nil {
return err
}
ehescoup.EventHubEventSourceCreationProperties = &eventHubEventSourceCreationProperties
}
case "kind":
if v != nil {
var kind Kind
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
ehescoup.Kind = kind
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ehescoup.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
ehescoup.Tags = tags
}
}
}
return nil
}
// EventHubEventSourceCreationProperties properties of the EventHub event source that are required on
// create or update requests.
type EventHubEventSourceCreationProperties struct {
// SharedAccessKey - The value of the shared access key that grants the Time Series Insights service read access to the event hub. This property is not shown in event source responses.
SharedAccessKey *string `json:"sharedAccessKey,omitempty"`
// ServiceBusNamespace - The name of the service bus that contains the event hub.
ServiceBusNamespace *string `json:"serviceBusNamespace,omitempty"`
// EventHubName - The name of the event hub.
EventHubName *string `json:"eventHubName,omitempty"`
// ConsumerGroupName - The name of the event hub's consumer group that holds the partitions from which events will be read.
ConsumerGroupName *string `json:"consumerGroupName,omitempty"`
// KeyName - The name of the SAS key that grants the Time Series Insights service access to the event hub. The shared access policies for this key must grant 'Listen' permissions to the event hub.
KeyName *string `json:"keyName,omitempty"`
// EventSourceResourceID - The resource id of the event source in Azure Resource Manager.
EventSourceResourceID *string `json:"eventSourceResourceId,omitempty"`
// TimestampPropertyName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
TimestampPropertyName *string `json:"timestampPropertyName,omitempty"`
// ProvisioningState - READ-ONLY; Provisioning state of the resource. Possible values include: 'Accepted', 'Creating', 'Updating', 'Succeeded', 'Failed', 'Deleting'
ProvisioningState ProvisioningState `json:"provisioningState,omitempty"`
// CreationTime - READ-ONLY; The time the resource was created.
CreationTime *date.Time `json:"creationTime,omitempty"`
}
// EventHubEventSourceMutableProperties an object that represents a set of mutable EventHub event source
// resource properties.
type EventHubEventSourceMutableProperties struct {
// SharedAccessKey - The value of the shared access key that grants the Time Series Insights service read access to the event hub. This property is not shown in event source responses.
SharedAccessKey *string `json:"sharedAccessKey,omitempty"`
// TimestampPropertyName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
TimestampPropertyName *string `json:"timestampPropertyName,omitempty"`
LocalTimestamp *LocalTimestamp `json:"localTimestamp,omitempty"`
}
// EventHubEventSourceResource an event source that receives its data from an Azure EventHub.
type EventHubEventSourceResource struct {
*EventHubEventSourceResourceProperties `json:"properties,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
// ID - READ-ONLY; Resource Id
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Resource type
Type *string `json:"type,omitempty"`
// Kind - Possible values include: 'KindBasicEventSourceResourceKindEventSourceResource', 'KindBasicEventSourceResourceKindMicrosoftEventHub', 'KindBasicEventSourceResourceKindMicrosoftIotHub'
Kind KindBasicEventSourceResource `json:"kind,omitempty"`
}
// MarshalJSON is the custom marshaler for EventHubEventSourceResource.
func (ehesr EventHubEventSourceResource) MarshalJSON() ([]byte, error) {
ehesr.Kind = KindBasicEventSourceResourceKindMicrosoftEventHub
objectMap := make(map[string]interface{})
if ehesr.EventHubEventSourceResourceProperties != nil {
objectMap["properties"] = ehesr.EventHubEventSourceResourceProperties
}
if ehesr.Kind != "" {
objectMap["kind"] = ehesr.Kind
}
if ehesr.Location != nil {
objectMap["location"] = ehesr.Location
}
if ehesr.Tags != nil {
objectMap["tags"] = ehesr.Tags
}
return json.Marshal(objectMap)
}
// AsEventHubEventSourceResource is the BasicEventSourceResource implementation for EventHubEventSourceResource.
func (ehesr EventHubEventSourceResource) AsEventHubEventSourceResource() (*EventHubEventSourceResource, bool) {
return &ehesr, true
}
// AsIoTHubEventSourceResource is the BasicEventSourceResource implementation for EventHubEventSourceResource.
func (ehesr EventHubEventSourceResource) AsIoTHubEventSourceResource() (*IoTHubEventSourceResource, bool) {
return nil, false
}
// AsEventSourceResource is the BasicEventSourceResource implementation for EventHubEventSourceResource.
func (ehesr EventHubEventSourceResource) AsEventSourceResource() (*EventSourceResource, bool) {
return nil, false
}
// AsBasicEventSourceResource is the BasicEventSourceResource implementation for EventHubEventSourceResource.
func (ehesr EventHubEventSourceResource) AsBasicEventSourceResource() (BasicEventSourceResource, bool) {
return &ehesr, true
}
// UnmarshalJSON is the custom unmarshaler for EventHubEventSourceResource struct.
func (ehesr *EventHubEventSourceResource) 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 eventHubEventSourceResourceProperties EventHubEventSourceResourceProperties
err = json.Unmarshal(*v, &eventHubEventSourceResourceProperties)
if err != nil {
return err
}
ehesr.EventHubEventSourceResourceProperties = &eventHubEventSourceResourceProperties
}
case "kind":
if v != nil {
var kind KindBasicEventSourceResource
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
ehesr.Kind = kind
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
ehesr.Location = &location