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

WeeklyMaintenanceWindow

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

Time window in which disruptive maintenance updates occur. Non-disruptive updates can occur inside or outside this window.

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

§Properties

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

Required. The day of week that maintenance updates occur.

§
readonly duration?: number
[src]

Output only. Duration of the maintenance window. The current window is fixed at 1 hour.

§
startTime?: TimeOfDay
[src]

Required. Start time of the window in UTC time.