diff --git a/src/datamigration/HISTORY.rst b/src/datamigration/HISTORY.rst index 51c49fabec1..6c663a5fdb7 100644 --- a/src/datamigration/HISTORY.rst +++ b/src/datamigration/HISTORY.rst @@ -4,6 +4,10 @@ Release History =============== ======= +0.6.1 +++++++ +* Added parameter to help gather telemetry in command `az datamigration tde-migration`. + 0.6.0 ++++++ * [NEW COMMAND] `az datamigration sql-server-schema` : Migrate database schema objects to the target Azure Sql Servers. diff --git a/src/datamigration/azext_datamigration/manual/custom.py b/src/datamigration/azext_datamigration/manual/custom.py index ef745890929..f6445c8b72e 100644 --- a/src/datamigration/azext_datamigration/manual/custom.py +++ b/src/datamigration/azext_datamigration/manual/custom.py @@ -332,7 +332,7 @@ def datamigration_tde_migration(source_sql_connection_string=None, print("Failed to locate executable.") return - cmd = f'{exePath} --sourceSqlConnectionString "{source_sql_connection_string}" --targetSubscriptionId "{target_subscription_id}" --targetResourceGroupName "{target_resource_group_name}" --targetManagedInstanceName "{target_managed_instance_name}" --networkSharePath "{network_share_path}" --networkShareDomain "{network_share_domain}" --networkShareUserName "{network_share_user_name}" --networkSharePassword "{network_share_password}" --databaseName' + cmd = f'{exePath} --sourceSqlConnectionString "{source_sql_connection_string}" --targetSubscriptionId "{target_subscription_id}" --targetResourceGroupName "{target_resource_group_name}" --targetManagedInstanceName "{target_managed_instance_name}" --networkSharePath "{network_share_path}" --networkShareDomain "{network_share_domain}" --networkShareUserName "{network_share_user_name}" --networkSharePassword "{network_share_password}" --clientType "CLI" --databaseName' for db in database_name: cmd += " \"" + db + "\"" diff --git a/src/datamigration/setup.py b/src/datamigration/setup.py index 7cba3f0b9c8..124135c0db5 100644 --- a/src/datamigration/setup.py +++ b/src/datamigration/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '0.6.0' +VERSION = '0.6.1' try: from azext_datamigration.manual.version import VERSION except ImportError: