batchGet method
Atomically gets the RecaptchaEnterpriseConfigs for the specified list of apps.
Request parameters:
parent
- Required. The parent project name shared by all
RecaptchaEnterpriseConfigs 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
RecaptchaEnterpriseConfigs to retrieve, in the format: projects/{project_number}/apps/{app_id}/recaptchaEnterpriseConfig
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 GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.
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<
GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse>
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 = 'v1beta/' +
core.Uri.encodeFull('$parent') +
'/apps/-/recaptchaEnterpriseConfig:batchGet';
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse
.fromJson(_response as core.Map<core.String, core.dynamic>);
}