Method: hive.v1alpha.projects.catalogs.databases.tables.list

List all hive tables in a specified project under the hive catalog and database.

HTTP request

GET https://biglake.googleapis.com/hive/v1alpha/{parent=projects/*/catalogs/*/databases/*}/tables

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The database to list tables from. Format: projects/{project_id_or_number}/catalogs/{catalogId}/databases/{databaseId}

Query parameters

Parameters
pageSize

integer

Optional. Page size for pagination.

pageToken

string

Optional. PageToken for pagination.

Request body

The request body must be empty.

Response body

Response message for the tables.list method.

If successful, the response body contains data with the following structure:

JSON representation
{
  "tables": [
    {
      object (HiveTable)
    }
  ],
  "nextPageToken": string
}
Fields
tables[]

object (HiveTable)

Output only. The tables from the specified project, catalog and database.

nextPageToken

string

Output only. A token, which can be sent as pageToken to retrieve the next page. If this field is omitted, there are no subsequent pages.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/bigquery
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.