Azure.Storage.Files.DataLake.Models.DataLakePathCreateOptions
Optional parameters for creating a file or directory..
namespace Azure.Storage.Files.DataLake.Models
{
public class DataLakePathCreateOptions
{
public PathHttpHeaders HttpHeaders { get; set; }
public IDictionary<string, string> Metadata { get; set; }
public DataLakeAccessOptions AccessOptions { get; set; }
public string LeaseId { get; set; }
public TimeSpan? LeaseDuration { get; set; }
public DataLakePathScheduleDeletionOptions ScheduleDeletionOptions { get; set; }
public DataLakeRequestConditions Conditions { get; set; }
public string EncryptionContext { get; set; }
public DataLakePathCreateOptions();
}
}