Catalog Integrations (tableflow/v1)

Update a Catalog Integration

General Availability

Make a request to update a catalog integration.

patch/tableflow/v1/catalog-integrations/{id}

Path parameters

idstring required

The unique identifier for the catalog integration.

Request body

api_version'tableflow/v1'

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

kind'CatalogIntegrationUpdateRequest'

Kind defines the object this REST resource represents.

idstring

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 request

{
  "id": "dlz-f3a90de",
  "metadata": {
    "self": "https://api.confluent.cloud/tableflow/v1/catalog-integration-update-requests/ciur-12345",
    "resource_name": "crn://confluent.cloud/organization=9bb441c4-edef-46ac-8a41-c49e44a3fd9a/catalog-integration-update-request=ciur-12345",
    "created_at": "2006-01-02T15:04:05-07:00",
    "updated_at": "2006-01-02T15:04:05-07:00",
    "deleted_at": "2006-01-02T15:04:05-07:00"
  },
  "spec": {
    "display_name": "catalog_integration_1",
    "config": {
      "endpoint": "https://vuser1_polaris.snowflakecomputing.com/"
    }
  }
}

Response

Catalog Integration.

api_version'tableflow/v1' required

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

kind'CatalogIntegration' required

Kind defines the object this REST resource represents.

idstring required

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 response

{
  "id": "dlz-f3a90de",
  "metadata": {
    "self": "https://api.confluent.cloud/tableflow/v1/catalog-integrations/tci-12345",
    "resource_name": "crn://confluent.cloud/organization=9bb441c4-edef-46ac-8a41-c49e44a3fd9a/catalog-integration=tci-12345",
    "created_at": "2006-01-02T15:04:05-07:00",
    "updated_at": "2006-01-02T15:04:05-07:00",
    "deleted_at": "2006-01-02T15:04:05-07:00"
  },
  "spec": {
    "display_name": "catalog_integration_1",
    "config": {
      "provider_integration_id": "cspi-stgce89r7"
    },
    "environment": {
      "id": "env-00000",
      "related": "https://api.confluent.cloud/org/v2/environments/env-00000",
      "resource_name": "https://api.confluent.cloud/organization=9bb441c4-edef-46ac-8a41-c49e44a3fd9a/environment=env-00000"
    },
    "kafka_cluster": {
      "id": "lkc-00000",
      "related": "https://api.confluent.cloud/cmk/v2/clusters/lkc-00000",
      "resource_name": "https://api.confluent.cloud/organization=9bb441c4-edef-46ac-8a41-c49e44a3fd9a/environment=env-abc123/cloud-cluster=lkc-00000"
    }
  },
  "status": {
    "phase": "CONNECTED",
    "error_message": "Could not enable catalog integration"
  }
}

Changes