Reputation: 63
From the below link, I understand using Python SDK, we can create Pipeline and run it.
https://learn.microsoft.com/en-us/azure/data-factory/quickstart-create-data-factory-python
But I have tried to pass data flow parameters in parameters={} in create_run function and it is not working. (Looks like it is taking pipeline parameters and not data flow parameters)
Any example/ details would help!!
Upvotes: 0
Views: 843
Reputation: 8660
As far as I know, there is no direct way to do this. As a workaround, you can create pipeline parameters then pass them to Data Flow. Something like this:
Upvotes: 1