109 lines
3.7 KiB
Python
109 lines
3.7 KiB
Python
# -*- coding: utf-8 -*- #
|
|
# Copyright 2021 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.
|
|
"""Bare Metal Solution volumes update command."""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import unicode_literals
|
|
|
|
from googlecloudsdk.api_lib.bms.bms_client import BmsClient
|
|
from googlecloudsdk.api_lib.util import waiter
|
|
from googlecloudsdk.calliope import base
|
|
from googlecloudsdk.command_lib.bms import exceptions
|
|
from googlecloudsdk.command_lib.bms import flags
|
|
from googlecloudsdk.command_lib.util.args import labels_util
|
|
from googlecloudsdk.core import log
|
|
from googlecloudsdk.core import resources
|
|
|
|
DETAILED_HELP = {
|
|
'DESCRIPTION':
|
|
"""
|
|
Update a Bare Metal Solution volume.
|
|
|
|
This call returns immediately, but the update operation may take
|
|
several minutes to complete. To check if the operation is complete,
|
|
use the `describe` command for the volume.
|
|
""",
|
|
'EXAMPLES':
|
|
"""
|
|
To add the label 'key1=value1' to a policy, run:
|
|
|
|
$ {command} my-volume --update-labels=key1=value1
|
|
|
|
To clear all labels, run:
|
|
|
|
$ {command} my-volume --clear-labels
|
|
""",
|
|
}
|
|
|
|
|
|
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.GA)
|
|
class Update(base.UpdateCommand):
|
|
"""Update a Bare Metal Solution volume."""
|
|
|
|
@staticmethod
|
|
def Args(parser):
|
|
"""Register flags for this command."""
|
|
flags.AddVolumeArgToParser(parser, positional=True)
|
|
labels_util.AddUpdateLabelsFlags(parser)
|
|
base.ASYNC_FLAG.AddToParser(parser)
|
|
|
|
def Run(self, args):
|
|
client = BmsClient()
|
|
volume = args.CONCEPTS.volume.Parse()
|
|
labels_update = None
|
|
labels_diff = labels_util.Diff.FromUpdateArgs(args)
|
|
|
|
if not labels_diff.MayHaveUpdates():
|
|
raise exceptions.NoConfigurationChangeError(
|
|
'No configuration change was requested. Did you mean to include the '
|
|
'flags `--update-labels`, `--remove-labels`, or `--clear-labels?`')
|
|
|
|
orig_resource = client.GetVolume(volume)
|
|
labels_update = labels_diff.Apply(
|
|
client.messages.Volume.LabelsValue,
|
|
orig_resource.labels).GetOrNone()
|
|
|
|
op_ref = client.UpdateVolume(
|
|
volume_resource=volume,
|
|
labels=labels_update,
|
|
snapshot_schedule_policy_resource=None,
|
|
remove_snapshot_schedule_policy=None,
|
|
snapshot_auto_delete=None)
|
|
|
|
if op_ref.done:
|
|
log.UpdatedResource(volume.Name(), kind='volume')
|
|
return op_ref
|
|
|
|
if args.async_:
|
|
log.status.Print('Update request issued for: [{}]\nCheck operation '
|
|
'[{}] for status.'.format(volume.Name(), op_ref.name))
|
|
return op_ref
|
|
|
|
op_resource = resources.REGISTRY.ParseRelativeName(
|
|
op_ref.name,
|
|
collection='baremetalsolution.projects.locations.operations',
|
|
api_version='v2')
|
|
poller = waiter.CloudOperationPollerNoResources(
|
|
client.operation_service)
|
|
res = waiter.WaitFor(poller, op_resource,
|
|
'Waiting for operation [{}] to complete'.format(
|
|
op_ref.name))
|
|
log.UpdatedResource(volume.Name(), kind='volume')
|
|
return res
|
|
|
|
|
|
Update.detailed_help = DETAILED_HELP
|