Class AppendVariableActivity
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.Activity
-
- com.azure.resourcemanager.datafactory.models.ControlActivity
-
- com.azure.resourcemanager.datafactory.models.AppendVariableActivity
-
public final class AppendVariableActivity extends ControlActivity
Append value for a Variable of type Array.
-
-
Constructor Summary
Constructors Constructor Description AppendVariableActivity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
validate()
Validates the instance.Object
value()
Get the value property: Value to be appended.String
variableName()
Get the variableName property: Name of the variable whose value needs to be appended to.AppendVariableActivity
withDependsOn(List<ActivityDependency> dependsOn)
Set the dependsOn property: Activity depends on condition.AppendVariableActivity
withDescription(String description)
Set the description property: Activity description.AppendVariableActivity
withName(String name)
Set the name property: Activity name.AppendVariableActivity
withUserProperties(List<UserProperty> userProperties)
Set the userProperties property: Activity user properties.AppendVariableActivity
withValue(Object value)
Set the value property: Value to be appended.AppendVariableActivity
withVariableName(String variableName)
Set the variableName property: Name of the variable whose value needs to be appended to.-
Methods inherited from class com.azure.resourcemanager.datafactory.models.Activity
additionalProperties, dependsOn, description, name, userProperties, withAdditionalProperties
-
-
-
-
Method Detail
-
withName
public AppendVariableActivity withName(String name)
Set the name property: Activity name.- Overrides:
withName
in classControlActivity
- Parameters:
name
- the name value to set.- Returns:
- the Activity object itself.
-
withDescription
public AppendVariableActivity withDescription(String description)
Set the description property: Activity description.- Overrides:
withDescription
in classControlActivity
- Parameters:
description
- the description value to set.- Returns:
- the Activity object itself.
-
withDependsOn
public AppendVariableActivity withDependsOn(List<ActivityDependency> dependsOn)
Set the dependsOn property: Activity depends on condition.- Overrides:
withDependsOn
in classControlActivity
- Parameters:
dependsOn
- the dependsOn value to set.- Returns:
- the Activity object itself.
-
withUserProperties
public AppendVariableActivity withUserProperties(List<UserProperty> userProperties)
Set the userProperties property: Activity user properties.- Overrides:
withUserProperties
in classControlActivity
- Parameters:
userProperties
- the userProperties value to set.- Returns:
- the Activity object itself.
-
variableName
public String variableName()
Get the variableName property: Name of the variable whose value needs to be appended to.- Returns:
- the variableName value.
-
withVariableName
public AppendVariableActivity withVariableName(String variableName)
Set the variableName property: Name of the variable whose value needs to be appended to.- Parameters:
variableName
- the variableName value to set.- Returns:
- the AppendVariableActivity object itself.
-
value
public Object value()
Get the value property: Value to be appended. Could be a static value or Expression.- Returns:
- the value value.
-
withValue
public AppendVariableActivity withValue(Object value)
Set the value property: Value to be appended. Could be a static value or Expression.- Parameters:
value
- the value value to set.- Returns:
- the AppendVariableActivity object itself.
-
validate
public void validate()
Validates the instance.- Overrides:
validate
in classControlActivity
- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-