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/alloydb:v1.ts";

MaintenanceWindow specifies a preferred day and time for maintenance.

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

§Properties

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

Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.

§

Preferred time to start the maintenance operation on the specified day. Maintenance will start within 1 hour of this time.