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

AutomatedBackupConfig

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

The automated backup config for a cluster.

interface AutomatedBackupConfig {
automatedBackupMode?: "AUTOMATED_BACKUP_MODE_UNSPECIFIED" | "DISABLED" | "ENABLED";
fixedFrequencySchedule?: FixedFrequencySchedule;
retention?: number;
}

§Properties

§
automatedBackupMode?: "AUTOMATED_BACKUP_MODE_UNSPECIFIED" | "DISABLED" | "ENABLED"
[src]

Optional. The automated backup mode. If the mode is disabled, the other fields will be ignored.

§
fixedFrequencySchedule?: FixedFrequencySchedule
[src]

Optional. Trigger automated backups at a fixed frequency.

§
retention?: number
[src]

Optional. How long to keep automated backups before the backups are deleted. The value should be between 1 day and 365 days. If not specified, the default value is 35 days.