create_snapshot
Generate a snapshot of a specified volume in Apache CloudStack using the CloudStack MCP Server, ensuring data preservation and recovery readiness by providing the volume ID and optional snapshot name.
Instructions
Create a snapshot of a volume
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | Snapshot name | |
volumeid | Yes | Volume ID to snapshot |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"name": {
"description": "Snapshot name",
"type": "string"
},
"volumeid": {
"description": "Volume ID to snapshot",
"type": "string"
}
},
"required": [
"volumeid"
],
"type": "object"
}