Package version:

Interface AppendBlobAppendBlockOptions

Options to configure the AppendBlobClient.appendBlock operation.

interface AppendBlobAppendBlockOptions {
    abortSignal?: any;
    conditions?: AppendBlobRequestConditions;
    customerProvidedKey?: CpkInfo;
    encryptionScope?: string;
    onProgress?: ((progress: TransferProgressEvent) => void);
    tracingOptions?: any;
    transactionalContentCrc64?: any;
    transactionalContentMD5?: 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.

Conditions to meet when appending append blob blocks.

customerProvidedKey?: CpkInfo

Customer Provided Key Info.

encryptionScope?: string

Optional. Version 2019-07-07 and later. Specifies the name of the encryption scope to use to encrypt the data provided in the request. If not specified, encryption is performed with the default account encryption scope. For more information, see Encryption at Rest for Azure Storage Services.

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

Callback to receive events on the progress of append block operation.

tracingOptions?: any

Options to configure spans created when tracing is enabled.

transactionalContentCrc64?: any

A CRC64 hash of the append block content. This hash is used to verify the integrity of the append block during transport. When this is specified, the storage service compares the hash of the content that has arrived with this value.

transactionalContentMD5 and transactionalContentCrc64 cannot be set at same time.

transactionalContentMD5?: any

An MD5 hash of the block content. This hash is used to verify the integrity of the block during transport. When this is specified, the storage service compares the hash of the content that has arrived with this value.

transactionalContentMD5 and transactionalContentCrc64 cannot be set at same time.