Azure.Storage.Files.DataLake.Models.DataLakeFileUploadOptions
Optional parameters for uploading to a Data Lake file.
namespace Azure.Storage.Files.DataLake.Models
{
public class DataLakeFileUploadOptions
{
public PathHttpHeaders HttpHeaders { get; set; }
public IDictionary<string, string> Metadata { get; set; }
public string Permissions { get; set; }
public string Umask { get; set; }
public DataLakeRequestConditions Conditions { get; set; }
public IProgress<long> ProgressHandler { get; set; }
public bool? Close { get; set; }
public StorageTransferOptions TransferOptions { get; set; }
public UploadTransferValidationOptions TransferValidation { get; set; }
public string EncryptionContext { get; set; }
public DataLakeFileUploadOptions();
}
}