cldkctl_edit_vm_yaml
Edit VM YAML configurations by specifying project ID, namespace, VM name, and YAML data. Enables precise VM configuration management via the MCP cldkctl Server.
Instructions
Call the cldkctl_edit_vm_yaml endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | VM name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
vm_yaml_data | Yes | VM YAML data |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "VM name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"vm_yaml_data": {
"description": "VM YAML data",
"type": "object"
}
},
"required": [
"project_id",
"namespace",
"name",
"vm_yaml_data"
],
"type": "object"
}