Skip to content

Commit 5bc30b8

Browse files
author
Maddie Clayton
authored
Merge pull request Azure#6796 from GlueCoder/doc-fix
Fixed typo for Set-CscAzureDataLakeStoreACL documentation
2 parents 76b793b + e2dafad commit 5bc30b8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/ResourceManager/DataLakeStore/Commands.DataLakeStore/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* Updated all help files to include full parameter types and correct input/output types.
2222
* Updated the DataPlane SDK (Microsoft.Azure.DataLake.Store) version to 1.1.9
2323
* Fix debugging when DebugPreference is set from powershell command line
24+
* Update example for Set-AzureRmDataLakeStoreItemAcl
2425

2526
## Version 6.1.0
2627
* Add cancellation support and progress tracking for Set-AzureRmDataLakeStoreItemAclEntry, Remove-AzureRmDataLakeStoreItemAclEntry, Set-AzureRmDataLakeStoreItemAcl

src/ResourceManager/DataLakeStore/Commands.DataLakeStore/help/Set-AzureRmDataLakeStoreItemAcl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The **Set-AzureRmDataLakeStoreItemAcl** cmdlet modifies the access control list
2626

2727
### Example 1: Set the ACL for a file and a folder
2828
```
29-
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path /
29+
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path /
3030
PS C:\> Set-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path "/MyFiles/Test.txt" -Acl $ACL
3131
```
3232

@@ -35,7 +35,7 @@ The second command sets the ACL for the file Test.txt to the one in $ACL.
3535

3636
### Example 2: Set the ACL for folder recursively
3737
```
38-
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path /Folder1
38+
PS C:\>$ACL = Get-AzureRmDataLakeStoreItemAclEntry -AccountName "ContosoADL" -Path /Folder1
3939
PS C:\> Set-AzureRmDataLakeStoreItemAcl -AccountName "ContosoADL" -Path "/Folder2" -Acl $ACL -Recurse -Concurrency 128
4040
```
4141

0 commit comments

Comments
 (0)