TumblingWindowTrigger Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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).
[Microsoft.Rest.Serialization.JsonTransformation]
public class TumblingWindowTrigger : Microsoft.Azure.Management.DataFactory.Models.Trigger
[<Microsoft.Rest.Serialization.JsonTransformation>]
type TumblingWindowTrigger = class
inherit Trigger
Public Class TumblingWindowTrigger
Inherits Trigger
- Inheritance
- Attributes
Constructors
TumblingWindowTrigger() |
Initializes a new instance of the TumblingWindowTrigger class. |
TumblingWindowTrigger(TriggerPipelineReference, String, Int32, DateTime, Int32, IDictionary<String,Object>, String, String, IList<Object>, Nullable<DateTime>, Object, RetryPolicy, IList<DependencyReference>) |
Initializes a new instance of the TumblingWindowTrigger class. |
Properties
AdditionalProperties |
Gets or sets unmatched properties from the message are deserialized this collection (Inherited from Trigger) |
Annotations |
Gets or sets list of tags that can be used for describing the trigger. (Inherited from Trigger) |
Delay |
Gets or sets 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])). |
DependsOn |
Gets or sets triggers that this trigger depends on. Only tumbling window triggers are supported. |
Description |
Gets or sets trigger description. (Inherited from Trigger) |
EndTime |
Gets or sets 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. |
Frequency |
Gets or sets the frequency of the time windows. Possible values include: 'Minute', 'Hour', 'Month' |
Interval |
Gets or sets the interval of the time windows. The minimum interval allowed is 15 Minutes. |
MaxConcurrency |
Gets or sets the max number of parallel time windows (ready for execution) for which a new run is triggered. |
Pipeline |
Gets or sets pipeline for which runs are created when an event is fired for trigger window that is ready. |
RetryPolicy |
Gets or sets retry policy that will be applied for failed pipeline runs. |
RuntimeState |
Gets indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'Started', 'Stopped', 'Disabled' (Inherited from Trigger) |
StartTime |
Gets or sets 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. |
Methods
Validate() |
Validate the object. |
Applies to
Azure SDK for .NET