Queries the names of all tables that are created in the current instance.
Usage notes
After you create a table, the name of the table appears in ListTableResponse. However, you may fail to immediately perform read and write operations on the table.
Request syntax
message ListTableRequest {
}
Response syntax
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 query the names of all tables that are created in an instance:
Tablestore SDK for Java: List the names of tables
Tablestore SDK for Go: Query the names of tables
Tablestore SDK for Python: Query the names of tables
Tablestore SDK for Node.js: Query the names of tables
Tablestore SDK for .NET: List the names of tables
Tablestore SDK for PHP: Query the names of tables