cldkctl_registry_labels_update
Update registry labels for specific projects and organizations using the MCP cldkctl Server. Provide organization, user, project, registry IDs, and new labels data.
Instructions
Call the cldkctl_registry_labels_update endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labels_data | Yes | Labels data | |
organization_id | Yes | Organization ID | |
project_id | Yes | Project ID | |
registry_id | Yes | Registry ID | |
user_id | Yes | User ID |
Input Schema (JSON Schema)
{
"properties": {
"labels_data": {
"description": "Labels data",
"type": "object"
},
"organization_id": {
"description": "Organization ID",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"registry_id": {
"description": "Registry ID",
"type": "string"
},
"user_id": {
"description": "User ID",
"type": "string"
}
},
"required": [
"organization_id",
"user_id",
"project_id",
"registry_id",
"labels_data"
],
"type": "object"
}