Custom Connector Runtimes (connect/v1)

List of Custom Connector Runtimes

General Availability

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

get/connect/v1/custom-connector-runtimes

Query parameters

page_sizeinteger

A pagination size for collection requests.

page_tokenstring

An opaque pagination token for collection requests.

Response

Custom Connector Runtime.

api_version'connect/v1' required

APIVersion defines the schema version of this representation of a resource.

kind'CustomConnectorRuntimeList' required

Kind defines the object this REST resource represents.

Example response

{
  "metadata": {
    "first": "https://api.confluent.cloud/connect/v1/custom-connector-runtimes",
    "last": "https://api.confluent.cloud/connect/v1/custom-connector-runtimes?page_token=bcAOehAY8F16YD84Z1wT",
    "prev": "https://api.confluent.cloud/connect/v1/custom-connector-runtimes?page_token=YIXRY97wWYmwzrax4dld",
    "next": "https://api.confluent.cloud/connect/v1/custom-connector-runtimes?page_token=UvmDWOB1iwfAIBPj6EYb",
    "total_size": 123
  },
  "data": [
    {
      "id": "dlz-f3a90de",
      "custom_connect_plugin_runtime_name": "3.9.0",
      "runtime_ak_version": "3.9.0",
      "supported_java_versions": [
        "11",
        "17"
      ],
      "product_maturity": "GA",
      "end_of_life_at": "2006-01-02T15:04:05-07:00",
      "description": "Custom Connector Plugin runtime using AK 3.9.0 and supporting Java 11 and 17"
    }
  ]
}

Changes