custom_connector_runtimes
Creates, updates, deletes, gets or lists a custom_connector_runtimes resource.
Overview
| Name | custom_connector_runtimes |
| Type | Resource |
| Id | confluent.connect.custom_connector_runtimes |
Fields
The following fields are returned by SELECT queries:
- list_connect_v1_custom_connector_runtimes
Custom Connector Runtime.
| Name | Datatype | Description |
|---|---|---|
id | string | ID 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_name | string | Name 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_version | string | APIVersion defines the schema version of this representation of a resource. (connect/v1) |
description | string | Description of the runtime (example: Custom Connector Plugin runtime using AK 3.9.0 and supporting Java 11 and 17) |
end_of_life_at | string (date-time) | End of Life date for the runtime (example: 2006-01-02T15:04:05-07:00) |
kind | string | Kind defines the object this REST resource represents. (CustomConnectorRuntime) |
product_maturity | string | The product maturity phase for the plugin runtime. EA (Early Access), GA (Generally Available), or Preview. (example: GA) |
runtime_ak_version | string | The underlying version of Apache Kafka which bundles the connect runtime (example: 3.9.0) |
supported_java_versions | array | List of supported Java versions |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_connect_v1_custom_connector_runtimes | select | page_size, page_token | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
page_size | integer | A pagination size for collection requests. |
page_token | string | An opaque pagination token for collection requests. |
SELECT examples
- list_connect_v1_custom_connector_runtimes
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 }}'
;