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

ContinuousBackupInfo

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

ContinuousBackupInfo describes the continuous backup properties of a cluster.

interface ContinuousBackupInfo {
readonly earliestRestorableTime?: Date;
readonly enabledTime?: Date;
readonly encryptionInfo?: EncryptionInfo;
readonly schedule?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY"[];
}

§Properties

§
readonly earliestRestorableTime?: Date
[src]

Output only. The earliest restorable time that can be restored to. Output only field.

§
readonly enabledTime?: Date
[src]

Output only. When ContinuousBackup was most recently enabled. Set to null if ContinuousBackup is not enabled.

§
readonly encryptionInfo?: EncryptionInfo
[src]

Output only. The encryption information for the WALs and backups required for ContinuousBackup.

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

Output only. Days of the week on which a continuous backup is taken. Output only field. Ignored if passed into the request.