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

LatestBackup

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

The details of the latest scheduled backup.

interface LatestBackup {
readonly backupId?: string;
readonly duration?: number;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "IN_PROGRESS"
| "SUCCEEDED"
| "FAILED";
}

§Properties

§
readonly backupId?: string
[src]

Output only. The ID of an in-progress scheduled backup. Empty if no backup is in progress.

§
readonly duration?: number
[src]

Output only. The duration of the backup completion.

§
readonly startTime?: Date
[src]

Output only. The time when the backup was started.

§
readonly state?: "STATE_UNSPECIFIED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED"
[src]

Output only. The current state of the backup.