TumblingWindowTrigger Constructors

Definition

Overloads

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.

TumblingWindowTrigger()

Initializes a new instance of the TumblingWindowTrigger class.

public TumblingWindowTrigger ();
Public Sub New ()

Applies to

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.

public TumblingWindowTrigger (Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference pipeline, string frequency, int interval, DateTime startTime, int maxConcurrency, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, string runtimeState = default, System.Collections.Generic.IList<object> annotations = default, DateTime? endTime = default, object delay = default, Microsoft.Azure.Management.DataFactory.Models.RetryPolicy retryPolicy = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DependencyReference> dependsOn = default);
new Microsoft.Azure.Management.DataFactory.Models.TumblingWindowTrigger : Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference * string * int * DateTime * int * System.Collections.Generic.IDictionary<string, obj> * string * string * System.Collections.Generic.IList<obj> * Nullable<DateTime> * obj * Microsoft.Azure.Management.DataFactory.Models.RetryPolicy * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DependencyReference> -> Microsoft.Azure.Management.DataFactory.Models.TumblingWindowTrigger
Public Sub New (pipeline As TriggerPipelineReference, frequency As String, interval As Integer, startTime As DateTime, maxConcurrency As Integer, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional runtimeState As String = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional delay As Object = Nothing, Optional retryPolicy As RetryPolicy = Nothing, Optional dependsOn As IList(Of DependencyReference) = Nothing)

Parameters

pipeline
TriggerPipelineReference

Pipeline for which runs are created when an event is fired for trigger window that is ready.

frequency
String

The frequency of the time windows. Possible values include: 'Minute', 'Hour', 'Month'

interval
Int32

The interval of the time windows. The minimum interval allowed is 15 Minutes.

startTime
DateTime

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.

maxConcurrency
Int32

The max number of parallel time windows (ready for execution) for which a new run is triggered.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

Trigger description.

runtimeState
String

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'Started', 'Stopped', 'Disabled'

annotations
IList<Object>

List of tags that can be used for describing the trigger.

endTime
Nullable<DateTime>

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.

delay
Object

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])).

retryPolicy
RetryPolicy

Retry policy that will be applied for failed pipeline runs.

dependsOn
IList<DependencyReference>

Triggers that this trigger depends on. Only tumbling window triggers are supported.

Applies to