list method

Future<ListKeyHandlesResponse> list(
  1. String parent, {
  2. String? filter,
  3. String? $fields,
})

Lists KeyHandles.

Request parameters:

parent - Required. Name of the resource project and location from which to list KeyHandles, e.g. projects/{PROJECT_ID}/locations/{LOCATION}. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

filter - Optional. Filter to apply when listing KeyHandles, e.g. resource_type_selector="{SERVICE}.googleapis.com/{TYPE}".

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

Completes with a ListKeyHandlesResponse.

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

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

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