Skip to content

Commit e9792d9

Browse files
Google APIscopybara-github
authored andcommitted
feat: add import result gcs sink to the import files API
feat: add import result bq sink to the import files API PiperOrigin-RevId: 738394411
1 parent 1a8d81e commit e9792d9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

google/cloud/aiplatform/v1beta1/vertex_rag_data.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,21 @@ message ImportRagFilesConfig {
526526
BigQueryDestination partial_failure_bigquery_sink = 12 [deprecated = true];
527527
}
528528

529+
// Optional. If provided, all successfully imported files and all partial
530+
// failures are written to the sink.
531+
oneof import_result_sink {
532+
// The Cloud Storage path to write import result to.
533+
GcsDestination import_result_gcs_sink = 14;
534+
535+
// The BigQuery destination to write import result to. It should be a
536+
// bigquery table resource name (e.g.
537+
// "bq://projectId.bqDatasetId.bqTableId"). The dataset must exist. If the
538+
// table does not exist, it will be created with the expected schema. If the
539+
// table exists, the schema will be validated and data will be added to this
540+
// existing table.
541+
BigQueryDestination import_result_bigquery_sink = 15;
542+
}
543+
529544
// Specifies the size and overlap of chunks after importing RagFiles.
530545
RagFileChunkingConfig rag_file_chunking_config = 4 [deprecated = true];
531546

0 commit comments

Comments
 (0)