// Copyright 2025 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

syntax = "proto3";

package google.cloud.securitycenter.v2;

option csharp_namespace = "Google.Cloud.SecurityCenter.V2";
option go_package = "cloud.google.com/go/securitycenter/apiv2/securitycenterpb;securitycenterpb";
option java_multiple_files = true;
option java_outer_classname = "VertexAiProto";
option java_package = "com.google.cloud.securitycenter.v2";
option php_namespace = "Google\\Cloud\\SecurityCenter\\V2";
option ruby_package = "Google::Cloud::SecurityCenter::V2";

// Vertex AI-related information associated with the finding.
message VertexAi {
  // Vertex AI dataset associated with the finding.
  message Dataset {
    // Resource name of the dataset, e.g.
    // projects/{project}/locations/{location}/datasets/2094040236064505856
    string name = 1;

    // The user defined display name of dataset, e.g. plants-dataset
    string display_name = 2;

    // Data source, such as a BigQuery source URI, e.g.
    // bq://scc-nexus-test.AIPPtest.gsod
    string source = 3;
  }

  // Vertex AI training pipeline associated with the finding.
  message Pipeline {
    // Resource name of the pipeline, e.g.
    // projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
    string name = 1;

    // The user-defined display name of pipeline, e.g. plants-classification
    string display_name = 2;
  }

  // Datasets associated with the finding.
  repeated Dataset datasets = 1;

  // Pipelines associated with the finding.
  repeated Pipeline pipelines = 2;
}
