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

Backup

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

The details of a backup resource.

interface Backup {
readonly createTime?: Date;
description?: string;
readonly endTime?: Date;
name?: string;
readonly restoringServices?: string[];
readonly serviceRevision?: Service;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "DELETING"
| "ACTIVE"
| "FAILED"
| "RESTORING";
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time when the backup was started.

§
description?: string
[src]

The description of the backup.

§
readonly endTime?: Date
[src]

Output only. The time when the backup finished creating.

§
name?: string
[src]

Immutable. The relative resource name of the backup, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id}

§
readonly restoringServices?: string[]
[src]

Output only. Services that are restoring from the backup.

§
readonly serviceRevision?: Service
[src]

Output only. The revision of the service at the time of backup.

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "DELETING" | "ACTIVE" | "FAILED" | "RESTORING"
[src]

Output only. The current state of the backup.