resize_volume
Increase or decrease the size of a volume in CloudStack MCP Server by specifying the Volume ID and desired size in GB. Optionally allow shrinking for reduced storage needs.
Instructions
Resize a volume
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Volume ID | |
shrinkok | No | Allow shrinking | |
size | Yes | New size in GB |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"id": {
"description": "Volume ID",
"type": "string"
},
"shrinkok": {
"default": false,
"description": "Allow shrinking",
"type": "boolean"
},
"size": {
"description": "New size in GB",
"type": "number"
}
},
"required": [
"id",
"size"
],
"type": "object"
}