cldkctl_delete_service
Delete a specified service by providing the project ID, namespace, and name, using the MCP cldkctl Server endpoint to manage services efficiently.
Instructions
Call the cldkctl_delete_service endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Service name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Service name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"namespace",
"name"
],
"type": "object"
}