create method
- VpcFlowLogsConfig request,
- String parent, {
- String? vpcFlowLogsConfigId,
- String? $fields,
Creates a new VpcFlowLogsConfig
.
If a configuration with the exact same settings already exists (even if
the ID is different), the creation fails. Notes: 1. Creating 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 - creating 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:
parent
- Required. The parent resource of the VPC Flow Logs
configuration to create: projects/{project_id}/locations/global
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$
.
vpcFlowLogsConfigId
- Required. ID of the VpcFlowLogsConfig
.
$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> create(
VpcFlowLogsConfig request,
core.String parent, {
core.String? vpcFlowLogsConfigId,
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if (vpcFlowLogsConfigId != null)
'vpcFlowLogsConfigId': [vpcFlowLogsConfigId],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/vpcFlowLogsConfigs';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>);
}