removeGrantees method
- RemoveGranteesRequest request,
- String dataPolicy, {
- String? $fields,
Removes grantees from a data policy.
The grantees will be removed from the existing grantees. If the request contains a grantee that does not exist, 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> removeGrantees(
RemoveGranteesRequest 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') + ':removeGrantees';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return DataPolicy.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}