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

Represents a Managed Microsoft Identities backup.

interface Backup {
readonly createTime?: Date;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "ACTIVE"
| "FAILED"
| "DELETING";
readonly statusMessage?: string;
readonly type?: "TYPE_UNSPECIFIED" | "ON_DEMAND" | "SCHEDULED";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time the backups was created.

§
labels?: {
[key: string]: string;
}
[src]

Optional. Resource labels to represent user provided metadata.

§
readonly name?: string
[src]

Output only. The unique name of the Backup in the form of projects/{project_id}/locations/global/domains/{domain_name}/backups/{name}

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

Output only. The current state of the backup.

§
readonly statusMessage?: string
[src]

Output only. Additional information about the current status of this backup, if available.

§
readonly type?: "TYPE_UNSPECIFIED" | "ON_DEMAND" | "SCHEDULED"
[src]

Output only. Indicates whether it’s an on-demand backup or scheduled.

§
readonly updateTime?: Date
[src]

Output only. Last update time.