Package version:

Interface FileParallelUploadOptions

Option interface for File - Upload operations

See:

interface FileParallelUploadOptions {
    abortSignal?: any;
    concurrency?: number;
    fileHttpHeaders?: FileHttpHeaders;
    leaseAccessConditions?: LeaseAccessConditions;
    metadata?: Metadata;
    onProgress?: ((progress: TransferProgressEvent) => void);
    rangeSize?: number;
    tracingOptions?: any;
}

Hierarchy (view full)

Properties

abortSignal?: any

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.

concurrency?: number

Concurrency indicates the maximum number of ranges to upload in parallel. If not provided, 5 concurrency will be used by default.

fileHttpHeaders?: FileHttpHeaders

File HTTP Headers.

leaseAccessConditions?: LeaseAccessConditions

Lease access conditions.

metadata?: Metadata

Metadata of an Azure file.

onProgress?: ((progress: TransferProgressEvent) => void)

Progress updater.

rangeSize?: number

RangeSize specifies the range size to use in each parallel upload, the default (and maximum size) is FILE_RANGE_MAX_SIZE_BYTES.

tracingOptions?: any