addSubnetwork method
For service producers, provisions a new subnet in a peered service's shared VPC network in the requested region and with the requested size that's expressed as a CIDR range (number of leading bits of ipV4 network mask).
The method checks against the assigned allocated ranges to find a non-conflicting IP address range. The method will reuse a subnet if subsequent calls contain the same subnet name, region, and prefix length. This method will make producer's tenant project to be a shared VPC service project as needed.
request
- The metadata request object.
Request parameters:
parent
- Required. A tenant project in the service producer
organization, in the following format:
services/{service}/{collection-id}/{resource-id}. {collection-id} is the
cloud resource collection type that represents the tenant project. Only
projects
are supported. {resource-id} is the tenant project numeric id,
such as 123456
. {service} the name of the peering service, such as
service-peering.example.com
. This service must already be enabled in the
service consumer's project.
Value must have pattern ^services/\[^/\]+/\[^/\]+/\[^/\]+$
.
$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> addSubnetwork(
AddSubnetworkRequest request,
core.String parent, {
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_ = 'v1/' + core.Uri.encodeFull('$parent') + ':addSubnetwork';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return Operation.fromJson(response_ as core.Map<core.String, core.dynamic>);
}