Interface ImportFileConfig

Optional parameters for importing a file.

interface ImportFileConfig {
    abortSignal?: AbortSignal;
    chunkingConfig?: ChunkingConfig;
    customMetadata?: CustomMetadata[];
    httpOptions?: HttpOptions;
}

Properties

abortSignal?: AbortSignal

Abort signal which can be used to cancel the request.

NOTE: AbortSignal is a client-only operation. Using it to cancel an operation will not cancel the request in the service. You will still be charged usage for any applicable operations.

chunkingConfig?: ChunkingConfig

Config for telling the service how to chunk the file.

customMetadata?: CustomMetadata[]

User provided custom metadata stored as key-value pairs used for querying.

httpOptions?: HttpOptions

Used to override HTTP request options.