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

ClusterState

import type { ClusterState } from "https://googleapis.deno.dev/v1/bigtableadmin:v2.ts";

The state of a table's data in a particular cluster.

interface ClusterState {
readonly encryptionInfo?: EncryptionInfo[];
readonly replicationState?:
| "STATE_NOT_KNOWN"
| "INITIALIZING"
| "PLANNED_MAINTENANCE"
| "UNPLANNED_MAINTENANCE"
| "READY"
| "READY_OPTIMIZING";
}

§Properties

§
readonly encryptionInfo?: EncryptionInfo[]
[src]

Output only. The encryption information for the table in this cluster. If the encryption key protecting this resource is customer managed, then its version can be rotated in Cloud Key Management Service (Cloud KMS). The primary version of the key and its status will be reflected here when changes propagate from Cloud KMS.

§
readonly replicationState?: "STATE_NOT_KNOWN" | "INITIALIZING" | "PLANNED_MAINTENANCE" | "UNPLANNED_MAINTENANCE" | "READY" | "READY_OPTIMIZING"
[src]

Output only. The state of replication for the table in this cluster.