File tree Expand file tree Collapse file tree
google/cloud/aiplatform/v1 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -367,6 +367,21 @@ message ImportRagFilesConfig {
367367 BigQueryDestination partial_failure_bigquery_sink = 12 [deprecated = true ];
368368 }
369369
370+ // Optional. If provided, all successfully imported files and all partial
371+ // failures are written to the sink.
372+ oneof import_result_sink {
373+ // The Cloud Storage path to write import result to.
374+ GcsDestination import_result_gcs_sink = 14 ;
375+
376+ // The BigQuery destination to write import result to. It should be a
377+ // bigquery table resource name (e.g.
378+ // "bq://projectId.bqDatasetId.bqTableId"). The dataset must exist. If the
379+ // table does not exist, it will be created with the expected schema. If the
380+ // table exists, the schema will be validated and data will be added to this
381+ // existing table.
382+ BigQueryDestination import_result_bigquery_sink = 15 ;
383+ }
384+
370385 // Specifies the transformation config for RagFiles.
371386 RagFileTransformationConfig rag_file_transformation_config = 16 ;
372387
You can’t perform that action at this time.
0 commit comments