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 @@ -106,7 +106,11 @@ interface VirtualMachineInstances {
@summary("Implements the operation to stop a virtual machine.")
stop is ArmResourceActionNoResponseContentAsync<
VirtualMachineInstance,
StopVirtualMachineOptions
{
/** The content of the action request */
@body
body?: StopVirtualMachineOptions;
}
>;
/** The operation to start a virtual machine instance. */
@summary("Implements the operation to start a virtual machine.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@
"name": "body",
"in": "body",
"description": "The content of the action request",
"required": true,
"required": false,
"schema": {
"$ref": "#/definitions/StopVirtualMachineOptions"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@
"name": "body",
"in": "body",
"description": "The content of the action request",
"required": true,
"required": false,
"schema": {
"$ref": "#/definitions/StopVirtualMachineOptions"
}
Expand Down
6 changes: 6 additions & 0 deletions specification/scvmm/resource-manager/sdk-suppressions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
suppressions:
azure-sdk-for-js:
- package: "@azure/arm-scvmm"
breaking-changes:
- Operation VirtualMachineInstances.beginStop has a new signature
- Operation VirtualMachineInstances.beginStopAndWait has a new signature