Skip to content

Commit

Permalink
[Hub Generated] Review request for Microsoft.Consumption to add versi…
Browse files Browse the repository at this point in the history
…on stable/2021-10-01 (Azure#16500)

* Added locale field and Forecasted enum value.

* Added locale field and Forecasted enum value.
  • Loading branch information
sashahdo authored Nov 3, 2021
1 parent 64b91c0 commit 54a13e2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4248,13 +4248,45 @@
"description": "The type of threshold",
"type": "string",
"enum": [
"Actual"
"Actual",
"Forecasted"
],
"x-ms-enum": {
"name": "ThresholdType",
"modelAsString": true
},
"default": "Actual"
},
"locale": {
"description": "Language in which the recipient will receive the notification",
"type": "string",
"enum": [
"en-us",
"ja-jp",
"zh-cn",
"de-de",
"es-es",
"fr-fr",
"it-it",
"ko-kr",
"pt-br",
"ru-ru",
"zh-tw",
"cs-cz",
"pl-pl",
"tr-tr",
"da-dk",
"en-gb",
"hu-hu",
"nb-no",
"nl-nl",
"pt-pt",
"sv-se"
],
"x-ms-enum": {
"name": "CultureCode",
"modelAsString": true
}
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"enabled": true,
"operator": "GreaterThan",
"threshold": 80,
"locale": "en-us",
"contactEmails": [
"johndoe@contoso.com",
"janesmith@contoso.com"
Expand Down Expand Up @@ -129,6 +130,7 @@
"enabled": true,
"operator": "GreaterThan",
"threshold": 80,
"locale": "en-us",
"contactEmails": [
"johndoe@contoso.com",
"janesmith@contoso.com"
Expand Down Expand Up @@ -203,6 +205,7 @@
"enabled": true,
"operator": "GreaterThan",
"threshold": 80,
"locale": "en-us",
"contactEmails": [
"johndoe@contoso.com",
"janesmith@contoso.com"
Expand Down

0 comments on commit 54a13e2

Please sign in to comment.