UntilActivity Constructors

Definition

Overloads

UntilActivity()

Initializes a new instance of the UntilActivity class.

UntilActivity(String, Expression, IList<Activity>, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, Object)

Initializes a new instance of the UntilActivity class.

UntilActivity()

Initializes a new instance of the UntilActivity class.

public UntilActivity ();
Public Sub New ()

Applies to

UntilActivity(String, Expression, IList<Activity>, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, Object)

Initializes a new instance of the UntilActivity class.

public UntilActivity (string name, Microsoft.Azure.Management.DataFactory.Models.Expression expression, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> activities, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> dependsOn = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> userProperties = default, object timeout = default);
new Microsoft.Azure.Management.DataFactory.Models.UntilActivity : string * Microsoft.Azure.Management.DataFactory.Models.Expression * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> * System.Collections.Generic.IDictionary<string, obj> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> * obj -> Microsoft.Azure.Management.DataFactory.Models.UntilActivity
Public Sub New (name As String, expression As Expression, activities As IList(Of Activity), Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional dependsOn As IList(Of ActivityDependency) = Nothing, Optional userProperties As IList(Of UserProperty) = Nothing, Optional timeout As Object = Nothing)

Parameters

name
String

Activity name.

expression
Expression

An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true

activities
IList<Activity>

List of activities to execute.

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

description
String

Activity description.

dependsOn
IList<ActivityDependency>

Activity depends on condition.

userProperties
IList<UserProperty>

Activity user properties.

timeout
Object

Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

Applies to