mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-20 13:27:47 +02:00
feat: add support for Vertex AI Search engine
PiperOrigin-RevId: 740862834
This commit is contained in:
parent
ebc5e127e8
commit
e02c606e5d
1 changed files with 15 additions and 0 deletions
|
|
@ -142,6 +142,15 @@ message FileStatus {
|
|||
string error_status = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
|
||||
}
|
||||
|
||||
// Config for the Vertex AI Search.
|
||||
message VertexAiSearchConfig {
|
||||
// Vertex AI Search Serving Config resource full name. For example,
|
||||
// `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}`
|
||||
// or
|
||||
// `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/servingConfigs/{serving_config}`.
|
||||
string serving_config = 1;
|
||||
}
|
||||
|
||||
// RagCorpus status.
|
||||
message CorpusStatus {
|
||||
// RagCorpus life state.
|
||||
|
|
@ -207,6 +216,12 @@ message RagCorpus {
|
|||
(google.api.field_behavior) = OPTIONAL,
|
||||
(google.api.field_behavior) = IMMUTABLE
|
||||
];
|
||||
|
||||
// Optional. Immutable. The config for the Vertex AI Search.
|
||||
VertexAiSearchConfig vertex_ai_search_config = 10 [
|
||||
(google.api.field_behavior) = OPTIONAL,
|
||||
(google.api.field_behavior) = IMMUTABLE
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue