cldkctl_registry_update
Update registry data on the MCP cldkctl Server by providing a registry ID and associated data, ensuring accurate and timely configuration changes.
Instructions
Call the cldkctl_registry_update endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
registry_data | Yes | Registry data | |
registry_id | Yes | Registry ID |
Input Schema (JSON Schema)
{
"properties": {
"registry_data": {
"description": "Registry data",
"type": "object"
},
"registry_id": {
"description": "Registry ID",
"type": "string"
}
},
"required": [
"registry_id",
"registry_data"
],
"type": "object"
}