Method: projects.locations.glossaries.categories.list

Lists GlossaryCategory resources in a Glossary.

HTTP request

GET https://dataplex.googleapis.com/v1/{parent=projects/*/locations/*/glossaries/*}/categories

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The parent, which has this collection of GlossaryCategories. Format: projects/{project_id_or_number}/locations/{locationId}/glossaries/{glossaryId} Location is the GCP region.

Query parameters

Parameters
pageSize

integer

Optional. The maximum number of GlossaryCategories to return. The service may return fewer than this value. If unspecified, at most 50 GlossaryCategories will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

pageToken

string

Optional. A page token, received from a previous categories.list call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to categories.list must match the call that provided the page token.

filter

string

Optional. Filter expression that filters GlossaryCategories listed in the response. Filters are supported on the following fields: - immediate_parent

Examples of using a filter are: - immediate_parent="projects/{project_id_or_number}/locations/{locationId}/glossaries/{glossaryId}" - immediate_parent="projects/{project_id_or_number}/locations/{locationId}/glossaries/{glossaryId}/categories/{categoryId}"

This will only return the GlossaryCategories that are directly nested under the specified parent.

orderBy

string

Optional. Order by expression that orders GlossaryCategories listed in the response. Order by fields are: name or createTime for the result. If not specified, the ordering is undefined.

Request body

The request body must be empty.

Response body

List GlossaryCategories Response

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

JSON representation
{
  "categories": [
    {
      object (GlossaryCategory)
    }
  ],
  "nextPageToken": string,
  "unreachableLocations": [
    string
  ]
}
Fields
categories[]

object (GlossaryCategory)

Lists the GlossaryCategories in the specified parent.

nextPageToken

string

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

unreachableLocations[]

string

Locations that the service couldn't reach.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • dataplex.glossaryCategories.list

For more information, see the IAM documentation.