Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,9 @@
"ServiceIssue",
"PlannedMaintenance",
"HealthAdvisory",
"RCA"
"RCA",
"EmergingIssues",
"SecurityAdvisory"
],
"x-ms-enum": {
"name": "EventTypeValues",
Expand Down Expand Up @@ -621,6 +623,7 @@
"description": "Level of event.",
"enum": [
"Critical",
"Error",
"Warning",
"Informational"
],
Expand Down Expand Up @@ -710,13 +713,21 @@
"type": "boolean",
"description": "Tells if we want to enable or disable Microsoft Support for this event."
},
"description": {
"type": "string",
"description": "Contains the communication message for the event, that could include summary, root cause and other details."
},
"platformInitiated": {
"type": "boolean",
"description": "Is true if the event is platform initiated."
},
"enableChatWithUs": {
"type": "boolean",
"description": "Tells if we want to enable or disable Microsoft Support for this event."
},
"priority": {
"type": "integer",
"description": "Priority level of the event."
"description": "Priority level of the event. Has value from 0 to 23. 0 is the highest priority. Service issue events have higher priority followed by planned maintenance and health advisory. Critical events have higher priority followed by error, warning and informational. Furthermore, active events have higher priority than resolved."
},
"lastUpdateTime": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,9 @@
"ServiceIssue",
"PlannedMaintenance",
"HealthAdvisory",
"RCA"
"RCA",
"EmergingIssues",
"SecurityAdvisory"
],
"x-ms-enum": {
"name": "EventTypeValues",
Expand Down Expand Up @@ -516,6 +518,7 @@
"description": "Level of event.",
"enum": [
"Critical",
"Error",
"Warning",
"Informational"
],
Expand Down Expand Up @@ -605,13 +608,21 @@
"type": "boolean",
"description": "Tells if we want to enable or disable Microsoft Support for this event."
},
"description": {
"type": "string",
"description": "Contains the communication message for the event, that could include summary, root cause and other details."
},
"platformInitiated": {
"type": "boolean",
"description": "Is true if the event is platform initiated."
},
"enableChatWithUs": {
"type": "boolean",
"description": "Tells if we want to enable or disable Microsoft Support for this event."
},
"priority": {
"type": "integer",
"description": "Priority level of the event."
"description": "Priority level of the event. Has value from 0 to 23. 0 is the highest priority. Service issue events have higher priority followed by planned maintenance and health advisory. Critical events have higher priority followed by error, warning and informational. Furthermore, active events have higher priority than resolved."
},
"lastUpdateTime": {
"type": "string",
Expand Down