File tree 2 files changed +19
-0
lines changed
google/cloud/aiplatform/v1
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,18 @@ message PipelineJob {
50
50
51
51
// The runtime config of a PipelineJob.
52
52
message RuntimeConfig {
53
+ // The type of an input artifact.
54
+ message InputArtifact {
55
+ oneof kind {
56
+ // Artifact resource id from MLMD. Which is the last portion of an
57
+ // artifact resource
58
+ // name(projects/{project}/locations/{location}/metadataStores/default/artifacts/{artifact_id}).
59
+ // The artifact must stay within the same project, location and default
60
+ // metadatastore as the pipeline.
61
+ string artifact_id = 1 ;
62
+ }
63
+ }
64
+
53
65
// Deprecated. Use [RuntimeConfig.parameter_values][google.cloud.aiplatform.v1.PipelineJob.RuntimeConfig.parameter_values] instead. The runtime
54
66
// parameters of the PipelineJob. The parameters will be passed into
55
67
// [PipelineJob.pipeline_spec][google.cloud.aiplatform.v1.PipelineJob.pipeline_spec] to replace the placeholders at runtime.
@@ -81,6 +93,10 @@ message PipelineJob {
81
93
// will stop scheduling any new tasks when a task has failed. Any scheduled
82
94
// tasks will continue to completion.
83
95
PipelineFailurePolicy failure_policy = 4 ;
96
+
97
+ // The runtime artifacts of the PipelineJob. The key will be the input
98
+ // artifact name and the value would be one of the InputArtifact.
99
+ map <string , InputArtifact > input_artifacts = 5 ;
84
100
}
85
101
86
102
// Output only. The resource name of the PipelineJob.
Original file line number Diff line number Diff line change @@ -366,6 +366,9 @@ message ListPipelineJobsRequest {
366
366
// * `end_time`
367
367
// * `start_time`
368
368
string order_by = 6 ;
369
+
370
+ // Mask specifying which fields to read.
371
+ google.protobuf.FieldMask read_mask = 7 ;
369
372
}
370
373
371
374
// Response message for [PipelineService.ListPipelineJobs][google.cloud.aiplatform.v1.PipelineService.ListPipelineJobs]
You can’t perform that action at this time.
0 commit comments