Azure.Storage.Files.DataLake.Models.PathUpdateAction
The PathUpdateAction.
namespace Azure.Storage.Files.DataLake.Models
{
public enum PathUpdateAction
{
Append,
Flush,
SetProperties,
SetAccessControl,
SetAccessControlRecursive
}
}
namespace Azure.Storage.Files.DataLake.Models
{
public class PathSystemProperties
{
public DateTimeOffset? CreatedOn { get; }
public DateTimeOffset? LastModifiedOn { get; }
public ETag ETag { get; }
public long? ContentLength { get; }
public bool? IsDirectory { get; }
public bool? IsServerEncrypted { get; }
public string EncryptionKeySha256 { get; }
public DateTimeOffset? ExpiresOn { get; }
public string EncryptionScope { get; }
public string EncryptionContext { get; }
public string Owner { get; }
public string Group { get; }
public PathPermissions Permissions { get; }
}
}