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

Adding new API for VMSS: ForceRecoveryServiceFabricPlatformUpdateDomainWalk #2390

Merged
merged 1 commit into from
Feb 1, 2018
Merged
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 @@ -2970,6 +2970,52 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/forceRecoveryServiceFabricPlatformUpdateDomainWalk": {
"post":{
"tags": [
"VirtualMachineScaleSets"
],
"operationId": "VirtualMachineScaleSets_ForceRecoveryServiceFabricPlatformUpdateDomainWalk",
"description": "Manual platform update domain walk to update virtual machines in a service fabric virtual machine scale set.",
"parameters": [
{
"name": "resourceGroupName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the resource group."
},
{
"name": "vmScaleSetName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the VM scale set."
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
},
{
"name": "platformUpdateDomain",
"in": "query",
"required": true,
"type": "integer",
"description": "The platform update domain for which a manual recovery walk is requested"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/RecoveryWalkResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualmachines/{instanceId}/reimage": {
"post": {
"tags": [
Expand Down Expand Up @@ -4882,7 +4928,7 @@
"osName": {
"type": "string",
"description": "The Operating System running on the virtual machine."
},
},
"osVersion": {
"type": "string",
"description": "The version of Operating System running on the virtual machine."
Expand Down Expand Up @@ -5491,7 +5537,7 @@
"writeAcceleratorEnabled": {
"type": "boolean",
"description": "Specifies whether writeAccelerator should be enabled or disabled on the disk."
},
},
"createOption": {
"$ref": "#/definitions/CreateOption",
"description": "The create option."
Expand Down Expand Up @@ -6817,6 +6863,21 @@
},
"x-ms-azure-resource": true
},
"RecoveryWalkResponse": {
"properties": {
"walkPerformed": {
"type": "boolean",
"readOnly": true,
"description": "Whether the recovery walk was performed"
},
"nextPlatformUpdateDomain": {
"type": "integer",
"readOnly": true,
"description": "The next update domain that needs to be walked. Null means walk spanning all update domains has been completed"
}
},
"description": "Response after calling a manual recovery walk"
},
"OperationStatusResponse": {
"properties": {
"name": {
Expand Down Expand Up @@ -6866,4 +6927,4 @@
"description": "Client Api Version."
}
}
}
}