File: //snap/google-cloud-cli/current/lib/surface/compute/snapshots/remove_labels.py
# -*- 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 adding labels to snapshots."""
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.operations import poller
from googlecloudsdk.api_lib.util import waiter
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.compute import flags as compute_flags
from googlecloudsdk.command_lib.compute import labels_doc_helper
from googlecloudsdk.command_lib.compute import labels_flags
from googlecloudsdk.command_lib.compute import scope as compute_scope
from googlecloudsdk.command_lib.compute.snapshots import flags as snapshots_flags
from googlecloudsdk.command_lib.util.args import labels_util
def _GAArgs(parser):
"""A helper function to build args for GA API version."""
SnapshotsRemoveLabels.SnapshotArg = snapshots_flags.MakeSnapshotArg()
SnapshotsRemoveLabels.SnapshotArg.AddArgument(parser)
labels_flags.AddArgsForRemoveLabels(parser)
def _BetaArgs(parser):
"""A helper function to build args for Beta API version."""
SnapshotsRemoveLabels.SnapshotArg = (
snapshots_flags.MakeSnapshotArgForRegionalSnapshots()
)
SnapshotsRemoveLabels.SnapshotArg.AddArgument(parser)
labels_flags.AddArgsForRemoveLabels(parser)
def _AlphaArgs(parser):
"""A helper function to build args for Alpha API version."""
SnapshotsRemoveLabels.SnapshotArg = (
snapshots_flags.MakeSnapshotArgForRegionalSnapshots()
)
SnapshotsRemoveLabels.SnapshotArg.AddArgument(parser)
labels_flags.AddArgsForRemoveLabels(parser)
@base.ReleaseTracks(base.ReleaseTrack.GA)
@base.UniverseCompatible
class SnapshotsRemoveLabels(base.UpdateCommand):
"""Remove labels to Compute Engine snapshots."""
@staticmethod
def Args(parser):
_GAArgs(parser)
def Run(self, args):
return self._Run(args)
def _Run(self, args, support_region=False):
holder = base_classes.ComputeApiHolder(self.ReleaseTrack())
client = holder.client.apitools_client
messages = holder.client.messages
snapshot_ref = SnapshotsRemoveLabels.SnapshotArg.ResolveAsResource(
args,
holder.resources,
scope_lister=compute_flags.GetDefaultScopeLister(holder.client),
default_scope=compute_scope.ScopeEnum.GLOBAL,
)
if (
support_region
and snapshot_ref.Collection() == 'compute.regionSnapshots'
):
remove_labels = labels_util.GetUpdateLabelsDictFromArgs(args)
regional_snapshot = client.regionSnapshots.Get(
messages.ComputeRegionSnapshotsGetRequest(**snapshot_ref.AsDict()))
if args.all:
# removing all existing labels from the snapshot.
remove_labels = {}
if regional_snapshot.labels:
for label in regional_snapshot.labels.additionalProperties:
remove_labels[label.key] = label.value
labels_update = labels_util.Diff(subtractions=remove_labels).Apply(
messages.RegionSetLabelsRequest.LabelsValue,
regional_snapshot.labels)
if not labels_update.needs_update:
return regional_snapshot
request = messages.ComputeRegionSnapshotsSetLabelsRequest(
project=snapshot_ref.project,
resource=snapshot_ref.snapshot,
region=snapshot_ref.region,
regionSetLabelsRequest=
messages.RegionSetLabelsRequest(
labelFingerprint=regional_snapshot.labelFingerprint,
labels=labels_update.labels))
operation = client.regionSnapshots.SetLabels(request)
operation_ref = holder.resources.Parse(
operation.selfLink, collection='compute.regionOperations')
operation_poller = poller.Poller(client.regionSnapshots)
return waiter.WaitFor(
operation_poller, operation_ref,
'Updating labels of snapshot [{0}]'.format(
snapshot_ref.Name()))
else:
remove_labels = labels_util.GetUpdateLabelsDictFromArgs(args)
snapshot = client.snapshots.Get(
messages.ComputeSnapshotsGetRequest(**snapshot_ref.AsDict()))
if args.all:
# removing all existing labels from the snapshot.
remove_labels = {}
if snapshot.labels:
for label in snapshot.labels.additionalProperties:
remove_labels[label.key] = label.value
labels_update = labels_util.Diff(subtractions=remove_labels).Apply(
messages.GlobalSetLabelsRequest.LabelsValue,
snapshot.labels)
if not labels_update.needs_update:
return snapshot
request = messages.ComputeSnapshotsSetLabelsRequest(
project=snapshot_ref.project,
resource=snapshot_ref.snapshot,
globalSetLabelsRequest=
messages.GlobalSetLabelsRequest(
labelFingerprint=snapshot.labelFingerprint,
labels=labels_update.labels))
operation = client.snapshots.SetLabels(request)
operation_ref = holder.resources.Parse(
operation.selfLink, collection='compute.globalOperations')
operation_poller = poller.Poller(client.snapshots)
return waiter.WaitFor(
operation_poller, operation_ref,
'Updating labels of snapshot [{0}]'.format(
snapshot_ref.Name()))
@base.ReleaseTracks(base.ReleaseTrack.BETA)
class SnapshotsRemoveLabelsBeta(SnapshotsRemoveLabels):
"""Remove labels to Compute Engine snapshots."""
@staticmethod
def Args(parser):
_BetaArgs(parser)
def Run(self, args):
return self._Run(
args,
support_region=True,
)
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
class SnapshotsRemoveLabelsAlpha(SnapshotsRemoveLabels):
"""Remove labels to Compute Engine snapshots."""
@staticmethod
def Args(parser):
_AlphaArgs(parser)
def Run(self, args):
return self._Run(
args,
support_region=True,
)
SnapshotsRemoveLabels.detailed_help = (
labels_doc_helper.GenerateDetailedHelpForRemoveLabels('snapshot'))