Skip to content

Commit b6084d2

Browse files
Google APIscopybara-github
authored andcommitted
feat: Expose task_unique_name in pipeline task details for pipeline rerun
PiperOrigin-RevId: 780661695
1 parent 5a92cea commit b6084d2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

google/cloud/aiplatform/v1/pipeline_job.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,16 @@ message PipelineTaskDetail {
361361
// Output only. The runtime output artifacts of the task.
362362
map<string, ArtifactList> outputs = 11
363363
[(google.api.field_behavior) = OUTPUT_ONLY];
364+
365+
// Output only. The unique name of a task.
366+
// This field is used by rerun pipeline job.
367+
// Console UI and Vertex AI SDK will support triggering pipeline job reruns.
368+
// The name is constructed by concatenating all the parent tasks name with
369+
// the task name. For example, if a task named "child_task" has a parent task
370+
// named "parent_task_1" and parent task 1 has a parent task named
371+
// "parent_task_2", the task unique name will be
372+
// "parent_task_2.parent_task_1.child_task".
373+
string task_unique_name = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
364374
}
365375

366376
// The runtime detail of a pipeline executor.

0 commit comments

Comments
 (0)