scale_virtual_machine
Adjust the service offering of a virtual machine by specifying its ID and the desired service offering ID to scale resources effectively on the CloudStack MCP Server.
Instructions
Scale virtual machine (change service offering)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | VM ID to scale | |
| serviceofferingid | Yes | New service offering ID |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"id": {
"description": "VM ID to scale",
"type": "string"
},
"serviceofferingid": {
"description": "New service offering ID",
"type": "string"
}
},
"required": [
"id",
"serviceofferingid"
],
"type": "object"
}