Skip to content
Merged
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 @@ -4348,7 +4348,24 @@
],
"x-ms-enum": {
"name": "OperatorType",
"modelAsString": true
"modelAsString": true,
"values": [
{
"value": "EqualTo",
"description": "Alert will be triggered if the evaluated cost is the same as threshold value. Note: It’s not recommended to use this OperatorType as there’s low chance of cost being exactly the same as threshold value, leading to missing of your alert. This OperatorType will be deprecated in future. ",
"name": "EqualTo"
},
{
"value": "GreaterThan",
"description": "Alert will be triggered if the evaluated cost is greater than the threshold value. Note: This is the recommended OperatorType while configuring Budget Alert.",
"name": "GreaterThan"
},
{
"value": "GreaterThanOrEqualTo",
"description": "Alert will be triggered if the evaluated cost is greater than or equal to the threshold value.",
"name": "GreaterThanOrEqualTo"
}
]
}
},
"threshold": {
Expand Down Expand Up @@ -4390,7 +4407,19 @@
],
"x-ms-enum": {
"name": "ThresholdType",
"modelAsString": true
"modelAsString": true,
"values": [
{
"value": "Actual",
"description": "Actual costs budget alerts notify when the actual accrued cost exceeds the allocated budget .",
"name": "Actual"
},
{
"value": "Forecasted",
"description": "Forecasted costs budget alerts provide advanced notification that your spending trends are likely to exceed your allocated budget, as it relies on forecasted cost predictions.",
"name": "Forecasted"
}
]
},
"default": "Actual"
},
Expand Down