Is your feature request related to a problem? Please describe.
It would be nice if I could run pipelines programmatically (from Azure CLI) and set parameteres for the run, as I am also able to when using the ADO pipeline interface. The suggested interface would look like this:
az pipelines run --id 123 --parameters "{'name': 'value'}"
As parameters accept complex typed values I would suggest passing a JSON string.
Describe the solution you'd like
The most recent REST API for pipelines runs allows to specify templateParameters. Thus, it shoud be possible to implement this feature using this endpoint.
Additional context
This feature could come in handy in larger projects to orchestrate automation pipelines, as I am able to queue this pipelines in a particular order with a specific set of parameters and variables.
Is your feature request related to a problem? Please describe.
It would be nice if I could run pipelines programmatically (from Azure CLI) and set parameteres for the run, as I am also able to when using the ADO pipeline interface. The suggested interface would look like this:
az pipelines run --id 123 --parameters "{'name': 'value'}"As parameters accept complex typed values I would suggest passing a JSON string.
Describe the solution you'd like
The most recent REST API for pipelines runs allows to specify
templateParameters. Thus, it shoud be possible to implement this feature using this endpoint.Additional context
This feature could come in handy in larger projects to orchestrate automation pipelines, as I am able to queue this pipelines in a particular order with a specific set of parameters and variables.