Azure.Storage.Files.DataLake.Models.DataLakePathScheduleDeletionOptions
Options for scheduling the deletion of a path.
namespace Azure.Storage.Files.DataLake.Models
{
public class DataLakePathScheduleDeletionOptions
{
public TimeSpan? TimeToExpire { get; }
public DateTimeOffset? ExpiresOn { get; }
public DataLakePathScheduleDeletionOptions(DateTimeOffset? expiresOn);
public DataLakePathScheduleDeletionOptions(TimeSpan? timeToExpire);
}
}