Share via


SetVariableActivity Constructors

Definition

Overloads

SetVariableActivity()

Initializes a new instance of the SetVariableActivity class.

SetVariableActivity(String, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, String, Object)

Initializes a new instance of the SetVariableActivity class.

SetVariableActivity()

Initializes a new instance of the SetVariableActivity class.

public SetVariableActivity ();
Public Sub New ()

Applies to

SetVariableActivity(String, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, String, Object)

Initializes a new instance of the SetVariableActivity class.

public SetVariableActivity (string name, 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, string variableName = default, object value = default);
new Microsoft.Azure.Management.DataFactory.Models.SetVariableActivity : string * 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> * string * obj -> Microsoft.Azure.Management.DataFactory.Models.SetVariableActivity
Public Sub New (name As String, 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 variableName As String = Nothing, Optional value As Object = Nothing)

Parameters

name
String

Activity name.

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.

variableName
String

Name of the variable whose value needs to be set.

value
Object

Value to be set. Could be a static value or Expression

Applies to