Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AppsOutage

import type { AppsOutage } from "https://googleapis.deno.dev/v1/alertcenter:v1beta1.ts";

An outage incident reported for a Google Workspace service.

interface AppsOutage {
dashboardUri?: string;
incidentTrackingId?: string;
mergeInfo?: MergeInfo;
nextUpdateTime?: Date;
products?: string[];
resolutionTime?: Date;
status?:
| "STATUS_UNSPECIFIED"
| "NEW"
| "ONGOING"
| "RESOLVED"
| "FALSE_POSITIVE"
| "PARTIALLY_RESOLVED"
| "MERGED"
| "DOWNGRADED";
}

§Properties

§
dashboardUri?: string
[src]

Link to the outage event in Google Workspace Status Dashboard

§
incidentTrackingId?: string
[src]

Incident tracking ID.

§
mergeInfo?: MergeInfo
[src]

Indicates new alert details under which the outage is communicated. Only populated when Status is MERGED.

§
nextUpdateTime?: Date
[src]

Timestamp by which the next update is expected to arrive.

§
products?: string[]
[src]

List of products impacted by the outage.

§
resolutionTime?: Date
[src]

Timestamp when the outage is expected to be resolved, or has confirmed resolution. Provided only when known.

§
status?: "STATUS_UNSPECIFIED" | "NEW" | "ONGOING" | "RESOLVED" | "FALSE_POSITIVE" | "PARTIALLY_RESOLVED" | "MERGED" | "DOWNGRADED"
[src]

Current outage status.