cldkctl_edit_service
Modify service configurations for a specific project and namespace using provided service data. Ensures accurate updates to service settings within the MCP cldkctl Server environment.
Instructions
Call the cldkctl_edit_service endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Service name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
service_data | Yes | Service data |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Service name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"service_data": {
"description": "Service data",
"type": "object"
}
},
"required": [
"project_id",
"namespace",
"name",
"service_data"
],
"type": "object"
}