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

InstantSnapshotGroup

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

Represents an InstantSnapshotGroup resource. An instant snapshot group is a set of instant snapshots that represents a point in time state of a consistency group.

interface InstantSnapshotGroup {
readonly creationTimestamp?: string;
description?: string;
readonly id?: bigint;
readonly kind?: string;
name?: string;
readonly region?: string;
readonly resourceStatus?: InstantSnapshotGroupResourceStatus;
readonly selfLink?: string;
readonly selfLinkWithId?: string;
sourceConsistencyGroup?: string;
readonly status?:
| "CREATING"
| "DELETING"
| "FAILED"
| "INVALID"
| "READY"
| "UNKNOWN";
readonly zone?: string;
}

§Properties

§
readonly creationTimestamp?: string
[src]

Output only. [Output Only] Creation timestamp inRFC3339 text format.

§
description?: string
[src]

Optional. An optional description of this resource. Provide this property when you create the resource.

§
readonly id?: bigint
[src]

Output only. [Output Only] The unique identifier for the resource. This identifier is defined by the server.

§
readonly kind?: string
[src]

Output only. [Output Only] Type of the resource. Alwayscompute#instantSnapshotGroup for InstantSnapshotGroup resources.

§
name?: string
[src]

Identifier. Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply withRFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

§
readonly region?: string
[src]

Output only. [Output Only] URL of the region where the instant snapshot group resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.

§
readonly selfLinkWithId?: string
[src]

Output only. [Output Only] Server-defined URL for this resource's resource id.

§
sourceConsistencyGroup?: string
[src]
§
readonly status?: "CREATING" | "DELETING" | "FAILED" | "INVALID" | "READY" | "UNKNOWN"
[src]

Output only. [Output Only]

§
readonly zone?: string
[src]

Output only. [Output Only] URL of the zone where the instant snapshot group resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.