You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ResourceManager/DataLakeStore/ChangeLog.md
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,12 @@
18
18
- Additional information about change #1
19
19
-->
20
20
## Current Release
21
+
* Add new feature of recursive Acl Change to Remove-AzureRmDataLakeStoreItemAclEntry, Set-AzureRmDataLakeStoreItemAclEntry, Set-AzureRmDataLakeStoreItemAcl
22
+
* Add new cmdlet for retrieving the content summary under a directory
23
+
* Add new cmdlet for retrieving the disk usage and Acl dump
21
24
* Set minimum dependency of module to PowerShell 5.0
25
+
* Correct return type of Set-AzureRmDataLakeStoreItemAcl bool to IEnumerable<DataLakeStoreItemAce>
26
+
* Correct return type of Set-AzureRmDataLakeStoreItemAclEntry bool to IEnumerable<DataLakeStoreItemAce>
22
27
* Breaking changes in Export-AzureRmDataLakeStoreItem, Import-AzureRmDataLakeStoreItem, Remove-AzureRmDataLakeStoreItem
Copy file name to clipboardExpand all lines: src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/GetAzureRmDataLakeStoreChildItem.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ public class GetAzureDataLakeStoreChildItem : DataLakeStoreFileSystemCmdletBase
Copy file name to clipboardExpand all lines: src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/RemoveAzureRmDataLakeStoreItemAclEntry.cs
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
usingSystem.Linq;
20
20
usingSystem.Management.Automation;
21
21
usingMicrosoft.Azure.DataLake.Store.Acl;
22
+
usingMicrosoft.Azure.DataLake.Store.AclTools;
22
23
23
24
namespaceMicrosoft.Azure.Commands.DataLakeStore
24
25
{
@@ -84,6 +85,15 @@ public class RemoveAzureDataLakeStoreItemAclEntry : DataLakeStoreFileSystemCmdle
84
85
)]
85
86
publicSwitchParameterPassThru{get;set;}
86
87
88
+
[Parameter(ValueFromPipelineByPropertyName=true,Mandatory=false,HelpMessage="Indicates the ACL to be removed recursively to the child subdirectories and files")]
Copy file name to clipboardExpand all lines: src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAcl.cs
"Indicates the number of files/directories processed in parallel for recursive processing. Default will be computed as a best effort based on system specification."
0 commit comments