Class: Google::Cloud::DiscoveryEngine::V1beta::SearchRequest::PersonalizationSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DiscoveryEngine::V1beta::SearchRequest::PersonalizationSpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/discoveryengine/v1beta/search_service.rb
Overview
The specification for personalization.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#mode ⇒ ::Google::Cloud::DiscoveryEngine::V1beta::SearchRequest::PersonalizationSpec::Mode
The personalization mode of the search request.
Instance Attribute Details
#mode ⇒ ::Google::Cloud::DiscoveryEngine::V1beta::SearchRequest::PersonalizationSpec::Mode
Returns The personalization mode of the search request. Defaults to Mode.AUTO.
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 |
# File 'proto_docs/google/cloud/discoveryengine/v1beta/search_service.rb', line 1106 class PersonalizationSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The personalization mode of each search request. module Mode # Default value. In this case, server behavior defaults to # {::Google::Cloud::DiscoveryEngine::V1beta::SearchRequest::PersonalizationSpec::Mode::AUTO Mode.AUTO}. MODE_UNSPECIFIED = 0 # Personalization is enabled if data quality requirements are met. AUTO = 1 # Disable personalization. DISABLED = 2 end end |