我的Azure函数具有以下function.json,其日程表设置为每天9.30运行。我想要的是动态设置schedule此json 的属性。当使用我的应用程序的客户端输入日期时,就会出现这种情况,该日期计划程序应该在该日期表上运行。
{
"bindings": [
{
"name": "myTimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 30 9 * * *" //Want to set dynamically
}
],
"disabled": false
}
Run Code Online (Sandbox Code Playgroud)
这可能吗?
(还请注意,由于预算原因,我不想使用Azure Scheduler)