Skip to content

Commit 565c798

Browse files
authored
[Az.DataMigration] Change Azure Database Migration Service in documentation to Azure Database Migration Service (classic) (#20893)
* Rename Azure Database migration Service to Azure Database Migration Service (classic) * fix PR comments
1 parent 58aa75d commit 565c798

26 files changed

+93
-93
lines changed

src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
2323
{
2424
/// <summary>
25-
/// Cmdlet for getting Data Migration Service resource
25+
/// Cmdlet for getting Azure Data Migration Service (classic) resource
2626
/// </summary>
2727
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationService", DefaultParameterSetName = ResourceGroupSet), OutputType(typeof(PSDataMigrationService))]
2828
[Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix+ "Dms")]
@@ -52,12 +52,12 @@ public class GetAzureDataMigrationService : DataMigrationCmdlet
5252
public string ResourceGroupName { get; set; }
5353

5454
/// <summary>
55-
/// Gets or sets the name of the data migration service.
55+
/// Gets or sets the name of the Azure Database Migration Service (classic).
5656
/// </summary>
5757
[Parameter(Mandatory = true,
5858
Position = 1,
5959
ParameterSetName = ServiceNameGroupSet,
60-
HelpMessage = "Name of Database Migration Service.")]
60+
HelpMessage = "Name of Azure Database Migration Service (classic).")]
6161
[ValidateNotNullOrEmpty]
6262
[Alias("ServiceName")]
6363
public string Name { get; set; }

src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
2323
{
2424
/// <summary>
25-
/// Class for the command let that creates a new instance of the Data Migration Service.
25+
/// Class for the command let that creates a new instance of the Azure Database Migration Service (classic).
2626
/// </summary>
2727
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationProject", DefaultParameterSetName = ComponentNameParameterSet), OutputType(typeof(PSProject))]
2828
[Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DmsProject")]
@@ -43,7 +43,7 @@ public class GetProjectCmdlet : DataMigrationCmdlet
4343
Mandatory = true,
4444
ParameterSetName = ResourceIdParameterSet,
4545
ValueFromPipelineByPropertyName = true,
46-
HelpMessage = "DataMigrationService Resource Id.")]
46+
HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
4747
[ValidateNotNullOrEmpty]
4848
public string ResourceId { get; set; }
4949

@@ -58,7 +58,7 @@ public class GetProjectCmdlet : DataMigrationCmdlet
5858
[Parameter(
5959
Mandatory = true,
6060
ParameterSetName = ComponentNameParameterSet,
61-
HelpMessage = "Database Migration Service Name.")]
61+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
6262
[ValidateNotNullOrEmpty]
6363
public string ServiceName { get; set; }
6464

src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,29 +35,29 @@ public sealed class NewAzureRmDataMigrationService : DataMigrationCmdlet
3535

3636
[Parameter(
3737
Mandatory = true,
38-
HelpMessage = "Database Migration Service Name.")]
38+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
3939
[ValidateNotNullOrEmpty]
4040
[Alias("ServiceName")]
4141
public string Name { get; set; }
4242

4343
[Parameter(
4444
Mandatory = true,
45-
HelpMessage = "The location of the instance of the Database Migration Service to be created. "
45+
HelpMessage = "The location of the instance of the Azure Database Migration Service (classic) to be created. "
4646
+ "This corresponds to an Azure region.")]
4747
[ValidateNotNullOrEmpty]
4848
public string Location { get; set; }
4949

5050
[Parameter(
5151
Mandatory = true,
52-
HelpMessage = "The SKU for DataMigration service instance, possible values are GeneralPurpose_1vCore, GeneralPurpose_2vCores, GeneralPurpose_4vCores, BusinessCritical_4vCores"
52+
HelpMessage = "The SKU for Azure Database Migration service (classic) instance, possible values are GeneralPurpose_1vCore, GeneralPurpose_2vCores, GeneralPurpose_4vCores, BusinessCritical_4vCores"
5353
)]
5454
[ValidateNotNullOrEmpty]
5555
[PSArgumentCompleter("GeneralPurpose_1vCore", "GeneralPurpose_2vCores", "GeneralPurpose_4vCores", "BusinessCritical_4vCores")]
5656
public string Sku { get; set; }
5757

5858
[Parameter(
5959
Mandatory = true,
60-
HelpMessage = "The name of the subnet under the specified virtual network to be used for the Database Migration Service instance.")]
60+
HelpMessage = "The name of the subnet under the specified virtual network to be used for the Azure Database Migration Service (classic) instance.")]
6161
[ValidateNotNullOrEmpty]
6262
public string VirtualSubnetId { get; set; }
6363

@@ -73,7 +73,7 @@ public override void ExecuteCmdlet()
7373
}
7474

