Get-AzDataLakeAnalyticsCatalogItemAclEntry
Gets an entry in the ACL of a catalog or catalog item in Data Lake Analytics.
Note
This is the previous version of our documentation. Please consult the most recent version for up-to-date information.
Syntax
Get-AzDataLakeAnalyticsCatalogItemAclEntry
[-Account] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzDataLakeAnalyticsCatalogItemAclEntry
[-Account] <String>
[-UserOwner]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzDataLakeAnalyticsCatalogItemAclEntry
[-Account] <String>
[-GroupOwner]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzDataLakeAnalyticsCatalogItemAclEntry
[-Account] <String>
-ItemType <String>
-Path <CatalogPathInstance>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzDataLakeAnalyticsCatalogItemAclEntry
[-Account] <String>
[-UserOwner]
-ItemType <String>
-Path <CatalogPathInstance>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzDataLakeAnalyticsCatalogItemAclEntry
[-Account] <String>
[-GroupOwner]
-ItemType <String>
-Path <CatalogPathInstance>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzDataLakeAnalyticsCatalogItemAclEntry cmdlet gets a list of entries (ACEs) in the access control list (ACL) of a catalog or catalog item in Data Lake Analytics.
Examples
Example 1: Get the ACL for a catalog
Get-AzDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla"
Type Id Permissions
---- -- -----------
User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
Other 00000000-0000-0000-0000-000000000000 None
This command gets the ACL for the catalog of the specified Data Lake Analytics account
Example 2: Get the ACL entry of user owner for a catalog
Get-AzDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -UserOwner
Type Id Permissions
---- -- -----------
UserOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
This command gets ACL entry of the user owner for the catalog of the specified Data Lake Analytics account
Example 3: Get the ACL entry of group owner for a catalog
Get-AzDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -GroupOwner
Type Id Permissions
---- -- -----------
GroupOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
This command gets ACL entry of the group owner for the catalog of the specified Data Lake Analytics account
Example 4: Get the ACL for a database
Get-AzDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -ItemType Database -Path "databaseName"
Type Id Permissions
---- -- -----------
User 90a6f74b-fd73-490e-900a-c4f0f9694d02 Read
Group 902b155a-5601-4ca8-8178-ad3289211f88 ReadWrite
Other 00000000-0000-0000-0000-000000000000 None
This command gets the ACL for the database of the specified Data Lake Analytics account
Example 5: Get the ACL entry of user owner for a database
Get-AzDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -UserOwner -ItemType Database -Path "databaseName"
Type Id Permissions
---- -- -----------
UserOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
This command gets the ACL entry of the user owner for the database of the specified Data Lake Analytics account
Example 6: Get the ACL entry of group owner for a database
Get-AzDataLakeAnalyticsCatalogItemAclEntry -Account "contosoadla" -GroupOwner -ItemType Database -Path "databaseName"
Type Id Permissions
---- -- -----------
GroupOwner 0316ac75-6703-4ace-984f-a4dd79aeeafc ReadWrite
This command gets the ACL entry of the group owner for the database of the specified Data Lake Analytics account
Parameters
Specifies the Data Lake Analytics account name.
| Type: | String |
| Aliases: | AccountName |
| Position: | 0 |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with Azure.
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Get ACL entry of catalog for group owner
| Type: | SwitchParameter |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Specifies the type of the catalog or catalog item(s). The acceptable values for this parameter are:
- Catalog
- Database
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the Data Lake Analytics path of an catalog or catalog item. The parts of the path should be separated by a period (.).
| Type: | CatalogPathInstance |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Get ACL entry of catalog for user owner.
| Type: | SwitchParameter |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |