1// Copyright 2023 Google LLC 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15syntax = "proto3"; 16 17package google.cloud.aiplatform.v1; 18 19import "google/cloud/aiplatform/v1/artifact.proto"; 20import "google/cloud/aiplatform/v1/event.proto"; 21import "google/cloud/aiplatform/v1/execution.proto"; 22 23option csharp_namespace = "Google.Cloud.AIPlatform.V1"; 24option go_package = "cloud.google.com/go/aiplatform/apiv1/aiplatformpb;aiplatformpb"; 25option java_multiple_files = true; 26option java_outer_classname = "LineageSubgraphProto"; 27option java_package = "com.google.cloud.aiplatform.v1"; 28option php_namespace = "Google\\Cloud\\AIPlatform\\V1"; 29option ruby_package = "Google::Cloud::AIPlatform::V1"; 30 31// A subgraph of the overall lineage graph. Event edges connect Artifact and 32// Execution nodes. 33message LineageSubgraph { 34 // The Artifact nodes in the subgraph. 35 repeated Artifact artifacts = 1; 36 37 // The Execution nodes in the subgraph. 38 repeated Execution executions = 2; 39 40 // The Event edges between Artifacts and Executions in the subgraph. 41 repeated Event events = 3; 42} 43