ChainingTriggerArgs

data class ChainingTriggerArgs(val annotations: Output<List<Any>>? = null, val dependsOn: Output<List<PipelineReferenceArgs>>, val description: Output<String>? = null, val pipeline: Output<TriggerPipelineReferenceArgs>, val runDimension: Output<String>, val type: Output<String>) : ConvertibleToJava<ChainingTriggerArgs>

Trigger that allows the referenced pipeline to depend on other pipeline runs based on runDimension Name/Value pairs. Upstream pipelines should declare the same runDimension Name and their runs should have the values for those runDimensions. The referenced pipeline run would be triggered if the values for the runDimension match for all upstream pipeline runs.

Constructors

Link copied to clipboard
constructor(annotations: Output<List<Any>>? = null, dependsOn: Output<List<PipelineReferenceArgs>>, description: Output<String>? = null, pipeline: Output<TriggerPipelineReferenceArgs>, runDimension: Output<String>, type: Output<String>)

Properties

Link copied to clipboard
val annotations: Output<List<Any>>? = null

List of tags that can be used for describing the trigger.

Link copied to clipboard

Upstream Pipelines.

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

Trigger description.

Link copied to clipboard

Pipeline for which runs are created when all upstream pipelines complete successfully.

Link copied to clipboard
val runDimension: Output<String>

Run Dimension property that needs to be emitted by upstream pipelines.

Link copied to clipboard
val type: Output<String>

Trigger type. Expected value is 'ChainingTrigger'.

Functions

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