cldkctl_registry_labels
Manage and retrieve registry labels by providing organization, user, project, and registry IDs for efficient resource organization and metadata handling.
Instructions
Call the cldkctl_registry_labels endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"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"
],
"type": "object"
}