I have two azure functions (Python) :
1. Time Trigger: this function run every 5 minutes and run a query and send data to a service bus
2. Service Bus Topic trigger: this function run when receiving function's "1" data in the service bus
Now, I want to add these functions to the Data factory pipeline. When I added Azure function activity on the pipeline, it needs the REST API method for the function call. My functions aren't HTTP triggers.
What are the solutions for running this scenario?