Skip to content

RestoreTable

Description

      description: |
        Restore table `id` to a specific version.

Request Schema

    RestoreTableRequest:
      type: object
      properties:
        id:
          type: array
          items:
            type: string
        version:
          type: integer
          format: int64
          minimum: 0
          description: Version to restore to (if not specified, restores to current version)

Response Schema

    RestoreTableResponse:
      type: object
      properties:
        version:
          type: integer
          format: int64
          minimum: 0
          description: Version of the table after restore operation