79526620

Date: 2025-03-21 21:46:16
Score: 1
Natty:
Report link

A direct 'Next Runt time' property will no be available but you can use the ADF trigger Rest API and analyze trigger definitions and look for recurrence property(shown below in yellow) to get the schedule and based on current date calculate the next run.

ADF Schedule trigger definition

For more details abut schedule trigger definition, please check this link Schedule Trigger Definition

Also you can use the different methods explained in this link to get the details of trigger run. below is a sample azpowershell command to get the trigger run details. once you get the pattern based on that you can create some logic to calculate the next run

Get-AzDataFactoryV2TriggerRun -ResourceGroupName $ResourceGroupName -DataFactoryName $DataFactoryName -TriggerName "MyTrigger" -TriggerRunStartedAfter "2017-12-08T00:00:00" -TriggerRunStartedBefore "2017-12-08T01:00:00"

Also you can use azure monitor logs to check history run and understand the run pattern and calculate the approx next run.

Reasons:
  • Blacklisted phrase (1): please check this
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1): check this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SQL006