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

Update description to indicate force delete is in preview #11763

Merged
merged 12 commits into from
Dec 4, 2020
Original file line number Diff line number Diff line change
Expand Up @@ -2804,7 +2804,7 @@
"in": "query",
"required": false,
"type": "boolean",
"description": "Optional parameter to force delete virtual machines."
"description": "Optional parameter to force delete virtual machines.(Feature in Preview)"
},
{
"$ref": "#/parameters/ApiVersionParameter"
Expand All @@ -2824,7 +2824,12 @@
"description": "No Content"
}
},
"x-ms-long-running-operation": true
"x-ms-long-running-operation": true,
"x-ms-examples": {
"Force delete a VM": {
"$ref": "./examples/ForceDeleteVirtualMachine.json"
}
}
},
"get": {
"tags": [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"parameters": {
"subscriptionId": "{subscription-id}",
"resourceGroupName": "myResourceGroup",
"vmName": "myVM",
"forceDeletion": "true",
"api-version": "2020-06-01"
},
"responses": {
"200": {},
"202": {},
"204": {}
}
}