get-known-issue
restish dci get-known-issue id
Returns the specified cloud incident.
Responses
200 (application/json)
OK - Cloud incident returned.
{
"type": "object",
"properties": {
"createTime": {
"type": "integer",
"description": "The time when this cloud incident was created, in milliseconds since the epoch.",
"format": "int64"
},
"description": {
"type": "string",
"description": "Detailed explanation on the cloud incident."
},
"id": {
"type": "string",
"description": "The unique id of a cloud incident"
},
"platform": {
"type": "string",
"description": "The cloud platform.",
"enum": [
"google-cloud",
"amazon-web-services"
]
},
"product": {
"type": "string",
"description": "The name of the product affected by the cloud incident"
},
"status": {
"type": "string",
"description": "The Status of the issue",
"enum": [
"active",
"archived"
]
},
"summary": {
"type": "string",
"description": "A summary of the cloud incident."
},
"symptoms": {
"type": "string",
"description": "Cloud incident symptoms, if available."
},
"title": {
"type": "string",
"description": "Cloud incident name provided by the cloud vendor."
},
"workaround": {
"type": "string",
"description": "Mitigation workaround for the cloud incident, if available."
}
}
}
400 (application/json)
Bad Request - The server cannot process the request, often due to a malformed request.
{
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}
401 (application/json)
Unauthorized - Invalid API key.
{
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}
403 (application/json)
Forbidden - The client is not authorized to perform the request.
{
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}
404 (application/json)
Not Found - The requested resource does not exist.
{
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Detailed error message."
}
}
}
Aliases: get-known-issue, getknownissue