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

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?: {
[key: string]: string;
}
[src]

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.

§
readonly createTime?: Date
[src]

Output only. The time when the cluster was created.

§

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}

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

Optional. Labels as key value pairs.

§
name?: string
[src]

Identifier. The name of the Kafka Connect cluster. Structured like: projects/{project_number}/locations/{location}/connectClusters/{connect_cluster_id}

§
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.