109 lines
3.6 KiB
Python
109 lines
3.6 KiB
Python
# -*- 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
|
|
|
|
|
|
def _ArgsCommon(cls, parser, support_labels=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)
|
|
|
|
|
|
@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):
|
|
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
|
|
|
|
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,
|
|
)
|
|
|
|
def Run(self, args):
|
|
self._DoRun(args)
|
|
|
|
|
|
@base.UniverseCompatible
|
|
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, 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)
|
|
|
|
def Run(self, args):
|
|
self._DoRun(args, support_labels=True)
|