Azure Function App Programmatically Change Schedule

Viewed 1960

I have a number of function apps that run based on "Timer Triggers"

At the moment they are running every 5 minutes.

public static async Task Run([TimerTrigger("0 */5 * * * *")]TimerInfo myTimer, TraceWriter log)

I want to be able to read the current timer setting and change the TimerTrigger value programmatically so that we can change it from a management portal.

Is this possible?

2 Answers
Related