diff --git a/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs index 938a99cde313..6f9daab5f36a 100644 --- a/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs +++ b/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.DataMigration.Cmdlets { /// - /// Cmdlet for getting Data Migration Service resource + /// Cmdlet for getting Azure Data Migration Service (classic) resource /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationService", DefaultParameterSetName = ResourceGroupSet), OutputType(typeof(PSDataMigrationService))] [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix+ "Dms")] @@ -52,12 +52,12 @@ public class GetAzureDataMigrationService : DataMigrationCmdlet public string ResourceGroupName { get; set; } /// - /// Gets or sets the name of the data migration service. + /// Gets or sets the name of the Azure Database Migration Service (classic). /// [Parameter(Mandatory = true, Position = 1, ParameterSetName = ServiceNameGroupSet, - HelpMessage = "Name of Database Migration Service.")] + HelpMessage = "Name of Azure Database Migration Service (classic).")] [ValidateNotNullOrEmpty] [Alias("ServiceName")] public string Name { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs index 12b4e78c67a6..63338995860d 100644 --- a/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs +++ b/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.DataMigration.Cmdlets { /// - /// Class for the command let that creates a new instance of the Data Migration Service. + /// Class for the command let that creates a new instance of the Azure Database Migration Service (classic). /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationProject", DefaultParameterSetName = ComponentNameParameterSet), OutputType(typeof(PSProject))] [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DmsProject")] @@ -43,7 +43,7 @@ public class GetProjectCmdlet : DataMigrationCmdlet Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, - HelpMessage = "DataMigrationService Resource Id.")] + HelpMessage = "Azure Database Migration Service (classic) Resource Id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -58,7 +58,7 @@ public class GetProjectCmdlet : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs index e53de46f0e2e..44022c5ebce1 100644 --- a/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs +++ b/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs @@ -35,21 +35,21 @@ public sealed class NewAzureRmDataMigrationService : DataMigrationCmdlet [Parameter( Mandatory = true, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] [Alias("ServiceName")] public string Name { get; set; } [Parameter( Mandatory = true, - HelpMessage = "The location of the instance of the Database Migration Service to be created. " + HelpMessage = "The location of the instance of the Azure Database Migration Service (classic) to be created. " + "This corresponds to an Azure region.")] [ValidateNotNullOrEmpty] public string Location { get; set; } [Parameter( Mandatory = true, - HelpMessage = "The SKU for DataMigration service instance, possible values are GeneralPurpose_1vCore, GeneralPurpose_2vCores, GeneralPurpose_4vCores, BusinessCritical_4vCores" + HelpMessage = "The SKU for Azure Database Migration service (classic) instance, possible values are GeneralPurpose_1vCore, GeneralPurpose_2vCores, GeneralPurpose_4vCores, BusinessCritical_4vCores" )] [ValidateNotNullOrEmpty] [PSArgumentCompleter("GeneralPurpose_1vCore", "GeneralPurpose_2vCores", "GeneralPurpose_4vCores", "BusinessCritical_4vCores")] @@ -57,7 +57,7 @@ public sealed class NewAzureRmDataMigrationService : DataMigrationCmdlet [Parameter( Mandatory = true, - HelpMessage = "The name of the subnet under the specified virtual network to be used for the Database Migration Service instance.")] + HelpMessage = "The name of the subnet under the specified virtual network to be used for the Azure Database Migration Service (classic) instance.")] [ValidateNotNullOrEmpty] public string VirtualSubnetId { get; set; } @@ -73,7 +73,7 @@ public override void ExecuteCmdlet() } /// - /// Helper method that calls the creation of an instance of the Database Migration Service + /// Helper method that calls the creation of an instance of the Azure Database Migration Service (classic) /// /// The instance of PSDataMigrationService that was created. public DataMigrationService CreateService() diff --git a/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs index b2e7a8296652..6a889595a838 100644 --- a/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs +++ b/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs @@ -82,7 +82,7 @@ public TaskTypeEnum TaskType [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs index b7de54b3e9fa..b0955462a707 100644 --- a/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs +++ b/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs @@ -44,7 +44,7 @@ public class NewProjectCmdlet : DataMigrationCmdlet Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, - HelpMessage = "DataMigrationService Resource Id.")] + HelpMessage = "Azure Database Migration Service (classic) Resource Id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -59,13 +59,13 @@ public class NewProjectCmdlet : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } [Parameter( Mandatory = true, - HelpMessage = "The location of the instance of the Database Migration Service")] + HelpMessage = "The location of the instance of the Azure Database Migration Service (classic)")] [ValidateNotNullOrEmpty] public string Location { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs index 35496f47ea2b..f0825435cc1d 100644 --- a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs +++ b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs @@ -54,7 +54,7 @@ public class RemoveDataMigrationProject : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs index 612d6f844330..5c7a538177a5 100644 --- a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs +++ b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs @@ -39,7 +39,7 @@ public class RemoveDataMigrationService : DataMigrationCmdlet Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, - HelpMessage = "DataMigrationService Resource Id.")] + HelpMessage = "Azure Database Migration Service (classic) Resource Id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs index 72d43fc946d3..8419b208b465 100644 --- a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs +++ b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs @@ -54,7 +54,7 @@ public class RemoveDataMigrationTask : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs index af0ca2abcd79..28c32d7b18d0 100644 --- a/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs +++ b/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs @@ -38,7 +38,7 @@ public class StartDataMigrationService : DataMigrationCmdlet Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, - HelpMessage = "DataMigrationService Resource Id.")] + HelpMessage = "Azure Database Migration Service (classic) Resource Id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -53,7 +53,7 @@ public class StartDataMigrationService : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] [Alias("ServiceName")] public string Name { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs index e64654488503..88e18f26385f 100644 --- a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs +++ b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs @@ -38,7 +38,7 @@ public class StopDataMigrationService : DataMigrationCmdlet Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, - HelpMessage = "DataMigrationService Resource Id.")] + HelpMessage = "Azure Database Migration Service (classic) Resource Id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -53,7 +53,7 @@ public class StopDataMigrationService : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] [Alias("ServiceName")] public string Name { get; set; } diff --git a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs index d2ba922416de..d71004bdd235 100644 --- a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs +++ b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs @@ -54,7 +54,7 @@ public class StopDataMigrationTask : DataMigrationCmdlet [Parameter( Mandatory = true, ParameterSetName = ComponentNameParameterSet, - HelpMessage = "Database Migration Service Name.")] + HelpMessage = "Azure Database Migration Service (classic) Name.")] [ValidateNotNullOrEmpty] public string ServiceName { get; set; } diff --git a/src/DataMigration/DataMigration/help/Az.DataMigration.md b/src/DataMigration/DataMigration/help/Az.DataMigration.md index caac732726a4..8482072ce1f3 100644 --- a/src/DataMigration/DataMigration/help/Az.DataMigration.md +++ b/src/DataMigration/DataMigration/help/Az.DataMigration.md @@ -18,10 +18,10 @@ Start assessment on SQL Server instance(s) Collect performance data for given SQL Server instance(s) ### [Get-AzDataMigrationProject](Get-AzDataMigrationProject.md) -Retrieves the properties of an Azure Database Migration project. +Retrieves the properties of an Azure Database Migration Service (classic) project. ### [Get-AzDataMigrationService](Get-AzDataMigrationService.md) -Retrieves the properties associated with an instance of the Azure Database Migration Service. +Retrieves the properties associated with an instance of the Azure Database Migration Service (classic). ### [Get-AzDataMigrationSkuRecommendation](Get-AzDataMigrationSkuRecommendation.md) Gives SKU recommendations for Azure SQL offerings @@ -39,7 +39,7 @@ Retrieve the registered Integration Runtime nodes and their monitoring data for Retrieve the List of database migrations attached to the service. ### [Get-AzDataMigrationTask](Get-AzDataMigrationTask.md) -Retrieves the PSProjectTask object associated with an Azure Database Migration Service migration task. +Retrieves the PSProjectTask object associated with an Azure Database Migration Service (classic) migration task. ### [Get-AzDataMigrationToSqlDb](Get-AzDataMigrationToSqlDb.md) Retrieve the specified database migration for a given SQL Db. @@ -51,7 +51,7 @@ Retrieve the specified database migration for a given SQL Managed Instance. Retrieve the specified database migration for a given SQL VM. ### [Invoke-AzDataMigrationCommand](Invoke-AzDataMigrationCommand.md) -Creates a new command to be executed on an existing DMS task. +Creates a new command to be executed on an existing DMS (classic) task. ### [Invoke-AzDataMigrationCutoverToSqlManagedInstance](Invoke-AzDataMigrationCutoverToSqlManagedInstance.md) Initiate cutover for in-progress online database migration to SQL Managed Instance. @@ -66,10 +66,10 @@ Create a new instance DataMigration Azure ActiveDirectory Application details. Creates a new Connection Info object specifying the server type and name for connection. ### [New-AzDataMigrationDatabaseInfo](New-AzDataMigrationDatabaseInfo.md) -Creates the DatabaseInfo object for the Azure Database Migration Service, which specifies the database source for migration. +Creates the DatabaseInfo object for the Azure Database Migration Service (classic), which specifies the database source for migration. ### [New-AzDataMigrationFileShare](New-AzDataMigrationFileShare.md) -Creates the FileShare object for the Azure Database Migration Service, which specifies the local network share to take the source database backups to. +Creates the FileShare object for the Azure Database Migration Service (classic), which specifies the local network share to take the source database backups to. ### [New-AzDataMigrationLoginsMigration](New-AzDataMigrationLoginsMigration.md) Migrate logins from the source Sql Servers to the target Azure Sql Servers. @@ -81,13 +81,13 @@ Creates collection setting for migration according for the mongoDb migration Creates database setting for migration for the mongoDb migration ### [New-AzDataMigrationProject](New-AzDataMigrationProject.md) -Creates a new Azure Database Migration Service project. +Creates a new Azure Database Migration Service (classic) project. ### [New-AzDataMigrationSelectedDBObject](New-AzDataMigrationSelectedDBObject.md) Creates a database input object that contains information about source and target databases for migration. ### [New-AzDataMigrationService](New-AzDataMigrationService.md) -Creates a new instance of the Azure Database Migration Service. +Creates a new instance of the Azure Database Migration Service (classic). ### [New-AzDataMigrationSqlService](New-AzDataMigrationSqlService.md) Create or Update Database Migration Service. @@ -99,7 +99,7 @@ Regenerate a new set of Authentication Keys for Self Hosted Integration Runtime. Creates a database info object specific to the sync scenario to be used for a migration task. ### [New-AzDataMigrationTask](New-AzDataMigrationTask.md) -Creates and starts a data migration task in the Azure Database Migration Service. +Creates and starts a data migration task in the Azure Database Migration Service (classic). ### [New-AzDataMigrationToSqlDb](New-AzDataMigrationToSqlDb.md) Create a new database migration to a given SQL Db. @@ -114,10 +114,10 @@ Create a new database migration to a given SQL VM. Registers Sql Migration Service on Integration Runtime ### [Remove-AzDataMigrationProject](Remove-AzDataMigrationProject.md) -Removes an Azure Database Migration Service project from Azure. +Removes an Azure Database Migration Service (classic) project from Azure. ### [Remove-AzDataMigrationService](Remove-AzDataMigrationService.md) -Removes an instance of the Azure Database Migration Service from Azure. +Removes an instance of the Azure Database Migration Service (classic) from Azure. ### [Remove-AzDataMigrationSqlService](Remove-AzDataMigrationSqlService.md) Delete Database Migration Service. @@ -126,19 +126,19 @@ Delete Database Migration Service. Delete the integration runtime node. ### [Remove-AzDataMigrationTask](Remove-AzDataMigrationTask.md) -Removes an Azure Database Migration Service task from Azure. +Removes an Azure Database Migration Service (classic) task from Azure. ### [Remove-AzDataMigrationToSqlDb](Remove-AzDataMigrationToSqlDb.md) Remove the specified database migration for a given SQL Db. ### [Start-AzDataMigrationService](Start-AzDataMigrationService.md) -Starts an instance of the Azure Database Migration Service in a stopped state. +Starts an instance of the Azure Database Migration Service (classic) in a stopped state. ### [Stop-AzDataMigrationService](Stop-AzDataMigrationService.md) -Stops an instance of the Azure Database Migration Service that is in a running state. +Starts an instance of the Azure Database Migration Service (classic) in a stopped state. ### [Stop-AzDataMigrationTask](Stop-AzDataMigrationTask.md) -Stops an Azure Database Migration Service task that is in a running state. +Stops an Azure Database Migration Service (classic) task that is in a running state. ### [Stop-AzDataMigrationToSqlDb](Stop-AzDataMigrationToSqlDb.md) Stop in-progress database migration to SQL Db. diff --git a/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md b/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md index ef4363013e62..ac2988d5af3b 100644 --- a/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md +++ b/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzDataMigrationProject ## SYNOPSIS -Retrieves the properties of an Azure Database Migration project. +Retrieves the properties of an Azure Database Migration Service (classic) project. ## SYNTAX diff --git a/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md index e8119a47912e..d38e24a76da7 100644 --- a/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md +++ b/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzDataMigrationService ## SYNOPSIS -Retrieves the properties associated with an instance of the Azure Database Migration Service. +Retrieves the properties associated with an instance of the Azure Database Migration Service (classic). ## SYNTAX @@ -31,7 +31,7 @@ Get-AzDataMigrationService [-ResourceGroupName] [-Name] ``` ## DESCRIPTION -The Get-AzDataMigrationService cmdlet retrieves the properties associated with an instance of the Azure Database Migration Service based on Service name and Azure Resource Group name as input parameters. +The Get-AzDataMigrationService cmdlet retrieves the properties associated with an instance of the Azure Database Migration Service (classic) based on Service name and Azure Resource Group name as input parameters. ## EXAMPLES @@ -40,14 +40,14 @@ The Get-AzDataMigrationService cmdlet retrieves the properties associated with a Get-AzDataMigrationService -ResourceGroupName testResourceGroup -Name testService ``` -The above example retrieves the properties of the Azure Database Migration Service instance called testService. +The above example retrieves the properties of the Azure Database Migration Service (classic) instance called testService. ### Example 2 ```powershell Get-AzDataMigrationService -ResourceGroupName testResourceGroup ``` -The above example retrieves Azure Database Migration Services in the resource group called testResourceGroup. +The above example retrieves Azure Database Migration Services (classic) in the resource group called testResourceGroup. ## PARAMETERS @@ -67,7 +67,7 @@ Accept wildcard characters: False ``` ### -Name -Name of Database Migration Service. +Name of Azure Database Migration Service (classic). ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md index 0680d76cf52c..bb9bf624d468 100644 --- a/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md +++ b/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzDataMigrationTask ## SYNOPSIS -Retrieves the PSProjectTask object associated with an Azure Database Migration Service migration task. +Retrieves the PSProjectTask object associated with an Azure Database Migration Service (classic) migration task. ## SYNTAX @@ -67,7 +67,7 @@ Get-AzDataMigrationTask -ResourceGroupName -ServiceName -Proje ``` ## DESCRIPTION -The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an Azure Database Migration Service migration task. +The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an Azure Database Migration Service (classic) migration task. ## EXAMPLES @@ -76,7 +76,7 @@ The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an A Get-AzDataMigrationTask -TaskName myTestTask -ServiceName myTestService -ProjectName MyTestProject -ResourceGroupName MyResourceGroup -Expand ``` -The above example illustrates the use of Get-AzDataMigrationTask cmdlet to retrieve the properties associated with an Azure Database Migration Service migration task based on task name passed in as input parameter +The above example illustrates the use of Get-AzDataMigrationTask cmdlet to retrieve the properties associated with an Azure Database Migration Service (classic) migration task based on task name passed in as input parameter ### Example 2 ```powershell diff --git a/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md b/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md index f500d171ed4e..40b544167541 100644 --- a/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md +++ b/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Invoke-AzDataMigrationCommand ## SYNOPSIS -Creates a new command to be executed on an existing DMS task. +Creates a new command to be executed on an existing DMS (classic) task. ## SYNTAX diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md index 82c45ea57c64..aca53eb98785 100644 --- a/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md +++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzDataMigrationFileShare ## SYNOPSIS -Creates the FileShare object for the Azure Database Migration Service, which specifies the local network share to take the source database backups to. +Creates the FileShare object for the Azure Database Migration Service (classic), which specifies the local network share to take the source database backups to. ## SYNTAX @@ -18,7 +18,7 @@ New-AzDataMigrationFileShare -Path -Credential ``` ## DESCRIPTION -The New-AzDataMigrationFileShare cmdlet creates the FileShare object that specifies the local network share that Azure Database Migration Service can take source database backups to. The service account running source SQL Server instance must have write privileges on this network share. +The New-AzDataMigrationFileShare cmdlet creates the FileShare object that specifies the local network share that Azure Database Migration Service (classic) can take source database backups to. The service account running source SQL Server instance must have write privileges on this network share. ## EXAMPLES diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md index 73c46f584041..ac5e480ad326 100644 --- a/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md +++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzDataMigrationProject ## SYNOPSIS -Creates a new Azure Database Migration Service project. +Creates a new Azure Database Migration Service (classic) project. ## SYNTAX @@ -37,7 +37,7 @@ New-AzDataMigrationProject [-ResourceId] -Location -Name -Name -Location ``` ## DESCRIPTION -The New-AzDataMigrationService cmdlet creates a new instance of the Azure Database Migration Service. This cmdlet takes in name of existing Azure Resource Group, the unique name for the new instance of the Azure Database Migration Service to be created, the region in which the instance is provisioned, the name of the DMS Worker SKU, and the name of the Azure Virtual Subnet on which the service is to reside. There is no parameter for subscription name, because it is expected for the user to specify the default subscription of the Azure login session or execute Get-AzSubscription -SubscriptionName "MySubscription" | Select-AzSubscription to select another subscription. +The New-AzDataMigrationService cmdlet creates a new instance of the Azure Database Migration Service (classic). This cmdlet takes in name of existing Azure Resource Group, the unique name for the new instance of the Azure Database Migration Service to be created, the region in which the instance is provisioned, the name of the DMS Worker SKU, and the name of the Azure Virtual Subnet on which the service is to reside. There is no parameter for subscription name, because it is expected for the user to specify the default subscription of the Azure login session or execute Get-AzSubscription -SubscriptionName "MySubscription" | Select-AzSubscription to select another subscription. ## EXAMPLES @@ -27,7 +27,7 @@ The New-AzDataMigrationService cmdlet creates a new instance of the Azure Databa New-AzDataMigrationService -ResourceGroupName myResourceGroup -Name TestService -Location "Central US" -Sku Basic_2vCores -VirtualSubnetId $virtualSubNetId ``` -The above example shows how to create a new instance of the Azure Database Migration Service named TestService in Central US region. +The above example shows how to create a new instance of the Azure Database Migration Service (classic) named TestService in Central US region. ## PARAMETERS @@ -47,7 +47,7 @@ Accept wildcard characters: False ``` ### -Location -The location of the Azure Database Migration Service instance to be created, which corresponds to an Azure region. +The location of the Azure Database Migration Service (classic) instance to be created, which corresponds to an Azure region. ```yaml Type: System.String @@ -62,7 +62,7 @@ Accept wildcard characters: False ``` ### -Name -Database Migration Service Name. +Azure Database Migration Service (classic) Name. ```yaml Type: System.String @@ -92,7 +92,7 @@ Accept wildcard characters: False ``` ### -Sku -The sku for the Azure Database Migration Service instance. Possible values currently are Standard_1vCores, Standard_2vCores, Standard_4vCores, Premium_4vCores. +The sku for the Azure Database Migration Service (classic) instance. Possible values currently are Standard_1vCores, Standard_2vCores, Standard_4vCores, Premium_4vCores. ```yaml Type: System.String @@ -107,7 +107,7 @@ Accept wildcard characters: False ``` ### -VirtualSubnetId -The name of the subnet under the specified virtual network to use for the Azure Database Migration Service instance. +The name of the subnet under the specified virtual network to use for the Azure Database Migration Service (classic) instance. ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md index 3d8f541228b4..18756904fe3e 100644 --- a/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md +++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzDataMigrationTask ## SYNOPSIS -Creates and starts a data migration task in the Azure Database Migration Service. +Creates and starts a data migration task in the Azure Database Migration Service (classic). ## SYNTAX @@ -32,7 +32,7 @@ New-AzDataMigrationTask [-ResourceId] -TaskType -Name [-Force] [-DeleteRunningTas ``` ## DESCRIPTION -The Remove-AzDataMigrationProject cmdlet removes an Azure Database Migration Service project from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service tasks associated with the project that is being removed. +The Remove-AzDataMigrationProject cmdlet removes an Azure Database Migration Service (classic) project from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service (classic) tasks associated with the project that is being removed. ## EXAMPLES @@ -41,14 +41,14 @@ The Remove-AzDataMigrationProject cmdlet removes an Azure Database Migration Ser Remove-AzDataMigrationProject -ResourceGroupName myResourceGroup -ServiceName myDMService -ProjectName myDMProject ``` -The above example removes the Azure Database Migration Service project called myDMProject from Azure based on name as input parameter +The above example removes the Azure Database Migration Service (classic) project called myDMProject from Azure based on name as input parameter ### Example 2 ```powershell Remove-AzDataMigrationProject -InputObject $myDMSProject ``` -The above example removes the Azure Database Migration Service project based on PSProject object as input parameter. +The above example removes the Azure Database Migration Service (classic) project based on PSProject object as input parameter. ## PARAMETERS @@ -174,7 +174,7 @@ Accept wildcard characters: False ``` ### -ServiceName -Database Migration Service Name. +Azure Database Migration Service (classic) Name. ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md index 474a3832c037..d9d16e8ee38f 100644 --- a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md +++ b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzDataMigrationService ## SYNOPSIS -Removes an instance of the Azure Database Migration Service from Azure. +Removes an instance of the Azure Database Migration Service (classic) from Azure. ## SYNTAX @@ -31,7 +31,7 @@ Remove-AzDataMigrationService [-ResourceId] [-Force] [-DeleteRunningTas ``` ## DESCRIPTION -The Remove-AzDataMigrationService cmdlet removes an instance of the Azure Database Migration Service from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service tasks associated with the service that is being removed. +The Remove-AzDataMigrationService cmdlet removes an instance of the Azure Database Migration Service (classic) from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service (classic) tasks associated with the service that is being removed. ## EXAMPLES @@ -40,7 +40,7 @@ The Remove-AzDataMigrationService cmdlet removes an instance of the Azure Databa Remove-AzDataMigrationService -ResourceGroupName MyResourceGroup -ServiceName TestService ``` -The above example removes an instance of the Azure Database Migration Service named TestService that is contained in an Azure Resource Group named MyResourceGroup. +The above example removes an instance of the Azure Database Migration Service (classic) named TestService that is contained in an Azure Resource Group named MyResourceGroup. ## PARAMETERS @@ -105,7 +105,7 @@ Accept wildcard characters: False ``` ### -Name -The name of the Database Migration Service. +The name of the Azure Database Migration Service (classic). ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md index 24aa15333754..af083979d630 100644 --- a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md +++ b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Remove-AzDataMigrationTask ## SYNOPSIS -Removes an Azure Database Migration Service task from Azure. +Removes an Azure Database Migration Service (classic) task from Azure. ## SYNTAX @@ -32,7 +32,7 @@ Remove-AzDataMigrationTask [-ResourceId] [-Force] [-PassThru] ``` ## DESCRIPTION -The Remove-AzDataMigrationTask cmdlet removes an Azure Database Migration Service task from Azure. +The Remove-AzDataMigrationTask cmdlet removes an Azure Database Migration Service (classic) task from Azure. ## EXAMPLES @@ -41,14 +41,14 @@ The Remove-AzDataMigrationTask cmdlet removes an Azure Database Migration Servic Remove-AzDataMigrationTask -TaskName TestTask -ProjectName myTestProject -ServiceName MyTestService -ResourceGroupName MyResourceGroup ``` -The preceding example removes an Azure Database Migration Service task named TestTask from Azure based on task name parameter. +The preceding example removes an Azure Database Migration Service (classic) task named TestTask from Azure based on task name parameter. ### Example 2 ```powershell Remove-AzDataMigrationTask -InputObject $TestTask ``` -The preceding example removes an Azure Database Migration Service task based on PSProjectTask object passed in. +The preceding example removes an Azure Database Migration Service (classic) task based on PSProjectTask object passed in. ## PARAMETERS @@ -174,7 +174,7 @@ Accept wildcard characters: False ``` ### -ServiceName -Database Migration Service Name. +Azure Database Migration Service (classic) Name. ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md index 1fd81c5f29e0..a98eaa9a0d46 100644 --- a/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md +++ b/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Start-AzDataMigrationService ## SYNOPSIS -Starts an instance of the Azure Database Migration Service in a stopped state. +Starts an instance of the Azure Database Migration Service (classic) in a stopped state. ## SYNTAX @@ -31,7 +31,7 @@ Start-AzDataMigrationService [-ResourceId] [-PassThru] [-DefaultProfile ``` ## DESCRIPTION -The Start-AzDataMigrationService cmdlet starts an instance of the Azure Database Migration Service in a stopped state. +The Start-AzDataMigrationService cmdlet starts an instance of the Azure Database Migration Service (classic) in a stopped state. ## EXAMPLES @@ -40,14 +40,14 @@ The Start-AzDataMigrationService cmdlet starts an instance of the Azure Database Start-AzDataMigrationService -ResourceGroupName MyResourceGroup -ServiceName TestService ``` -The above example starts an Azure Database Migration Service instance named Test Service in a stopped state based on service name passed in as input +The above example starts an Azure Database Migration Service (classic) instance named Test Service in a stopped state based on service name passed in as input ### Example 2 ```powershell Start-AzDataMigrationService -InputObject $TestService ``` -The above example starts an Azure Database Migration Service instance based on PSDataMigrationService passed in as input parameter +The above example starts an Azure Database Migration Service (classic) instance based on PSDataMigrationService passed in as input parameter ## PARAMETERS @@ -82,7 +82,7 @@ Accept wildcard characters: False ``` ### -Name -Database Migration Service Name. +Azure Database Migration Service (classic) Name. ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md index dd437a12bddc..f0863e468d13 100644 --- a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md +++ b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Stop-AzDataMigrationService ## SYNOPSIS -Stops an instance of the Azure Database Migration Service that is in a running state. +Stops an instance of the Azure Database Migration Service (classic) that is in a running state. ## SYNTAX @@ -31,7 +31,7 @@ Stop-AzDataMigrationService [-ResourceId] [-PassThru] [-DefaultProfile ``` ## DESCRIPTION -The Stop-AzDataMigrationService cmdlet stops an instance of the Azure Database Migration Service that is in a running state. +The Stop-AzDataMigrationService cmdlet stops an instance of the Azure Database Migration Service (classic) that is in a running state. ## EXAMPLES @@ -40,14 +40,14 @@ The Stop-AzDataMigrationService cmdlet stops an instance of the Azure Database M Stop-AzDataMigrationService -ResourceGroupName MyResourceGroup -ServiceName TestService ``` -The above example stops an instance of the Azure Database Migration Service called TestService based on service name passed in as input parameter +The above example stops an instance of the Azure Database Migration Service (classic) called TestService based on service name passed in as input parameter ### Example 2 ```powershell Stop-AzDataMigrationService -InputObject $TestService ``` -The above example stops an instance of the Azure Database Migration Service based on PSDataMigrationService object passed as input parameter. +The above example stops an instance of the Azure Database Migration Service (classic) based on PSDataMigrationService object passed as input parameter. ## PARAMETERS @@ -82,7 +82,7 @@ Accept wildcard characters: False ``` ### -Name -Database Migration Service Name. +Azure Database Migration Service (classic) Name. ```yaml Type: System.String diff --git a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md index 4ac3d1726710..daa12ac08433 100644 --- a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md +++ b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Stop-AzDataMigrationTask ## SYNOPSIS -Stops an Azure Database Migration Service task that is in a running state. +Stops an Azure Database Migration Service (classic) task that is in a running state. ## SYNTAX @@ -40,14 +40,14 @@ Stop-AzDataMigrationTask cmdlet stops database migration activity in running sta Stop-AzDataMigrationTask -ResourceGroupName MyResourceGroup -ServiceName TestService -ProjectName myDMSProject -Name myDMSTask ``` -Above example stops Azure Database Migration Service task named myDMSTask associated with project myDMSProject and Azure Database Migration Service instance named TestService +Above example stops Azure Database Migration Service (classic) task named myDMSTask associated with project myDMSProject and Azure Database Migration Service instance named TestService ### Example 2 ```powershell Stop-AzDataMigrationTask -InputObject $MyDMSTask ``` -Above example stops Azure Database Migration Service task passed in as input parameter PSProjectTask object +Above example stops Azure Database Migration Service (classic) task passed in as input parameter PSProjectTask object ## PARAMETERS @@ -158,7 +158,7 @@ Accept wildcard characters: False ``` ### -ServiceName -Database Migration Service Name. +Azure Database Migration Service (classic) Name. ```yaml Type: System.String