exporter_configs
Creates, updates, deletes, gets or lists a exporter_configs
resource.
Overview
Name | exporter_configs |
Type | Resource |
Id | confluent.schema_registry.exporter_configs |
Fields
Name | Datatype | Description |
---|---|---|
basic.auth.credentials.source | string | Config SR Auth |
basic.auth.user.info | string | Config SR User Info |
schema.registry.url | string | Config SR URL |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_exporter_config_by_name | SELECT | name | Retrieves the config of the schema exporter. |
update_exporter_config_by_name | EXEC | name | Retrieves the config of the schema exporter. |
SELECT
examples
Retrieves the config of the schema exporter.
SELECT
basic.auth.credentials.source,
basic.auth.user.info,
schema.registry.url
FROM confluent.schema_registry.exporter_configs
WHERE name = '{{ name }}';