How can we pass parameters to child runbook written in python using Start-AzureRmAutomationRunbook.
Start-AzureRmAutomationRunbook accepts -Parameter option for named parameters (works great with child runbooks written in PowerShell). But since python supports positional parameters (args), I am not able to use -Parameter option.
By the way, my python runbook runs on a hybrid worker, so, I am not sure how can we use inline execution, because I need to pass RunOn option (Hybrid Runbook Worker Group).