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/spanner:v1.ts";

Information about a backup.

interface BackupInfo {
backup?: string;
createTime?: Date;
sourceDatabase?: string;
versionTime?: Date;
}

§Properties

§
backup?: string
[src]

Name of the backup.

§
createTime?: Date
[src]

The time the CreateBackup request was received.

§
sourceDatabase?: string
[src]

Name of the database the backup was created from.

§
versionTime?: Date
[src]

The backup contains an externally consistent copy of source_database at the timestamp specified by version_time. If the CreateBackup request did not specify version_time, the version_time of the backup is equivalent to the create_time.