I created a simple Azure WebJob with a schedule via the Visual Studio integration to run once per day.
I've deployed the WebJob and see it listed in my app on Azure.
{
"$schema": "http://schemastore.org/schemas/json/webjob-publish-settings.json",
"webJobName": "MyJob",
"startTime": "2015-12-10T03:00:00-05:00",
"endTime": null,
"jobRecurrenceFrequency": "Day",
"interval": 1,
"runMode": "Scheduled"
}
How can I actually once logged into the Azure Portal see that it will in fact run at 3 AM? I believe it uses the Scheduler under the hood, but I don't see it new entry in my list of Schedules.