Skip to content

DropTable

Description

      description: |
        Drop table `id` and delete its data.

Request Schema

    DropTableRequest:
      type: object
      description: |
        If the table and its data can be immediately deleted, return information of the deleted table.
        Otherwise, return a transaction ID that client can use to track deletion progress.
      properties:
        id:
          type: array
          items:
            type: string

Response Schema

    DropTableResponse:
      type: object
      properties:
        id:
          type: array
          items:
            type: string
        location:
          type: string
        properties:
          type: object
          additionalProperties:
            type: string
        transactionId:
          type: array
          description: |
            If present, indicating the operation is long running and should be tracked using GetTransaction
          items:
            type: string