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; }

0 commit comments

Comments
 (0)