-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
resourcehealth.json
1000 lines (1000 loc) · 33.2 KB
/
resourcehealth.json
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
{
"swagger": "2.0",
"info": {
"version": "2017-07-01",
"title": "Microsoft.ResourceHealth",
"description": "The Resource Health Client."
},
"host": "management.azure.com",
"schemes": [
"https"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/providers/Microsoft.ResourceHealth/availabilityStatuses": {
"get": {
"tags": [
"AvailabilityStatuses"
],
"operationId": "AvailabilityStatuses_ListBySubscriptionId",
"description": "Lists the current availability status for all the resources in the subscription. Use the nextLink property in the response to get the next page of availability statuses.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the list of the current availability status for all the resources in the subscription",
"schema": {
"$ref": "#/definitions/availabilityStatusListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"ListHealthBySubscriptionId": {
"$ref": "./examples/AvailabilityStatuses_ListBySubscriptionId.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ResourceHealth/availabilityStatuses": {
"get": {
"tags": [
"AvailabilityStatuses"
],
"operationId": "AvailabilityStatuses_ListByResourceGroup",
"description": "Lists the current availability status for all the resources in the resource group. Use the nextLink property in the response to get the next page of availability statuses.",
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"$ref": "#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the list of the current availability status for all the resources in the resource group",
"schema": {
"$ref": "#/definitions/availabilityStatusListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"ListByResourceGroup": {
"$ref": "./examples/AvailabilityStatuses_ListByResourceGroup.json"
}
}
}
},
"/{resourceUri}/providers/Microsoft.ResourceHealth/availabilityStatuses/current": {
"get": {
"tags": [
"AvailabilityStatuses"
],
"operationId": "AvailabilityStatuses_GetByResource",
"description": "Gets current availability status for a single resource",
"parameters": [
{
"name": "resourceUri",
"in": "path",
"required": true,
"type": "string",
"description": "The fully qualified ID of the resource, including the resource name and resource type. Currently the API support not nested and one nesting level resource types : /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name} and /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}",
"x-ms-skip-url-encoding": true
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the current availability status for a single resource",
"schema": {
"$ref": "#/definitions/availabilityStatus"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"GetCurrentHealthByResource": {
"$ref": "./examples/AvailabilityStatus_GetByResource.json"
}
}
}
},
"/{resourceUri}/providers/Microsoft.ResourceHealth/availabilityStatuses": {
"get": {
"tags": [
"AvailabilityStatuses"
],
"operationId": "AvailabilityStatuses_List",
"description": "Lists all historical availability transitions and impacting events for a single resource. Use the nextLink property in the response to get the next page of availability status",
"parameters": [
{
"name": "resourceUri",
"in": "path",
"required": true,
"type": "string",
"description": "The fully qualified ID of the resource, including the resource name and resource type. Currently the API support not nested and one nesting level resource types : /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name} and /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}",
"x-ms-skip-url-encoding": true
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the list of the historical availability statuses for a single resource",
"schema": {
"$ref": "#/definitions/availabilityStatusListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"GetHealthHistoryByResource": {
"$ref": "./examples/AvailabilityStatuses_List.json"
}
}
}
},
"/{resourceUri}/providers/Microsoft.ResourceHealth/childAvailabilityStatuses/current": {
"get": {
"tags": [
"ChildAvailabilityStatuses"
],
"operationId": "ChildAvailabilityStatuses_GetByResource",
"description": "Gets current availability status for a single resource",
"parameters": [
{
"name": "resourceUri",
"in": "path",
"required": true,
"type": "string",
"description": "The fully qualified ID of the resource, including the resource name and resource type. Currently the API only support one nesting level resource types : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}",
"x-ms-skip-url-encoding": true
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the current availability status for a single resource",
"schema": {
"$ref": "#/definitions/availabilityStatus"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"GetCurrentHealthByResource": {
"$ref": "./examples/ChildAvailabilityStatus_GetByResource.json"
}
}
}
},
"/{resourceUri}/providers/Microsoft.ResourceHealth/childAvailabilityStatuses": {
"get": {
"tags": [
"ChildAvailabilityStatuses"
],
"operationId": "ChildAvailabilityStatuses_List",
"description": "Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status",
"parameters": [
{
"name": "resourceUri",
"in": "path",
"required": true,
"type": "string",
"description": "The fully qualified ID of the resource, including the resource name and resource type. Currently the API only support one nesting level resource types : /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}",
"x-ms-skip-url-encoding": true
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the list of the historical availability statuses for a single child resource",
"schema": {
"$ref": "#/definitions/availabilityStatusListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"GetHealthHistoryByResource": {
"$ref": "./examples/ChildAvailabilityStatuses_List.json"
}
}
}
},
"/{resourceUri}/providers/Microsoft.ResourceHealth/childResources": {
"get": {
"tags": [
"ChildResources"
],
"operationId": "ChildResources_List",
"description": "Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health",
"parameters": [
{
"name": "resourceUri",
"in": "path",
"required": true,
"type": "string",
"description": "The fully qualified ID of the resource, including the resource name and resource type. Currently the API only support not nested parent resource type: /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}",
"x-ms-skip-url-encoding": true
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/FilterParameter"
},
{
"$ref": "#/parameters/ExpandParameter"
}
],
"responses": {
"200": {
"description": "The body contains the list of the children's current availability statuses for a single resource which contains children",
"schema": {
"$ref": "#/definitions/availabilityStatusListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"GetHealthHistoryByResource": {
"$ref": "./examples/ChildResources_List.json"
}
}
}
},
"/providers/Microsoft.ResourceHealth/operations": {
"get": {
"tags": [
"Operations"
],
"operationId": "Operations_List",
"description": "Lists available operations for the resourcehealth resource provider",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The body contains the list of available operations for the resourcehealth resource provider",
"schema": {
"$ref": "#/definitions/operationListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
}
}
},
"/providers/Microsoft.ResourceHealth/emergingIssues/{issueName}": {
"get": {
"tags": [
"EmergingIssues"
],
"operationId": "EmergingIssues_Get",
"description": "Gets Azure services' emerging issues.",
"parameters": [
{
"$ref": "#/parameters/IssueNameParameter"
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The body contains properties of azure emerging issues, which includes a list of status banner and status active events.",
"schema": {
"$ref": "#/definitions/emergingIssuesGetResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"GetEmergingIssues": {
"$ref": "./examples/EmergingIssues_Get.json"
}
}
}
},
"/providers/Microsoft.ResourceHealth/emergingIssues": {
"get": {
"tags": [
"EmergingIssues"
],
"operationId": "EmergingIssues_List",
"description": "Lists Azure services' emerging issues.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The body contains a list of azure emerging issues.",
"schema": {
"$ref": "#/definitions/emergingIssueListResult"
}
},
"default": {
"description": "DefaultErrorResponse",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"GetEmergingIssues": {
"$ref": "./examples/EmergingIssues_List.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
}
},
"definitions": {
"availabilityStatusListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/availabilityStatus"
},
"description": "The list of availabilityStatuses."
},
"nextLink": {
"type": "string",
"description": "The URI to fetch the next page of availabilityStatuses. Call ListNext() with this URI to fetch the next page of availabilityStatuses."
}
},
"required": [
"value"
],
"description": "The List availabilityStatus operation response."
},
"availabilityStatus": {
"type": "object",
"description": "availabilityStatus of a resource.",
"properties": {
"id": {
"type": "string",
"description": "Azure Resource Manager Identity for the availabilityStatuses resource."
},
"name": {
"type": "string",
"description": "current."
},
"type": {
"type": "string",
"description": "Microsoft.ResourceHealth/AvailabilityStatuses."
},
"location": {
"type": "string",
"description": "Azure Resource Manager geo location of the resource."
},
"properties": {
"type": "object",
"description": "Properties of availability state.",
"properties": {
"availabilityState": {
"type": "string",
"description": "Availability status of the resource. When it is null, this availabilityStatus object represents an availability impacting event",
"enum": [
"Available",
"Unavailable",
"Unknown"
],
"x-ms-enum": {
"name": "AvailabilityStateValues",
"modelAsString": false
}
},
"summary": {
"type": "string",
"description": "Summary description of the availability status."
},
"detailedStatus": {
"type": "string",
"description": "Details of the availability status."
},
"reasonType": {
"type": "string",
"description": "When the resource's availabilityState is Unavailable, it describes where the health impacting event was originated. Examples are planned, unplanned, user initiated or an outage etc."
},
"rootCauseAttributionTime": {
"type": "string",
"description": "When the resource's availabilityState is Unavailable, it provides the Timestamp for when the health impacting event was received.",
"format": "date-time"
},
"healthEventType": {
"type": "string",
"description": "In case of an availability impacting event, it describes when the health impacting event was originated. Examples are Lifecycle, Downtime, Fault Analysis etc."
},
"healthEventCause": {
"type": "string",
"description": "In case of an availability impacting event, it describes where the health impacting event was originated. Examples are PlatformInitiated, UserInitiated etc."
},
"healthEventCategory": {
"type": "string",
"description": "In case of an availability impacting event, it describes the category of a PlatformInitiated health impacting event. Examples are Planned, Unplanned etc."
},
"healthEventId": {
"type": "string",
"description": "It is a unique Id that identifies the event"
},
"resolutionETA": {
"type": "string",
"description": "When the resource's availabilityState is Unavailable and the reasonType is not User Initiated, it provides the date and time for when the issue is expected to be resolved.",
"format": "date-time"
},
"occuredTime": {
"type": "string",
"description": "Timestamp for when last change in health status occurred.",
"format": "date-time"
},
"reasonChronicity": {
"type": "string",
"description": "Chronicity of the availability transition.",
"enum": [
"Transient",
"Persistent"
],
"x-ms-enum": {
"name": "reasonChronicityTypes",
"modelAsString": false
}
},
"reportedTime": {
"type": "string",
"description": "Timestamp for when the health was last checked. ",
"format": "date-time"
},
"recentlyResolvedState": {
"type": "object",
"description": "An annotation describing a change in the availabilityState to Available from Unavailable with a reasonType of type Unplanned",
"properties": {
"unavailableOccurredTime": {
"type": "string",
"description": "Timestamp for when the availabilityState changed to Unavailable",
"format": "date-time"
},
"resolvedTime": {
"type": "string",
"description": "Timestamp when the availabilityState changes to Available.",
"format": "date-time"
},
"unavailabilitySummary": {
"type": "string",
"description": "Brief description of cause of the resource becoming unavailable."
}
}
},
"recommendedActions": {
"type": "array",
"description": "Lists actions the user can take based on the current availabilityState of the resource.",
"items": {
"$ref": "#/definitions/recommendedAction"
}
},
"serviceImpactingEvents": {
"type": "array",
"description": "Lists the service impacting events that may be affecting the health of the resource.",
"items": {
"$ref": "#/definitions/serviceImpactingEvent"
}
}
}
}
}
},
"recommendedAction": {
"description": "Lists actions the user can take based on the current availabilityState of the resource.",
"properties": {
"action": {
"type": "string",
"description": "Recommended action."
},
"actionUrl": {
"type": "string",
"description": "Link to the action"
},
"actionUrlText": {
"type": "string",
"description": "Substring of action, it describes which text should host the action url."
}
}
},
"serviceImpactingEvent": {
"description": "Lists the service impacting events that may be affecting the health of the resource.",
"properties": {
"eventStartTime": {
"type": "string",
"description": "Timestamp for when the event started.",
"format": "date-time"
},
"eventStatusLastModifiedTime": {
"type": "string",
"description": "Timestamp for when event was submitted/detected.",
"format": "date-time"
},
"correlationId": {
"type": "string",
"description": "Correlation id for the event"
},
"status": {
"type": "object",
"description": "Status of the service impacting event.",
"properties": {
"value": {
"type": "string",
"description": "Current status of the event"
}
}
},
"incidentProperties": {
"type": "object",
"description": "Properties of the service impacting event.",
"properties": {
"title": {
"type": "string",
"description": "Title of the incident."
},
"service": {
"type": "string",
"description": "Service impacted by the event."
},
"region": {
"type": "string",
"description": "Region impacted by the event."
},
"incidentType": {
"type": "string",
"description": "Type of Event."
}
}
}
}
},
"operationListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/operation"
},
"description": "List of operations available in the resourcehealth resource provider."
}
},
"required": [
"value"
],
"description": "Lists the operations response."
},
"statusBanner": {
"description": "Banner type of emerging issue.",
"properties": {
"title": {
"type": "string",
"description": "The banner title."
},
"message": {
"type": "string",
"description": "The details of banner."
},
"cloud": {
"type": "string",
"description": "The cloud type of this banner."
},
"lastModifiedTime": {
"type": "string",
"description": "The last time modified on this banner.",
"format": "date-time"
}
}
},
"impactedRegion": {
"description": "Object of impacted region.",
"properties": {
"id": {
"type": "string",
"description": "The impacted region id."
},
"name": {
"type": "string",
"description": "The impacted region name."
}
}
},
"emergingIssueImpact": {
"type": "object",
"description": "Object of the emerging issue impact on services and regions.",
"properties": {
"id": {
"type": "string",
"description": "The impacted service id."
},
"name": {
"type": "string",
"description": "The impacted service name."
},
"regions": {
"type": "array",
"items": {
"$ref": "#/definitions/impactedRegion"
},
"description": "The list of impacted regions for corresponding emerging issues."
}
}
},
"statusActiveEvent": {
"description": "Active event type of emerging issue.",
"properties": {
"title": {
"type": "string",
"description": "The active event title."
},
"description": {
"type": "string",
"description": "The details of active event."
},
"trackingId": {
"type": "string",
"description": "The tracking id of this active event."
},
"startTime": {
"type": "string",
"description": "The impact start time on this active event.",
"format": "date-time"
},
"cloud": {
"type": "string",
"description": "The cloud type of this active event."
},
"severity": {
"type": "string",
"description": "The severity level of this active event.",
"enum": [
"Information",
"Warning",
"Error"
],
"x-ms-enum": {
"name": "SeverityValues",
"modelAsString": true
}
},
"stage": {
"type": "string",
"description": "The stage of this active event.",
"enum": [
"Active",
"Resolve",
"Archived"
],
"x-ms-enum": {
"name": "StageValues",
"modelAsString": true
}
},
"published": {
"type": "boolean",
"description": "The boolean value of this active event if published or not."
},
"lastModifiedTime": {
"type": "string",
"description": "The last time modified on this banner.",
"format": "date-time"
},
"impacts": {
"type": "array",
"items": {
"$ref": "#/definitions/emergingIssueImpact"
},
"description": "The list of emerging issues impacts."
}
}
},
"emergingIssuesGetResult": {
"description": "The Get EmergingIssues operation response.",
"type": "object",
"properties": {
"properties": {
"$ref": "#/definitions/emergingIssue",
"description": "The emerging issue entity properties.",
"x-ms-client-flatten": true
}
},
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Resource"
}
]
},
"emergingIssue": {
"type": "object",
"description": "On-going emerging issue from azure status.",
"properties": {
"refreshTimestamp": {
"type": "string",
"description": "Timestamp for when last time refreshed for ongoing emerging issue.",
"format": "date-time"
},
"statusBanners": {
"type": "array",
"items": {
"$ref": "#/definitions/statusBanner"
},
"description": "The list of emerging issues of banner type."
},
"statusActiveEvents": {
"type": "array",
"items": {
"$ref": "#/definitions/statusActiveEvent"
},
"description": "The list of emerging issues of active event type."
}
}
},
"emergingIssueListResult": {
"description": "The list of emerging issues.",
"type": "object",
"properties": {
"value": {
"description": "The list of emerging issues.",
"type": "array",
"items": {
"$ref": "#/definitions/emergingIssuesGetResult"
}
},
"nextLink": {
"description": "The link used to get the next page of emerging issues.",
"type": "string"
}
}
},
"operation": {
"description": "Operation available in the resourcehealth resource provider.",
"properties": {
"name": {
"type": "string",
"description": "Name of the operation."
},
"display": {
"type": "object",
"description": "Properties of the operation.",
"properties": {
"provider": {
"type": "string",
"description": "Provider name."
},
"resource": {
"type": "string",
"description": "Resource name."
},
"operation": {
"type": "string",
"description": "Operation name."
},
"description": {
"type": "string",
"description": "Description of the operation."
}
}
}
}
},
"ErrorResponse": {
"description": "Error details.",
"type": "object",
"properties": {
"code": {
"description": "The error code.",
"type": "string",
"readOnly": true
},
"message": {
"description": "The error message.",
"type": "string",
"readOnly": true
},
"details": {
"description": "The error details.",
"type": "string",
"readOnly": true
}
}
}
},
"parameters": {
"SubscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"required": true,
"type": "string",
"description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client Api Version."
},
"IssueNameParameter": {
"name": "issueName",
"in": "path",
"description": "The name of the emerging issue.",
"required": true,
"type": "string",
"enum": [
"default"
],
"x-ms-enum": {
"name": "IssueName",
"modelAsString": false
},
"x-ms-parameter-location": "method"
},
"ResourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the resource group.",
"x-ms-parameter-location": "method"
},
"FilterParameter": {
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN",
"x-ms-parameter-location": "method"
},
"ExpandParameter": {
"name": "$expand",
"in": "query",
"required": false,
"type": "string",
"description": "Setting $expand=recommendedactions in url query expands the recommendedactions in the response.",
"x-ms-parameter-location": "method"
}
}
}