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

The configuration settings for Cloud Composer maintenance window. The following example: { "startTime":"2019-08-01T01:00:00Z" "endTime":"2019-08-01T07:00:00Z" "recurrence":"FREQ=WEEKLY;BYDAY=TU,WE" } would define a maintenance window between 01 and 07 hours UTC during each Tuesday and Wednesday.

interface MaintenanceWindow {
endTime?: Date;
recurrence?: string;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

Required. Maintenance window end time. It is used only to calculate the duration of the maintenance window. The value for end-time must be in the future, relative to start_time.

§
recurrence?: string
[src]

Required. Maintenance window recurrence. Format is a subset of RFC-5545 RRULE. The only allowed values for FREQ field are FREQ=DAILY and FREQ=WEEKLY;BYDAY=... Example values: FREQ=WEEKLY;BYDAY=TU,WE, FREQ=DAILY.

§
startTime?: Date
[src]

Required. Start time of the first recurrence of the maintenance window.