Skip to main content

custom_connector_runtimes

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

Overview

Namecustom_connector_runtimes
TypeResource
Idconfluent.connect.custom_connector_runtimes

Fields

The following fields are returned by SELECT queries:

Custom Connector Runtime.

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)
custom_connect_plugin_runtime_namestringName of the runtime that is being used while provisioning a custom connector. This corresponds to the property custom.connect.plugin.runtime in the connector configuration. (example: 3.9.0)
api_versionstringAPIVersion defines the schema version of this representation of a resource. (connect/v1)
descriptionstringDescription of the runtime (example: Custom Connector Plugin runtime using AK 3.9.0 and supporting Java 11 and 17)
end_of_life_atstring (date-time)End of Life date for the runtime (example: 2006-01-02T15:04:05-07:00)
kindstringKind defines the object this REST resource represents. (CustomConnectorRuntime)
product_maturitystringThe product maturity phase for the plugin runtime. EA (Early Access), GA (Generally Available), or Preview. (example: GA)
runtime_ak_versionstringThe underlying version of Apache Kafka which bundles the connect runtime (example: 3.9.0)
supported_java_versionsarrayList of supported Java versions

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_connect_v1_custom_connector_runtimesselectpage_size, page_tokenRetrieve a sorted, filtered, paginated list of all custom connector runtimes.

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
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.

SELECT examples

Retrieve a sorted, filtered, paginated list of all custom connector runtimes.

SELECT
id,
custom_connect_plugin_runtime_name,
api_version,
description,
end_of_life_at,
kind,
product_maturity,
runtime_ak_version,
supported_java_versions
FROM confluent.connect.custom_connector_runtimes
WHERE page_size = '{{ page_size }}'
AND page_token = '{{ page_token }}'
;