# -*- coding: utf-8 -*- # # Copyright 2020 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 to create connection profiles for a datastream.""" from googlecloudsdk.api_lib.datastream import connection_profiles from googlecloudsdk.api_lib.datastream import util from googlecloudsdk.calliope import base from googlecloudsdk.command_lib.datastream import flags from googlecloudsdk.command_lib.datastream import resource_args from googlecloudsdk.command_lib.datastream.connection_profiles import flags as cp_flags from googlecloudsdk.core.console import console_io DESCRIPTION = ('Create a Datastream connection profile') EXAMPLES = """\ To create a connection profile for Oracle: $ {command} CONNECTION_PROFILE --location=us-central1 --type=oracle --oracle-password=fakepassword --oracle-username=fakeuser --display-name=my-profile --oracle-hostname=35.188.150.50 --oracle-port=1521 --database-service=ORCL --static-ip-connectivity To create a connection profile for MySQL: $ {command} CONNECTION_PROFILE --location=us-central1 --type=mysql --mysql-password=fakepassword --mysql-username=fakeuser --display-name=my-profile --mysql-hostname=35.188.150.50 --mysql-port=3306 --static-ip-connectivity To create a connection profile for PostgreSQL: $ {command} CONNECTION_PROFILE --location=us-central1 --type=postgresql --postgresql-password=fakepassword --postgresql-username=fakeuser --display-name=my-profile --postgresql-hostname=35.188.150.50 --postgresql-port=5432 --postgresql-database=db --static-ip-connectivity To create a connection profile for SQL Server: $ {command} CONNECTION_PROFILE --location=us-central1 --type=sqlserver --sqlserver-password=fakepassword --sqlserver-username=fakeuser --display-name=my-profile --sqlserver-hostname=35.188.150.50 --sqlserver-port=1433 --sqlserver-database=db --static-ip-connectivity To create a connection profile for Salesforce using Username, Password and Security Token: $ {command} CONNECTION_PROFILE --location=us-central1 --type=salesforce --salesforce-password=fakepassword --salesforce-username=fakeuser --salesforce-security-token=fakesecuritytoken --display-name=my-profile --salesforce-hostname=35.188.150.50 --salesforce-port=1433 --salesforce-database=db --static-ip-connectivity To create a connection profile for Salesforce using OAuth: $ {command} CONNECTION_PROFILE --location=us-central1 --type=salesforce --salesforce-client-secret=fakesecret --salesforce-client-id=fake-client-id --display-name=my-profile --salesforce-domain=fakecompany.my.salesforce.com --static-ip-connectivity To create a connection profile for Google Cloud Storage: $ {command} CONNECTION_PROFILE --location=us-central1 --type=google-cloud-storage --bucket=fake-bucket --root-path=/root/path --display-name=my-profile To create a connection profile for BigQuery: $ {command} CONNECTION_PROFILE --location=us-central1 --type=bigquery --display-name=my-profile To create a connection profile for MongoDB: $ {command} CONNECTION_PROFILE --location=us-central1 --type=mongodb --mongodb-password=fakepassword --mongodb-username=fakeuser --display-name=my-profile --mongodb-host-addresses=35.188.150.50:27017 """ EXAMPLES_BETA = """\ To create a connection profile for Oracle: $ {command} CONNECTION_PROFILE --location=us-central1 --type=oracle --oracle-password=fakepassword --oracle-username=fakeuser --display-name=my-profile --oracle-hostname=35.188.150.50 --oracle-port=1521 --database-service=ORCL --static-ip-connectivity To create a connection profile for MySQL: $ {command} CONNECTION_PROFILE --location=us-central1 --type=mysql --mysql-password=fakepassword --mysql-username=fakeuser --display-name=my-profile --mysql-hostname=35.188.150.50 --mysql-port=3306 --static-ip-connectivity To create a connection profile for Google Cloud Storage: $ {command} CONNECTION_PROFILE --location=us-central1 --type=google-cloud-storage --bucket-name=fake-bucket --root-path=/root/path --display-name=my-profile --no-connectivity """ @base.DefaultUniverseOnly @base.ReleaseTracks(base.ReleaseTrack.GA) class Create(base.Command): """Create a Datastream connection profile.""" detailed_help = {'DESCRIPTION': DESCRIPTION, 'EXAMPLES': EXAMPLES} @staticmethod def CommonArgs(parser, release_track): """Common arguments for all release tracks. Args: parser: An argparse parser that you can use to add arguments that go on the command line after this command. Positional arguments are allowed. release_track: Some arguments are added based on the command release track. """ resource_args.AddConnectionProfileResourceArg(parser, 'to create', release_track) cp_flags.AddTypeFlag(parser) cp_flags.AddDisplayNameFlag(parser) if release_track == base.ReleaseTrack.GA: cp_flags.AddValidationGroup(parser, 'Create') profile_flags = parser.add_group(mutex=True) cp_flags.AddMysqlProfileGroup(profile_flags) cp_flags.AddOracleProfileGroup(profile_flags) cp_flags.AddPostgresqlProfileGroup(profile_flags) cp_flags.AddSqlServerProfileGroup(profile_flags) cp_flags.AddSalesforceProfileGroup(profile_flags) cp_flags.AddGcsProfileGroup(profile_flags, release_track) cp_flags.AddMongodbProfileGroup(profile_flags) flags.AddLabelsCreateFlags(parser) @staticmethod def Args(parser): """Args is called by calliope to gather arguments for this command.""" Create.CommonArgs(parser, base.ReleaseTrack.GA) def Run(self, args): """Create a Datastream connection profile. Args: args: argparse.Namespace, The arguments that this command was invoked with. Returns: A dict object representing the operations resource describing the create operation if the create was successful. """ connection_profile_ref = args.CONCEPTS.connection_profile.Parse() parent_ref = connection_profile_ref.Parent().RelativeName() if args.oracle_prompt_for_password: args.oracle_password = console_io.PromptPassword( 'Please Enter Password: ') if args.mysql_prompt_for_password: args.mysql_password = console_io.PromptPassword('Please Enter Password: ') if args.postgresql_prompt_for_password: args.postgresql_password = console_io.PromptPassword( 'Please Enter Password: ') if args.sqlserver_prompt_for_password: args.sqlserver_password = console_io.PromptPassword( 'Please Enter Password: ' ) if args.salesforce_prompt_for_password: args.salesforce_password = console_io.PromptPassword( 'Please Enter Password: ' ) if args.salesforce_prompt_for_security_token: args.salesforce_security_token = console_io.PromptPassword( 'Please Enter Security Token: ' ) if args.salesforce_prompt_for_oauth2_client_secret: args.salesforce_oauth2_client_secret = console_io.PromptPassword( 'Please Enter OAuth 2.0 Client Secret: ' ) if args.mongodb_prompt_for_password: args.mongodb_password = console_io.PromptPassword( 'Please Enter Password: ' ) cp_type = (args.type).upper() cp_client = connection_profiles.ConnectionProfilesClient() result_operation = cp_client.Create( parent_ref, connection_profile_ref.connectionProfilesId, cp_type, self.ReleaseTrack(), args) client = util.GetClientInstance() messages = util.GetMessagesModule() resource_parser = util.GetResourceParser() operation_ref = resource_parser.Create( 'datastream.projects.locations.operations', operationsId=result_operation.name, projectsId=connection_profile_ref.projectsId, locationsId=connection_profile_ref.locationsId) return client.projects_locations_operations.Get( messages.DatastreamProjectsLocationsOperationsGetRequest( name=operation_ref.operationsId)) @base.Deprecate( is_removed=False, warning=('Datastream beta version is deprecated. Please use`gcloud ' 'datastream connection-profiles create` command instead.')) @base.ReleaseTracks(base.ReleaseTrack.BETA) class CreateBeta(Create): """Create a Datastream connection profile.""" detailed_help = {'DESCRIPTION': DESCRIPTION, 'EXAMPLES': EXAMPLES_BETA} @staticmethod def Args(parser): """Args is called by calliope to gather arguments for this command.""" Create.CommonArgs(parser, base.ReleaseTrack.BETA)