list method

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

Lists endpoint groups in a given project and location.

See https://google.aip.dev/132.

Request parameters:

parent - Required. The parent, which owns this collection of endpoint groups. Example: projects/123456789/locations/global. See https://google.aip.dev/132 for more details. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

filter - Optional. Filter expression. See https://google.aip.dev/160#filtering for more details.

orderBy - Optional. Sort expression. See https://google.aip.dev/132#ordering for more details.

pageSize - Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. See https://google.aip.dev/158 for more details.

pageToken - Optional. A page token, received from a previous ListMirroringEndpointGroups call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListMirroringEndpointGroups must match the call that provided the page token. See https://google.aip.dev/158 for more details.

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

Completes with a ListMirroringEndpointGroupsResponse.

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<ListMirroringEndpointGroupsResponse> list(
  core.String parent, {
  core.String? filter,
  core.String? orderBy,
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (filter != null) 'filter': [filter],
    if (orderBy != null) 'orderBy': [orderBy],
    if (pageSize != null) 'pageSize': ['${pageSize}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

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

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