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.
§
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.