Using the AzureML python SDK, I can get a list of all scheduled pipelines.
Schedule.list(workspace)
This returns a list of Schedule objects, with attributes such as their name, recurrence and pipeline_id. The Schedule class doesn't seem to have a pipeline_parameters attribute. This is fine for normal pipelines, but I have a parameterised pipeline for which I have scheduled different parameters at different times. How can I know what parameters have been scheduled?
The pipeline_id returned from the Schedule object is for the pipeline endpoint, which is generic and doesn't have the parameters assigned to it.
I'm stumped!