I am working on azure functions. I have two azure function one is http Api and the second one is timer trigger function hosted in same function app:
Function.json of timer trigger function :
{
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 */1 * * * *"
}
]
}
I want to below functionality :
- Change schedule : From function A at runtime I want to change the schedule time of timer function.
Ex: In above function.json schedule is "0 */1 * * * *" to "0 */5 * * * *" 2. Enable/Disable : I want to enable/ disable timer function from Function A. 3. Input : provide input also to the request.
Is there any way I can achieve above points programmatically ?
Thank You!