default_topic_configs
Creates, updates, deletes, gets or lists a default_topic_configs
resource.
Overview
Name | default_topic_configs |
Type | Resource |
Id | confluent.kafka.default_topic_configs |
Fields
Name | Datatype | Description |
---|---|---|
data | array | |
kind | string | |
metadata | object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_kafka_default_topic_configs | SELECT | cluster_id, topic_name | List the default configuration parameters used if the topic were to be newly created. |
SELECT
examples
List the default configuration parameters used if the topic were to be newly created.
SELECT
data,
kind,
metadata
FROM confluent.kafka.default_topic_configs
WHERE cluster_id = '{{ cluster_id }}'
AND topic_name = '{{ topic_name }}';