stop_virtual_machine
Stop a virtual machine on the CloudStack MCP Server by providing its ID, with an optional parameter to force the shutdown.
Instructions
Stop a virtual machine
Input Schema
Name | Required | Description | Default |
---|---|---|---|
forced | No | Force stop the VM | |
id | Yes | VM ID to stop |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"forced": {
"default": false,
"description": "Force stop the VM",
"type": "boolean"
},
"id": {
"description": "VM ID to stop",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}