Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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 @@ -858,13 +858,18 @@
"description": "Advisor Digest configuration entity",
"type": "object",
"properties": {
"name": {
"description": "Name of digest configuration. Value is case-insensitive and must be unique within a subscription.",
"type": "string"
},
"actionGroupResourceId": {
"description": "Action group resource id used by digest.",
"type": "string"
},
"frequency": {
"description": "Frequency that digest will be triggered. Value must conform to ISO 8601 standard and must be greater than equal to 7 day and less than or equal to 30 days.",
"type": "string"
"format": "int32",
Comment thread
parkhyukjun89 marked this conversation as resolved.
"description": "Frequency that digest will be triggered, in days. Value must be greater than equal to 7 day and less than or equal to 30 days.",
Comment thread
parkhyukjun89 marked this conversation as resolved.
Outdated
"type": "integer"
},
"categories": {
"description": "Categories to send digest for. If categories are not provided, then digest will be sent for all categories.",
Expand All @@ -887,6 +892,18 @@
"language": {
"description": "Language for digest content body. Value must be ISO 639-1 code for one of Azure portal supported languages. Otherwise, it will be converted into one. Default value is English (en).",
"type": "string"
},
"state": {
"description": "State of digest configuration.",
"enum": [
"Active",
"Disabled"
],
"type": "string",
"x-ms-enum": {
"name": "DigestConfigState",
"modelAsString": true
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@
"exclude": true,
"digests": [
{
"name": "digestConfigName",
"actionGroupResourceId": "/subscriptions/subscriptionId/resourceGroups/resourceGroup/providers/microsoft.insights/actionGroups/actionGroupName",
"frequency": "P30D",
"frequency": 30,
"categories": [
"HighAvailability",
"Security",
"Performance",
"Cost",
"OperationalExcellence"
],
"language": "en"
"language": "en",
"state": "Active"
}
]
}
Expand All @@ -36,16 +38,18 @@
"exclude": true,
"digests": [
{
"name": "digestConfigName",
"actionGroupResourceId": "/subscriptions/subscriptionId/resourceGroups/resourceGroup/providers/microsoft.insights/actionGroups/actionGroupName",
"frequency": "P30D",
"frequency": 30,
"categories": [
"HighAvailability",
"Security",
"Performance",
"Cost",
"OperationalExcellence"
],
"language": "en"
"language": "en",
"state": "Active"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@
"exclude": false,
"digests": [
{
"name": "digestConfigName",
"actionGroupResourceId": "/subscriptions/subscriptionId/resourceGroups/resourceGroup/providers/microsoft.insights/actionGroups/actionGroupName",
"frequency": "P30D",
"frequency": 30,
"categories": [
"HighAvailability",
"Security",
"Performance",
"Cost",
"OperationalExcellence"
],
"language": "en"
"language": "en",
"state": "Active"
}
]
}
Expand Down