Pipeline Class

A data factory pipeline.

Constructor

Pipeline(*args: Any, **kwargs: Any)

Variables

Name Description
description
str

The description of the pipeline.

activities

List of activities in pipeline.

parameters

List of parameters for pipeline.

variables

List of variables for pipeline.

concurrency
int

The max number of concurrent runs for the pipeline.

annotations

List of tags that can be used for describing the Pipeline.

run_dimensions

Dimensions emitted by Pipeline.

folder

The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.

policy

Pipeline Policy.

Attributes

activities

List of activities in pipeline.

activities: list['_models.Activity'] | None

annotations

List of tags that can be used for describing the Pipeline.

annotations: list[Any] | None

concurrency

The max number of concurrent runs for the pipeline.

concurrency: int | None

description

The description of the pipeline.

description: str | None

folder

The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.

folder: _models.PipelineFolder | None

parameters

List of parameters for pipeline.

parameters: dict[str, '_models.ParameterSpecification'] | None

policy

Pipeline Policy.

policy: _models.PipelinePolicy | None

run_dimensions

Dimensions emitted by Pipeline.

run_dimensions: dict[str, Any] | None

variables

List of variables for pipeline.

variables: dict[str, '_models.VariableSpecification'] | None