PipelineLike interface

An interface for the <xref:Pipeline> class containing HTTP request policies. You can create a default Pipeline by calling <xref:newPipeline>. Or you can create a Pipeline with your own policies by the constructor of Pipeline. Refer to <xref:newPipeline> and provided policies before implementing your customized Pipeline.

Properties

factories

A list of chained request policy factories.

options

Configures pipeline logger and HTTP client.

Methods

toServiceClientOptions()

Transfer Pipeline object to ServiceClientOptions object which is required by ServiceClient constructor.

Property Details

factories

A list of chained request policy factories.

factories: RequestPolicyFactory[]

Property Value

RequestPolicyFactory[]

options

Configures pipeline logger and HTTP client.

options: PipelineOptions

Property Value

Method Details

toServiceClientOptions()

Transfer Pipeline object to ServiceClientOptions object which is required by ServiceClient constructor.

function toServiceClientOptions()

Returns

ServiceClientOptions

The ServiceClientOptions object from this Pipeline.