An Azure service that automates the access and use of data across clouds without writing code.
Hey @Basya Salid
I don't believe you can comingle weekDays with a different scale; i.e. weekDays can only be configured with a Week frequency. Use monthDays instead. For example, the following will run the last day of the month. You can tweak to meet your scheduled preference. Example recurrences list suggestions on how to configure the trigger.
"triggers": {
"Recurrence": {
"recurrence": {
"frequency": "Month",
"interval": 1,
"schedule": {
"monthDays": [-1]
}
},
"type": "Recurrence"
}
}
Another option is using a Sliding Window connector instead, see https://learn.microsoft.com/en-us/azure/connectors/connectors-native-sliding-window.