| Server IP : 35.236.43.222 / Your IP : 216.73.216.143 Web Server : Apache System : Linux order-form-vm-001 5.10.0-37-cloud-amd64 #1 SMP Debian 5.10.247-1 (2025-12-11) x86_64 User : deploy ( 1002) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/google-cloud-sdk/lib/surface/compute/interconnects/ |
Upload File : |
# -*- 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 interconnects."""
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.interconnects import client
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.compute.interconnects import flags
from googlecloudsdk.command_lib.util.args import labels_util
from googlecloudsdk.core import properties
def _ArgsCommon(cls, parser, support_labels=False, support_groups=False):
"""Shared arguments for update commands."""
cls.INTERCONNECT_ARG = flags.InterconnectArgument()
cls.INTERCONNECT_ARG.AddArgument(parser, operation_type='update')
parser.add_argument(
'--description',
help='An optional, textual description for the interconnect.')
flags.AddAdminEnabledForUpdate(parser)
flags.AddNocContactEmail(parser)
flags.AddRequestedLinkCountForUpdate(parser)
if support_labels:
labels_util.AddUpdateLabelsFlags(parser)
if support_groups:
flags.AddInterconnectGroups(parser)
@base.UniverseCompatible
@base.ReleaseTracks(base.ReleaseTrack.GA)
class Update(base.UpdateCommand):
"""Update a Compute Engine interconnect.
*{command}* is used to update interconnects. An interconnect represents a
single specific connection between Google and the customer.
"""
INTERCONNECT_ARG = None
@classmethod
def Args(cls, parser):
_ArgsCommon(cls, parser)
def Collection(self):
return 'compute.interconnects'
def _DoRun(self, args, support_labels=False, support_groups=False):
holder = base_classes.ComputeApiHolder(self.ReleaseTrack())
ref = self.INTERCONNECT_ARG.ResolveAsResource(args, holder.resources)
interconnect = client.Interconnect(ref, compute_client=holder.client)
labels = None
label_fingerprint = None
if support_labels:
labels_diff = labels_util.Diff.FromUpdateArgs(args)
if labels_diff.MayHaveUpdates():
old_interconnect = interconnect.Describe()
labels = labels_diff.Apply(
holder.client.messages.Interconnect.LabelsValue,
old_interconnect.labels).GetOrNone()
if labels is not None:
label_fingerprint = old_interconnect.labelFingerprint
group_refs = []
if support_groups and args.groups:
project = properties.VALUES.core.project.GetOrFail()
group_refs = [
holder.resources.Create(
'compute.interconnectGroups',
interconnectGroup=group,
project=project,
).SelfLink()
for group in args.groups
]
return interconnect.Patch(
description=args.description,
interconnect_type=None,
requested_link_count=args.requested_link_count,
link_type=None,
admin_enabled=args.admin_enabled,
noc_contact_email=args.noc_contact_email,
location=None,
labels=labels,
label_fingerprint=label_fingerprint,
macsec_enabled=None,
macsec=None,
groups=group_refs,
)
def Run(self, args):
self._DoRun(args)
@base.UniverseCompatible
@base.ReleaseTracks(base.ReleaseTrack.BETA)
class UpdateLabels(Update):
"""Update a Compute Engine interconnect.
*{command}* is used to update interconnects. An interconnect represents a
single specific connection between Google and the customer.
"""
@classmethod
def Args(cls, parser):
_ArgsCommon(cls, parser, support_labels=True, support_groups=False)
def Run(self, args):
self._DoRun(args, support_labels=True, support_groups=False)
@base.UniverseCompatible
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class UpdateLabelsAndGroups(UpdateLabels):
"""Update a Compute Engine interconnect.
*{command}* is used to update interconnects. An interconnect represents a
single specific connection between Google and the customer.
"""
@classmethod
def Args(cls, parser):
_ArgsCommon(cls, parser, support_labels=True, support_groups=True)
def Run(self, args):
self._DoRun(args, support_labels=True, support_groups=True)