FileParallelUploadOptions interface
Option interface for File - Upload operations
See:
- uploadFile
- <xref:ShareFileClient.uploadSeekableStream>
- Extends
Properties
abort |
An implementation of the |
concurrency | Concurrency indicates the maximum number of ranges to upload in parallel. If not provided, 5 concurrency will be used by default. |
file |
File HTTP Headers. |
lease |
Lease access conditions. |
metadata | Metadata of an Azure file. |
on |
Progress updater. |
range |
RangeSize specifies the range size to use in each parallel upload, the default (and maximum size) is FILE_RANGE_MAX_SIZE_BYTES. |
Inherited Properties
tracing |
Property Details
abortSignal
An implementation of the AbortSignalLike
interface to signal the request to cancel the operation.
For example, use the @azure/abort-controller to create an AbortSignal
.
abortSignal?: AbortSignalLike
Property Value
concurrency
Concurrency indicates the maximum number of ranges to upload in parallel. If not provided, 5 concurrency will be used by default.
concurrency?: number
Property Value
number
fileHttpHeaders
leaseAccessConditions
Lease access conditions.
leaseAccessConditions?: LeaseAccessConditions
Property Value
metadata
onProgress
Progress updater.
onProgress?: (progress: TransferProgressEvent) => void
Property Value
(progress: TransferProgressEvent) => void
rangeSize
RangeSize specifies the range size to use in each parallel upload, the default (and maximum size) is FILE_RANGE_MAX_SIZE_BYTES.
rangeSize?: number
Property Value
number