Class UntilActivity
java.lang.Object
com.azure.resourcemanager.datafactory.models.Activity
com.azure.resourcemanager.datafactory.models.ControlActivity
com.azure.resourcemanager.datafactory.models.UntilActivity
This activity executes inner activities until the specified boolean expression results to true or timeout is reached,
whichever is earlier.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the activities property: List of activities to execute.Get the expression property: An expression that would evaluate to Boolean.timeout()
Get the timeout property: Specifies the timeout for the activity to run.void
validate()
Validates the instance.withActivities
(List<Activity> activities) Set the activities property: List of activities to execute.withDependsOn
(List<ActivityDependency> dependsOn) Set the dependsOn property: Activity depends on condition.withDescription
(String description) Set the description property: Activity description.withExpression
(Expression expression) Set the expression property: An expression that would evaluate to Boolean.Set the name property: Activity name.withTimeout
(Object timeout) Set the timeout property: Specifies the timeout for the activity to run.withUserProperties
(List<UserProperty> userProperties) Set the userProperties property: Activity user properties.Methods inherited from class com.azure.resourcemanager.datafactory.models.Activity
additionalProperties, dependsOn, description, name, userProperties, withAdditionalProperties
-
Constructor Details
-
UntilActivity
public UntilActivity()Creates an instance of UntilActivity class.
-
-
Method Details
-
withName
Set the name property: Activity name.- Overrides:
withName
in classControlActivity
- Parameters:
name
- the name value to set.- Returns:
- the Activity object itself.
-
withDescription
Set the description property: Activity description.- Overrides:
withDescription
in classControlActivity
- Parameters:
description
- the description value to set.- Returns:
- the Activity object itself.
-
withDependsOn
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
Set the userProperties property: Activity user properties.- Overrides:
withUserProperties
in classControlActivity
- Parameters:
userProperties
- the userProperties value to set.- Returns:
- the Activity object itself.
-
expression
Get the expression property: An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true.- Returns:
- the expression value.
-
withExpression
Set the expression property: An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true.- Parameters:
expression
- the expression value to set.- Returns:
- the UntilActivity object itself.
-
timeout
Get the timeout property: 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])).- Returns:
- the timeout value.
-
withTimeout
Set the timeout property: 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])).- Parameters:
timeout
- the timeout value to set.- Returns:
- the UntilActivity object itself.
-
activities
Get the activities property: List of activities to execute.- Returns:
- the activities value.
-
withActivities
Set the activities property: List of activities to execute.- Parameters:
activities
- the activities value to set.- Returns:
- the UntilActivity object itself.
-
validate
public void validate()Validates the instance.- Overrides:
validate
in classControlActivity
- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-