Skip to content
Closed
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
45 changes: 43 additions & 2 deletions schemas/2021-02-01-preview/Microsoft.Insights.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,41 @@
}
},
"definitions": {
"Actions": {
"type": "object",
"properties": {
"actionGroups": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Action Group resource Ids to invoke when the alert fires."
},
"customProperties": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties of an alert payload."
}
},
"description": "Actions to invoke when the alert fires."
},
"Condition": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -272,8 +307,14 @@
"type": "object",
"properties": {
"actions": {
"type": "object",
"properties": {},
"oneOf": [
{
"$ref": "#/definitions/Actions"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Actions to invoke when the alert fires."
},
"autoMitigate": {
Expand Down