list method

Future<GoogleCloudDatacatalogV1ListTaxonomiesResponse> list(
  1. String parent, {
  2. String? filter,
  3. int? pageSize,
  4. String? pageToken,
  5. String? $fields,
})

Lists all taxonomies in a project in a particular location that you have a permission to view.

Request parameters:

parent - Required. Resource name of the project to list the taxonomies of. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

filter - Supported field for filter is 'service' and value is 'dataplex'. Eg: service=dataplex.

pageSize - The maximum number of items to return. Must be a value between 1 and 1000 inclusively. If not set, defaults to 50.

pageToken - The pagination token of the next results page. If not set, the first page is returned. The token is returned in the response to a previous list request.

$fields - Selector specifying which fields to include in a partial response.

Completes with a GoogleCloudDatacatalogV1ListTaxonomiesResponse.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<GoogleCloudDatacatalogV1ListTaxonomiesResponse> list(
  core.String parent, {
  core.String? filter,
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    'filter': ?filter == null ? null : [filter],
    'pageSize': ?pageSize == null ? null : ['${pageSize}'],
    'pageToken': ?pageToken == null ? null : [pageToken],
    'fields': ?$fields == null ? null : [$fields],
  };

  final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/taxonomies';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return GoogleCloudDatacatalogV1ListTaxonomiesResponse.fromJson(
    response_ as core.Map<core.String, core.dynamic>,
  );
}