patch method
- GoogleCloudApigeeV1SecurityIncident request,
- String name, {
- String? updateMask,
- String? $fields,
UpdateSecurityIncidents updates an existing security incident.
request
- The metadata request object.
Request parameters:
name
- Immutable. Name of the security incident resource. Format:
organizations/{org}/environments/{environment}/securityIncidents/{incident}
Example:
organizations/apigee-org/environments/dev/securityIncidents/1234-5678-9101-1111
Value must have pattern
^organizations/\[^/\]+/environments/\[^/\]+/securityIncidents/\[^/\]+$
.
updateMask
- Required. The list of fields to update. Allowed fields are:
LINT.IfChange(allowed_update_fields_comment) - observability
LINT.ThenChange()
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudApigeeV1SecurityIncident.
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<GoogleCloudApigeeV1SecurityIncident> patch(
GoogleCloudApigeeV1SecurityIncident request,
core.String name, {
core.String? updateMask,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (updateMask != null) 'updateMask': [updateMask],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'PATCH',
body: body_,
queryParams: queryParams_,
);
return GoogleCloudApigeeV1SecurityIncident.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}