PipelineOutputArtifactArgs

data class PipelineOutputArtifactArgs(val files: Output<List<String>>? = null, val name: Output<String>) : ConvertibleToJava<PipelineOutputArtifactArgs>

Represents information about the output of an action.

Constructors

Link copied to clipboard
constructor(files: Output<List<String>>? = null, name: Output<String>)

Properties

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

The files that you want to associate with the output artifact that will be exported from the compute action.

Link copied to clipboard
val name: Output<String>

The name of the output of an artifact, such as "My App".

Functions

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