addGrantees method
- AddGranteesRequest request,
- String dataPolicy, {
- String? $fields,
Adds new grantees to a data policy.
The new grantees will be added to the existing grantees. If the request contains a duplicate grantee, the grantee will be ignored. If the request contains a grantee that already exists, the grantee will be ignored.
request - The metadata request object.
Request parameters:
dataPolicy - Required. Resource name of this data policy, in the format
of
projects/{project_number}/locations/{location_id}/dataPolicies/{data_policy_id}.
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/dataPolicies/\[^/\]+$.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a DataPolicy.
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<DataPolicy> addGrantees(
AddGranteesRequest request,
core.String dataPolicy, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
'fields': ?$fields == null ? null : [$fields],
};
final url_ = 'v2/' + core.Uri.encodeFull('$dataPolicy') + ':addGrantees';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return DataPolicy.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}