You can call this operation to query the names of all tables that are created in the current instance.
Usage notes
If a table has just been created, its table name appears in ListTableResponse, but this does not necessarily mean that this table can be read or written at the moment.
Request structure
message ListTableRequest {
}
Response structure
message ListTableResponse {
repeated string table_names = 1;
}
Parameter | Type | Description |
---|---|---|
table_names | repeated String | The names of all tables in the current instance. |
Use Tablestore SDKs
You can use the following Tablestore SDKs to list the names of tables:
- Tablestore SDK for Java: Query table names
- Tablestore SDK for Go: Query table names
- Tablestore SDK for Python: Query table names
- Tablestore SDK for Node.js: Query table names
- Tablestore SDK for .NET: Query table names
- Tablestore SDK for PHP: Query table names