Class TumblingWindowTrigger
java.lang.Object
com.azure.resourcemanager.datafactory.models.Trigger
com.azure.resourcemanager.datafactory.models.TumblingWindowTrigger
Trigger that schedules pipeline runs for all fixed time interval windows from a start time without gaps and also
supports backfill scenarios (when start time is in the past).
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondelay()
Get the delay property: Specifies how long the trigger waits past due time before triggering new run.Get the dependsOn property: Triggers that this trigger depends on.endTime()
Get the endTime property: The end time for the time period for the trigger during which events are fired for windows that are ready.Get the frequency property: The frequency of the time windows.int
interval()
Get the interval property: The interval of the time windows.int
Get the maxConcurrency property: The max number of parallel time windows (ready for execution) for which a new run is triggered.pipeline()
Get the pipeline property: Pipeline for which runs are created when an event is fired for trigger window that is ready.Get the retryPolicy property: Retry policy that will be applied for failed pipeline runs.Get the startTime property: The start time for the time period for the trigger during which events are fired for windows that are ready.void
validate()
Validates the instance.withAnnotations
(List<Object> annotations) Set the annotations property: List of tags that can be used for describing the trigger.Set the delay property: Specifies how long the trigger waits past due time before triggering new run.withDependsOn
(List<DependencyReference> dependsOn) Set the dependsOn property: Triggers that this trigger depends on.withDescription
(String description) Set the description property: Trigger description.withEndTime
(OffsetDateTime endTime) Set the endTime property: The end time for the time period for the trigger during which events are fired for windows that are ready.withFrequency
(TumblingWindowFrequency frequency) Set the frequency property: The frequency of the time windows.withInterval
(int interval) Set the interval property: The interval of the time windows.withMaxConcurrency
(int maxConcurrency) Set the maxConcurrency property: The max number of parallel time windows (ready for execution) for which a new run is triggered.withPipeline
(TriggerPipelineReference pipeline) Set the pipeline property: Pipeline for which runs are created when an event is fired for trigger window that is ready.withRetryPolicy
(RetryPolicy retryPolicy) Set the retryPolicy property: Retry policy that will be applied for failed pipeline runs.withStartTime
(OffsetDateTime startTime) Set the startTime property: The start time for the time period for the trigger during which events are fired for windows that are ready.Methods inherited from class com.azure.resourcemanager.datafactory.models.Trigger
additionalProperties, annotations, description, runtimeState, withAdditionalProperties
-
Constructor Details
-
TumblingWindowTrigger
public TumblingWindowTrigger()Creates an instance of TumblingWindowTrigger class.
-
-
Method Details
-
pipeline
Get the pipeline property: Pipeline for which runs are created when an event is fired for trigger window that is ready.- Returns:
- the pipeline value.
-
withPipeline
Set the pipeline property: Pipeline for which runs are created when an event is fired for trigger window that is ready.- Parameters:
pipeline
- the pipeline value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
withDescription
Set the description property: Trigger description.- Overrides:
withDescription
in classTrigger
- Parameters:
description
- the description value to set.- Returns:
- the Trigger object itself.
-
withAnnotations
Set the annotations property: List of tags that can be used for describing the trigger.- Overrides:
withAnnotations
in classTrigger
- Parameters:
annotations
- the annotations value to set.- Returns:
- the Trigger object itself.
-
frequency
Get the frequency property: The frequency of the time windows.- Returns:
- the frequency value.
-
withFrequency
Set the frequency property: The frequency of the time windows.- Parameters:
frequency
- the frequency value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
interval
public int interval()Get the interval property: The interval of the time windows. The minimum interval allowed is 15 Minutes.- Returns:
- the interval value.
-
withInterval
Set the interval property: The interval of the time windows. The minimum interval allowed is 15 Minutes.- Parameters:
interval
- the interval value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
startTime
Get the startTime property: The start time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.- Returns:
- the startTime value.
-
withStartTime
Set the startTime property: The start time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.- Parameters:
startTime
- the startTime value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
endTime
Get the endTime property: The end time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.- Returns:
- the endTime value.
-
withEndTime
Set the endTime property: The end time for the time period for the trigger during which events are fired for windows that are ready. Only UTC time is currently supported.- Parameters:
endTime
- the endTime value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
delay
Get the delay property: Specifies how long the trigger waits past due time before triggering new run. It doesn't alter window start and end time. The default is 0. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).- Returns:
- the delay value.
-
withDelay
Set the delay property: Specifies how long the trigger waits past due time before triggering new run. It doesn't alter window start and end time. The default is 0. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).- Parameters:
delay
- the delay value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
maxConcurrency
public int maxConcurrency()Get the maxConcurrency property: The max number of parallel time windows (ready for execution) for which a new run is triggered.- Returns:
- the maxConcurrency value.
-
withMaxConcurrency
Set the maxConcurrency property: The max number of parallel time windows (ready for execution) for which a new run is triggered.- Parameters:
maxConcurrency
- the maxConcurrency value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
retryPolicy
Get the retryPolicy property: Retry policy that will be applied for failed pipeline runs.- Returns:
- the retryPolicy value.
-
withRetryPolicy
Set the retryPolicy property: Retry policy that will be applied for failed pipeline runs.- Parameters:
retryPolicy
- the retryPolicy value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
dependsOn
Get the dependsOn property: Triggers that this trigger depends on. Only tumbling window triggers are supported.- Returns:
- the dependsOn value.
-
withDependsOn
Set the dependsOn property: Triggers that this trigger depends on. Only tumbling window triggers are supported.- Parameters:
dependsOn
- the dependsOn value to set.- Returns:
- the TumblingWindowTrigger object itself.
-
validate
public void validate()Validates the instance.- Overrides:
validate
in classTrigger
- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-