Azure.Storage.Files.DataLake.Models.PathProperties
PathProperties
namespace Azure.Storage.Files.DataLake.Models
{
public class PathProperties
{
public DateTimeOffset LastModified { get; }
public DateTimeOffset CreatedOn { get; }
public IDictionary<string, string> Metadata { get; }
public DateTimeOffset CopyCompletedOn { get; }
public string CopyStatusDescription { get; }
public string CopyId { get; }
public string CopyProgress { get; }
public Uri CopySource { get; }
public CopyStatus CopyStatus { get; }
public bool IsIncrementalCopy { get; }
public DataLakeLeaseDuration LeaseDuration { get; }
public DataLakeLeaseState LeaseState { get; }
public DataLakeLeaseStatus LeaseStatus { get; }
public long ContentLength { get; }
public string ContentType { get; }
public ETag ETag { get; }
public byte[] ContentHash { get; }
public string ContentEncoding { get; }
public string ContentDisposition { get; }
public string ContentLanguage { get; }
public string CacheControl { get; }
public string AcceptRanges { get; }
public bool IsServerEncrypted { get; }
public string EncryptionKeySha256 { get; }
public string AccessTier { get; }
public string ArchiveStatus { get; }
public DateTimeOffset AccessTierChangedOn { get; }
public DateTimeOffset ExpiresOn { get; }
public string EncryptionScope { get; }
public string EncryptionContext { get; }
public string Owner { get; }
public string Group { get; }
public string Permissions { get; }
public bool IsDirectory { get; }
public IList<PathAccessControlItem> AccessControlList { get; set; }
}
}