80 lines
3.0 KiB
Python
80 lines
3.0 KiB
Python
# -*- coding: utf-8 -*- #
|
|
# Copyright 2018 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 resource policies to disks."""
|
|
|
|
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 import disks_util as api_util
|
|
from googlecloudsdk.calliope import base
|
|
from googlecloudsdk.command_lib.compute.disks import flags as disks_flags
|
|
from googlecloudsdk.command_lib.compute.resource_policies import flags
|
|
from googlecloudsdk.command_lib.compute.resource_policies import util
|
|
|
|
|
|
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
|
|
base.ReleaseTrack.GA)
|
|
class DisksAddResourcePolicies(base.UpdateCommand):
|
|
"""Add resource policies to a Compute Engine disk."""
|
|
|
|
@staticmethod
|
|
def Args(parser):
|
|
disks_flags.MakeDiskArg(plural=False).AddArgument(
|
|
parser, operation_type='add resource policies to')
|
|
flags.AddResourcePoliciesArgs(parser, 'added to', 'disk', required=True)
|
|
|
|
def Run(self, args):
|
|
holder = base_classes.ComputeApiHolder(self.ReleaseTrack())
|
|
client = holder.client.apitools_client
|
|
messages = holder.client.messages
|
|
|
|
disk_ref = disks_flags.MakeDiskArg(
|
|
plural=False).ResolveAsResource(args, holder.resources)
|
|
disk_info = api_util.GetDiskInfo(disk_ref, client, messages)
|
|
disk_region = disk_info.GetDiskRegionName()
|
|
|
|
resource_policies = []
|
|
for policy in args.resource_policies:
|
|
resource_policy_ref = util.ParseResourcePolicy(
|
|
holder.resources,
|
|
policy,
|
|
project=disk_ref.project,
|
|
region=disk_region)
|
|
resource_policies.append(resource_policy_ref.SelfLink())
|
|
|
|
return disk_info.MakeAddResourcePoliciesRequest(resource_policies,
|
|
holder.client)
|
|
|
|
|
|
DisksAddResourcePolicies.detailed_help = {
|
|
'DESCRIPTION':
|
|
"""\
|
|
Add resource policies to a Compute Engine disk.
|
|
|
|
*{command}* adds resource policies to a Compute Engine disk. These policies define a schedule for taking snapshots and a retention period for these snapshots.
|
|
|
|
For information on how to create resource policies, see:
|
|
$ gcloud beta compute resource-policies create --help
|
|
""",
|
|
'EXAMPLES':
|
|
"""\
|
|
The following command adds two resource policies to a Compute Engine disk.
|
|
|
|
$ {command} my-disk --zone=ZONE --resource-policies=policy-1,policy-2
|
|
"""
|
|
}
|