7575
/// <summary>
76-
/// Helper method that calls the creation of an instance of the Database Migration Service
76+
/// Helper method that calls the creation of an instance of the Azure Database Migration Service (classic)
7777
/// </summary>
7878
/// <returns>The instance of PSDataMigrationService that was created.</returns>
7979
public DataMigrationService CreateService()

src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public TaskTypeEnum TaskType
8282
[Parameter(
8383
Mandatory = true,
8484
ParameterSetName = ComponentNameParameterSet,
85-
HelpMessage = "Database Migration Service Name.")]
85+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
8686
[ValidateNotNullOrEmpty]
8787
public string ServiceName { get; set; }
8888

src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class NewProjectCmdlet : DataMigrationCmdlet
4444
Mandatory = true,
4545
ParameterSetName = ResourceIdParameterSet,
4646
ValueFromPipelineByPropertyName = true,
47-
HelpMessage = "DataMigrationService Resource Id.")]
47+
HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
4848
[ValidateNotNullOrEmpty]
4949
public string ResourceId { get; set; }
5050

@@ -59,13 +59,13 @@ public class NewProjectCmdlet : DataMigrationCmdlet
5959
[Parameter(
6060
Mandatory = true,
6161
ParameterSetName = ComponentNameParameterSet,
62-
HelpMessage = "Database Migration Service Name.")]
62+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
6363
[ValidateNotNullOrEmpty]
6464
public string ServiceName { get; set; }
6565

6666
[Parameter(
6767
Mandatory = true,
68-
HelpMessage = "The location of the instance of the Database Migration Service")]
68+
HelpMessage = "The location of the instance of the Azure Database Migration Service (classic)")]
6969
[ValidateNotNullOrEmpty]
7070
public string Location { get; set; }
7171

src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class RemoveDataMigrationProject : DataMigrationCmdlet
5454
[Parameter(
5555
Mandatory = true,
5656
ParameterSetName = ComponentNameParameterSet,
57-
HelpMessage = "Database Migration Service Name.")]
57+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
5858
[ValidateNotNullOrEmpty]
5959
public string ServiceName { get; set; }
6060

src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class RemoveDataMigrationService : DataMigrationCmdlet
3939
Mandatory = true,
4040
ParameterSetName = ResourceIdParameterSet,
4141
ValueFromPipelineByPropertyName = true,
42-
HelpMessage = "DataMigrationService Resource Id.")]
42+
HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
4343
[ValidateNotNullOrEmpty]
4444
public string ResourceId { get; set; }
4545

src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class RemoveDataMigrationTask : DataMigrationCmdlet
5454
[Parameter(
5555
Mandatory = true,
5656
ParameterSetName = ComponentNameParameterSet,
57-
HelpMessage = "Database Migration Service Name.")]
57+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
5858
[ValidateNotNullOrEmpty]
5959
public string ServiceName { get; set; }
6060

src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class StartDataMigrationService : DataMigrationCmdlet
3838
Mandatory = true,
3939
ParameterSetName = ResourceIdParameterSet,
4040
ValueFromPipelineByPropertyName = true,
41-
HelpMessage = "DataMigrationService Resource Id.")]
41+
HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
4242
[ValidateNotNullOrEmpty]
4343
public string ResourceId { get; set; }
4444

@@ -53,7 +53,7 @@ public class StartDataMigrationService : DataMigrationCmdlet
5353
[Parameter(
5454
Mandatory = true,
5555
ParameterSetName = ComponentNameParameterSet,
56-
HelpMessage = "Database Migration Service Name.")]
56+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
5757
[ValidateNotNullOrEmpty]
5858
[Alias("ServiceName")]
5959
public string Name { get; set; }

src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class StopDataMigrationService : DataMigrationCmdlet
3838
Mandatory = true,
3939
ParameterSetName = ResourceIdParameterSet,
4040
ValueFromPipelineByPropertyName = true,
41-
HelpMessage = "DataMigrationService Resource Id.")]
41+
HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
4242
[ValidateNotNullOrEmpty]
4343
public string ResourceId { get; set; }
4444

@@ -53,7 +53,7 @@ public class StopDataMigrationService : DataMigrationCmdlet
5353
[Parameter(
5454
Mandatory = true,
5555
ParameterSetName = ComponentNameParameterSet,
56-
HelpMessage = "Database Migration Service Name.")]
56+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
5757
[ValidateNotNullOrEmpty]
5858
[Alias("ServiceName")]
5959
public string Name { get; set; }

src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class StopDataMigrationTask : DataMigrationCmdlet
5454
[Parameter(
5555
Mandatory = true,
5656
ParameterSetName = ComponentNameParameterSet,
57-
HelpMessage = "Database Migration Service Name.")]
57+
HelpMessage = "Azure Database Migration Service (classic) Name.")]
5858
[ValidateNotNullOrEmpty]
5959
public string ServiceName { get; set; }
6060

