File: //snap/google-cloud-cli/396/lib/surface/compute/networks/peerings/create.py
# -*- coding: utf-8 -*- #
# Copyright 2016 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Command for creating network peerings."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.compute import base_classes
from googlecloudsdk.api_lib.compute import batch_helper
from googlecloudsdk.api_lib.compute import utils
from googlecloudsdk.calliope import actions
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.compute.networks.peerings import flags
from googlecloudsdk.core import log
from googlecloudsdk.core import properties
from googlecloudsdk.core import resources
def _MakeRequests(client, requests, is_async):
"""Helper for making asynchronous or synchronous peering creation requests."""
if is_async:
responses, errors = batch_helper.MakeRequests(
requests=requests,
http=client.apitools_client.http,
batch_url=client.batch_url)
if not errors:
for operation in responses:
log.status.write('Creating network peering for [{0}]\n'.format(
operation.targetLink))
log.status.write('Monitor its progress at [{0}]\n'.format(
operation.selfLink))
else:
utils.RaiseToolException(errors)
else:
# We want to run through the generator that MakeRequests returns in order
# to actually make the requests.
responses = client.MakeRequests(requests)
return responses
@base.DefaultUniverseOnly
@base.ReleaseTracks(
base.ReleaseTrack.GA, base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA
)
class Create(base.Command):
r"""Create a Compute Engine network peering.
*{command}* is used to create peerings between virtual networks. Each side of
a peering association is set up independently. Peering will be active only
when the configuration from both sides matches.
## EXAMPLES
To create a network peering with the name 'peering-name' between the network
'local-network' and the network 'peer-network' which exports and imports
custom routes and subnet routes with public IPs, run:
$ {command} peering-name \
--network=local-network \
--peer-network=peer-network \
--export-custom-routes \
--import-custom-routes \
--export-subnet-routes-with-public-ip \
--import-subnet-routes-with-public-ip
"""
_support_stack_type = False
@classmethod
def ArgsCommon(cls, parser):
parser.add_argument('name', help='The name of the peering.')
parser.add_argument(
'--network',
required=True,
help='The name of the network in the current project to be peered '
'with the peer network.')
parser.add_argument(
'--peer-network',
required=True,
help='The name of the network to be peered with the current network.')
parser.add_argument(
'--peer-project',
required=False,
help='The name of the project for the peer network. If not specified, '
'defaults to current project.')
base.ASYNC_FLAG.AddToParser(parser)
flags.AddImportCustomRoutesFlag(parser)
flags.AddExportCustomRoutesFlag(parser)
flags.AddImportSubnetRoutesWithPublicIpFlag(parser)
flags.AddExportSubnetRoutesWithPublicIpFlag(parser)
flags.AddStackType(parser)
flags.AddUpdateStrategy(parser)
@classmethod
def Args(cls, parser):
cls.ArgsCommon(parser)
action = actions.DeprecationAction(
'auto-create-routes',
warn=(
'Flag --auto-create-routes is deprecated and will '
'be removed in a future release.'
),
action='store_true',
)
parser.add_argument(
'--auto-create-routes',
action=action,
default=False,
required=False,
help=(
'If set, will automatically create routes for the network peering.'
' Flag auto-create-routes is deprecated. Peer network subnet routes'
' are always created in a network when peered.'
),
)
def _CreateNetworkPeeringForRequest(self, client, args):
peer_network_ref = resources.REGISTRY.Parse(
args.peer_network,
params={
'project': (
args.peer_project or properties.VALUES.core.project.GetOrFail
)
},
collection='compute.networks',
)
network_peering = client.messages.NetworkPeering(
name=args.name,
network=peer_network_ref.RelativeName(),
exchangeSubnetRoutes=True,
)
network_peering.exportCustomRoutes = args.export_custom_routes
network_peering.importCustomRoutes = args.import_custom_routes
network_peering.exportSubnetRoutesWithPublicIp = (
args.export_subnet_routes_with_public_ip
)
network_peering.importSubnetRoutesWithPublicIp = (
args.import_subnet_routes_with_public_ip
)
if getattr(args, 'stack_type'):
network_peering.stackType = (
client.messages.NetworkPeering.StackTypeValueValuesEnum(
args.stack_type
)
)
if getattr(args, 'update_strategy'):
network_peering.updateStrategy = (
client.messages.NetworkPeering.UpdateStrategyValueValuesEnum(
args.update_strategy
)
)
return network_peering
def Run(self, args):
"""Issues the request necessary for adding the peering."""
holder = base_classes.ComputeApiHolder(self.ReleaseTrack())
client = holder.client
request = client.messages.ComputeNetworksAddPeeringRequest(
network=args.network,
networksAddPeeringRequest=client.messages.NetworksAddPeeringRequest(
networkPeering=self._CreateNetworkPeeringForRequest(client, args)),
project=properties.VALUES.core.project.GetOrFail())
requests = [(client.apitools_client.networks, 'AddPeering', request)]
return _MakeRequests(client, requests, args.async_)