waroom_update_incident_status
Update the status of an incident in Waroom MCP using its UUID and a new status (detected, investigating, fixing, resolved, close).
Instructions
インシデントのステータスを更新します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
incident_uuid | Yes | 更新するインシデントのUUID | |
status | Yes | 新しいステータス(detected, investigating, fixing, resolved, close) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"incident_uuid": {
"description": "更新するインシデントのUUID",
"format": "uuid",
"type": "string"
},
"status": {
"description": "新しいステータス(detected, investigating, fixing, resolved, close)",
"enum": [
"detected",
"investigating",
"fixing",
"resolved",
"close"
],
"type": "string"
}
},
"required": [
"incident_uuid",
"status"
],
"type": "object"
}