get method

Future<EndUserAuthentication> get(
  1. String name, {
  2. String? view,
  3. String? $fields,
})

Gets details of a single EndUserAuthentication.

Request parameters:

name - Required. Resource name of the form: projects / * /locations / * /connections / * /EndUserAuthentications / * Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/connections/\[^/\]+/endUserAuthentications/\[^/\]+$.

view - Optional. View of the EndUserAuthentication to return. Possible string values are:

  • "END_USER_AUTHENTICATION_VIEW_UNSPECIFIED" : END_USER_AUTHENTICATION_UNSPECIFIED.
  • "BASIC_VIEW" : Do not include secret fields.
  • "FULL_VIEW" : Include secret fields.

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

Completes with a EndUserAuthentication.

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

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

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