AppendVariableActivity Constructors

Definition

Overloads

AppendVariableActivity()

Initializes a new instance of the AppendVariableActivity class.

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

Initializes a new instance of the AppendVariableActivity class.

AppendVariableActivity()

Initializes a new instance of the AppendVariableActivity class.

public AppendVariableActivity ();
Public Sub New ()

Applies to

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

Initializes a new instance of the AppendVariableActivity class.

public AppendVariableActivity (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.AppendVariableActivity : 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.AppendVariableActivity
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 appended to.

value
Object

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

Applies to