StageSourceArgs

data class StageSourceArgs(val name: Output<String>? = null, val originalTransformOrCollection: Output<String>? = null, val sizeBytes: Output<String>? = null, val userName: Output<String>? = null) : ConvertibleToJava<StageSourceArgs>

Description of an input or output of an execution stage.

Constructors

Link copied to clipboard
fun StageSourceArgs(name: Output<String>? = null, originalTransformOrCollection: Output<String>? = null, sizeBytes: Output<String>? = null, userName: Output<String>? = null)

Functions

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

Properties

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

Dataflow service generated name for this source.

Link copied to clipboard

User name for the original user transform or collection with which this source is most closely associated.

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

Size of the source, if measurable.

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

Human-readable name for this source; may be user or system generated.