cldkctl_vm_list
Retrieve a list of virtual machines for a specific project. Specify project ID and limit to filter results, using -1 to fetch all VMs.
Instructions
Call the cldkctl_vm_list endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | Yes | Limit (use -1 for all) | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Limit (use -1 for all)",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"limit"
],
"type": "object"
}