src/DataMigration/DataMigration/help/Az.DataMigration.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Start assessment on SQL Server instance(s)
1818
Collect performance data for given SQL Server instance(s)
1919

2020
### [Get-AzDataMigrationProject](Get-AzDataMigrationProject.md)
21-
Retrieves the properties of an Azure Database Migration project.
21+
Retrieves the properties of an Azure Database Migration Service (classic) project.
2222

2323
### [Get-AzDataMigrationService](Get-AzDataMigrationService.md)
24-
Retrieves the properties associated with an instance of the Azure Database Migration Service.
24+
Retrieves the properties associated with an instance of the Azure Database Migration Service (classic).
2525

2626
### [Get-AzDataMigrationSkuRecommendation](Get-AzDataMigrationSkuRecommendation.md)
2727
Gives SKU recommendations for Azure SQL offerings
@@ -39,7 +39,7 @@ Retrieve the registered Integration Runtime nodes and their monitoring data for
3939
Retrieve the List of database migrations attached to the service.
4040

4141
### [Get-AzDataMigrationTask](Get-AzDataMigrationTask.md)
42-
Retrieves the PSProjectTask object associated with an Azure Database Migration Service migration task.
42+
Retrieves the PSProjectTask object associated with an Azure Database Migration Service (classic) migration task.
4343

4444
### [Get-AzDataMigrationToSqlDb](Get-AzDataMigrationToSqlDb.md)
4545
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.
5151
Retrieve the specified database migration for a given SQL VM.
5252

5353
### [Invoke-AzDataMigrationCommand](Invoke-AzDataMigrationCommand.md)
54-
Creates a new command to be executed on an existing DMS task.
54+
Creates a new command to be executed on an existing DMS (classic) task.
5555

5656
### [Invoke-AzDataMigrationCutoverToSqlManagedInstance](Invoke-AzDataMigrationCutoverToSqlManagedInstance.md)
5757
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.
6666
Creates a new Connection Info object specifying the server type and name for connection.
6767

6868
### [New-AzDataMigrationDatabaseInfo](New-AzDataMigrationDatabaseInfo.md)
69-
Creates the DatabaseInfo object for the Azure Database Migration Service, which specifies the database source for migration.
69+
Creates the DatabaseInfo object for the Azure Database Migration Service (classic), which specifies the database source for migration.
7070

7171
### [New-AzDataMigrationFileShare](New-AzDataMigrationFileShare.md)
72-
Creates the FileShare object for the Azure Database Migration Service, which specifies the local network share to take the source database backups to.
72+
Creates the FileShare object for the Azure Database Migration Service (classic), which specifies the local network share to take the source database backups to.
7373

7474
### [New-AzDataMigrationLoginsMigration](New-AzDataMigrationLoginsMigration.md)
7575
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
8181
Creates database setting for migration for the mongoDb migration
8282

8383
### [New-AzDataMigrationProject](New-AzDataMigrationProject.md)
84-
Creates a new Azure Database Migration Service project.
84+
Creates a new Azure Database Migration Service (classic) project.
8585

8686
### [New-AzDataMigrationSelectedDBObject](New-AzDataMigrationSelectedDBObject.md)
8787
Creates a database input object that contains information about source and target databases for migration.
8888

8989
### [New-AzDataMigrationService](New-AzDataMigrationService.md)
90-
Creates a new instance of the Azure Database Migration Service.
90+
Creates a new instance of the Azure Database Migration Service (classic).
9191

9292
### [New-AzDataMigrationSqlService](New-AzDataMigrationSqlService.md)
9393
Create or Update Database Migration Service.
@@ -99,7 +99,7 @@ Regenerate a new set of Authentication Keys for Self Hosted Integration Runtime.
9999
Creates a database info object specific to the sync scenario to be used for a migration task.
100100

101101
### [New-AzDataMigrationTask](New-AzDataMigrationTask.md)
102-
Creates and starts a data migration task in the Azure Database Migration Service.
102+
Creates and starts a data migration task in the Azure Database Migration Service (classic).
103103

104104
### [New-AzDataMigrationToSqlDb](New-AzDataMigrationToSqlDb.md)
105105
Create a new database migration to a given SQL Db.
@@ -114,10 +114,10 @@ Create a new database migration to a given SQL VM.
114114
Registers Sql Migration Service on Integration Runtime
115115

116116
### [Remove-AzDataMigrationProject](Remove-AzDataMigrationProject.md)
117-
Removes an Azure Database Migration Service project from Azure.
117+
Removes an Azure Database Migration Service (classic) project from Azure.
118118

119119
### [Remove-AzDataMigrationService](Remove-AzDataMigrationService.md)
120-
Removes an instance of the Azure Database Migration Service from Azure.
120+
Removes an instance of the Azure Database Migration Service (classic) from Azure.
121121

