# -*- coding: utf-8 -*- # # Copyright 2021 Google Inc. 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. """`gcloud dataplex environments update` command.""" from __future__ import absolute_import from __future__ import division from __future__ import unicode_literals from googlecloudsdk.api_lib.dataplex import environment from googlecloudsdk.api_lib.dataplex import util as dataplex_util from googlecloudsdk.api_lib.util import exceptions as gcloud_exception from googlecloudsdk.calliope import arg_parsers from googlecloudsdk.calliope import base from googlecloudsdk.calliope import exceptions from googlecloudsdk.command_lib.dataplex import resource_args from googlecloudsdk.command_lib.util.args import labels_util from googlecloudsdk.core import log @base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.GA) class Update(base.Command): """Update a Dataplex Environment with the given configurations. """ detailed_help = { 'EXAMPLES': """\ To update a Dataplex environment `test-environment` within lake `test-lake` in location `us-central1` and change the description to `Updated Description`, run: $ {command} test-environment --project=test-project --location=us-central1 --lake=test-lake --description='Updated Description' """, } @staticmethod def Args(parser): resource_args.AddEnvironmentResourceArg(parser, 'to update a Environment to.') parser.add_argument('--description', help='Description of the Environment') parser.add_argument( '--display-name', help='Display Name of the Environment') infrastructure_spec = parser.add_group( help='Configuration for the underlying infrastructure used to run workloads.' ) compute_resources = infrastructure_spec.add_group( help='Compute resources associated with the analyze interactive workloads.' ) compute_resources.add_argument( '--compute-disk-size-gb', type=int, help='Size in GB of the disk. Default is 100 GB.') compute_resources.add_argument( '--compute-node-count', type=int, help='Total number of worker nodes in the cluster.') compute_resources.add_argument( '--compute-max-node-count', type=int, help='Maximum number of configurable nodes.') os_image_runtime = infrastructure_spec.add_group( help='Software Runtime Configuration to run Analyze.') os_image_runtime.add_argument( '--os-image-version', help='Dataplex Image version.') os_image_runtime.add_argument( '--os-image-java-libraries', metavar='OS_IMAGE_JAVA_LIBRARIES', type=arg_parsers.ArgList(), default=[], help='List of Java jars to be included in the runtime environment. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar' ) os_image_runtime.add_argument( '--os-image-python-packages', metavar='OS_IMAGE_PYTHON_PACKAGES', type=arg_parsers.ArgList(), default=[], help='A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz' ) os_image_runtime.add_argument( '--os-image-properties', metavar='OS_IMAGE_PROPERTIES', type=arg_parsers.ArgDict(), help='Override to common configuration of open source components installed on the Dataproc cluster. The properties to set on daemon config files. Property keys are specified in `prefix:property` format.' ) session_spec = parser.add_group( help='Configuration for sessions created for the environment to be updated.' ) session_spec.add_argument( '--session-max-idle-duration', help='The idle time configuration of the session. The session will be auto-terminated at the end of this period.' ) session_spec.add_argument( '--session-enable-fast-startup', action='store_true', default=False, required=False, help='Enables fast startup. This causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases.' ) async_group = parser.add_group( mutex=True, required=False, help='At most one of --async | --validate-only can be specified.') async_group.add_argument( '--validate-only', action='store_true', default=False, help='Validate the create action, but don\'t actually perform it.') base.ASYNC_FLAG.AddToParser(async_group) labels_util.AddCreateLabelsFlags(parser) @gcloud_exception.CatchHTTPErrorRaiseHTTPException( 'Status code: {status_code}. {status_message}.') def Run(self, args): update_mask = environment.GenerateUpdateMask(args) if len(update_mask) < 1: raise exceptions.HttpException( 'Update commands must specify at least one additional parameter to change.' ) environment_ref = args.CONCEPTS.environment.Parse() dataplex_client = dataplex_util.GetClientInstance() message = dataplex_util.GetMessageModule() update_req_op = dataplex_client.projects_locations_lakes_environments.Patch( message.DataplexProjectsLocationsLakesEnvironmentsPatchRequest( name=environment_ref.RelativeName(), validateOnly=args.validate_only, updateMask=u','.join(update_mask), googleCloudDataplexV1Environment=environment .GenerateEnvironmentForUpdateRequest(args))) validate_only = getattr(args, 'validate_only', False) if validate_only: log.status.Print('Validation complete.') return async_ = getattr(args, 'async_', False) if not async_: response = environment.WaitForOperation(update_req_op) log.UpdatedResource(environment_ref, details='Operation was successful.') return response log.status.Print('Updating [{0}] with operation [{1}].'.format( environment_ref, update_req_op.name)) return update_req_op