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;
}