122122
### [Remove-AzDataMigrationSqlService](Remove-AzDataMigrationSqlService.md)
123123
Delete Database Migration Service.
@@ -126,19 +126,19 @@ Delete Database Migration Service.
126126
Delete the integration runtime node.
127127

128128
### [Remove-AzDataMigrationTask](Remove-AzDataMigrationTask.md)
129-
Removes an Azure Database Migration Service task from Azure.
129+
Removes an Azure Database Migration Service (classic) task from Azure.
130130

131131
### [Remove-AzDataMigrationToSqlDb](Remove-AzDataMigrationToSqlDb.md)
132132
Remove the specified database migration for a given SQL Db.
133133

134134
### [Start-AzDataMigrationService](Start-AzDataMigrationService.md)
135-
Starts an instance of the Azure Database Migration Service in a stopped state.
135+
Starts an instance of the Azure Database Migration Service (classic) in a stopped state.
136136

137137
### [Stop-AzDataMigrationService](Stop-AzDataMigrationService.md)
138-
Stops an instance of the Azure Database Migration Service that is in a running state.
138+
Starts an instance of the Azure Database Migration Service (classic) in a stopped state.
139139

140140
### [Stop-AzDataMigrationTask](Stop-AzDataMigrationTask.md)
141-
Stops an Azure Database Migration Service task that is in a running state.
141+
Stops an Azure Database Migration Service (classic) task that is in a running state.
142142

143143
### [Stop-AzDataMigrationToSqlDb](Stop-AzDataMigrationToSqlDb.md)
144144
Stop in-progress database migration to SQL Db.

src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-AzDataMigrationProject
99

1010
## SYNOPSIS
11-
Retrieves the properties of an Azure Database Migration project.
11+
Retrieves the properties of an Azure Database Migration Service (classic) project.
1212

1313
## SYNTAX
1414

src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-AzDataMigrationService
99

1010
## SYNOPSIS
11-
Retrieves the properties associated with an instance of the Azure Database Migration Service.
11+
Retrieves the properties associated with an instance of the Azure Database Migration Service (classic).
1212

1313
## SYNTAX
1414

@@ -31,7 +31,7 @@ Get-AzDataMigrationService [-ResourceGroupName] <String> [-Name] <String>
3131
```
3232

3333
## DESCRIPTION
34-
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.
34+
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.
3535

3636
## EXAMPLES
3737

@@ -40,14 +40,14 @@ The Get-AzDataMigrationService cmdlet retrieves the properties associated with a
4040
Get-AzDataMigrationService -ResourceGroupName testResourceGroup -Name testService
4141
```
4242

43-
The above example retrieves the properties of the Azure Database Migration Service instance called testService.
43+
The above example retrieves the properties of the Azure Database Migration Service (classic) instance called testService.
4444

4545
### Example 2
4646
```powershell
4747
Get-AzDataMigrationService -ResourceGroupName testResourceGroup
4848
```
4949

50-
The above example retrieves Azure Database Migration Services in the resource group called testResourceGroup.
50+
The above example retrieves Azure Database Migration Services (classic) in the resource group called testResourceGroup.
5151

5252
## PARAMETERS
5353

@@ -67,7 +67,7 @@ Accept wildcard characters: False
6767
```
6868
6969
### -Name
70-
Name of Database Migration Service.
70+
Name of Azure Database Migration Service (classic).
7171
7272
```yaml
7373
Type: System.String

src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-AzDataMigrationTask
99

1010
## SYNOPSIS
11-
Retrieves the PSProjectTask object associated with an Azure Database Migration Service migration task.
11+
Retrieves the PSProjectTask object associated with an Azure Database Migration Service (classic) migration task.
1212

1313
## SYNTAX
1414

@@ -67,7 +67,7 @@ Get-AzDataMigrationTask -ResourceGroupName <String> -ServiceName <String> -Proje
6767
```
6868

6969
## DESCRIPTION
70-
The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an Azure Database Migration Service migration task.
70+
The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an Azure Database Migration Service (classic) migration task.
7171

7272
## EXAMPLES
7373

@@ -76,7 +76,7 @@ The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an A
7676
Get-AzDataMigrationTask -TaskName myTestTask -ServiceName myTestService -ProjectName MyTestProject -ResourceGroupName MyResourceGroup -Expand
7777
```
7878

79-
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
79+
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
8080

8181
### Example 2
8282
```powershell

src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Invoke-AzDataMigrationCommand
99

1010
## SYNOPSIS
11-
Creates a new command to be executed on an existing DMS task.
11+
Creates a new command to be executed on an existing DMS (classic) task.
1212

1313
## SYNTAX
1414

0 commit comments

Comments
 (0)