cldkctl_delete_data_volume
Delete a specific data volume by providing the project ID, namespace, and volume name. Integrates with the MCP cldkctl Server for managing storage resources.
Instructions
Call the cldkctl_delete_data_volume endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Data Volume name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Data Volume name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"namespace",
"name"
],
"type": "object"
}