Skip to content

Commit 54e8cc3

Browse files
committed
renaming help file to the non-aliased one due to the staticanalysis error.
1 parent 037a4b8 commit 54e8cc3

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/ResourceManager/DataMigration/Commands.DataMigration/Commands.DataMigration.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
</ItemGroup>
123123
<ItemGroup>
124124
<None Include="help\Invoke-AzureRmDataMigrationCommand.md" />
125-
<None Include="help\New-AzureRmDmsMongoDbDatabaseSetting.md" />
126-
<None Include="help\New-AzureRmDmsMongoDbConnectionSetting.md" />
125+
<None Include="help\New-AzureRmDataMigrationMongoDbDatabaseSetting .md" />
126+
<None Include="help\New-AzureRmDataMigrationMongoDbCollectionSetting .md" />
127127
<None Include="help\New-AzureRmDataMigrationSelectedDBObject.md" />
128128
<None Include="help\New-AzureRmDataMigrationSyncSelectedDBObject.md" />
129129
<None Include="MSSharedLibKey.snk" />

src/ResourceManager/DataMigration/Commands.DataMigration/help/New-AzureRmDmsMongoDbConnectionSetting.md renamed to src/ResourceManager/DataMigration/Commands.DataMigration/help/New-AzureRmDataMigrationMongoDbCollectionSetting .md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.datam
55
schema: 2.0.0
66
---
77

8-
# New-AzureRmDmsMongoDbCollectionSetting
8+
# New-AzureRmDataMigrationMongoDbCollectionSetting
99

1010
## SYNOPSIS
1111
Creates collection setting for migration according for the mongoDb migration
1212

1313
## SYNTAX
1414

1515
```
16-
New-AzureRmDmsMongoDbCollectionSetting -Name <Name> [-TargetRU <TargetRU>] [-CanDelete] [-ShardKeyFields <ShardKeyFields>]
16+
New-AzureRmDataMigrationMongoDbCollectionSetting -Name <Name> [-TargetRU <TargetRU>] [-CanDelete] [-ShardKeyFields <ShardKeyFields>]
1717
```
1818

1919
## DESCRIPTION
20-
The New-AzureRmDmsMongoDbCollectionSetting cmdlet creates the migration setting object that specifies the throughput and delete behavior.
20+
The New-AzureRmDataMigrationMongoDbCollectionSetting cmdlet creates the migration setting object that specifies the throughput and delete behavior.
2121
The output the cmdlet is key value pair with name of the collection, and value of the setting. The output is used in assembling
2222
the database level settings for migration.
2323

2424
## EXAMPLES
2525

2626
### Example 1
2727
```
28-
PS C:\> New-AzureRmDmsMongoDbCollectionSetting -Name myCollection -TargetRU 1000 -CanDelete -ShardKeyFields "_id:-1,age:1,name"
28+
PS C:\> New-AzureRmDataMigrationMongoDbCollectionSetting -Name myCollection -TargetRU 1000 -CanDelete -ShardKeyFields "_id:-1,age:1,name"
2929
3030
```
3131

src/ResourceManager/DataMigration/Commands.DataMigration/help/New-AzureRmDmsMongoDbDatabaseSetting.md renamed to src/ResourceManager/DataMigration/Commands.DataMigration/help/New-AzureRmDataMigrationMongoDbDatabaseSetting .md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,26 @@ online version: https://docs.microsoft.com/en-us/powershell/module/azurerm.datam
55
schema: 2.0.0
66
---
77

8-
# New-AzureRmDmsMongoDbDatabaseSetting
8+
# New-AzureRmDataMigrationMongoDbDatabaseSetting
99

1010
## SYNOPSIS
1111
Creates database setting for migration for the mongoDb migration
1212

1313
## SYNTAX
1414

1515
```
16-
New-AzureRmDmsMongoDbDatabaseSetting -Name <Name> [-RU <RU>] -Collections <Collections>
16+
New-AzureRmDataMigrationMongoDbDatabaseSetting -Name <Name> [-RU <RU>] -Collections <Collections>
1717
```
1818

1919
## DESCRIPTION
20-
The New-AzureRmDmsMongoDbDatabaseSetting cmdlet creates the migration setting object that specifies the throughput and delete behavior.
20+
The New-AzureRmDataMigrationMongoDbDatabaseSetting cmdlet creates the migration setting object that specifies the throughput and delete behavior.
2121
The output is a key value pair with name of collection and value of the setting, which can be used in invoking the migration task.
2222

2323
## EXAMPLES
2424

2525
### Example 1
2626
```
27-
PS C:\> New-AzureRmDmsMongoDbDatabaseSetting -Name mycollection -RU 1000 -Collections @(coll1, coll2)
27+
PS C:\> New-AzureRmDataMigrationMongoDbDatabaseSetting -Name mycollection -RU 1000 -Collections @(coll1, coll2)
2828
2929
```
3030

0 commit comments

Comments
 (0)