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

BackupInfo

import type { BackupInfo } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

Information about a backup.

interface BackupInfo {
readonly backup?: string;
readonly endTime?: Date;
readonly sourceBackup?: string;
readonly sourceTable?: string;
readonly startTime?: Date;
}

§Properties

§
readonly backup?: string
[src]

Output only. Name of the backup.

§
readonly endTime?: Date
[src]

Output only. This time that the backup was finished. Row data in the backup will be no newer than this timestamp.

§
readonly sourceBackup?: string
[src]

Output only. Name of the backup from which this backup was copied. If a backup is not created by copying a backup, this field will be empty. Values are of the form: projects//instances//clusters//backups/

§
readonly sourceTable?: string
[src]

Output only. Name of the table the backup was created from.

§
readonly startTime?: Date
[src]

Output only. The time that the backup was started. Row data in the backup will be no older than this timestamp.