list method
Lists entry groups.
Request parameters:
parent
- Required. The name of the location that contains the entry
groups, which can be provided in URL format. Example: *
projects/{project_id}/locations/{location}
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$
.
pageSize
- Optional. The maximum number of items to return. Default is
10. Max limit is 1000. Throws an invalid argument for page_size > 1000
.
pageToken
- Optional. Token that specifies which page is requested. If
empty, the first page is returned.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse.
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<GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse> list(
core.String parent, {
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1beta1/' + core.Uri.encodeFull('$parent') + '/entryGroups';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse.fromJson(
_response as core.Map<core.String, core.dynamic>);
}