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

Maintenance window. This specifies when a Cloud SQL instance is restarted for system maintenance purposes.

interface MaintenanceWindow {
day?: number;
hour?: number;
kind?: string;
updateTrack?:
| "SQL_UPDATE_TRACK_UNSPECIFIED"
| "canary"
| "stable"
| "week5";
}

§Properties

§
day?: number
[src]

Day of week - MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, or SUNDAY. Specify in the UTC time zone. Returned in output as an integer, 1 to 7, where 1 equals Monday.

§
hour?: number
[src]

Hour of day - 0 to 23. Specify in the UTC time zone.

§
kind?: string
[src]

This is always sql#maintenanceWindow.

§
updateTrack?: "SQL_UPDATE_TRACK_UNSPECIFIED" | "canary" | "stable" | "week5"
[src]

Maintenance timing settings: canary, stable, or week5. For more information, see About maintenance on Cloud SQL instances.