BlockBlobQueryOptions interface
Options to configure query operation.
- Extends
Properties
abort |
An implementation of the |
conditions | Conditions to meet when uploading to the block blob. |
customer |
Customer Provided Key Info. |
input |
Configurations for the query input. |
on |
Callback to receive error events during the query operaiton. |
on |
Callback to receive events on the progress of query operation. |
output |
Configurations for the query output. |
Inherited Properties
tracing |
Options to configure spans created when tracing is enabled. |
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
conditions
Conditions to meet when uploading to the block blob.
conditions?: BlobRequestConditions
Property Value
customerProvidedKey
inputTextConfiguration
Configurations for the query input.
inputTextConfiguration?: BlobQueryCsvTextConfiguration | BlobQueryJsonTextConfiguration | BlobQueryParquetConfiguration
Property Value
onError
Callback to receive error events during the query operaiton.
onError?: (error: BlobQueryError) => void
Property Value
(error: BlobQueryError) => void
onProgress
Callback to receive events on the progress of query operation.
onProgress?: (progress: TransferProgressEvent) => void
Property Value
(progress: TransferProgressEvent) => void
outputTextConfiguration
Configurations for the query output.
outputTextConfiguration?: BlobQueryArrowConfiguration | BlobQueryCsvTextConfiguration | BlobQueryJsonTextConfiguration
Property Value
Inherited Property Details
tracingOptions
Options to configure spans created when tracing is enabled.
tracingOptions?: OperationTracingOptions
Property Value
Inherited From CommonOptions.tracingOptions