googleapis/google/cloud/discoveryengine/v1/engine.proto
Google APIs 9953dde4a2 feat: add CMEK config service
feat: add identity mapping service
feat: add user license config service
feat: add HealthcareFhirConfig to FHIR data store
feat: add ConnectorRunErrorContext to error log
feat: support structured content for chunk
feat: support ACL data store and document
feat: add more options for layout parser config
feat: support media recommendation engine
feat: enable claim level score for grounding
feat: add custom search operators for Workspace search
feat: add more indexing state for site search engine
docs: keep the API doc up-to-date with recent changes

PiperOrigin-RevId: 766759284
2025-06-03 11:51:52 -07:00

357 lines
15 KiB
Protocol Buffer

// 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.discoveryengine.v1;
import "google/api/field_behavior.proto";
import "google/api/resource.proto";
import "google/cloud/discoveryengine/v1/common.proto";
import "google/protobuf/timestamp.proto";
option csharp_namespace = "Google.Cloud.DiscoveryEngine.V1";
option go_package = "cloud.google.com/go/discoveryengine/apiv1/discoveryenginepb;discoveryenginepb";
option java_multiple_files = true;
option java_outer_classname = "EngineProto";
option java_package = "com.google.cloud.discoveryengine.v1";
option objc_class_prefix = "DISCOVERYENGINE";
option php_namespace = "Google\\Cloud\\DiscoveryEngine\\V1";
option ruby_package = "Google::Cloud::DiscoveryEngine::V1";
// Metadata that describes the training and serving parameters of an
// [Engine][google.cloud.discoveryengine.v1.Engine].
message Engine {
option (google.api.resource) = {
type: "discoveryengine.googleapis.com/Engine"
pattern: "projects/{project}/locations/{location}/collections/{collection}/engines/{engine}"
};
// Configurations for a Search Engine.
message SearchEngineConfig {
// The search feature tier of this engine.
//
// Different tiers might have different
// pricing. To learn more, check the pricing documentation.
//
// Defaults to
// [SearchTier.SEARCH_TIER_STANDARD][google.cloud.discoveryengine.v1.SearchTier.SEARCH_TIER_STANDARD]
// if not specified.
SearchTier search_tier = 1;
// The add-on that this search engine enables.
repeated SearchAddOn search_add_ons = 2;
}
// Additional config specs for a Media Recommendation engine.
message MediaRecommendationEngineConfig {
// Custom threshold for `cvr` optimization_objective.
message OptimizationObjectiveConfig {
// Required. The name of the field to target. Currently supported
// values: `watch-percentage`, `watch-time`.
string target_field = 1 [(google.api.field_behavior) = REQUIRED];
// Required. The threshold to be applied to the target (e.g., 0.5).
float target_field_value_float = 2
[(google.api.field_behavior) = REQUIRED];
}
// More feature configs of the selected engine type.
message EngineFeaturesConfig {
// Feature related configurations applied to a specific type of meida
// recommendation engines.
oneof type_dedicated_config {
// Recommended for you engine feature config.
RecommendedForYouFeatureConfig recommended_for_you_config = 1;
// Most popular engine feature config.
MostPopularFeatureConfig most_popular_config = 2;
}
}
// Additional feature configurations for creating a `recommended-for-you`
// engine.
message RecommendedForYouFeatureConfig {
// The type of event with which the engine is queried at prediction time.
// If set to `generic`, only `view-item`, `media-play`,and
// `media-complete` will be used as `context-event` in engine training. If
// set to `view-home-page`, `view-home-page` will also be used as
// `context-events` in addition to `view-item`, `media-play`, and
// `media-complete`. Currently supported for the `recommended-for-you`
// engine. Currently supported values: `view-home-page`, `generic`.
string context_event_type = 1;
}
// Feature configurations that are required for creating a Most Popular
// engine.
message MostPopularFeatureConfig {
// The time window of which the engine is queried at training and
// prediction time. Positive integers only. The value translates to the
// last X days of events. Currently required for the `most-popular-items`
// engine.
int64 time_window_days = 1;
}
// The training state of the engine.
enum TrainingState {
// Unspecified training state.
TRAINING_STATE_UNSPECIFIED = 0;
// The engine training is paused.
PAUSED = 1;
// The engine is training.
TRAINING = 2;
}
// Required. The type of engine. e.g., `recommended-for-you`.
//
// This field together with
// [optimization_objective][google.cloud.discoveryengine.v1.Engine.MediaRecommendationEngineConfig.optimization_objective]
// describe engine metadata to use to control engine training and serving.
//
// Currently supported values: `recommended-for-you`, `others-you-may-like`,
// `more-like-this`, `most-popular-items`.
string type = 1 [(google.api.field_behavior) = REQUIRED];
// The optimization objective. e.g., `cvr`.
//
// This field together with
// [optimization_objective][google.cloud.discoveryengine.v1.Engine.MediaRecommendationEngineConfig.type]
// describe engine metadata to use to control engine training and serving.
//
// Currently supported
// values: `ctr`, `cvr`.
//
// If not specified, we choose default based on engine type.
// Default depends on type of recommendation:
//
// `recommended-for-you` => `ctr`
//
// `others-you-may-like` => `ctr`
string optimization_objective = 2;
// Name and value of the custom threshold for cvr optimization_objective.
// For target_field `watch-time`, target_field_value must be an integer
// value indicating the media progress time in seconds between (0, 86400]
// (excludes 0, includes 86400) (e.g., 90).
// For target_field `watch-percentage`, the target_field_value must be a
// valid float value between (0, 1.0] (excludes 0, includes 1.0) (e.g.,
// 0.5).
OptimizationObjectiveConfig optimization_objective_config = 3;
// The training state that the engine is in (e.g.
// `TRAINING` or `PAUSED`).
//
// Since part of the cost of running the service
// is frequency of training - this can be used to determine when to train
// engine in order to control cost. If not specified: the default value for
// `CreateEngine` method is `TRAINING`. The default value for
// `UpdateEngine` method is to keep the state the same as before.
TrainingState training_state = 4;
// Optional. Additional engine features config.
EngineFeaturesConfig engine_features_config = 5
[(google.api.field_behavior) = OPTIONAL];
}
// Configurations for a Chat Engine.
message ChatEngineConfig {
// Configurations for generating a Dialogflow agent.
//
// Note that these configurations are one-time consumed by
// and passed to Dialogflow service. It means they cannot be retrieved using
// [EngineService.GetEngine][google.cloud.discoveryengine.v1.EngineService.GetEngine]
// or
// [EngineService.ListEngines][google.cloud.discoveryengine.v1.EngineService.ListEngines]
// API after engine creation.
message AgentCreationConfig {
// Name of the company, organization or other entity that the agent
// represents. Used for knowledge connector LLM prompt and for knowledge
// search.
string business = 1;
// Required. The default language of the agent as a language tag.
// See [Language
// Support](https://cloud.google.com/dialogflow/docs/reference/language)
// for a list of the currently supported language codes.
string default_language_code = 2;
// Required. The time zone of the agent from the [time zone
// database](https://www.iana.org/time-zones), e.g., America/New_York,
// Europe/Paris.
string time_zone = 3 [(google.api.field_behavior) = REQUIRED];
// Agent location for Agent creation, supported values: global/us/eu.
// If not provided, us Engine will create Agent using us-central-1 by
// default; eu Engine will create Agent using eu-west-1 by default.
string location = 4;
}
// The configurationt generate the Dialogflow agent that is associated to
// this Engine.
//
// Note that these configurations are one-time consumed by
// and passed to Dialogflow service. It means they cannot be retrieved using
// [EngineService.GetEngine][google.cloud.discoveryengine.v1.EngineService.GetEngine]
// or
// [EngineService.ListEngines][google.cloud.discoveryengine.v1.EngineService.ListEngines]
// API after engine creation.
AgentCreationConfig agent_creation_config = 1;
// The resource name of an exist Dialogflow agent to link to this Chat
// Engine. Customers can either provide `agent_creation_config` to create
// agent or provide an agent name that links the agent with the Chat engine.
//
// Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
// ID>`.
//
// Note that the `dialogflow_agent_to_link` are one-time consumed by and
// passed to Dialogflow service. It means they cannot be retrieved using
// [EngineService.GetEngine][google.cloud.discoveryengine.v1.EngineService.GetEngine]
// or
// [EngineService.ListEngines][google.cloud.discoveryengine.v1.EngineService.ListEngines]
// API after engine creation. Use
// [ChatEngineMetadata.dialogflow_agent][google.cloud.discoveryengine.v1.Engine.ChatEngineMetadata.dialogflow_agent]
// for actual agent association after Engine is created.
string dialogflow_agent_to_link = 2;
// Optional. If the flag set to true, we allow the agent and engine are in
// different locations, otherwise the agent and engine are required to be in
// the same location. The flag is set to false by default.
//
// Note that the `allow_cross_region` are one-time consumed by and
// passed to
// [EngineService.CreateEngine][google.cloud.discoveryengine.v1.EngineService.CreateEngine].
// It means they cannot be retrieved using
// [EngineService.GetEngine][google.cloud.discoveryengine.v1.EngineService.GetEngine]
// or
// [EngineService.ListEngines][google.cloud.discoveryengine.v1.EngineService.ListEngines]
// API after engine creation.
bool allow_cross_region = 3 [(google.api.field_behavior) = OPTIONAL];
}
// Common configurations for an Engine.
message CommonConfig {
// The name of the company, business or entity that is associated with the
// engine. Setting this may help improve LLM related features.
string company_name = 1;
}
// Additional information of a Chat Engine.
// Fields in this message are output only.
message ChatEngineMetadata {
// The resource name of a Dialogflow agent, that this Chat Engine refers
// to.
//
// Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
// ID>`.
string dialogflow_agent = 1;
}
// Additional config specs that defines the behavior of the engine.
oneof engine_config {
// Configurations for the Chat Engine. Only applicable if
// [solution_type][google.cloud.discoveryengine.v1.Engine.solution_type] is
// [SOLUTION_TYPE_CHAT][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_CHAT].
ChatEngineConfig chat_engine_config = 11;
// Configurations for the Search Engine. Only applicable if
// [solution_type][google.cloud.discoveryengine.v1.Engine.solution_type] is
// [SOLUTION_TYPE_SEARCH][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_SEARCH].
SearchEngineConfig search_engine_config = 13;
// Configurations for the Media Engine. Only applicable on the data
// stores with
// [solution_type][google.cloud.discoveryengine.v1.Engine.solution_type]
// [SOLUTION_TYPE_RECOMMENDATION][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_RECOMMENDATION]
// and
// [IndustryVertical.MEDIA][google.cloud.discoveryengine.v1.IndustryVertical.MEDIA]
// vertical.
MediaRecommendationEngineConfig media_recommendation_engine_config = 14;
}
// Engine metadata to monitor the status of the engine.
oneof engine_metadata {
// Output only. Additional information of the Chat Engine. Only applicable
// if [solution_type][google.cloud.discoveryengine.v1.Engine.solution_type]
// is
// [SOLUTION_TYPE_CHAT][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_CHAT].
ChatEngineMetadata chat_engine_metadata = 12
[(google.api.field_behavior) = OUTPUT_ONLY];
}
// Immutable. Identifier. The fully qualified resource name of the engine.
//
// This field must be a UTF-8 encoded string with a length limit of 1024
// characters.
//
// Format:
// `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}`
// engine should be 1-63 characters, and valid characters are
// /[a-z0-9][a-z0-9-_]*/. Otherwise, an INVALID_ARGUMENT error is returned.
string name = 1 [
(google.api.field_behavior) = IMMUTABLE,
(google.api.field_behavior) = IDENTIFIER
];
// Required. The display name of the engine. Should be human readable. UTF-8
// encoded string with limit of 1024 characters.
string display_name = 2 [(google.api.field_behavior) = REQUIRED];
// Output only. Timestamp the Recommendation Engine was created at.
google.protobuf.Timestamp create_time = 3
[(google.api.field_behavior) = OUTPUT_ONLY];
// Output only. Timestamp the Recommendation Engine was last updated.
google.protobuf.Timestamp update_time = 4
[(google.api.field_behavior) = OUTPUT_ONLY];
// Optional. The data stores associated with this engine.
//
// For
// [SOLUTION_TYPE_SEARCH][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_SEARCH]
// and
// [SOLUTION_TYPE_RECOMMENDATION][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_RECOMMENDATION]
// type of engines, they can only associate with at most one data store.
//
// If [solution_type][google.cloud.discoveryengine.v1.Engine.solution_type] is
// [SOLUTION_TYPE_CHAT][google.cloud.discoveryengine.v1.SolutionType.SOLUTION_TYPE_CHAT],
// multiple [DataStore][google.cloud.discoveryengine.v1.DataStore]s in the
// same [Collection][google.cloud.discoveryengine.v1.Collection] can be
// associated here.
//
// Note that when used in
// [CreateEngineRequest][google.cloud.discoveryengine.v1.CreateEngineRequest],
// one DataStore id must be provided as the system will use it for necessary
// initializations.
repeated string data_store_ids = 5 [(google.api.field_behavior) = OPTIONAL];
// Required. The solutions of the engine.
SolutionType solution_type = 6 [(google.api.field_behavior) = REQUIRED];
// Optional. The industry vertical that the engine registers.
// The restriction of the Engine industry vertical is based on
// [DataStore][google.cloud.discoveryengine.v1.DataStore]: Vertical on Engine
// has to match vertical of the DataStore linked to the engine.
IndustryVertical industry_vertical = 16
[(google.api.field_behavior) = OPTIONAL];
// Common config spec that specifies the metadata of the engine.
CommonConfig common_config = 15;
// Optional. Whether to disable analytics for searches performed on this
// engine.
bool disable_analytics = 26 [(google.api.field_behavior) = OPTIONAL];
}