list-known-issues
restish dci list-known-issues [flags]
Returns a list of all the active and historical cloud incidents for Google Cloud and Amazon Web Services. Incidents are returned in reverse chronological order by default.
Flags
--max-results: (integer format:int64 default:50)
--page-token: (string)
--filter: (string)
--min-creation-time: (string)
--max-creation-time: (string)
Responses
200 (application/json)
OK - The request succeeded.
{
"type": "object",
"properties": {
"incidents": {
"type": "array",
"description": "Array of cloud incidents",
"items": {
"type": "object",
"properties": {
"createTime": {
"type": "integer",
"description": "The time when this cloud incident was created, in milliseconds since the epoch.",
"format": "int64"
},
"id": {
"type": "string",
"description": "cloud incident id, uniquely identifying the cloud incident"
},
"platform": {
"type": "string",
"description": "The Cloud Platform",
"enum": [
"google-cloud",
"amazon-web-services",
"microsoft-azure"
]
},
"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"
]
},
"title": {
"type": "string",
"description": "Cloud incident name as provided by the cloud platform vendor"
}
}
}
},
"pageToken": {
"type": "string",
"description": "Page token, returned by a previous call, to request the next page of results"
},
"rowCount": {
"type": "integer",
"description": "Cloud incidents rows count",
"format": "int64"
}
}
}
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: list-known-issues, listknownissues