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/bigtableadmin:v2.ts";

A resizable group of nodes in a particular cloud location, capable of serving all Tables in the parent Instance.

interface Cluster {
clusterConfig?: ClusterConfig;
defaultStorageType?: "STORAGE_TYPE_UNSPECIFIED" | "SSD" | "HDD";
encryptionConfig?: EncryptionConfig;
location?: string;
name?: string;
serveNodes?: number;
readonly state?:
| "STATE_NOT_KNOWN"
| "READY"
| "CREATING"
| "RESIZING"
| "DISABLED";
}

§Properties

§
clusterConfig?: ClusterConfig
[src]

Configuration for this cluster.

§
defaultStorageType?: "STORAGE_TYPE_UNSPECIFIED" | "SSD" | "HDD"
[src]

Immutable. The type of storage used by this cluster to serve its parent instance's tables, unless explicitly overridden.

§
encryptionConfig?: EncryptionConfig
[src]

Immutable. The encryption configuration for CMEK-protected clusters.

§
location?: string
[src]

Immutable. The location where this cluster's nodes and storage reside. For best performance, clients should be located as close as possible to this cluster. Currently only zones are supported, so values should be of the form projects/{project}/locations/{zone}.

§
name?: string
[src]

The unique name of the cluster. Values are of the form projects/{project}/instances/{instance}/clusters/a-z*.

§
serveNodes?: number
[src]

The number of nodes in the cluster. If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.

§
readonly state?: "STATE_NOT_KNOWN" | "READY" | "CREATING" | "RESIZING" | "DISABLED"
[src]

Output only. The current state of the cluster.