cldkctl_edit_persistent_volume
Edit persistent volume data for a specific project and volume name using the MCP cldkctl Server. Update configurations and parameters directly through the provided endpoint.
Instructions
Call the cldkctl_edit_persistent_volume endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Persistent Volume name | |
project_id | Yes | Project ID | |
pv_data | Yes | Persistent Volume data |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Persistent Volume name",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"pv_data": {
"description": "Persistent Volume data",
"type": "object"
}
},
"required": [
"project_id",
"name",
"pv_data"
],
"type": "object"
}