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

TimeWindow

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

Represents the time window to perform upgrade activities.

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

§Properties

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

Required. Day of the week for this window.

§
duration?: number
[src]

Required. The duration of the window. The max allowed duration for any window is 24 hours.

§
startTime?: TimeOfDay
[src]

Required. Time in UTC when the window starts.