ChainingTrigger Class
Trigger that allows the referenced pipeline to depend on other pipeline runs based on runDimension Name/Value pairs. Upstream pipelines should declare the same runDimension Name and their runs should have the values for those runDimensions. The referenced pipeline run would be triggered if the values for the runDimension match for all upstream pipeline runs.
Variables are only populated by the server, and will be ignored when sending a request.
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.datafactory.models._models_py3.TriggerChainingTrigger
Constructor
ChainingTrigger(*, pipeline: _models.TriggerPipelineReference, depends_on: List[_models.PipelineReference], run_dimension: str, additional_properties: Dict[str, MutableMapping[str, Any]] | None = None, description: str | None = None, annotations: List[MutableMapping[str, Any]] | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
additional_properties
|
Unmatched properties from the message are deserialized to this collection. |
description
|
Trigger description. |
annotations
|
list[<xref:JSON>]
List of tags that can be used for describing the trigger. |
pipeline
|
Pipeline for which runs are created when all upstream pipelines complete successfully. Required. |
depends_on
|
Upstream Pipelines. Required. |
run_dimension
|
Run Dimension property that needs to be emitted by upstream pipelines. Required. |
Variables
Name | Description |
---|---|
additional_properties
|
Unmatched properties from the message are deserialized to this collection. |
type
|
Trigger type. Required. |
description
|
Trigger description. |
runtime_state
|
Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Known values are: "Started", "Stopped", and "Disabled". |
annotations
|
list[<xref:JSON>]
List of tags that can be used for describing the trigger. |
pipeline
|
Pipeline for which runs are created when all upstream pipelines complete successfully. Required. |
depends_on
|
Upstream Pipelines. Required. |
run_dimension
|
Run Dimension property that needs to be emitted by upstream pipelines. Required. |
Azure SDK for Python