list_virtual_machines
Retrieve a list of virtual machines in Apache CloudStack by filtering results using zone ID, VM state, or keywords for efficient cloud resource management.
Instructions
List virtual machines in CloudStack
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | No | Keyword to search VMs | |
| state | No | VM state (Running, Stopped, etc.) | |
| zoneid | No | Zone ID to filter VMs |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"keyword": {
"description": "Keyword to search VMs",
"type": "string"
},
"state": {
"description": "VM state (Running, Stopped, etc.)",
"type": "string"
},
"zoneid": {
"description": "Zone ID to filter VMs",
"type": "string"
}
},
"type": "object"
}