Page Summary
-
An Outage resource defines an outage and its information, including its name, type, start and end times, and details.
-
The JSON representation of an Outage includes fields for name, type, startTime, endTime, and details.
-
The OutageType enum defines various types of outages, such as inaccessible UI, query service down, and data transfer issues.
-
The available method for Outages is
list, which lists outages in descending order of start timestamp within a 130-day look back window.
Resource: Outage
Defines an outage and its information.
| JSON representation |
|---|
{
"name"
:
string
,
"type"
:
enum (
|
| Fields | |
|---|---|
name
|
Name that uniquely identifies an outage. It has the form outages/[outage_id], e.g. 'outages/1234'. |
type
|
The type of this outage. |
startTime
|
The absolute point in time when the outage started. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
endTime
|
The absolute point in time when the outage ended or will end. If empty or in the future, then it means the outage is still on going. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
details
|
Message describing this outage. |
OutageType
Defines the outage type.
| Enums | |
|---|---|
OUTAGE_TYPE_UNSPECIFIED
|
The outage type is not specified. |
OUTAGE_TYPE_INACCESSIBLE_UI
|
Certain Ads Data Hub UI is not accessible. |
OUTAGE_TYPE_QUERY_SERVICE_DOWN
|
Ads Data Hub query related service is down. |
OUTAGE_TYPE_OUT_OF_SLA_DT
|
Ads Data Hub data-transfer is out of service layer agreement (SLA). |
OUTAGE_TYPE_FIELD_NOT_POPULATING
|
Certain fields are not populating in Ads Data Hub. |
OUTAGE_TYPE_ACCOUNT_LINKING_DOWN
|
Ads Data Hub account linking related service is down. |
OUTAGE_TYPE_OUT_OF_SLA_NON_DT
|
Ads Data Hub non-data-transfer is out of service layer agreement (SLA). |
Methods |
|
|---|---|
|
Lists the outages in descending order of outage start timestamp, and the look back window is 130 days. |


