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

MaintenanceEvent

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

Represents a maintenance event.

interface MaintenanceEvent {
readonly endTime?: Date;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "SCHEDULED"
| "STARTED"
| "COMPLETED";
}

§Properties

§
readonly endTime?: Date
[src]

Output only. The end time of the maintenance event provided in RFC 3339 format. Example: "2024-01-02T12:04:06-06:00" This field will be empty if the maintenance event is not yet complete.

§
readonly startTime?: Date
[src]

Output only. The start time of the maintenance event provided in RFC 3339 format. Example: "2024-01-01T12:04:06-04:00"

§
readonly state?: "STATE_UNSPECIFIED" | "SCHEDULED" | "STARTED" | "COMPLETED"
[src]

Output only. The state of the maintenance event.