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

Cluster

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

A cluster in a private cloud.

interface Cluster {
readonly createTime?: Date;
readonly management?: boolean;
readonly name?: string;
nodeTypeConfigs?: {
[key: string]: NodeTypeConfig;
}
;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "CREATING"
| "UPDATING"
| "DELETING"
| "REPAIRING";
stretchedClusterConfig?: StretchedClusterConfig;
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
readonly management?: boolean
[src]

Output only. True if the cluster is a management cluster; false otherwise. There can only be one management cluster in a private cloud and it has to be the first one.

§
readonly name?: string
[src]

Output only. The resource name of this cluster. 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-a/privateClouds/my-cloud/clusters/my-cluster

§
nodeTypeConfigs?: {
[key: string]: NodeTypeConfig;
}
[src]

Required. The map of cluster node types in this cluster, where the key is canonical identifier of the node type (corresponds to the NodeType).

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

Output only. State of the resource.

§
stretchedClusterConfig?: StretchedClusterConfig
[src]

Optional. Configuration of a stretched cluster. Required for clusters that belong to a STRETCHED private cloud.

§
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.