Package version:

Interface PipelineLike

An interface for the Pipeline class containing HTTP request policies. You can create a default Pipeline by calling newPipeline. Or you can create a Pipeline with your own policies by the constructor of Pipeline.

Refer to newPipeline and provided policies before implementing your customized Pipeline.

interface PipelineLike {
    factories: {};
    options: PipelineOptions;
    toServiceClientOptions(): ServiceClientOptions;
}

Implemented by

Properties

factories: {}

A list of chained request policy factories.

Configures pipeline logger and HTTP client.

Methods