Skip to content
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