args

@JvmName(name = "mojljygobjntypoo")
suspend fun args(value: Output<List<String>>)
@JvmName(name = "kurvoyipcblmgaho")
suspend fun args(value: List<String>?)

Parameters

value

A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.


@JvmName(name = "cffafwjuhpwtynwa")
suspend fun args(vararg values: Output<String>)


@JvmName(name = "cbakkjkqievapalp")
suspend fun args(values: List<Output<String>>)
@JvmName(name = "bwclyobhckwjhvtt")
suspend fun args(vararg values: String)

Parameters

values

A list of arguments that will be presented to the step when it is started. If the image used to run the step's container has an entrypoint, the args are used as arguments to that entrypoint. If the image does not define an entrypoint, the first element in args is used as the entrypoint, and the remainder will be used as arguments.