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

ScheduledBackup

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

This specifies the configuration of scheduled backup.

interface ScheduledBackup {
backupLocation?: string;
cronSchedule?: string;
enabled?: boolean;
readonly latestBackup?: LatestBackup;
readonly nextScheduledTime?: Date;
timeZone?: string;
}

§Properties

§
backupLocation?: string
[src]

Optional. A Cloud Storage URI of a folder, in the format gs:///. A sub-folder containing backup files will be stored below it.

§
cronSchedule?: string
[src]

Optional. The scheduled interval in Cron format, see https://en.wikipedia.org/wiki/Cron The default is empty: scheduled backup is not enabled. Must be specified to enable scheduled backups.

§
enabled?: boolean
[src]

Optional. Defines whether the scheduled backup is enabled. The default value is false.

§
readonly latestBackup?: LatestBackup
[src]

Output only. The details of the latest scheduled backup.

§
readonly nextScheduledTime?: Date
[src]

Output only. The time when the next backups execution is scheduled to start.

§
timeZone?: string
[src]

Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones), e.g. America/Los_Angeles or Africa/Abidjan. If left unspecified, the default is UTC.