- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- TableIdentifier
- Try it!
Lists table identifiers (not tables) in the namespace.
HTTP request
GET https://biglake.googleapis.com/iceberg/v1alpha/restcatalog/v1/{parent=projects/*/catalogs/*/namespaces/*}/tables
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
parent |
Required. The namespace to list tables from. |
Query parameters
| Parameters | |
|---|---|
pageToken |
Optional. PageToken for pagination. |
pageSize |
Optional. Page size for pagination. |
Request body
The request body must be empty.
Response body
The response message for the tables.list API.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"identifiers": [
{
object ( |
| Fields | |
|---|---|
identifiers[] |
Output only. The list of table identifiers. |
next-page-token |
Output only. The next page token for pagination. |
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/bigqueryhttps://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
TableIdentifier
The table identifier.
| JSON representation |
|---|
{ "namespace": [ string ], "name": string } |
| Fields | |
|---|---|
namespace[] |
The namespace of the table. This is always 1 element, since we don't support nested namespaces. |
name |
The table name. |