waroom_update_incident_severity
Update the severity level of an incident in Waroom MCP by specifying its UUID and new severity (critical, high, low, info, or unknown).
Instructions
インシデントの重要度を更新します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
incident_uuid | Yes | 更新するインシデントのUUID | |
severity | Yes | 新しい重要度(critical, high, low, info, unknown) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"incident_uuid": {
"description": "更新するインシデントのUUID",
"format": "uuid",
"type": "string"
},
"severity": {
"description": "新しい重要度(critical, high, low, info, unknown)",
"enum": [
"critical",
"high",
"low",
"info",
"unknown"
],
"type": "string"
}
},
"required": [
"incident_uuid",
"severity"
],
"type": "object"
}