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

InterconnectOutageNotification

import type { InterconnectOutageNotification } from "https://googleapis.deno.dev/v1/compute:v1.ts";

Description of a planned outage on this Interconnect.

interface InterconnectOutageNotification {
affectedCircuits?: string[];
description?: string;
endTime?: bigint;
issueType?:
| "IT_OUTAGE"
| "IT_PARTIAL_OUTAGE"
| "OUTAGE"
| "PARTIAL_OUTAGE";
name?: string;
source?: "GOOGLE" | "NSRC_GOOGLE";
startTime?: bigint;
state?:
| "ACTIVE"
| "CANCELLED"
| "COMPLETED"
| "NS_ACTIVE"
| "NS_CANCELED";
}

§Properties

§
affectedCircuits?: string[]
[src]

If issue_type is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.

§
description?: string
[src]

A description about the purpose of the outage.

§
endTime?: bigint
[src]

Scheduled end time for the outage (milliseconds since Unix epoch).

§
issueType?: "IT_OUTAGE" | "IT_PARTIAL_OUTAGE" | "OUTAGE" | "PARTIAL_OUTAGE"
[src]

Form this outage is expected to take, which can take one of the following values: - OUTAGE: The Interconnect may be completely out of service for some or all of the specified window. - PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth. Note that the versions of this enum prefixed with "IT_" have been deprecated in favor of the unprefixed values.

§
name?: string
[src]

Unique identifier for this outage notification.

§
source?: "GOOGLE" | "NSRC_GOOGLE"
[src]

The party that generated this notification, which can take the following value: - GOOGLE: this notification as generated by Google. Note that the value of NSRC_GOOGLE has been deprecated in favor of GOOGLE.

§
startTime?: bigint
[src]

Scheduled start time for the outage (milliseconds since Unix epoch).

§
state?: "ACTIVE" | "CANCELLED" | "COMPLETED" | "NS_ACTIVE" | "NS_CANCELED"
[src]

State of this notification, which can take one of the following values: - ACTIVE: This outage notification is active. The event could be in the past, present, or future. See start_time and end_time for scheduling. - CANCELLED: The outage associated with this notification was cancelled before the outage was due to start. - COMPLETED: The outage associated with this notification is complete. Note that the versions of this enum prefixed with "NS_" have been deprecated in favor of the unprefixed values.