microsoft azure scheduler自定义工作

时间:2016-12-15 08:33:52

标签: azure

如何通过Azure仪表板以下列方式安排作业:在除星期一之外的所有日子的上午10点到晚上8点之间运行。如果通过仪表板无法实现,可以使用Rest API吗?

2 个答案:

答案 0 :(得分:2)

@ 4c74356b41几乎是正确的。

   "recurrence":
   {
        "frequency": "week",
        "interval": 1,
        "schedule":
        {
            "weekDays": ["tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"],
            "hours": [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20],
            "minutes" : [0]
        }
    }

您也可以在信息中心内执行此操作,但是,它目前限制为"小时"的10个值。因此,您将不得不创建两个工作来覆盖您案例中的所有工作时间。

enter image description here

答案 1 :(得分:1)

是的,您问题的答案是REST API。像这样:

{
    "weekDays": ["tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"],
    "hours": [10, 20]                      
},