Hi ShiQuan-1371,
The Pipeline data is configured in the ADF configuration file.
For example lets alter a pipelines schedule start, end and paused values. I always publish to dev as paused to give me more control over running the pipeline.
At the bottom of our pipeline component file I’ve done the following.
//etc...
//activities block
],
"start": "1900-01-01", /*<get from config file>*/
"end": "1900-01-01", /*<get from config file>*/
"isPaused": /*<get from config file>*/,
"pipelineMode": "Scheduled"
}
}
… Which means in my config file I need to create the equivalent set of attribute references and values. Note; the dollar for the root, then one level down into the properties namespace. Then another dot before the attribute.
{
"ExactNameOfYourPipeline": [ // <<< Component name. Exactly!
{
"name": "$.properties.isPaused",
"value": true
},
{
"name": "$.properties.start",
"value": "2016-08-01"
},
{
"name": "$.properties.end",
"value": "2017-06-01"
}
]
}
-------------------------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept as answer--