Uses of Class
com.azure.storage.file.datalake.models.PathAccessControlEntry
-
Packages that use PathAccessControlEntry Package Description com.azure.storage.file.datalake Package containing the class required for DataLakeStorageClient.com.azure.storage.file.datalake.models Package containing classes for AzureDataLakeStorageRestAPI.com.azure.storage.file.datalake.options Package containing options model classes used by Azure Storage File Datalake. -
-
Uses of PathAccessControlEntry in com.azure.storage.file.datalake
Method parameters in com.azure.storage.file.datalake with type arguments of type PathAccessControlEntry Modifier and Type Method Description Mono<PathInfo>DataLakePathAsyncClient. setAccessControlList(List<PathAccessControlEntry> accessControlList, String group, String owner)Changes the access control list, group and/or owner for a resource.PathInfoDataLakePathClient. setAccessControlList(List<PathAccessControlEntry> accessControlList, String group, String owner)Changes the access control list, group and/or owner for a resource.Mono<com.azure.core.http.rest.Response<PathInfo>>DataLakePathAsyncClient. setAccessControlListWithResponse(List<PathAccessControlEntry> accessControlList, String group, String owner, DataLakeRequestConditions requestConditions)Changes the access control list, group and/or owner for a resource.com.azure.core.http.rest.Response<PathInfo>DataLakePathClient. setAccessControlListWithResponse(List<PathAccessControlEntry> accessControlList, String group, String owner, DataLakeRequestConditions requestConditions, Duration timeout, com.azure.core.util.Context context)Changes the access control list, group and/or owner for a resource.Mono<AccessControlChangeResult>DataLakePathAsyncClient. setAccessControlRecursive(List<PathAccessControlEntry> accessControlList)Recursively sets the access control on a path and all subpaths.AccessControlChangeResultDataLakePathClient. setAccessControlRecursive(List<PathAccessControlEntry> accessControlList)Recursively sets the access control on a path and all subpaths.Mono<AccessControlChangeResult>DataLakePathAsyncClient. updateAccessControlRecursive(List<PathAccessControlEntry> accessControlList)Recursively updates the access control on a path and all subpaths.AccessControlChangeResultDataLakePathClient. updateAccessControlRecursive(List<PathAccessControlEntry> accessControlList)Recursively updates the access control on a path and all subpaths. -
Uses of PathAccessControlEntry in com.azure.storage.file.datalake.models
Methods in com.azure.storage.file.datalake.models that return PathAccessControlEntry Modifier and Type Method Description static PathAccessControlEntryPathAccessControlEntry. parse(String str)Parses the provided string into aList<{@link PathAccessControlEntry}>.PathAccessControlEntryPathAccessControlEntry. setAccessControlType(AccessControlType accessControlType)Sets theAccessControlTypefor this entry.PathAccessControlEntryPathAccessControlEntry. setDefaultScope(boolean defaultScope)Sets whether or not this entry is the default for a directory.PathAccessControlEntryPathAccessControlEntry. setEntityId(String entityId)Sets the entity ID to which this entry will apply.PathAccessControlEntryPathAccessControlEntry. setPermissions(RolePermissions permissions)Sets the permissions for this entry.Methods in com.azure.storage.file.datalake.models that return types with arguments of type PathAccessControlEntry Modifier and Type Method Description List<PathAccessControlEntry>PathAccessControl. getAccessControlList()Get the accessControlList property: The accessControlList property.static List<PathAccessControlEntry>PathAccessControlEntry. parseList(String str)Deserializes an ACL to the format "user::rwx,user:john.doe@contoso:rwx,group::r--,other::---,mask=rwx"Method parameters in com.azure.storage.file.datalake.models with type arguments of type PathAccessControlEntry Modifier and Type Method Description static StringPathAccessControlEntry. serializeList(List<PathAccessControlEntry> acl)Converts the Access Control List to aString.Constructor parameters in com.azure.storage.file.datalake.models with type arguments of type PathAccessControlEntry Constructor Description PathAccessControl(List<PathAccessControlEntry> accessControlList, PathPermissions permissions, String group, String owner)Constructs a newPathAccessControl. -
Uses of PathAccessControlEntry in com.azure.storage.file.datalake.options
Methods in com.azure.storage.file.datalake.options that return types with arguments of type PathAccessControlEntry Modifier and Type Method Description List<PathAccessControlEntry>PathSetAccessControlRecursiveOptions. getAccessControlList()Returns the POSIX access control list for the file or directory.List<PathAccessControlEntry>PathUpdateAccessControlRecursiveOptions. getAccessControlList()Returns the POSIX access control list for the file or directory.Constructor parameters in com.azure.storage.file.datalake.options with type arguments of type PathAccessControlEntry Constructor Description PathSetAccessControlRecursiveOptions(List<PathAccessControlEntry> accessControlList)Constructs a new options object.PathUpdateAccessControlRecursiveOptions(List<PathAccessControlEntry> accessControlList)Constructs a new options object.
-