100 lines
4.1 KiB
Python
100 lines
4.1 KiB
Python
# -*- coding: utf-8 -*- #
|
|
# Copyright 2024 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.
|
|
"""Implementation of enable command for enabling management hub."""
|
|
|
|
from googlecloudsdk.api_lib.storage import management_hub_api
|
|
from googlecloudsdk.calliope import base
|
|
from googlecloudsdk.command_lib.storage import flags
|
|
from googlecloudsdk.core import log
|
|
|
|
|
|
# TODO: b/369949089 - Remove default universe flag after checking the
|
|
# availability of management hub in different universes.
|
|
@base.DefaultUniverseOnly
|
|
@base.ReleaseTracks(base.ReleaseTrack.ALPHA)
|
|
class Enable(base.Command):
|
|
"""Enables Management Hub."""
|
|
|
|
detailed_help = {
|
|
'DESCRIPTION': """
|
|
Enable management hub plan for the organization, sub-folder or project
|
|
along with filters.
|
|
""",
|
|
'EXAMPLES': """
|
|
To remove buckets from the management hub plan, Use the following
|
|
command with ``--exclude-bucket-ids'' and ``--exclude-bucket-regexes'' flags
|
|
to specify list of bucket ids and bucket id regexes.,\n
|
|
${command} --organization=my-org --exclude-bucket-ids="my-bucket" --exclude-bucket-regexes="my-bucket-.*"
|
|
|
|
To apply location based filters in the management hub plan, Use
|
|
``--include-locations'' or ``--exclude-locations'' flags to specify allowed
|
|
list of locations or excluded list of locations. The following
|
|
command updates management hub plan of sub-folder `123456` with the
|
|
specified list of included locations.,\n
|
|
${command} --sub-folder=123456 --include-locations="us-east1","us-west1"
|
|
""",
|
|
}
|
|
|
|
@classmethod
|
|
def Args(cls, parser):
|
|
parser.SetSortArgs(False)
|
|
flags.add_management_hub_level_flags(parser)
|
|
flags.add_management_hub_filter_flags(parser)
|
|
|
|
def Run(self, args):
|
|
|
|
if args.project:
|
|
management_hub = (
|
|
management_hub_api.ManagementHubApi().update_project_management_hub(
|
|
args.project,
|
|
inherit_from_parent=None,
|
|
include_locations=args.include_locations,
|
|
exclude_locations=args.exclude_locations,
|
|
include_bucket_ids=args.include_bucket_ids,
|
|
exclude_bucket_ids=args.exclude_bucket_ids,
|
|
include_bucket_id_regexes=args.include_bucket_id_regexes,
|
|
exclude_bucket_id_regexes=args.exclude_bucket_id_regexes,
|
|
)
|
|
)
|
|
elif args.sub_folder:
|
|
management_hub = management_hub_api.ManagementHubApi().update_sub_folder_management_hub(
|
|
args.sub_folder,
|
|
inherit_from_parent=None,
|
|
include_locations=args.include_locations,
|
|
exclude_locations=args.exclude_locations,
|
|
include_bucket_ids=args.include_bucket_ids,
|
|
exclude_bucket_ids=args.exclude_bucket_ids,
|
|
include_bucket_id_regexes=args.include_bucket_id_regexes,
|
|
exclude_bucket_id_regexes=args.exclude_bucket_id_regexes,
|
|
)
|
|
else:
|
|
management_hub = management_hub_api.ManagementHubApi().update_organization_management_hub(
|
|
args.organization,
|
|
inherit_from_parent=None,
|
|
include_locations=args.include_locations,
|
|
exclude_locations=args.exclude_locations,
|
|
include_bucket_ids=args.include_bucket_ids,
|
|
exclude_bucket_ids=args.exclude_bucket_ids,
|
|
include_bucket_id_regexes=args.include_bucket_id_regexes,
|
|
exclude_bucket_id_regexes=args.exclude_bucket_id_regexes,
|
|
)
|
|
|
|
log.status.Print(
|
|
'Successfully enabled management hub plan for {}.\n'.format(
|
|
management_hub.name
|
|
)
|
|
)
|
|
return management_hub
|