Skip to content

Commit 3d9f754

Browse files
committed
Update the changelog and breaking changes log
1 parent 3ecb718 commit 3d9f754

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

src/ResourceManager/DataLakeStore/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020
## Current Release
2121
* Set minimum dependency of module to PowerShell 5.0
22+
* Breaking changes in Export-AzureRmDataLakeStoreItem, Import-AzureRmDataLakeStoreItem, Remove-AzureRmDataLakeStoreItem
2223

2324
## Version 5.2.0
2425
* Updated to the latest version of the Azure ClientRuntime

src/ResourceManager/DataLakeStore/documentation/current-breaking-changes.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,28 @@
3939
-->
4040

4141
## Current Breaking Changes
42+
**Export-AzureRmDataLakeStoreItem**
43+
- Parameters PerFileThreadCount, ConcurrentFileCount are deprecated. Will be removed in future releases. Introduced Concurrency parameter.
44+
```powershell
45+
# Old
46+
# Export-AzureRmDataLakeStoreItem -Account contoso -Path /test -Destination C:\test -Recurse -Resume -PerFileThreadCount 2 -ConcurrentFileCount 80
47+
# New
48+
# Export-AzureRmDataLakeStoreItem -Account contoso -Path /test -Destination C:\test -Recurse -Resume -Concurrency 160
49+
```
50+
**Import-AzureRmDataLakeStoreItem**
51+
- Parameters PerFileThreadCount, ConcurrentFileCount are deprecated. Will be removed in future releases. Introduced Concurrency parameter.
52+
```powershell
53+
# Old
54+
# Import-AzureRmDataLakeStoreItem -Account contoso -Path C:\test -Destination /test -Recurse -Resume -ForceBinary -PerFileThreadCount 2 -ConcurrentFileCount 80
55+
# New
56+
# Import-AzureRmDataLakeStoreItem -Account contoso -Path C:\test -Destination /test -Recurse -Resume -ForceBinary -Concurrency 160
57+
```
4258

59+
**Remove-AzureRmDataLakeStoreItem**
60+
- Parameter Clean is deprecated.
61+
```powershell
62+
# Old
63+
# Remove-AzureRmDataLakeStoreItem -Account "ContosoADL" -path /myFolder -Recurse -Clean
64+
# New
65+
# Remove-AzureRmDataLakeStoreItem -Account "ContosoADL" -path /myFolder -Recurse
66+
```

src/ResourceManager/DataLakeStore/documentation/upcoming-breaking-changes.md

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,4 @@
2525
https://github.com/Azure/azure-powershell/blob/dev/documentation/breaking-changes/breaking-change-template.md
2626
-->
2727

28-
# Upcoming Breaking Changes
29-
**Export-AzureRmDataLakeStoreItem**
30-
- Parameters PerFileThreadCount, ConcurrentFileCount are deprecated. Will be removed in future releases. Introduced Concurrency parameter.
31-
```powershell
32-
# Old
33-
# Export-AzureRmDataLakeStoreItem -Account contoso -Path /test -Destination C:\test -Recurse -Resume -PerFileThreadCount 2 -ConcurrentFileCount 80
34-
# New
35-
# Export-AzureRmDataLakeStoreItem -Account contoso -Path /test -Destination C:\test -Recurse -Resume -Concurrency 160
36-
```
37-
**Import-AzureRmDataLakeStoreItem**
38-
- Parameters PerFileThreadCount, ConcurrentFileCount are deprecated. Will be removed in future releases. Introduced Concurrency parameter.
39-
```powershell
40-
# Old
41-
# Import-AzureRmDataLakeStoreItem -Account contoso -Path C:\test -Destination /test -Recurse -Resume -ForceBinary -PerFileThreadCount 2 -ConcurrentFileCount 80
42-
# New
43-
# Import-AzureRmDataLakeStoreItem -Account contoso -Path C:\test -Destination /test -Recurse -Resume -ForceBinary -Concurrency 160
44-
```
45-
46-
**Remove-AzureRmDataLakeStoreItem**
47-
- Parameter Clean is deprecated.
48-
```powershell
49-
# Old
50-
# Remove-AzureRmDataLakeStoreItem -Account "ContosoADL" -path /myFolder -Recurse -Clean
51-
# New
52-
# Remove-AzureRmDataLakeStoreItem -Account "ContosoADL" -path /myFolder -Recurse
53-
```
28+
# Upcoming Breaking Changes

0 commit comments

Comments
 (0)