PipelineDagNode
A directed acyclic graph [DAG] representing the execution of the pipeline.
message PipelineDagNode {
// Name of the operator (stage).
string name = 1;
// Represents the next stage(s) of pipeline execution.
repeated PipelineDagNode next = 2;
}