Tableflow Topics (tableflow/v1)

List of Tableflow Topics

General Availability

Retrieve a sorted, filtered, paginated list of all tableflow topics.

get/tableflow/v1/tableflow-topics

Query parameters

spec.table_formatsstring[]

Filter a collection by a string search for one or more values

Filter the results by exact match for spec.table_formats. Pass multiple times to see results matching any of the values.

environmentstring required

Filter a collection by a string search

Filter the results by exact match for environment.

spec.kafka_clusterstring required

Filter a collection by a string search

Filter the results by exact match for spec.kafka_cluster.

page_sizeinteger

A pagination size for collection requests.

page_tokenstring

An opaque pagination token for collection requests.

Response

Tableflow Topic.

api_version'tableflow/v1' required

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

kind'TableflowTopicList' required

Kind defines the object this REST resource represents.

Example response

{
  "metadata": {
    "first": "https://api.confluent.cloud/tableflow/v1/tableflow-topics",
    "last": "https://api.confluent.cloud/tableflow/v1/tableflow-topics?page_token=bcAOehAY8F16YD84Z1wT",
    "prev": "https://api.confluent.cloud/tableflow/v1/tableflow-topics?page_token=YIXRY97wWYmwzrax4dld",
    "next": "https://api.confluent.cloud/tableflow/v1/tableflow-topics?page_token=UvmDWOB1iwfAIBPj6EYb",
    "total_size": 123
  },
  "data": [
    {
      "metadata": {
        "self": "https://api.confluent.cloud/tableflow/v1/tableflow-topics/tt-12345",
        "resource_name": "crn://confluent.cloud/organization=9bb441c4-edef-46ac-8a41-c49e44a3fd9a/tableflow-topic=tt-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": "topic_1",
        "config": {
          "enable_compaction": true,
          "enable_partitioning": true,
          "retention_ms": "7776000000",
          "data_retention_ms": "2592000000"
        },
        "storage": {
          "bucket_name": "bucket_1",
          "bucket_region": "us-east-1",
          "provider_integration_id": "cspi-stgce89r7",
          "table_path": "s3://dummy-bucket-name-1/10011010/11101100/org-1/env-2/lkc-3/v1/tableId"
        },
        "table_formats": [
          "DELTA"
        ],
        "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": "PENDING",
        "error_message": "Could not enable catalog integration",
        "catalog_sync_statuses": [
          {
            "catalog_integration_id": "tci-12345",
            "catalog_type": "AWS_GLUE",
            "sync_status": "SYNCED",
            "error_message": "Failed to connect to catalog: authentication error"
          }
        ],
        "failing_table_formats": [
          {
            "format": "ICEBERG",
            "error_message": "Schema validation failed"
          },
          {
            "format": "DELTA",
            "error_message": "Connection timeout"
          }
        ],
        "write_mode": "APPEND"
      }
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.