# -*- 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 dedicated 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 dedicated interconnect attachment. *{command}* is used to update interconnect attachments. An interconnect attachment is what binds the underlying connectivity of an interconnect to a path into and out of the customer's cloud network. """ INTERCONNECT_ATTACHMENT_ARG = None INTERCONNECT_ARG = None ROUTER_ARG = None def _get_attachment(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)) return client.InterconnectAttachment( attachment_ref, compute_client=holder.client) @classmethod def Args(cls, parser): cls.INTERCONNECT_ATTACHMENT_ARG = ( attachment_flags.InterconnectAttachmentArgument()) cls.INTERCONNECT_ATTACHMENT_ARG.AddArgument(parser, operation_type='patch') attachment_flags.AddDescription(parser) attachment_flags.AddAdminEnabled(parser, update=True) attachment_flags.AddBandwidth( parser, required=False, release_track=cls.ReleaseTrack() ) attachment_flags.AddMtu(parser) attachment_flags.AddStackType(parser) attachment_flags.AddCandidateIpv6Subnets(parser) attachment_flags.AddCloudRouterIpv6InterfaceId(parser) attachment_flags.AddCustomerRouterIpv6InterfaceId(parser) attachment_flags.AddCandidateCloudRouterIpv6Address(parser) attachment_flags.AddCandidateCustomerRouterIpv6Address(parser) def Run(self, args): interconnect_attachment = self._get_attachment(args) admin_enabled = attachment_flags.GetAdminEnabledFlag(args) return interconnect_attachment.Patch( description=args.description, admin_enabled=admin_enabled, bandwidth=getattr(args, 'bandwidth', None), mtu=getattr(args, 'mtu', None), stack_type=getattr(args, 'stack_type', None), 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 ), multicast_enabled=getattr(args, 'enable_multicast', None), 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 dedicated interconnect attachment. *{command}* is used to update interconnect attachments. An interconnect attachment is what binds the underlying connectivity of an interconnect to a path into and out of the customer's cloud network. """ @classmethod def Args(cls, parser): super().Args(parser) labels_util.AddUpdateLabelsFlags(parser) def Run(self, args): holder = base_classes.ComputeApiHolder(self.ReleaseTrack()) interconnect_attachment = self._get_attachment(args) labels = None label_fingerprint = None 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 admin_enabled = attachment_flags.GetAdminEnabledFlag(args) return interconnect_attachment.Patch( description=args.description, admin_enabled=admin_enabled, labels=labels, label_fingerprint=label_fingerprint, bandwidth=getattr(args, 'bandwidth', None), mtu=getattr(args, 'mtu', None), stack_type=getattr(args, 'stack_type', None), 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 ), multicast_enabled=getattr(args, 'enable_multicast', None), 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 ), supports_400g=self.ReleaseTrack() == base.ReleaseTrack.ALPHA, ) @base.UniverseCompatible @base.ReleaseTracks(base.ReleaseTrack.ALPHA) class UpdateAlpha(UpdateBeta): """Update a Compute Engine dedicated interconnect attachment. *{command}* is used to update interconnect attachments. An interconnect attachment is what binds the underlying connectivity of an interconnect to a path into and out of the customer's cloud network. """ @classmethod def Args(cls, parser): super().Args(parser) attachment_flags.AddEnableMulticast(parser, update=True)