patch method
- GoogleCloudOrgpolicyV2CustomConstraint request,
- String name, {
- String? $fields,
Updates a custom constraint.
Returns a google.rpc.Status
with google.rpc.Code.NOT_FOUND
if the
constraint does not exist. Note: the supplied policy will perform a full
overwrite of all fields.
request
- The metadata request object.
Request parameters:
name
- Immutable. Name of the constraint. This is unique within the
organization. Format of the name should be *
organizations/{organization_id}/customConstraints/{custom_constraint_id}
Example: organizations/123/customConstraints/custom.createOnlyE2TypeVms
The max length is 70 characters and the minimum length is 1. Note that the
prefix organizations/{organization_id}/customConstraints/
is not
counted.
Value must have pattern
^organizations/\[^/\]+/customConstraints/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudOrgpolicyV2CustomConstraint.
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<GoogleCloudOrgpolicyV2CustomConstraint> patch(
GoogleCloudOrgpolicyV2CustomConstraint request,
core.String name, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v2/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'PATCH',
body: body_,
queryParams: queryParams_,
);
return GoogleCloudOrgpolicyV2CustomConstraint.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}