patch method
- VpcFlowLogsConfig request,
- String name, {
- String? updateMask,
- String? $fields,
Updates an existing VpcFlowLogsConfig
.
If a configuration with the exact same settings already exists (even if
the ID is different), the creation fails. Notes: 1. Updating a
configuration with state=DISABLED will fail. 2. The following fields are
not considered as settings
for the purpose of the check mentioned above,
therefore - updating another configuration with the same fields but
different values for the following fields will fail as well: * name *
create_time * update_time * labels * description
request
- The metadata request object.
Request parameters:
name
- Identifier. Unique name of the configuration using the form:
projects/{project_id}/locations/global/vpcFlowLogsConfigs/{vpc_flow_logs_config_id}
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/vpcFlowLogsConfigs/\[^/\]+$
.
updateMask
- Required. Mask of fields to update. At least one path must
be supplied in this field.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Operation.
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<Operation> patch(
VpcFlowLogsConfig 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 Operation.fromJson(response_ as core.Map<core.String, core.dynamic>);
}