ConnectCluster
import type { ConnectCluster } from "https://googleapis.deno.dev/v1/managedkafka:v1.ts";
An Apache Kafka Connect cluster deployed in a location.
interface ConnectCluster {
capacityConfig?: CapacityConfig;
config?: {};
[key: string]: string;
readonly createTime?: Date;
gcpConfig?: ConnectGcpConfig;
kafkaCluster?: string;
labels?: {};
[key: string]: string;
name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "ACTIVE"
| "DELETING";
readonly updateTime?: Date;
}§Properties
§
capacityConfig?: CapacityConfig
[src]Required. Capacity configuration for the Kafka Connect cluster.
§
config?: {}
[src][key: string]: string;
Optional. Configurations for the worker that are overridden from the
defaults. The key of the map is a Kafka Connect worker property name, for
example: exactly.once.source.support
.
§
gcpConfig?: ConnectGcpConfig
[src]Required. Configuration properties for a Kafka Connect cluster deployed to Google Cloud Platform.
§
kafkaCluster?: string
[src]Required. Immutable. The name of the Kafka cluster this Kafka Connect cluster is attached to. Structured like: projects/{project}/locations/{location}/clusters/{cluster}
§
name?: string
[src]Identifier. The name of the Kafka Connect cluster. Structured like: projects/{project_number}/locations/{location}/connectClusters/{connect_cluster_id}