forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
1801 lines (1638 loc) · 71.2 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 insights
// 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/date"
"github.com/Azure/go-autorest/autorest/to"
"github.com/Azure/go-autorest/tracing"
"net/http"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/appinsights/mgmt/2015-05-01/insights"
// ApplicationType enumerates the values for application type.
type ApplicationType string
const (
// Other ...
Other ApplicationType = "other"
// Web ...
Web ApplicationType = "web"
)
// PossibleApplicationTypeValues returns an array of possible values for the ApplicationType const type.
func PossibleApplicationTypeValues() []ApplicationType {
return []ApplicationType{Other, Web}
}
// CategoryType enumerates the values for category type.
type CategoryType string
const (
// CategoryTypePerformance ...
CategoryTypePerformance CategoryType = "performance"
// CategoryTypeRetention ...
CategoryTypeRetention CategoryType = "retention"
// CategoryTypeTSG ...
CategoryTypeTSG CategoryType = "TSG"
// CategoryTypeWorkbook ...
CategoryTypeWorkbook CategoryType = "workbook"
)
// PossibleCategoryTypeValues returns an array of possible values for the CategoryType const type.
func PossibleCategoryTypeValues() []CategoryType {
return []CategoryType{CategoryTypePerformance, CategoryTypeRetention, CategoryTypeTSG, CategoryTypeWorkbook}
}
// FavoriteSourceType enumerates the values for favorite source type.
type FavoriteSourceType string
const (
// Events ...
Events FavoriteSourceType = "events"
// Funnel ...
Funnel FavoriteSourceType = "funnel"
// Impact ...
Impact FavoriteSourceType = "impact"
// Notebook ...
Notebook FavoriteSourceType = "notebook"
// Retention ...
Retention FavoriteSourceType = "retention"
// Segmentation ...
Segmentation FavoriteSourceType = "segmentation"
// Sessions ...
Sessions FavoriteSourceType = "sessions"
// Userflows ...
Userflows FavoriteSourceType = "userflows"
)
// PossibleFavoriteSourceTypeValues returns an array of possible values for the FavoriteSourceType const type.
func PossibleFavoriteSourceTypeValues() []FavoriteSourceType {
return []FavoriteSourceType{Events, Funnel, Impact, Notebook, Retention, Segmentation, Sessions, Userflows}
}
// FavoriteType enumerates the values for favorite type.
type FavoriteType string
const (
// Shared ...
Shared FavoriteType = "shared"
// User ...
User FavoriteType = "user"
)
// PossibleFavoriteTypeValues returns an array of possible values for the FavoriteType const type.
func PossibleFavoriteTypeValues() []FavoriteType {
return []FavoriteType{Shared, User}
}
// FlowType enumerates the values for flow type.
type FlowType string
const (
// Bluefield ...
Bluefield FlowType = "Bluefield"
)
// PossibleFlowTypeValues returns an array of possible values for the FlowType const type.
func PossibleFlowTypeValues() []FlowType {
return []FlowType{Bluefield}
}
// ItemScope enumerates the values for item scope.
type ItemScope string
const (
// ItemScopeShared ...
ItemScopeShared ItemScope = "shared"
// ItemScopeUser ...
ItemScopeUser ItemScope = "user"
)
// PossibleItemScopeValues returns an array of possible values for the ItemScope const type.
func PossibleItemScopeValues() []ItemScope {
return []ItemScope{ItemScopeShared, ItemScopeUser}
}
// ItemScopePath enumerates the values for item scope path.
type ItemScopePath string
const (
// AnalyticsItems ...
AnalyticsItems ItemScopePath = "analyticsItems"
// MyanalyticsItems ...
MyanalyticsItems ItemScopePath = "myanalyticsItems"
)
// PossibleItemScopePathValues returns an array of possible values for the ItemScopePath const type.
func PossibleItemScopePathValues() []ItemScopePath {
return []ItemScopePath{AnalyticsItems, MyanalyticsItems}
}
// ItemType enumerates the values for item type.
type ItemType string
const (
// Folder ...
Folder ItemType = "folder"
// Function ...
Function ItemType = "function"
// Query ...
Query ItemType = "query"
// Recent ...
Recent ItemType = "recent"
)
// PossibleItemTypeValues returns an array of possible values for the ItemType const type.
func PossibleItemTypeValues() []ItemType {
return []ItemType{Folder, Function, Query, Recent}
}
// ItemTypeParameter enumerates the values for item type parameter.
type ItemTypeParameter string
const (
// ItemTypeParameterFolder ...
ItemTypeParameterFolder ItemTypeParameter = "folder"
// ItemTypeParameterFunction ...
ItemTypeParameterFunction ItemTypeParameter = "function"
// ItemTypeParameterNone ...
ItemTypeParameterNone ItemTypeParameter = "none"
// ItemTypeParameterQuery ...
ItemTypeParameterQuery ItemTypeParameter = "query"
// ItemTypeParameterRecent ...
ItemTypeParameterRecent ItemTypeParameter = "recent"
)
// PossibleItemTypeParameterValues returns an array of possible values for the ItemTypeParameter const type.
func PossibleItemTypeParameterValues() []ItemTypeParameter {
return []ItemTypeParameter{ItemTypeParameterFolder, ItemTypeParameterFunction, ItemTypeParameterNone, ItemTypeParameterQuery, ItemTypeParameterRecent}
}
// PurgeState enumerates the values for purge state.
type PurgeState string
const (
// Completed ...
Completed PurgeState = "completed"
// Pending ...
Pending PurgeState = "pending"
)
// PossiblePurgeStateValues returns an array of possible values for the PurgeState const type.
func PossiblePurgeStateValues() []PurgeState {
return []PurgeState{Completed, Pending}
}
// RequestSource enumerates the values for request source.
type RequestSource string
const (
// Rest ...
Rest RequestSource = "rest"
)
// PossibleRequestSourceValues returns an array of possible values for the RequestSource const type.
func PossibleRequestSourceValues() []RequestSource {
return []RequestSource{Rest}
}
// SharedTypeKind enumerates the values for shared type kind.
type SharedTypeKind string
const (
// SharedTypeKindShared ...
SharedTypeKindShared SharedTypeKind = "shared"
// SharedTypeKindUser ...
SharedTypeKindUser SharedTypeKind = "user"
)
// PossibleSharedTypeKindValues returns an array of possible values for the SharedTypeKind const type.
func PossibleSharedTypeKindValues() []SharedTypeKind {
return []SharedTypeKind{SharedTypeKindShared, SharedTypeKindUser}
}
// WebTestKind enumerates the values for web test kind.
type WebTestKind string
const (
// Multistep ...
Multistep WebTestKind = "multistep"
// Ping ...
Ping WebTestKind = "ping"
)
// PossibleWebTestKindValues returns an array of possible values for the WebTestKind const type.
func PossibleWebTestKindValues() []WebTestKind {
return []WebTestKind{Multistep, Ping}
}
// Annotation annotation associated with an application insights resource.
type Annotation struct {
// AnnotationName - Name of annotation
AnnotationName *string `json:"AnnotationName,omitempty"`
// Category - Category of annotation, free form
Category *string `json:"Category,omitempty"`
// EventTime - Time when event occurred
EventTime *date.Time `json:"EventTime,omitempty"`
// ID - Unique Id for annotation
ID *string `json:"Id,omitempty"`
// Properties - Serialized JSON object for detailed properties
Properties *string `json:"Properties,omitempty"`
// RelatedAnnotation - Related parent annotation if any
RelatedAnnotation *string `json:"RelatedAnnotation,omitempty"`
}
// AnnotationError error associated with trying to create annotation with Id that already exist
type AnnotationError struct {
// Code - Error detail code and explanation
Code *string `json:"code,omitempty"`
// Message - Error message
Message *string `json:"message,omitempty"`
Innererror *InnerError `json:"innererror,omitempty"`
}
// AnnotationsListResult annotations list result.
type AnnotationsListResult struct {
autorest.Response `json:"-"`
// Value - READ-ONLY; An array of annotations.
Value *[]Annotation `json:"value,omitempty"`
}
// APIKeyRequest an Application Insights component API Key creation request definition.
type APIKeyRequest struct {
// Name - The name of the API Key.
Name *string `json:"name,omitempty"`
// LinkedReadProperties - The read access rights of this API Key.
LinkedReadProperties *[]string `json:"linkedReadProperties,omitempty"`
// LinkedWriteProperties - The write access rights of this API Key.
LinkedWriteProperties *[]string `json:"linkedWriteProperties,omitempty"`
}
// ApplicationInsightsComponent an Application Insights component definition.
type ApplicationInsightsComponent struct {
autorest.Response `json:"-"`
// Kind - The kind of application that this component refers to, used to customize UI. This value is a freeform string, values should typically be one of the following: web, ios, other, store, java, phone.
Kind *string `json:"kind,omitempty"`
// ApplicationInsightsComponentProperties - Properties that define an Application Insights component resource.
*ApplicationInsightsComponentProperties `json:"properties,omitempty"`
// ID - READ-ONLY; Azure resource Id
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Azure resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Azure resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ApplicationInsightsComponent.
func (aic ApplicationInsightsComponent) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if aic.Kind != nil {
objectMap["kind"] = aic.Kind
}
if aic.ApplicationInsightsComponentProperties != nil {
objectMap["properties"] = aic.ApplicationInsightsComponentProperties
}
if aic.Location != nil {
objectMap["location"] = aic.Location
}
if aic.Tags != nil {
objectMap["tags"] = aic.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for ApplicationInsightsComponent struct.
func (aic *ApplicationInsightsComponent) 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 "kind":
if v != nil {
var kind string
err = json.Unmarshal(*v, &kind)
if err != nil {
return err
}
aic.Kind = &kind
}
case "properties":
if v != nil {
var applicationInsightsComponentProperties ApplicationInsightsComponentProperties
err = json.Unmarshal(*v, &applicationInsightsComponentProperties)
if err != nil {
return err
}
aic.ApplicationInsightsComponentProperties = &applicationInsightsComponentProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
aic.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
aic.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
aic.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
aic.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
aic.Tags = tags
}
}
}
return nil
}
// ApplicationInsightsComponentAnalyticsItem properties that define an Analytics item that is associated to
// an Application Insights component.
type ApplicationInsightsComponentAnalyticsItem struct {
autorest.Response `json:"-"`
// ID - Internally assigned unique id of the item definition.
ID *string `json:"Id,omitempty"`
// Name - The user-defined name of the item.
Name *string `json:"Name,omitempty"`
// Content - The content of this item
Content *string `json:"Content,omitempty"`
// Version - READ-ONLY; This instance's version of the data model. This can change as new features are added.
Version *string `json:"Version,omitempty"`
// Scope - Enum indicating if this item definition is owned by a specific user or is shared between all users with access to the Application Insights component. Possible values include: 'ItemScopeShared', 'ItemScopeUser'
Scope ItemScope `json:"Scope,omitempty"`
// Type - Enum indicating the type of the Analytics item. Possible values include: 'Query', 'Function', 'Folder', 'Recent'
Type ItemType `json:"Type,omitempty"`
// TimeCreated - READ-ONLY; Date and time in UTC when this item was created.
TimeCreated *string `json:"TimeCreated,omitempty"`
// TimeModified - READ-ONLY; Date and time in UTC of the last modification that was made to this item.
TimeModified *string `json:"TimeModified,omitempty"`
Properties *ApplicationInsightsComponentAnalyticsItemProperties `json:"Properties,omitempty"`
}
// ApplicationInsightsComponentAnalyticsItemProperties a set of properties that can be defined in the
// context of a specific item type. Each type may have its own properties.
type ApplicationInsightsComponentAnalyticsItemProperties struct {
// FunctionAlias - A function alias, used when the type of the item is Function
FunctionAlias *string `json:"functionAlias,omitempty"`
}
// ApplicationInsightsComponentAPIKey properties that define an API key of an Application Insights
// Component.
type ApplicationInsightsComponentAPIKey struct {
autorest.Response `json:"-"`
// ID - READ-ONLY; The unique ID of the API key inside an Application Insights component. It is auto generated when the API key is created.
ID *string `json:"id,omitempty"`
// APIKey - READ-ONLY; The API key value. It will be only return once when the API Key was created.
APIKey *string `json:"apiKey,omitempty"`
// CreatedDate - The create date of this API key.
CreatedDate *string `json:"createdDate,omitempty"`
// Name - The name of the API key.
Name *string `json:"name,omitempty"`
// LinkedReadProperties - The read access rights of this API Key.
LinkedReadProperties *[]string `json:"linkedReadProperties,omitempty"`
// LinkedWriteProperties - The write access rights of this API Key.
LinkedWriteProperties *[]string `json:"linkedWriteProperties,omitempty"`
}
// ApplicationInsightsComponentAPIKeyListResult describes the list of API Keys of an Application Insights
// Component.
type ApplicationInsightsComponentAPIKeyListResult struct {
autorest.Response `json:"-"`
// Value - List of API Key definitions.
Value *[]ApplicationInsightsComponentAPIKey `json:"value,omitempty"`
}
// ApplicationInsightsComponentAvailableFeatures an Application Insights component available features.
type ApplicationInsightsComponentAvailableFeatures struct {
autorest.Response `json:"-"`
// Result - READ-ONLY; A list of Application Insights component feature.
Result *[]ApplicationInsightsComponentFeature `json:"Result,omitempty"`
}
// ApplicationInsightsComponentBillingFeatures an Application Insights component billing features
type ApplicationInsightsComponentBillingFeatures struct {
autorest.Response `json:"-"`
// DataVolumeCap - An Application Insights component daily data volume cap
DataVolumeCap *ApplicationInsightsComponentDataVolumeCap `json:"DataVolumeCap,omitempty"`
// CurrentBillingFeatures - Current enabled pricing plan. When the component is in the Enterprise plan, this will list both 'Basic' and 'Application Insights Enterprise'.
CurrentBillingFeatures *[]string `json:"CurrentBillingFeatures,omitempty"`
}
// ApplicationInsightsComponentDataVolumeCap an Application Insights component daily data volume cap
type ApplicationInsightsComponentDataVolumeCap struct {
// Cap - Daily data volume cap in GB.
Cap *float64 `json:"Cap,omitempty"`
// ResetTime - READ-ONLY; Daily data volume cap UTC reset hour.
ResetTime *int32 `json:"ResetTime,omitempty"`
// WarningThreshold - Reserved, not used for now.
WarningThreshold *int32 `json:"WarningThreshold,omitempty"`
// StopSendNotificationWhenHitThreshold - Reserved, not used for now.
StopSendNotificationWhenHitThreshold *bool `json:"StopSendNotificationWhenHitThreshold,omitempty"`
// StopSendNotificationWhenHitCap - Do not send a notification email when the daily data volume cap is met.
StopSendNotificationWhenHitCap *bool `json:"StopSendNotificationWhenHitCap,omitempty"`
// MaxHistoryCap - READ-ONLY; Maximum daily data volume cap that the user can set for this component.
MaxHistoryCap *float64 `json:"MaxHistoryCap,omitempty"`
}
// ApplicationInsightsComponentExportConfiguration properties that define a Continuous Export
// configuration.
type ApplicationInsightsComponentExportConfiguration struct {
autorest.Response `json:"-"`
// ExportID - READ-ONLY; The unique ID of the export configuration inside an Application Insights component. It is auto generated when the Continuous Export configuration is created.
ExportID *string `json:"ExportId,omitempty"`
// InstrumentationKey - READ-ONLY; The instrumentation key of the Application Insights component.
InstrumentationKey *string `json:"InstrumentationKey,omitempty"`
// RecordTypes - This comma separated list of document types that will be exported. The possible values include 'Requests', 'Event', 'Exceptions', 'Metrics', 'PageViews', 'PageViewPerformance', 'Rdd', 'PerformanceCounters', 'Availability', 'Messages'.
RecordTypes *string `json:"RecordTypes,omitempty"`
// ApplicationName - READ-ONLY; The name of the Application Insights component.
ApplicationName *string `json:"ApplicationName,omitempty"`
// SubscriptionID - READ-ONLY; The subscription of the Application Insights component.
SubscriptionID *string `json:"SubscriptionId,omitempty"`
// ResourceGroup - READ-ONLY; The resource group of the Application Insights component.
ResourceGroup *string `json:"ResourceGroup,omitempty"`
// DestinationStorageSubscriptionID - READ-ONLY; The destination storage account subscription ID.
DestinationStorageSubscriptionID *string `json:"DestinationStorageSubscriptionId,omitempty"`
// DestinationStorageLocationID - READ-ONLY; The destination account location ID.
DestinationStorageLocationID *string `json:"DestinationStorageLocationId,omitempty"`
// DestinationAccountID - READ-ONLY; The name of destination account.
DestinationAccountID *string `json:"DestinationAccountId,omitempty"`
// DestinationType - READ-ONLY; The destination type.
DestinationType *string `json:"DestinationType,omitempty"`
// IsUserEnabled - READ-ONLY; This will be 'true' if the Continuous Export configuration is enabled, otherwise it will be 'false'.
IsUserEnabled *string `json:"IsUserEnabled,omitempty"`
// LastUserUpdate - READ-ONLY; Last time the Continuous Export configuration was updated.
LastUserUpdate *string `json:"LastUserUpdate,omitempty"`
// NotificationQueueEnabled - Deprecated
NotificationQueueEnabled *string `json:"NotificationQueueEnabled,omitempty"`
// ExportStatus - READ-ONLY; This indicates current Continuous Export configuration status. The possible values are 'Preparing', 'Success', 'Failure'.
ExportStatus *string `json:"ExportStatus,omitempty"`
// LastSuccessTime - READ-ONLY; The last time data was successfully delivered to the destination storage container for this Continuous Export configuration.
LastSuccessTime *string `json:"LastSuccessTime,omitempty"`
// LastGapTime - READ-ONLY; The last time the Continuous Export configuration started failing.
LastGapTime *string `json:"LastGapTime,omitempty"`
// PermanentErrorReason - READ-ONLY; This is the reason the Continuous Export configuration started failing. It can be 'AzureStorageNotFound' or 'AzureStorageAccessDenied'.
PermanentErrorReason *string `json:"PermanentErrorReason,omitempty"`
// StorageName - READ-ONLY; The name of the destination storage account.
StorageName *string `json:"StorageName,omitempty"`
// ContainerName - READ-ONLY; The name of the destination storage container.
ContainerName *string `json:"ContainerName,omitempty"`
}
// ApplicationInsightsComponentExportRequest an Application Insights component Continuous Export
// configuration request definition.
type ApplicationInsightsComponentExportRequest struct {
// RecordTypes - The document types to be exported, as comma separated values. Allowed values include 'Requests', 'Event', 'Exceptions', 'Metrics', 'PageViews', 'PageViewPerformance', 'Rdd', 'PerformanceCounters', 'Availability', 'Messages'.
RecordTypes *string `json:"RecordTypes,omitempty"`
// DestinationType - The Continuous Export destination type. This has to be 'Blob'.
DestinationType *string `json:"DestinationType,omitempty"`
// DestinationAddress - The SAS URL for the destination storage container. It must grant write permission.
DestinationAddress *string `json:"DestinationAddress,omitempty"`
// IsEnabled - Set to 'true' to create a Continuous Export configuration as enabled, otherwise set it to 'false'.
IsEnabled *string `json:"IsEnabled,omitempty"`
// NotificationQueueEnabled - Deprecated
NotificationQueueEnabled *string `json:"NotificationQueueEnabled,omitempty"`
// NotificationQueueURI - Deprecated
NotificationQueueURI *string `json:"NotificationQueueUri,omitempty"`
// DestinationStorageSubscriptionID - The subscription ID of the destination storage container.
DestinationStorageSubscriptionID *string `json:"DestinationStorageSubscriptionId,omitempty"`
// DestinationStorageLocationID - The location ID of the destination storage container.
DestinationStorageLocationID *string `json:"DestinationStorageLocationId,omitempty"`
// DestinationAccountID - The name of destination storage account.
DestinationAccountID *string `json:"DestinationAccountId,omitempty"`
}
// ApplicationInsightsComponentFavorite properties that define a favorite that is associated to an
// Application Insights component.
type ApplicationInsightsComponentFavorite struct {
autorest.Response `json:"-"`
// Name - The user-defined name of the favorite.
Name *string `json:"Name,omitempty"`
// Config - Configuration of this particular favorite, which are driven by the Azure portal UX. Configuration data is a string containing valid JSON
Config *string `json:"Config,omitempty"`
// Version - This instance's version of the data model. This can change as new features are added that can be marked favorite. Current examples include MetricsExplorer (ME) and Search.
Version *string `json:"Version,omitempty"`
// FavoriteID - READ-ONLY; Internally assigned unique id of the favorite definition.
FavoriteID *string `json:"FavoriteId,omitempty"`
// FavoriteType - Enum indicating if this favorite definition is owned by a specific user or is shared between all users with access to the Application Insights component. Possible values include: 'Shared', 'User'
FavoriteType FavoriteType `json:"FavoriteType,omitempty"`
// SourceType - The source of the favorite definition.
SourceType *string `json:"SourceType,omitempty"`
// TimeModified - READ-ONLY; Date and time in UTC of the last modification that was made to this favorite definition.
TimeModified *string `json:"TimeModified,omitempty"`
// Tags - A list of 0 or more tags that are associated with this favorite definition
Tags *[]string `json:"Tags,omitempty"`
// Category - Favorite category, as defined by the user at creation time.
Category *string `json:"Category,omitempty"`
// IsGeneratedFromTemplate - Flag denoting wether or not this favorite was generated from a template.
IsGeneratedFromTemplate *bool `json:"IsGeneratedFromTemplate,omitempty"`
// UserID - READ-ONLY; Unique user id of the specific user that owns this favorite.
UserID *string `json:"UserId,omitempty"`
}
// ApplicationInsightsComponentFeature an Application Insights component daily data volume cap status
type ApplicationInsightsComponentFeature struct {
// FeatureName - READ-ONLY; The pricing feature name.
FeatureName *string `json:"FeatureName,omitempty"`
// MeterID - READ-ONLY; The meter id used for the feature.
MeterID *string `json:"MeterId,omitempty"`
// MeterRateFrequency - READ-ONLY; The meter rate for the feature's meter.
MeterRateFrequency *string `json:"MeterRateFrequency,omitempty"`
// ResouceID - READ-ONLY; Reserved, not used now.
ResouceID *string `json:"ResouceId,omitempty"`
// IsHidden - READ-ONLY; Reserved, not used now.
IsHidden *bool `json:"IsHidden,omitempty"`
// Capabilities - READ-ONLY; A list of Application Insights component feature capability.
Capabilities *[]ApplicationInsightsComponentFeatureCapability `json:"Capabilities,omitempty"`
// Title - READ-ONLY; Display name of the feature.
Title *string `json:"Title,omitempty"`
// IsMainFeature - READ-ONLY; Whether can apply addon feature on to it.
IsMainFeature *bool `json:"IsMainFeature,omitempty"`
// SupportedAddonFeatures - READ-ONLY; The add on features on main feature.
SupportedAddonFeatures *string `json:"SupportedAddonFeatures,omitempty"`
}
// ApplicationInsightsComponentFeatureCapabilities an Application Insights component feature capabilities
type ApplicationInsightsComponentFeatureCapabilities struct {
autorest.Response `json:"-"`
// SupportExportData - READ-ONLY; Whether allow to use continuous export feature.
SupportExportData *bool `json:"SupportExportData,omitempty"`
// BurstThrottlePolicy - READ-ONLY; Reserved, not used now.
BurstThrottlePolicy *string `json:"BurstThrottlePolicy,omitempty"`
// MetadataClass - READ-ONLY; Reserved, not used now.
MetadataClass *string `json:"MetadataClass,omitempty"`
// LiveStreamMetrics - READ-ONLY; Reserved, not used now.
LiveStreamMetrics *bool `json:"LiveStreamMetrics,omitempty"`
// ApplicationMap - READ-ONLY; Reserved, not used now.
ApplicationMap *bool `json:"ApplicationMap,omitempty"`
// WorkItemIntegration - READ-ONLY; Whether allow to use work item integration feature.
WorkItemIntegration *bool `json:"WorkItemIntegration,omitempty"`
// PowerBIIntegration - READ-ONLY; Reserved, not used now.
PowerBIIntegration *bool `json:"PowerBIIntegration,omitempty"`
// OpenSchema - READ-ONLY; Reserved, not used now.
OpenSchema *bool `json:"OpenSchema,omitempty"`
// ProactiveDetection - READ-ONLY; Reserved, not used now.
ProactiveDetection *bool `json:"ProactiveDetection,omitempty"`
// AnalyticsIntegration - READ-ONLY; Reserved, not used now.
AnalyticsIntegration *bool `json:"AnalyticsIntegration,omitempty"`
// MultipleStepWebTest - READ-ONLY; Whether allow to use multiple steps web test feature.
MultipleStepWebTest *bool `json:"MultipleStepWebTest,omitempty"`
// APIAccessLevel - READ-ONLY; Reserved, not used now.
APIAccessLevel *string `json:"ApiAccessLevel,omitempty"`
// TrackingType - READ-ONLY; The application insights component used tracking type.
TrackingType *string `json:"TrackingType,omitempty"`
// DailyCap - READ-ONLY; Daily data volume cap in GB.
DailyCap *float64 `json:"DailyCap,omitempty"`
// DailyCapResetTime - READ-ONLY; Daily data volume cap UTC reset hour.
DailyCapResetTime *float64 `json:"DailyCapResetTime,omitempty"`
// ThrottleRate - READ-ONLY; Reserved, not used now.
ThrottleRate *float64 `json:"ThrottleRate,omitempty"`
}
// ApplicationInsightsComponentFeatureCapability an Application Insights component feature capability
type ApplicationInsightsComponentFeatureCapability struct {
// Name - READ-ONLY; The name of the capability.
Name *string `json:"Name,omitempty"`
// Description - READ-ONLY; The description of the capability.
Description *string `json:"Description,omitempty"`
// Value - READ-ONLY; The value of the capability.
Value *string `json:"Value,omitempty"`
// Unit - READ-ONLY; The unit of the capability.
Unit *string `json:"Unit,omitempty"`
// MeterID - READ-ONLY; The meter used for the capability.
MeterID *string `json:"MeterId,omitempty"`
// MeterRateFrequency - READ-ONLY; The meter rate of the meter.
MeterRateFrequency *string `json:"MeterRateFrequency,omitempty"`
}
// ApplicationInsightsComponentListResult describes the list of Application Insights Resources.
type ApplicationInsightsComponentListResult struct {
autorest.Response `json:"-"`
// Value - List of Application Insights component definitions.
Value *[]ApplicationInsightsComponent `json:"value,omitempty"`
// NextLink - The URI to get the next set of Application Insights component definitions if too many components where returned in the result set.
NextLink *string `json:"nextLink,omitempty"`
}
// ApplicationInsightsComponentListResultIterator provides access to a complete listing of
// ApplicationInsightsComponent values.
type ApplicationInsightsComponentListResultIterator struct {
i int
page ApplicationInsightsComponentListResultPage
}
// 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 *ApplicationInsightsComponentListResultIterator) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ApplicationInsightsComponentListResultIterator.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 *ApplicationInsightsComponentListResultIterator) Next() error {
return iter.NextWithContext(context.Background())
}
// NotDone returns true if the enumeration should be started or is not yet complete.
func (iter ApplicationInsightsComponentListResultIterator) 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 ApplicationInsightsComponentListResultIterator) Response() ApplicationInsightsComponentListResult {
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 ApplicationInsightsComponentListResultIterator) Value() ApplicationInsightsComponent {
if !iter.page.NotDone() {
return ApplicationInsightsComponent{}
}
return iter.page.Values()[iter.i]
}
// Creates a new instance of the ApplicationInsightsComponentListResultIterator type.
func NewApplicationInsightsComponentListResultIterator(page ApplicationInsightsComponentListResultPage) ApplicationInsightsComponentListResultIterator {
return ApplicationInsightsComponentListResultIterator{page: page}
}
// IsEmpty returns true if the ListResult contains no values.
func (aiclr ApplicationInsightsComponentListResult) IsEmpty() bool {
return aiclr.Value == nil || len(*aiclr.Value) == 0
}
// applicationInsightsComponentListResultPreparer prepares a request to retrieve the next set of results.
// It returns nil if no more results exist.
func (aiclr ApplicationInsightsComponentListResult) applicationInsightsComponentListResultPreparer(ctx context.Context) (*http.Request, error) {
if aiclr.NextLink == nil || len(to.String(aiclr.NextLink)) < 1 {
return nil, nil
}
return autorest.Prepare((&http.Request{}).WithContext(ctx),
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(aiclr.NextLink)))
}
// ApplicationInsightsComponentListResultPage contains a page of ApplicationInsightsComponent values.
type ApplicationInsightsComponentListResultPage struct {
fn func(context.Context, ApplicationInsightsComponentListResult) (ApplicationInsightsComponentListResult, error)
aiclr ApplicationInsightsComponentListResult
}
// 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 *ApplicationInsightsComponentListResultPage) NextWithContext(ctx context.Context) (err error) {
if tracing.IsEnabled() {
ctx = tracing.StartSpan(ctx, fqdn+"/ApplicationInsightsComponentListResultPage.NextWithContext")
defer func() {
sc := -1
if page.Response().Response.Response != nil {
sc = page.Response().Response.Response.StatusCode
}
tracing.EndSpan(ctx, sc, err)
}()
}
next, err := page.fn(ctx, page.aiclr)
if err != nil {
return err
}
page.aiclr = next
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 *ApplicationInsightsComponentListResultPage) Next() error {
return page.NextWithContext(context.Background())
}
// NotDone returns true if the page enumeration should be started or is not yet complete.
func (page ApplicationInsightsComponentListResultPage) NotDone() bool {
return !page.aiclr.IsEmpty()
}
// Response returns the raw server response from the last page request.
func (page ApplicationInsightsComponentListResultPage) Response() ApplicationInsightsComponentListResult {
return page.aiclr
}
// Values returns the slice of values for the current page or nil if there are no values.
func (page ApplicationInsightsComponentListResultPage) Values() []ApplicationInsightsComponent {
if page.aiclr.IsEmpty() {
return nil
}
return *page.aiclr.Value
}
// Creates a new instance of the ApplicationInsightsComponentListResultPage type.
func NewApplicationInsightsComponentListResultPage(getNextPage func(context.Context, ApplicationInsightsComponentListResult) (ApplicationInsightsComponentListResult, error)) ApplicationInsightsComponentListResultPage {
return ApplicationInsightsComponentListResultPage{fn: getNextPage}
}
// ApplicationInsightsComponentProactiveDetectionConfiguration properties that define a ProactiveDetection
// configuration.
type ApplicationInsightsComponentProactiveDetectionConfiguration struct {
autorest.Response `json:"-"`
// Name - The rule name
Name *string `json:"Name,omitempty"`
// Enabled - A flag that indicates whether this rule is enabled by the user
Enabled *bool `json:"Enabled,omitempty"`
// SendEmailsToSubscriptionOwners - A flag that indicated whether notifications on this rule should be sent to subscription owners
SendEmailsToSubscriptionOwners *bool `json:"SendEmailsToSubscriptionOwners,omitempty"`
// CustomEmails - Custom email addresses for this rule notifications
CustomEmails *[]string `json:"CustomEmails,omitempty"`
// LastUpdatedTime - The last time this rule was updated
LastUpdatedTime *string `json:"LastUpdatedTime,omitempty"`
// RuleDefinitions - Static definitions of the ProactiveDetection configuration rule (same values for all components).
RuleDefinitions *ApplicationInsightsComponentProactiveDetectionConfigurationRuleDefinitions `json:"RuleDefinitions,omitempty"`
}
// ApplicationInsightsComponentProactiveDetectionConfigurationRuleDefinitions static definitions of the
// ProactiveDetection configuration rule (same values for all components).
type ApplicationInsightsComponentProactiveDetectionConfigurationRuleDefinitions struct {
// Name - The rule name
Name *string `json:"Name,omitempty"`
// DisplayName - The rule name as it is displayed in UI
DisplayName *string `json:"DisplayName,omitempty"`
// Description - The rule description
Description *string `json:"Description,omitempty"`
// HelpURL - URL which displays additional info about the proactive detection rule
HelpURL *string `json:"HelpUrl,omitempty"`
// IsHidden - A flag indicating whether the rule is hidden (from the UI)
IsHidden *bool `json:"IsHidden,omitempty"`
// IsEnabledByDefault - A flag indicating whether the rule is enabled by default
IsEnabledByDefault *bool `json:"IsEnabledByDefault,omitempty"`
// IsInPreview - A flag indicating whether the rule is in preview
IsInPreview *bool `json:"IsInPreview,omitempty"`
// SupportsEmailNotifications - A flag indicating whether email notifications are supported for detections for this rule
SupportsEmailNotifications *bool `json:"SupportsEmailNotifications,omitempty"`
}
// ApplicationInsightsComponentProperties properties that define an Application Insights component
// resource.
type ApplicationInsightsComponentProperties struct {
// ApplicationID - READ-ONLY; The unique ID of your application. This field mirrors the 'Name' field and cannot be changed.
ApplicationID *string `json:"ApplicationId,omitempty"`
// AppID - READ-ONLY; Application Insights Unique ID for your Application.
AppID *string `json:"AppId,omitempty"`
// ApplicationType - Type of application being monitored. Possible values include: 'Web', 'Other'
ApplicationType ApplicationType `json:"Application_Type,omitempty"`
// FlowType - Used by the Application Insights system to determine what kind of flow this component was created by. This is to be set to 'Bluefield' when creating/updating a component via the REST API. Possible values include: 'Bluefield'
FlowType FlowType `json:"Flow_Type,omitempty"`
// RequestSource - Describes what tool created this Application Insights component. Customers using this API should set this to the default 'rest'. Possible values include: 'Rest'
RequestSource RequestSource `json:"Request_Source,omitempty"`
// InstrumentationKey - READ-ONLY; Application Insights Instrumentation key. A read-only value that applications can use to identify the destination for all telemetry sent to Azure Application Insights. This value will be supplied upon construction of each new Application Insights component.
InstrumentationKey *string `json:"InstrumentationKey,omitempty"`
// CreationDate - READ-ONLY; Creation Date for the Application Insights component, in ISO 8601 format.
CreationDate *date.Time `json:"CreationDate,omitempty"`
// TenantID - READ-ONLY; Azure Tenant Id.
TenantID *string `json:"TenantId,omitempty"`
// HockeyAppID - The unique application ID created when a new application is added to HockeyApp, used for communications with HockeyApp.
HockeyAppID *string `json:"HockeyAppId,omitempty"`
// HockeyAppToken - READ-ONLY; Token used to authenticate communications with between Application Insights and HockeyApp.
HockeyAppToken *string `json:"HockeyAppToken,omitempty"`
// ProvisioningState - READ-ONLY; Current state of this component: whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.
ProvisioningState *string `json:"provisioningState,omitempty"`
// SamplingPercentage - Percentage of the data produced by the application being monitored that is being sampled for Application Insights telemetry.
SamplingPercentage *float64 `json:"SamplingPercentage,omitempty"`
// ConnectionString - READ-ONLY; Application Insights component connection string.
ConnectionString *string `json:"ConnectionString,omitempty"`
// RetentionInDays - Retention period in days.
RetentionInDays *int32 `json:"RetentionInDays,omitempty"`
// DisableIPMasking - Disable IP masking.
DisableIPMasking *bool `json:"DisableIpMasking,omitempty"`
// ImmediatePurgeDataOn30Days - Purge data immediately after 30 days.
ImmediatePurgeDataOn30Days *bool `json:"ImmediatePurgeDataOn30Days,omitempty"`
// PrivateLinkScopedResources - READ-ONLY; List of linked private link scope resources.
PrivateLinkScopedResources *[]PrivateLinkScopedResource `json:"PrivateLinkScopedResources,omitempty"`
}
// ApplicationInsightsComponentQuotaStatus an Application Insights component daily data volume cap status
type ApplicationInsightsComponentQuotaStatus struct {
autorest.Response `json:"-"`
// AppID - READ-ONLY; The Application ID for the Application Insights component.
AppID *string `json:"AppId,omitempty"`
// ShouldBeThrottled - READ-ONLY; The daily data volume cap is met, and data ingestion will be stopped.
ShouldBeThrottled *bool `json:"ShouldBeThrottled,omitempty"`
// ExpirationTime - READ-ONLY; Date and time when the daily data volume cap will be reset, and data ingestion will resume.
ExpirationTime *string `json:"ExpirationTime,omitempty"`
}
// ApplicationInsightsComponentWebTestLocation properties that define a web test location available to an
// Application Insights Component.
type ApplicationInsightsComponentWebTestLocation struct {
// DisplayName - READ-ONLY; The display name of the web test location.
DisplayName *string `json:"DisplayName,omitempty"`
// Tag - READ-ONLY; Internally defined geographic location tag.
Tag *string `json:"Tag,omitempty"`
}
// ApplicationInsightsWebTestLocationsListResult describes the list of web test locations available to an
// Application Insights Component.
type ApplicationInsightsWebTestLocationsListResult struct {
autorest.Response `json:"-"`
// Value - List of web test locations.
Value *[]ApplicationInsightsComponentWebTestLocation `json:"value,omitempty"`
}
// ComponentPurgeBody describes the body of a purge request for an App Insights component
type ComponentPurgeBody struct {
// Table - Table from which to purge data.
Table *string `json:"table,omitempty"`
// Filters - The set of columns and filters (queries) to run over them to purge the resulting data.
Filters *[]ComponentPurgeBodyFilters `json:"filters,omitempty"`
}
// ComponentPurgeBodyFilters user-defined filters to return data which will be purged from the table.
type ComponentPurgeBodyFilters struct {
// Column - The column of the table over which the given query should run
Column *string `json:"column,omitempty"`
// Operator - A query operator to evaluate over the provided column and value(s). Supported operators are ==, =~, in, in~, >, >=, <, <=, between, and have the same behavior as they would in a KQL query.
Operator *string `json:"operator,omitempty"`
// Value - the value for the operator to function over. This can be a number (e.g., > 100), a string (timestamp >= '2017-09-01') or array of values.
Value interface{} `json:"value,omitempty"`
// Key - When filtering over custom dimensions, this key will be used as the name of the custom dimension.
Key *string `json:"key,omitempty"`
}
// ComponentPurgeResponse response containing operationId for a specific purge action.
type ComponentPurgeResponse struct {
autorest.Response `json:"-"`
// OperationID - Id to use when querying for status for a particular purge operation.
OperationID *string `json:"operationId,omitempty"`
}
// ComponentPurgeStatusResponse response containing status for a specific purge operation.
type ComponentPurgeStatusResponse struct {
autorest.Response `json:"-"`
// Status - Status of the operation represented by the requested Id. Possible values include: 'Pending', 'Completed'
Status PurgeState `json:"status,omitempty"`
}
// ComponentsResource an azure resource object
type ComponentsResource struct {
// ID - READ-ONLY; Azure resource Id
ID *string `json:"id,omitempty"`
// Name - READ-ONLY; Azure resource name
Name *string `json:"name,omitempty"`
// Type - READ-ONLY; Azure resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for ComponentsResource.
func (cr ComponentsResource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if cr.Location != nil {
objectMap["location"] = cr.Location
}
if cr.Tags != nil {
objectMap["tags"] = cr.Tags
}
return json.Marshal(objectMap)
}
// ErrorFieldContract error Field contract.
type ErrorFieldContract struct {
// Code - Property level error code.
Code *string `json:"code,omitempty"`
// Message - Human-readable representation of property-level error.
Message *string `json:"message,omitempty"`
// Target - Property name.
Target *string `json:"target,omitempty"`
}
// ErrorResponse error response indicates Insights service is not able to process the incoming request. The
// reason is provided in the error message.
type ErrorResponse struct {
// Code - Error code.
Code *string `json:"code,omitempty"`
// Message - Error message indicating why the operation failed.
Message *string `json:"message,omitempty"`
}
// InnerError inner error
type InnerError struct {
// Diagnosticcontext - Provides correlation for request
Diagnosticcontext *string `json:"diagnosticcontext,omitempty"`