Skip to main content

catalog_integrations

Creates, updates, deletes, gets or lists a catalog_integrations resource.

Overview

Namecatalog_integrations
TypeResource
Idconfluent.tableflow.catalog_integrations

Fields

The following fields are returned by SELECT queries:

Catalog Integration.

NameDatatypeDescription
idstringID is the "natural identifier" for an object within its scope/namespace; it is normally unique across time but not space. That is, you can assume that the ID will not be reclaimed and reused after an object is deleted ("time"); however, it may collide with IDs for other object kinds or objects of the same kind within a different scope/namespace ("space"). (example: dlz-f3a90de)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (tableflow/v1)
kindstringKind defines the object this REST resource represents. (CatalogIntegration)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
specobjectThe desired state of the Catalog Integration
statusobjectThe status of the Catalog Integration

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_tableflow_v1_catalog_integrationselectenvironment, spec.kafka_cluster, idMake a request to read a catalog integration.
list_tableflow_v1_catalog_integrationsselectenvironment, spec.kafka_clusterpage_size, page_tokenRetrieve a sorted, filtered, paginated list of all catalog integrations.
create_tableflow_v1_catalog_integrationinsertspecMake a request to create a catalog integration.
update_tableflow_v1_catalog_integrationupdateidMake a request to update a catalog integration.

delete_tableflow_v1_catalog_integrationdeleteenvironment, spec.kafka_cluster, idMake a request to delete a catalog integration.

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
environmentstringScope the operation to the given environment. (example: env-00000)
idstringThe unique identifier for the catalog integration.
spec.kafka_clusterstringScope the operation to the given spec.kafka_cluster. (example: lkc-00000)
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.

SELECT examples

Make a request to read a catalog integration.

SELECT
id,
api_version,
kind,
metadata,
spec,
status
FROM confluent.tableflow.catalog_integrations
WHERE environment = '{{ environment }}' -- required
AND spec.kafka_cluster = '{{ spec.kafka_cluster }}' -- required
AND id = '{{ id }}' -- required
;

INSERT examples

Make a request to create a catalog integration.

INSERT INTO confluent.tableflow.catalog_integrations (
spec
)
SELECT
'{{ spec }}' /* required */
RETURNING
id,
api_version,
kind,
metadata,
spec,
status
;

UPDATE examples

Make a request to update a catalog integration.

UPDATE confluent.tableflow.catalog_integrations
SET
spec = '{{ spec }}'
WHERE
id = '{{ id }}' --required
RETURNING
id,
api_version,
kind,
metadata,
spec,
status;

DELETE examples

Make a request to delete a catalog integration.

DELETE FROM confluent.tableflow.catalog_integrations
WHERE environment = '{{ environment }}' --required
AND spec.kafka_cluster = '{{ spec.kafka_cluster }}' --required
AND id = '{{ id }}' --required
;