Jobs Object


A scheduled data movement workflow that automatically runs data movement workflows on a schedule.

Scheduled data movement workflows use cron expressions to define when to move data between sources and destinations. Each scheduled execution creates a new data movement workflow that can be tracked separately.

Properties
cronExpressionstringmaxLength 200

Cron expression defining when the scheduled data movement workflow should run.

Uses standard 5-field cron format (minute, hour, day of month, month, day of week) in UTC. Supports using H for minute randomization. For example, 0 2 * * * runs daily at 2:00 AM UTC, or H 2 * * * runs daily at 2:XX AM UTC where XX is a random minute.


enabledboolean

Whether the scheduled data movement workflow is enabled for execution.

When true, it runs according to the schedule defined by cronExpression. When false, it doesn't run.


idstringRead-onlyformat GUID

Scheduled data movement workflow ID.


lastExecutionDatestringRead-onlyformat date-time

Date and time when the scheduled data movement workflow was last run.


lastWorkflowIdstringRead-onlyformat GUID

ID of the data movement workflow created by the most recent execution.


namestringmaxLength 1024

Scheduled data movement workflow name.


nextExecutionDatestringRead-onlyformat date-time

Date and time when the scheduled data movement workflow is scheduled to run next.

Calculated based on the cron expression and current time. Returned only when the request includes nextScheduleExecution in the fields parameter.


revisionstringRead-onlyformat int64

Revision number that increments by 1 each time the scheduled data movement workflow updates. To prevent conflicting changes, pass the current revision when updating.

Ignored when creating a scheduled data movement workflow.


workflowScheduledDataMovementWorkflowSpec

Ordered workflow specification describing what should run when the schedule fires.

Did this help?