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/managedkafka:v1.ts";

An Apache Kafka cluster deployed in a location.

interface Cluster {
capacityConfig?: CapacityConfig;
readonly createTime?: Date;
gcpConfig?: GcpConfig;
labels?: {
[key: string]: string;
}
;
name?: string;
rebalanceConfig?: RebalanceConfig;
readonly satisfiesPzi?: boolean;
readonly satisfiesPzs?: boolean;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "ACTIVE"
| "DELETING";
readonly updateTime?: Date;
}

§Properties

§
capacityConfig?: CapacityConfig
[src]

Required. Capacity configuration for the Kafka cluster.

§
readonly createTime?: Date
[src]

Output only. The time when the cluster was created.

§
gcpConfig?: GcpConfig
[src]

Required. Configuration properties for a Kafka cluster deployed to Google Cloud Platform.

§
labels?: {
[key: string]: string;
}
[src]

Optional. Labels as key value pairs.

§
name?: string
[src]

Identifier. The name of the cluster. Structured like: projects/{project_number}/locations/{location}/clusters/{cluster_id}

§
rebalanceConfig?: RebalanceConfig
[src]

Optional. Rebalance configuration for the Kafka cluster.

§
readonly satisfiesPzi?: boolean
[src]

Output only. Reserved for future use.

§
readonly satisfiesPzs?: boolean
[src]

Output only. Reserved for future use.

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

Output only. The current state of the cluster.

§
readonly updateTime?: Date
[src]

Output only. The time when the cluster was last updated.