Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed FSPG RestartParameter.failoverMode from string to enum for API 2021-06-01, 2021-06-01-preview, and 2021-06-15-privatepreview #15753

Merged
merged 3 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Change to upper case
  • Loading branch information
xunsun-commits committed Aug 23, 2021
commit 0e5705126cb794d8f38a90d7cfea62c9793b88f4
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"parameters": {
"restartWithFailover": true,
"failoverMode": "forcedFailover"
"failoverMode": "ForcedFailover"
}
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2023,10 +2023,10 @@
"type": "string",
"description": "Failover mode.",
"enum": [
"plannedFailover",
"forcedFailover",
"plannedSwitchover",
"forcedSwitchover"
"PlannedFailover",
"ForcedFailover",
"PlannedSwitchover",
"ForcedSwitchover"
],
"x-ms-enum": {
"name": "FailoverMode",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"parameters": {
"restartWithFailover": true,
"failoverMode": "forcedFailover"
"failoverMode": "ForcedFailover"
}
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2046,10 +2046,10 @@
"type": "string",
"description": "Failover mode.",
"enum": [
"plannedFailover",
"forcedFailover",
"plannedSwitchover",
"forcedSwitchover"
"PlannedFailover",
"ForcedFailover",
"PlannedSwitchover",
"ForcedSwitchover"
],
"x-ms-enum": {
"name": "FailoverMode",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"subscriptionId": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"parameters": {
"restartWithFailover": true,
"failoverMode": "forcedFailover"
"failoverMode": "ForcedFailover"
}
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2023,10 +2023,10 @@
"type": "string",
"description": "Failover mode.",
"enum": [
"plannedFailover",
"forcedFailover",
"plannedSwitchover",
"forcedSwitchover"
"PlannedFailover",
"ForcedFailover",
"PlannedSwitchover",
"ForcedSwitchover"
],
"x-ms-enum": {
"name": "FailoverMode",
Expand Down