List table buckets

更新时间:
复制 MD 格式

Lists all Table Buckets that you own.

Usage notes

Use --prefix to filter by name prefix, or --max-buckets and --continuation-token for pagination.

Syntax

ossutil tables-api list-table-buckets [--prefix value] [--max-buckets value] [--continuation-token value] [flags]

Parameter

Type

Description

--prefix

string

Filters results to Table Buckets whose names start with this prefix.

--max-buckets

int

Maximum number of Table Buckets to return. Default: all.

--continuation-token

string

Token from a previous truncated response. Use this to retrieve the next page.

Note

Examples

  • List all your Table Buckets:

    ossutil tables-api list-table-buckets
  • List Table Buckets with the prefix my-:

    ossutil tables-api list-table-buckets --prefix my-
  • List up to 10 Table Buckets per page:

    ossutil tables-api list-table-buckets --max-buckets 10