Skip to content

Commit dc83df8

Browse files
Google APIscopybara-github
authored andcommitted
fix: Remove invalid resource annotations
Note: normally removing an annotation is a breaking change. However, the annotation here is invalid as it doesn't refer to a string field. Any generator which actually tried to use it in a meaningful way would either generate invalid code or fail to generate at all. Therefore removing it can't break anything. PiperOrigin-RevId: 404455880
1 parent 3fe45e2 commit dc83df8

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

google/cloud/aiplatform/v1/lineage_subgraph.proto

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ syntax = "proto3";
1616

1717
package google.cloud.aiplatform.v1;
1818

19-
import "google/api/resource.proto";
2019
import "google/cloud/aiplatform/v1/artifact.proto";
2120
import "google/cloud/aiplatform/v1/event.proto";
2221
import "google/cloud/aiplatform/v1/execution.proto";
@@ -34,14 +33,10 @@ option ruby_package = "Google::Cloud::AIPlatform::V1";
3433
// Execution nodes.
3534
message LineageSubgraph {
3635
// The Artifact nodes in the subgraph.
37-
repeated Artifact artifacts = 1 [(google.api.resource_reference) = {
38-
type: "aiplatform.googleapis.com/Artifact"
39-
}];
36+
repeated Artifact artifacts = 1;
4037

4138
// The Execution nodes in the subgraph.
42-
repeated Execution executions = 2 [(google.api.resource_reference) = {
43-
type: "aiplatform.googleapis.com/Execution"
44-
}];
39+
repeated Execution executions = 2;
4540

4641
// The Event edges between Artifacts and Executions in the subgraph.
4742
repeated Event events = 3;

0 commit comments

Comments
 (0)