Package version:

Interface FileUploadRangeFromURLOptions

Options to configure the ShareFileClient.uploadRangeFromURL operation.

interface FileUploadRangeFromURLOptions {
    abortSignal?: any;
    fileLastWrittenMode?: FileLastWrittenMode;
    leaseAccessConditions?: LeaseAccessConditions;
    sourceAuthorization?: HttpAuthorization;
    sourceConditions?: SourceModifiedAccessConditions;
    sourceContentCrc64?: Uint8Array;
    timeoutInSeconds?: 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.

fileLastWrittenMode?: FileLastWrittenMode

The last write time for the file. A value of preserve may be passed to keep an existing value unchanged. A value of now may be used to indicate the time of the request. By default, the value will be set as now.

leaseAccessConditions?: LeaseAccessConditions

Lease access conditions.

sourceAuthorization?: HttpAuthorization

Only Bearer type is supported. Credentials should be a valid OAuth access token to copy source.

Additional parameters for the operation

sourceContentCrc64?: Uint8Array

Specify the crc64 calculated for the range of bytes that must be read from the copy source.

timeoutInSeconds?: number

The timeout parameter is expressed in seconds. For more information, see Setting Timeouts for File Service Operations.

tracingOptions?: any