MultiStepArgs

data class MultiStepArgs(val multistepNumber: Output<Int>? = null, val primaryStep: Output<PrimaryStepArgs>? = null, val primaryStepId: Output<String>? = null) : ConvertibleToJava<MultiStepArgs>

Details when multiple steps are run with the same configuration as a group.

Constructors

Link copied to clipboard
fun MultiStepArgs(multistepNumber: Output<Int>? = null, primaryStep: Output<PrimaryStepArgs>? = null, primaryStepId: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val multistepNumber: Output<Int>? = null

Unique int given to each step. Ranges from 0(inclusive) to total number of steps(exclusive). The primary step is 0.

Link copied to clipboard
val primaryStep: Output<PrimaryStepArgs>? = null

Present if it is a primary (original) step.

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

Step Id of the primary (original) step, which might be this step.