ChainingTriggerResponse

data class ChainingTriggerResponse(val annotations: List<Any>? = null, val dependsOn: List<PipelineReferenceResponse>, val description: String? = null, val pipeline: TriggerPipelineReferenceResponse, val runDimension: String, val runtimeState: String, val type: String)

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: List<Any>? = null, dependsOn: List<PipelineReferenceResponse>, description: String? = null, pipeline: TriggerPipelineReferenceResponse, runDimension: String, runtimeState: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val annotations: 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: String? = null

Trigger description.

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger.

Link copied to clipboard

Trigger type. Expected value is 'ChainingTrigger'.