Skip to main content

exporter_configs

Creates, updates, deletes, gets or lists an exporter_configs resource.

Overview

Nameexporter_configs
TypeResource
Idconfluent.schema_registry.exporter_configs

Fields

The following fields are returned by SELECT queries:

The original request

NameDatatypeDescription
basic.auth.credentials.sourcestringConfig SR Auth (example: USER_INFO)
basic.auth.user.infostringConfig SR User Info
schema.registry.urlstringConfig SR URL (example: <Physical SR Endpoint>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_exporter_config_by_nameselectnameRetrieves the config of the schema exporter.
update_exporter_config_by_namereplacenameUpdates the configuration of the schema exporter.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
namestringName of the 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 }}' -- required
;

REPLACE examples

Updates the configuration of the schema exporter.

REPLACE confluent.schema_registry.exporter_configs
SET
schema.registry.url = '{{ schema.registry.url }}',
basic.auth.credentials.source = '{{ basic.auth.credentials.source }}',
basic.auth.user.info = '{{ basic.auth.user.info }}'
WHERE
name = '{{ name }}' --required
RETURNING
name;