Skip to main content

get-cloud-incident

dci get-cloud-incident id

Returns the specified cloud incident.

Output

OK - Cloud incident returned.

By default dci renders the result as a table. Use --output json to get the full structure described below — see Output formats.

FieldTypeDescription
createTimeinteger (int64)The time when this cloud incident was created, in milliseconds since the epoch.
descriptionstringDetailed explanation on the cloud incident.
idstringThe unique id of a cloud incident
platformstringThe cloud platform. One of: "google-cloud", "amazon-web-services".
productstringThe name of the product affected by the cloud incident
statusstringThe Status of the issue One of: "active", "archived".
summarystringA summary of the cloud incident.
symptomsstringCloud incident symptoms, if available.
titlestringCloud incident name provided by the cloud vendor.
workaroundstringMitigation workaround for the cloud incident, if available.
Raw JSON schema
{
"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."
}
}
}

Errors

On failure, dci prints a single error message — with a hint when one is available — and exits with a typed code your scripts can branch on. See Errors and exit codes for the full contract.

HTTP statusExit codeError codeMeaning
40030VALIDATION_ERRORThe arguments or request body were rejected. Review the command's flags and payload.
40110AUTHENTICATION_FAILEDNot signed in, or the API token is invalid. Run dci login or check DCI_API_KEY.
40311PERMISSION_DENIEDThe DoiT user or the active customer context does not have access.
40420RESOURCE_NOT_FOUNDThe requested resource does not exist. Check the identifier argument.

Aliases: get-known-issue