import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets information about a cluster. */ export declare function getCluster(args: GetClusterArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetClusterArgs { clusterId: string; instanceId: string; project?: string; } export interface GetClusterResult { /** * Configuration for this cluster. */ readonly clusterConfig: outputs.bigtableadmin.v2.ClusterConfigResponse; /** * Immutable. The type of storage used by this cluster to serve its parent instance's tables, unless explicitly overridden. */ readonly defaultStorageType: string; /** * Immutable. The encryption configuration for CMEK-protected clusters. */ readonly encryptionConfig: outputs.bigtableadmin.v2.EncryptionConfigResponse; /** * 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}`. */ readonly location: string; /** * The unique name of the cluster. Values are of the form `projects/{project}/instances/{instance}/clusters/a-z*`. */ readonly name: string; /** * 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 serveNodes: number; /** * The current state of the cluster. */ readonly state: string; } /** * Gets information about a cluster. */ export declare function getClusterOutput(args: GetClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetClusterOutputArgs { clusterId: pulumi.Input; instanceId: pulumi.Input; project?: pulumi.Input; }