Class ForEachActivityResponse
- java.lang.Object
-
- com.pulumi.azurenative.datafactory.outputs.ForEachActivityResponse
-
public final class ForEachActivityResponse extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ForEachActivityResponse.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Object>
activities()
java.util.Optional<java.lang.Integer>
batchCount()
static ForEachActivityResponse.Builder
builder()
static ForEachActivityResponse.Builder
builder(ForEachActivityResponse defaults)
java.util.List<ActivityDependencyResponse>
dependsOn()
java.util.Optional<java.lang.String>
description()
java.util.Optional<java.lang.Boolean>
isSequential()
ExpressionResponse
items()
java.lang.String
name()
java.util.Optional<java.lang.String>
onInactiveMarkAs()
java.util.Optional<java.lang.String>
state()
java.lang.String
type()
java.util.List<UserPropertyResponse>
userProperties()
-
-
-
Method Detail
-
activities
public java.util.List<java.lang.Object> activities()
- Returns:
- List of activities to execute .
-
batchCount
public java.util.Optional<java.lang.Integer> batchCount()
- Returns:
- Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).
-
dependsOn
public java.util.List<ActivityDependencyResponse> dependsOn()
- Returns:
- Activity depends on condition.
-
description
public java.util.Optional<java.lang.String> description()
- Returns:
- Activity description.
-
isSequential
public java.util.Optional<java.lang.Boolean> isSequential()
- Returns:
- Should the loop be executed in sequence or in parallel (max 50)
-
items
public ExpressionResponse items()
- Returns:
- Collection to iterate.
-
name
public java.lang.String name()
- Returns:
- Activity name.
-
onInactiveMarkAs
public java.util.Optional<java.lang.String> onInactiveMarkAs()
- Returns:
- Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
-
state
public java.util.Optional<java.lang.String> state()
- Returns:
- Activity state. This is an optional property and if not provided, the state will be Active by default.
-
type
public java.lang.String type()
- Returns:
- Type of activity. Expected value is 'ForEach'.
-
userProperties
public java.util.List<UserPropertyResponse> userProperties()
- Returns:
- Activity user properties.
-
builder
public static ForEachActivityResponse.Builder builder()
-
builder
public static ForEachActivityResponse.Builder builder(ForEachActivityResponse defaults)
-
-