跳到内容

ListTableVersions

描述

      description: |
        List all versions (commits) of table `id` with their metadata.

请求模式

    ListTableVersionsRequest:
      type: object
      properties:
        id:
          type: array
          items:
            type: string
        page_token:
          $ref: '#/components/schemas/PageToken'
        limit:
          $ref: '#/components/schemas/PageLimit'

响应模式

    ListTableVersionsResponse:
      type: object
      required:
        - versions
      properties:
        versions:
          type: array
          items:
            $ref: '#/components/schemas/TableVersion'
          description: List of table versions
        page_token:
          $ref: '#/components/schemas/PageToken'

表版本

    TableVersion:
      type: object
      required:
        - version
        - timestamp
      properties:
        version:
          type: integer
          format: int64
          minimum: 0
          description: Version number
        timestamp:
          type: string
          format: date-time
          description: Timestamp when the version was created