ExecutionStageSummaryArgs

data class ExecutionStageSummaryArgs(val componentSource: Output<List<ComponentSourceArgs>>? = null, val componentTransform: Output<List<ComponentTransformArgs>>? = null, val id: Output<String>? = null, val inputSource: Output<List<StageSourceArgs>>? = null, val kind: Output<ExecutionStageSummaryKind>? = null, val name: Output<String>? = null, val outputSource: Output<List<StageSourceArgs>>? = null, val prerequisiteStage: Output<List<String>>? = null) : ConvertibleToJava<ExecutionStageSummaryArgs>

Description of the composing transforms, names/ids, and input/outputs of a stage of execution. Some composing transforms and sources may have been generated by the Dataflow service during execution planning.

Constructors

Link copied to clipboard
fun ExecutionStageSummaryArgs(componentSource: Output<List<ComponentSourceArgs>>? = null, componentTransform: Output<List<ComponentTransformArgs>>? = null, id: Output<String>? = null, inputSource: Output<List<StageSourceArgs>>? = null, kind: Output<ExecutionStageSummaryKind>? = null, name: Output<String>? = null, outputSource: Output<List<StageSourceArgs>>? = null, prerequisiteStage: Output<List<String>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ExecutionStageSummaryArgs

Properties

Link copied to clipboard

Collections produced and consumed by component transforms of this stage.

Link copied to clipboard

Transforms that comprise this execution stage.

Link copied to clipboard
val id: Output<String>? = null

Dataflow service generated id for this stage.

Link copied to clipboard
val inputSource: Output<List<StageSourceArgs>>? = null

Input sources for this stage.

Link copied to clipboard
val kind: Output<ExecutionStageSummaryKind>? = null

Type of transform this stage is executing.

Link copied to clipboard
val name: Output<String>? = null

Dataflow service generated name for this stage.

Link copied to clipboard
val outputSource: Output<List<StageSourceArgs>>? = null

Output sources for this stage.

Link copied to clipboard
val prerequisiteStage: Output<List<String>>? = null

Other stages that must complete before this stage can run.