waroom_delete_service_label
Remove specific labels from a service using the service name and label UUID for accurate and targeted deletion on the Waroom MCP server.
Instructions
特定のサービスのラベルを削除します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
label_uuid | Yes | 削除するラベルのUUID | |
service_name | Yes | サービス名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"label_uuid": {
"description": "削除するラベルのUUID",
"format": "uuid",
"type": "string"
},
"service_name": {
"description": "サービス名",
"maxLength": 100,
"minLength": 1,
"type": "string"
}
},
"required": [
"service_name",
"label_uuid"
],
"type": "object"
}