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

Add new ApiVersion 2019-03-01 and add optional flag 'skipShutdown' for existing Poweroff API #5560

Merged
merged 2 commits into from
Apr 9, 2019
Merged
Show file tree
Hide file tree
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 @@ -1999,6 +1999,14 @@
"type": "string",
"description": "The name of the virtual machine."
},
{
"name": "skipShutdown",
"in": "query",
"required": false,
"type": "boolean",
"default": false,
"description": "The parameter to request non-graceful VM shutdown. True value for this flag indicates non-graceful shutdown whereas false indicates otherwise. Default value for this flag is false if not specified"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
Expand Down Expand Up @@ -2970,6 +2978,14 @@
},
"description": "A list of virtual machine instance IDs from the VM scale set."
},
{
"name": "skipShutdown",
"in": "query",
"required": false,
"type": "boolean",
"default": false,
"description": "The parameter to request non-graceful VM shutdown. True value for this flag indicates non-graceful shutdown whereas false indicates otherwise. Default value for this flag is false if not specified"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
Expand Down Expand Up @@ -3984,6 +4000,14 @@
"type": "string",
"description": "The instance ID of the virtual machine."
},
{
"name": "skipShutdown",
"in": "query",
"required": false,
"type": "boolean",
"default": false,
"description": "The parameter to request non-graceful VM shutdown. True value for this flag indicates non-graceful shutdown whereas false indicates otherwise. Default value for this flag is false if not specified"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
Expand Down Expand Up @@ -7319,6 +7343,10 @@
"type": "boolean",
"description": "Specifies whether the Virtual Machine Scale Set should be overprovisioned."
},
"doNotRunExtensionsOnOverprovisionedVMs":{
"type": "boolean",
"description": "When Overprovision is enabled, extensions are launched only on the requested number of VMs which are finally kept. This property will hence ensure that the extensions do not run on the extra overprovisioned VMs."
},
"uniqueId": {
"readOnly": true,
"type": "string",
Expand Down Expand Up @@ -7969,7 +7997,7 @@
},
"description": "The instance view of a virtual machine scale set VM."
},
"VirtualMachineScaleSetVMNetworkProfileConfiguration": {
"VirtualMachineScaleSetVMNetworkProfileConfiguration": {
"properties": {
"networkInterfaceConfigurations": {
"type": "array",
Expand Down
Loading