batchGet method

Atomically gets the RecaptchaV3Configs for the specified list of apps.

For security reasons, the site_secret field is never populated in the response.

Request parameters:

parent - Required. The parent project name shared by all RecaptchaV3Configs being retrieved, in the format projects/{project_number} The parent collection in the name field of any resource being retrieved must match this field, or the entire batch fails. Value must have pattern ^projects/\[^/\]+$.

names - Required. The relative resource names of the RecaptchaV3Configs to retrieve, in the format: projects/{project_number}/apps/{app_id}/recaptchaV3Config A maximum of 100 objects can be retrieved in a batch.

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

Completes with a GoogleFirebaseAppcheckV1BatchGetRecaptchaV3ConfigsResponse.

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

  final url_ = 'v1/' +
      core.Uri.encodeFull('$parent') +
      '/apps/-/recaptchaV3Config:batchGet';

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