Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update review comments
  • Loading branch information
Hari Ramani committed Aug 29, 2019
commit 5e1bb35d5c3314d8f4fead76c3d69a2522be026b
Original file line number Diff line number Diff line change
Expand Up @@ -4335,8 +4335,8 @@
},
"readOnly": true
},
"runDimension": {
"description": "Run dimension emitted by Pipeline run.",
"runDimensions": {
"description": "Run dimensions emitted by Pipeline run.",
"type": "object",
"additionalProperties": {
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@
]
},
"ChainingTrigger": {
"description": "Trigger that schedules pipeline runs based on dependent pipelines successful completion.",
"description": "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.",
"type": "object",
"allOf": [
{
Expand All @@ -597,7 +597,7 @@
"properties": {
"pipeline": {
"$ref": "../datafactory.json#/definitions/TriggerPipelineReference",
"description": "Pipeline for which runs are created when all dependent pipelines complete successfully."
"description": "Pipeline for which runs are created when all upstream pipelines complete successfully."
},
"typeProperties": {
"description": "Chaining Trigger properties.",
Expand All @@ -608,10 +608,10 @@
"items": {
"$ref": "../datafactory.json#/definitions/PipelineReference"
},
"description": "Dependent Pipelines."
"description": "Upstream Pipelines."
},
"runDimension": {
"description": "Run Dimension property that needs to be emitted by dependent pipelines.",
"description": "Run Dimension property that needs to be emitted by upstream pipelines.",
"type": "string"
}
},
Expand Down