# -*- coding: utf-8 -*- # # Copyright 2017 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 updating partner provider interconnect attachments.""" from googlecloudsdk.api_lib.compute import base_classes from googlecloudsdk.api_lib.compute.interconnects.attachments import client from googlecloudsdk.calliope import base from googlecloudsdk.command_lib.compute import flags as compute_flags from googlecloudsdk.command_lib.compute.interconnects.attachments import flags as attachment_flags from googlecloudsdk.command_lib.util.args import labels_util @base.UniverseCompatible @base.ReleaseTracks(base.ReleaseTrack.GA) class Update(base.UpdateCommand): """Update a Compute Engine partner provider interconnect attachment. *{command}* is used to update partner provider interconnect attachments. An interconnect attachment binds the underlying connectivity of an Interconnect to a path into and out of the customer's cloud network. """ _support_label = False _support_partner_ipv6_byoip = False @classmethod def Args(cls, parser): cls.INTERCONNECT_ATTACHMENT_ARG = ( attachment_flags.InterconnectAttachmentArgument()) cls.INTERCONNECT_ATTACHMENT_ARG.AddArgument(parser, operation_type='patch') attachment_flags.AddBandwidth(parser, required=False) attachment_flags.AddPartnerMetadata(parser, required=False) attachment_flags.AddDescription(parser) attachment_flags.AddCandidateCloudRouterIpv6Address(parser) attachment_flags.AddCandidateCustomerRouterIpv6Address(parser) def Run(self, args): holder = base_classes.ComputeApiHolder(self.ReleaseTrack()) attachment_ref = self.INTERCONNECT_ATTACHMENT_ARG.ResolveAsResource( args, holder.resources, scope_lister=compute_flags.GetDefaultScopeLister(holder.client), ) interconnect_attachment = client.InterconnectAttachment( attachment_ref, compute_client=holder.client ) labels = None label_fingerprint = None if self._support_label: labels_diff = labels_util.Diff.FromUpdateArgs(args) if labels_diff.MayHaveUpdates(): old_attachment = interconnect_attachment.Describe() labels_cls = holder.client.messages.InterconnectAttachment.LabelsValue labels = labels_diff.Apply( labels_cls, labels=old_attachment.labels ).GetOrNone() if labels is not None: label_fingerprint = old_attachment.labelFingerprint candidate_ipv6_subnets = None cloud_router_ipv6_interface_id = None customer_router_ipv6_interface_id = None if self._support_partner_ipv6_byoip: candidate_ipv6_subnets = getattr(args, 'candidate_ipv6_subnets', None) cloud_router_ipv6_interface_id = getattr( args, 'cloud_router_ipv6_interface_id', None ) customer_router_ipv6_interface_id = getattr( args, 'customer_router_ipv6_interface_id', None ) return interconnect_attachment.Patch( description=args.description, bandwidth=args.bandwidth, partner_name=args.partner_name, partner_interconnect=args.partner_interconnect_name, partner_portal_url=args.partner_portal_url, labels=labels, label_fingerprint=label_fingerprint, candidate_ipv6_subnets=candidate_ipv6_subnets, cloud_router_ipv6_interface_id=cloud_router_ipv6_interface_id, customer_router_ipv6_interface_id=customer_router_ipv6_interface_id, candidate_cloud_router_ipv6_address=getattr( args, 'candidate_cloud_router_ipv6_address', None ), candidate_customer_router_ipv6_address=getattr( args, 'candidate_customer_router_ipv6_address', None ), ) @base.UniverseCompatible @base.ReleaseTracks(base.ReleaseTrack.BETA) class UpdateBeta(Update): """Update a Compute Engine partner provider interconnect attachment. *{command}* is used to update partner provider interconnect attachments. An interconnect attachment binds the underlying connectivity of an Interconnect to a path into and out of the customer's cloud network. """ _support_label = True _support_partner_ipv6_byoip = False @classmethod def Args(cls, parser): super().Args(parser) labels_util.AddUpdateLabelsFlags(parser) @base.UniverseCompatible @base.ReleaseTracks(base.ReleaseTrack.ALPHA) class UpdateAlpha(UpdateBeta): """Update a Compute Engine partner provider interconnect attachment. *{command}* is used to update partner provider interconnect attachments. An interconnect attachment binds the underlying connectivity of an Interconnect to a path into and out of the customer's cloud network. """ _support_label = True _support_partner_ipv6_byoip = True @classmethod def Args(cls, parser): super().Args(parser) attachment_flags.AddCandidateIpv6Subnets(parser) attachment_flags.AddCloudRouterIpv6InterfaceId(parser) attachment_flags.AddCustomerRouterIpv6InterfaceId(parser)