InternalPipelineOptions interface
Defines options that are used to configure internal options of the HTTP pipeline for an SDK client.
- Extends
Properties
| decompress |
Configure whether to decompress response according to Accept-Encoding header (node-fetch only) |
| deserialization |
Options to configure API response deserialization. |
| logging |
Options to configure request/response logging. |
| send |
Send JSON Array payloads as NDJSON. |
Inherited Properties
| http |
The HttpClient implementation to use for outgoing HTTP requests. Defaults to DefaultHttpClient. |
| keep |
Options for how HTTP connections should be maintained for future requests. |
| proxy |
Options to configure a proxy for outgoing requests. |
| redirect |
Options for how redirect responses are handled. |
| retry |
Options that control how to retry failed requests. |
| user |
Options for adding user agent details to outgoing requests. |
Property Details
decompressResponse
Configure whether to decompress response according to Accept-Encoding header (node-fetch only)
decompressResponse?: boolean
Property Value
boolean
deserializationOptions
Options to configure API response deserialization.
deserializationOptions?: DeserializationOptions
Property Value
loggingOptions
Options to configure request/response logging.
loggingOptions?: LogPolicyOptions
Property Value
sendStreamingJson
Send JSON Array payloads as NDJSON.
sendStreamingJson?: boolean
Property Value
boolean
Inherited Property Details
httpClient
The HttpClient implementation to use for outgoing HTTP requests. Defaults to DefaultHttpClient.
httpClient?: HttpClient
Property Value
Inherited From PipelineOptions.httpClient
keepAliveOptions
Options for how HTTP connections should be maintained for future requests.
keepAliveOptions?: KeepAliveOptions
Property Value
Inherited From PipelineOptions.keepAliveOptions
proxyOptions
Options to configure a proxy for outgoing requests.
proxyOptions?: ProxySettings
Property Value
Inherited From PipelineOptions.proxyOptions
redirectOptions
Options for how redirect responses are handled.
redirectOptions?: RedirectOptions
Property Value
Inherited From PipelineOptions.redirectOptions
retryOptions
Options that control how to retry failed requests.
retryOptions?: RetryOptions
Property Value
Inherited From PipelineOptions.retryOptions
userAgentOptions
Options for adding user agent details to outgoing requests.
userAgentOptions?: UserAgentOptions
Property Value
Inherited From PipelineOptions.userAgentOptions