Method: projects.locations.metadataStores.list

Lists MetadataStores for a Location.

Endpoint

get https://{service-endpoint}/v1/{parent}/metadataStores

Where {service-endpoint} is one of the supported service endpoints.

Path parameters

parent string

Required. The Location whose MetadataStores should be listed. Format: projects/{project}/locations/{location}

Query parameters

pageSize integer

The maximum number of metadata Stores to return. The service may return fewer. Must be in range 1-1000, inclusive. Defaults to 100.

pageToken string

A page token, received from a previous MetadataService.ListMetadataStores call. Provide this to retrieve the subsequent page.

When paginating, all other provided parameters must match the call that provided the page token. (Otherwise the request will fail with INVALID_ARGUMENT error.)

Request body

The request body must be empty.

Response body

Response message for MetadataService.ListMetadataStores.

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

Fields
metadataStores[] object (MetadataStore)

The MetadataStores found for the Location.

nextPageToken string

A token, which can be sent as ListMetadataStoresRequest.page_token to retrieve the next page. If this field is not populated, there are no subsequent pages.

JSON representation
{
  "metadataStores": [
    {
      object (MetadataStore)
    }
  ],
  "nextPageToken": string
}