Uses of Class
com.azure.storage.file.datalake.models.PathRemoveAccessControlEntry
-
Packages that use PathRemoveAccessControlEntry 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 PathRemoveAccessControlEntry in com.azure.storage.file.datalake
Method parameters in com.azure.storage.file.datalake with type arguments of type PathRemoveAccessControlEntry Modifier and Type Method Description Mono<AccessControlChangeResult>
DataLakePathAsyncClient. removeAccessControlRecursive(List<PathRemoveAccessControlEntry> accessControlList)
Recursively removes the access control on a path and all subpaths.AccessControlChangeResult
DataLakePathClient. removeAccessControlRecursive(List<PathRemoveAccessControlEntry> accessControlList)
Recursively removes the access control on a path and all subpaths. -
Uses of PathRemoveAccessControlEntry in com.azure.storage.file.datalake.models
Methods in com.azure.storage.file.datalake.models that return PathRemoveAccessControlEntry Modifier and Type Method Description static PathRemoveAccessControlEntry
PathRemoveAccessControlEntry. parse(String str)
Parses the provided string into aPathAccessControlEntry
.PathRemoveAccessControlEntry
PathRemoveAccessControlEntry. setAccessControlType(AccessControlType accessControlType)
Specifies which role this entry targets.PathRemoveAccessControlEntry
PathRemoveAccessControlEntry. setDefaultScope(boolean defaultScope)
Sets whether this is the default entry for the ACL.PathRemoveAccessControlEntry
PathRemoveAccessControlEntry. setEntityId(String entityId)
Specifies the entity for which this entry applies.Methods in com.azure.storage.file.datalake.models that return types with arguments of type PathRemoveAccessControlEntry Modifier and Type Method Description static List<PathRemoveAccessControlEntry>
PathRemoveAccessControlEntry. 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 PathRemoveAccessControlEntry Modifier and Type Method Description static String
PathRemoveAccessControlEntry. serializeList(List<PathRemoveAccessControlEntry> acl)
Converts the Access Control List to aString
. -
Uses of PathRemoveAccessControlEntry in com.azure.storage.file.datalake.options
Methods in com.azure.storage.file.datalake.options that return types with arguments of type PathRemoveAccessControlEntry Modifier and Type Method Description List<PathRemoveAccessControlEntry>
PathRemoveAccessControlRecursiveOptions. 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 PathRemoveAccessControlEntry Constructor Description PathRemoveAccessControlRecursiveOptions(List<PathRemoveAccessControlEntry> accessControlList)
Constructs a new options object.
-