cldkctl_registry_artifact_add_label
Add a label to a specific artifact in the registry using the cldkctl tool. Specify the artifact ID and label ID to organize and manage registry artifacts effectively.
Instructions
Call the cldkctl_registry_artifact_add_label endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
artifact_id | Yes | Artifact ID | |
label_id | Yes | Label ID |
Input Schema (JSON Schema)
{
"properties": {
"artifact_id": {
"description": "Artifact ID",
"type": "string"
},
"label_id": {
"description": "Label ID",
"type": "string"
}
},
"required": [
"artifact_id",
"label_id"
],
"type": "object"
}