Skip to content

TableExists

Description

      description: |
        Check if table `id` exists.

        This operation should behave exactly like DescribeTable, 
        except it does not contain a response body.

Request Schema

    TableExistsRequest:
      type: object
      properties:
        id:
          type: array
          items:
            type: string
        version:
          description: |
            Version of the table to check existence.
            If not specified, server should resolve it to the latest version.
          type: integer
          format: int64
          minimum: 0

Response

This operation returns success if the table exists, or an error if it does not exist. No response body is included in successful responses.