dependsOn

@JvmName(name = "frcnpyfmwbvbasjb")
suspend fun dependsOn(value: Output<List<PipeBatchJobDependencyArgs>>)
@JvmName(name = "elvlpfkrltattdre")
suspend fun dependsOn(value: List<PipeBatchJobDependencyArgs>?)

Parameters

value

A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a SEQUENTIAL type dependency without specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an N_TO_N type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each dependency to complete before it can begin.


@JvmName(name = "eufbtarqwguhuavf")
suspend fun dependsOn(vararg values: Output<PipeBatchJobDependencyArgs>)


@JvmName(name = "cqlbydcduaglkjpi")
suspend fun dependsOn(values: List<Output<PipeBatchJobDependencyArgs>>)
@JvmName(name = "vwbvhipxtlkutblh")
suspend fun dependsOn(vararg values: PipeBatchJobDependencyArgs)

Parameters

values

A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a SEQUENTIAL type dependency without specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an N_TO_N type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each dependency to complete before it can begin.


@JvmName(name = "yadmwedfybixdpeq")
suspend fun dependsOn(argument: List<suspend PipeBatchJobDependencyArgsBuilder.() -> Unit>)
@JvmName(name = "cqecrbrcmfefprob")
suspend fun dependsOn(vararg argument: suspend PipeBatchJobDependencyArgsBuilder.() -> Unit)
@JvmName(name = "cceiudmqrlssrrfk")
suspend fun dependsOn(argument: suspend PipeBatchJobDependencyArgsBuilder.() -> Unit)

Parameters

argument

A list of dependencies for the job. A job can depend upon a maximum of 20 jobs. You can specify a SEQUENTIAL type dependency without specifying a job ID for array jobs so that each child array job completes sequentially, starting at index 0. You can also specify an N_TO_N type dependency with a job ID for array jobs. In that case, each index child of this job must wait for the corresponding index child of each dependency to complete before it can begin.