cldkctl_registry_labels_delete
Delete specified labels from a registry by providing organization, user, project, labels, and registry IDs using the MCP cldkctl Server functionality.
Instructions
Call the cldkctl_registry_labels_delete endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labels_id | Yes | Labels ID | |
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_id": {
"description": "Labels ID",
"type": "string"
},
"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",
"labels_id",
"registry_id"
],
"type": "object"
}