< Back

Set-AzureRmDataLakeStoreItemPermission

Tue Jan 29, 2019 9:45 pm

NAME Set-AzureRmDataLakeStoreItemPermission



SYNOPSIS

Modifies the permission octal of a file or folder in Data Lake Store.





SYNTAX

Set-AzureRmDataLakeStoreItemPermission [-Account] <String> [-Path] <DataLakeStorePathInstance> [-Permission] <Int32> [-DefaultProfile

<IAzureContextContainer>] [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The Set-AzureRmDataLakeStoreItemPermission cmdlet modifies the permission octal of a file or folder in Data Lake Store.





PARAMETERS

-Account <String>

Specifies the Data Lake Store account name.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Path <DataLakeStorePathInstance>

Specifies the Data Lake Store path of the file or folder, starting with the root directory (/).



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Permission <Int32>

The permissions to set for the file or folder, expressed as an octal (e.g. '777')



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

bool

Returns true upon successfully updating the permission.





NOTES





* Alias: Set-AdlStoreItemPermission



Example 1: Set the permission octal for an item



PS C:\\>Set-AzureRmDataLakeStoreItemPermission -AccountName "ContosoADL" -Path "/file.txt" -Permission 0770



This command sets the permission octal for a file to 0770, which translates to clearing the sticky bit, setting read/write/execute permissions for

the owner of the file, setting read/write/execute permissions for the owning group of the file, and clearing read/write/execute permissions for

other.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... permission

Get-AzureRmDataLakeStoreItemPermission