cluster_link_configs
Creates, updates, deletes, gets or lists a cluster_link_configs
resource.
Overview
Name | cluster_link_configs |
Type | Resource |
Id | confluent.kafka.cluster_link_configs |
Fields
Name | Datatype | Description |
---|---|---|
name | string | |
cluster_id | string | |
kind | string | |
link_name | string | |
metadata | object | |
read_only | boolean | |
sensitive | boolean | |
source | string | |
synonyms | array | |
value | string |
Methods
SELECT
examples
SELECT
name,
cluster_id,
kind,
link_name,
metadata,
read_only,
sensitive,
source,
synonyms,
value
FROM confluent.kafka.cluster_link_configs
WHERE cluster_id = '{{ cluster_id }}'
AND link_name = '{{ link_name }}';
DELETE
example
Deletes the specified cluster_link_configs
resource.
/*+ delete */
DELETE FROM confluent.kafka.cluster_link_configs
WHERE cluster_id = '{{ cluster_id }}'
AND config_name = '{{ config_name }}'
AND link_name = '{{ link_name }}';