Skip to content

Commit

Permalink
Adding treshold type and OperatorType descroptions (#19890)
Browse files Browse the repository at this point in the history
  • Loading branch information
edy2310 authored Aug 2, 2022
1 parent d94ec99 commit 8dcda61
Showing 1 changed file with 31 additions and 2 deletions.
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

0 comments on commit 8dcda61

Please sign in to comment.