FileQueryOptions interface
- Extends
Properties
abort |
An implementation of the |
conditions | Conditions to meet when uploading to the block file. |
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 |
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 file.
conditions?: DataLakeRequestConditions
Property Value
customerProvidedKey
inputTextConfiguration
Configurations for the query input.
inputTextConfiguration?: FileQueryCsvTextConfiguration | FileQueryJsonTextConfiguration | FileQueryParquetConfiguration
Property Value
onError
Callback to receive error events during the query operaiton.
onError?: (error: FileQueryError) => void
Property Value
(error: FileQueryError) => 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 | FileQueryCsvTextConfiguration | FileQueryJsonTextConfiguration