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

Datastore

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

Represents a datastore resource.

interface Datastore {
readonly clusters?: string[];
readonly createTime?: Date;
description?: string;
etag?: string;
readonly name?: string;
nfsDatastore?: NfsDatastore;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "ACTIVE"
| "UPDATING"
| "DELETING";
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly clusters?: string[]
[src]

Output only. Clusters to which the datastore is attached.

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
description?: string
[src]

Optional. User-provided description for this datastore

§
etag?: string
[src]

Optional. Checksum that may be sent on update and delete requests to ensure that the user-provided value is up to date before the server processes a request. The server computes checksums based on the value of other fields in the request.

§
readonly name?: string
[src]

Output only. Identifier. The resource name of this datastore. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1/datastores/datastore

§
nfsDatastore?: NfsDatastore
[src]

Required. Settings for the NFS datastore.

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

Output only. The state of the Datastore.

§
readonly uid?: string
[src]

Output only. System-generated unique identifier for the resource.

§
readonly updateTime?: Date
[src]

Output only. Last update time of this resource.