clusters
Creates, updates, deletes, gets or lists a clusters
resource.
Overview
Name | clusters |
Type | Resource |
Id | confluent.kafka.clusters |
Fields
Name | Datatype | Description |
---|---|---|
acls | object | |
broker_configs | object | |
brokers | object | |
cluster_id | string | |
consumer_groups | object | |
controller | object | |
kind | string | |
metadata | object | |
partition_reassignments | object | |
topics | object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_kafka_cluster | SELECT | cluster_id | Return the Kafka cluster with the specified cluster_id . |
SELECT
examples
Return the Kafka cluster with the specified cluster_id
.
SELECT
acls,
broker_configs,
brokers,
cluster_id,
consumer_groups,
controller,
kind,
metadata,
partition_reassignments,
topics
FROM confluent.kafka.clusters
WHERE cluster_id = '{{ cluster_id }}';