<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.22.0" />

Azure.Storage.Files.DataLake.Models.PathAccessControlItem

public class PathAccessControlItem
Represents an access control in a file access control list.
public AccessControlType AccessControlType { get; set; }

Specifies which role this entry targets.

public bool DefaultScope { get; set; }

Indicates whether this is the default entry for the ACL.

public string EntityId { get; set; }

Specifies the entity for which this entry applies. Must be omitted for types mask or other. It must also be omitted when the user or group is the owner.

public RolePermissions Permissions { get; set; }

Specifies the permissions granted to this entry.

Empty constructor.

public PathAccessControlItem(AccessControlType accessControlType, RolePermissions permissions, bool defaultScope = false, string entityId = null)

Constructor.

public static PathAccessControlItem Parse(string s)

Parses the provided string into a PathAccessControlItem