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

MaintenanceWindow

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

Specifies the recurring maintenance window.

interface MaintenanceWindow {
dayOfWeek?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
startTime?: TimeOfDay;
}

§Properties

§
dayOfWeek?: "DAY_OF_WEEK_UNSPECIFIED" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"
[src]

Required. Day of the week for this MaintenanceWindow (in UTC).

§
startTime?: TimeOfDay
[src]

Required. Time in UTC when the period starts. Maintenance will be scheduled within 60 minutes.