Skip to main content

custom_connect_plugins

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

Overview

Namecustom_connect_plugins
TypeResource
Idconfluent.ccpm.custom_connect_plugins

Fields

The following fields are returned by SELECT queries:

Custom Connect Plugin.

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. (ccpm/v1)
kindstringKind defines the object this REST resource represents. (CustomConnectPlugin)
metadataobjectObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
specobjectThe desired state of the Custom Connect Plugin

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_ccpm_v1_custom_connect_pluginselectenvironment, idMake a request to read a custom connect plugin.
list_ccpm_v1_custom_connect_pluginsselectenvironmentspec.cloud, page_size, page_tokenRetrieve a sorted, filtered, paginated list of all custom connect plugins.

If no cloud filter is specified, returns custom connect plugins from all clouds.
create_ccpm_v1_custom_connect_plugininsertspecMake a request to create a custom connect plugin.
update_ccpm_v1_custom_connect_pluginupdateid, specMake a request to update a custom connect plugin.

delete_ccpm_v1_custom_connect_plugindeleteenvironment, idMake a request to delete a custom connect plugin.

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 custom connect plugin.
page_sizeintegerA pagination size for collection requests.
page_tokenstringAn opaque pagination token for collection requests.
spec.cloudstringFilter the results by exact match for spec.cloud. (example: AWS)

SELECT examples

Make a request to read a custom connect plugin.

SELECT
id,
api_version,
kind,
metadata,
spec
FROM confluent.ccpm.custom_connect_plugins
WHERE environment = '{{ environment }}' -- required
AND id = '{{ id }}' -- required
;

INSERT examples

Make a request to create a custom connect plugin.

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

UPDATE examples

Make a request to update a custom connect plugin.

UPDATE confluent.ccpm.custom_connect_plugins
SET
spec = '{{ spec }}'
WHERE
id = '{{ id }}' --required
AND spec = '{{ spec }}' --required
RETURNING
id,
api_version,
kind,
metadata,
spec;

DELETE examples

Make a request to delete a custom connect plugin.

DELETE FROM confluent.ccpm.custom_connect_plugins
WHERE environment = '{{ environment }}' --required
AND id = '{{ id }}' --required
;