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

UpcomingMaintenance

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

Upcoming Maintenance notification information.

interface UpcomingMaintenance {
canReschedule?: boolean;
latestWindowStartTime?: string;
maintenanceStatus?: "ONGOING" | "PENDING" | "UNKNOWN";
type?: "SCHEDULED" | "UNKNOWN_TYPE" | "UNSCHEDULED";
windowEndTime?: string;
windowStartTime?: string;
}

§Properties

§
canReschedule?: boolean
[src]

Indicates if the maintenance can be customer triggered.

§
latestWindowStartTime?: string
[src]

The latest time for the planned maintenance window to start. This timestamp value is in RFC3339 text format.

§
maintenanceStatus?: "ONGOING" | "PENDING" | "UNKNOWN"
[src]
§
type?: "SCHEDULED" | "UNKNOWN_TYPE" | "UNSCHEDULED"
[src]

Defines the type of maintenance.

§
windowEndTime?: string
[src]

The time by which the maintenance disruption will be completed. This timestamp value is in RFC3339 text format.

§
windowStartTime?: string
[src]

The current start time of the maintenance window. This timestamp value is in RFC3339 text format.