Status

Represents the current status of Service Health processing.

JSON representation
{
  "state": enum (State),
  "issues": [
    {
      object (Issue)
    }
  ]
}
Fields
state

enum (State)

Represents the current state of Service Health.

issues[]

object (Issue)

Optional. List of issues.

State

The state of Service Health.

Enums
STATE_UNSPECIFIED Unspecified state.
OK No internal Service Health problems or degradation.
ISSUES_DETECTED Service Health interruptions are present.

Issue

Represents an internal problem with Service Health.

JSON representation
{
  "message": string,
  "startTime": string,
  "lastUpdateTime": string,
  "details": {
    object
  }
}
Fields
message

string

Human-readable message to explain what the issue is.

startTime

string (Timestamp format)

Optional. The time the issue is known to have started.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

lastUpdateTime

string (Timestamp format)

The time the issue received the most recent update.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

details

object (Struct format)

Metadata to further specify what the issue is affecting.