Skip to content

Commit

Permalink
Fixed enums
Browse files Browse the repository at this point in the history
Fixed enum
  • Loading branch information
paterasMSFT committed Jun 17, 2021
1 parent 9c4d533 commit 9ae22aa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14119,7 +14119,18 @@
],
"x-ms-enum": {
"name": "StatusLevelTypes",
"modelAsString": false
"modelAsString": false,
"values": [
{
"value": "error"
},
{
"value": "info"
},
{
"value": "warning"
}
]
}
},
"message": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"statuses": [
{
"code": "ProvisioningState/succeeded",
"level": 0,
"level": "Info",
"displayStatus": "Provisioning succeeded",
"message": "Enable succeeded: Enabling and starting agent and controller"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"statuses": [
{
"code": "ProvisioningState/succeeded",
"level": 0,
"level": "Info",
"displayStatus": "Provisioning succeeded",
"message": "Enable succeeded: Enabling and starting agent and controller"
}
Expand Down

0 comments on commit 9ae22aa

Please sign in to comment.