File tree Expand file tree Collapse file tree 3 files changed +26
-26
lines changed
src/ResourceManager/DataLakeStore Expand file tree Collapse file tree 3 files changed +26
-26
lines changed Original file line number Diff line number Diff line change 19
19
-->
20
20
## Current Release
21
21
* Set minimum dependency of module to PowerShell 5.0
22
+ * Breaking changes in Export-AzureRmDataLakeStoreItem, Import-AzureRmDataLakeStoreItem, Remove-AzureRmDataLakeStoreItem
22
23
23
24
## Version 5.2.0
24
25
* Updated to the latest version of the Azure ClientRuntime
Original file line number Diff line number Diff line change 39
39
-->
40
40
41
41
## 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
+ ```
42
58
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
+ ```
Original file line number Diff line number Diff line change 25
25
https://github.com/Azure/azure-powershell/blob/dev/documentation/breaking-changes/breaking-change-template.md
26
26
-->
27
27
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
You can’t perform that action at this time.
0 commit comments