Package version:

Interface StoragePipelineOptions

Options interface for the newPipeline function.

interface StoragePipelineOptions {
    audience?: string;
    httpClient?: any;
    keepAliveOptions?: any;
    proxyOptions?: any;
    retryOptions?: any;
    userAgentOptions?: any;
}

Properties

audience?: string

The audience used to retrieve an AAD token. By default, audience 'https://storage.azure.com/.default' will be used.

httpClient?: any

Configures the HTTP client to send requests and receive responses.

keepAliveOptions?: any

Keep alive configurations. Default keep-alive is enabled.

proxyOptions?: any

Options to configure a proxy for outgoing requests.

retryOptions?: any

Configures the built-in retry policy behavior.

userAgentOptions?: any

Options for adding user agent details to outgoing requests.