google-apis-discoveryengine_v1 0.28.0 → 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1406,6 +1406,12 @@ module Google
1406
1406
  class GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpec
1407
1407
  include Google::Apis::Core::Hashable
1408
1408
 
1409
+ # Optional. Whether to disable spell correction. The default value is `false`.
1410
+ # Corresponds to the JSON property `disableSpellCorrection`
1411
+ # @return [Boolean]
1412
+ attr_accessor :disable_spell_correction
1413
+ alias_method :disable_spell_correction?, :disable_spell_correction
1414
+
1409
1415
  # Query classification specification.
1410
1416
  # Corresponds to the JSON property `queryClassificationSpec`
1411
1417
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryClassificationSpec]
@@ -1422,6 +1428,7 @@ module Google
1422
1428
 
1423
1429
  # Update properties of this object
1424
1430
  def update!(**args)
1431
+ @disable_spell_correction = args[:disable_spell_correction] if args.key?(:disable_spell_correction)
1425
1432
  @query_classification_spec = args[:query_classification_spec] if args.key?(:query_classification_spec)
1426
1433
  @query_rephraser_spec = args[:query_rephraser_spec] if args.key?(:query_rephraser_spec)
1427
1434
  end
@@ -5765,594 +5772,6 @@ module Google
5765
5772
  end
5766
5773
  end
5767
5774
 
5768
- # Top-level message sent by the client for the `GenerateGroundedContent` method.
5769
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequest
5770
- include Google::Apis::Core::Hashable
5771
-
5772
- # Content of the current conversation with the model. For single-turn queries,
5773
- # this is a single instance. For multi-turn queries, this is a repeated field
5774
- # that contains conversation history + latest request.
5775
- # Corresponds to the JSON property `contents`
5776
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent>]
5777
- attr_accessor :contents
5778
-
5779
- # Content generation specification.
5780
- # Corresponds to the JSON property `generationSpec`
5781
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec]
5782
- attr_accessor :generation_spec
5783
-
5784
- # Grounding specification.
5785
- # Corresponds to the JSON property `groundingSpec`
5786
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec]
5787
- attr_accessor :grounding_spec
5788
-
5789
- # Base structured datatype containing multi-part content of a message.
5790
- # Corresponds to the JSON property `systemInstruction`
5791
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent]
5792
- attr_accessor :system_instruction
5793
-
5794
- # The user labels applied to a resource must meet the following requirements: *
5795
- # Each resource can have multiple labels, up to a maximum of 64. * Each label
5796
- # must be a key-value pair. * Keys have a minimum length of 1 character and a
5797
- # maximum length of 63 characters and cannot be empty. Values can be empty and
5798
- # have a maximum length of 63 characters. * Keys and values can contain only
5799
- # lowercase letters, numeric characters, underscores, and dashes. All characters
5800
- # must use UTF-8 encoding, and international characters are allowed. * The key
5801
- # portion of a label must be unique. However, you can use the same key with
5802
- # multiple resources. * Keys must start with a lowercase letter or international
5803
- # character. See [Google Cloud Document](https://cloud.google.com/resource-
5804
- # manager/docs/creating-managing-labels#requirements) for more details.
5805
- # Corresponds to the JSON property `userLabels`
5806
- # @return [Hash<String,String>]
5807
- attr_accessor :user_labels
5808
-
5809
- def initialize(**args)
5810
- update!(**args)
5811
- end
5812
-
5813
- # Update properties of this object
5814
- def update!(**args)
5815
- @contents = args[:contents] if args.key?(:contents)
5816
- @generation_spec = args[:generation_spec] if args.key?(:generation_spec)
5817
- @grounding_spec = args[:grounding_spec] if args.key?(:grounding_spec)
5818
- @system_instruction = args[:system_instruction] if args.key?(:system_instruction)
5819
- @user_labels = args[:user_labels] if args.key?(:user_labels)
5820
- end
5821
- end
5822
-
5823
- # Describes the options to customize dynamic retrieval.
5824
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration
5825
- include Google::Apis::Core::Hashable
5826
-
5827
- # Describes the predictor settings for dynamic retrieval.
5828
- # Corresponds to the JSON property `predictor`
5829
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor]
5830
- attr_accessor :predictor
5831
-
5832
- def initialize(**args)
5833
- update!(**args)
5834
- end
5835
-
5836
- # Update properties of this object
5837
- def update!(**args)
5838
- @predictor = args[:predictor] if args.key?(:predictor)
5839
- end
5840
- end
5841
-
5842
- # Describes the predictor settings for dynamic retrieval.
5843
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfigurationDynamicRetrievalPredictor
5844
- include Google::Apis::Core::Hashable
5845
-
5846
- # The value of the threshold. If the predictor will predict a value smaller than
5847
- # this, it would suppress grounding in the source.
5848
- # Corresponds to the JSON property `threshold`
5849
- # @return [Float]
5850
- attr_accessor :threshold
5851
-
5852
- # The version of the predictor to be used in dynamic retrieval.
5853
- # Corresponds to the JSON property `version`
5854
- # @return [String]
5855
- attr_accessor :version
5856
-
5857
- def initialize(**args)
5858
- update!(**args)
5859
- end
5860
-
5861
- # Update properties of this object
5862
- def update!(**args)
5863
- @threshold = args[:threshold] if args.key?(:threshold)
5864
- @version = args[:version] if args.key?(:version)
5865
- end
5866
- end
5867
-
5868
- # Content generation specification.
5869
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGenerationSpec
5870
- include Google::Apis::Core::Hashable
5871
-
5872
- # If specified, custom value for frequency penalty will be used.
5873
- # Corresponds to the JSON property `frequencyPenalty`
5874
- # @return [Float]
5875
- attr_accessor :frequency_penalty
5876
-
5877
- # Language code for content. Use language tags defined by [BCP47](https://www.
5878
- # rfc-editor.org/rfc/bcp/bcp47.txt).
5879
- # Corresponds to the JSON property `languageCode`
5880
- # @return [String]
5881
- attr_accessor :language_code
5882
-
5883
- # If specified, custom value for max output tokens will be used.
5884
- # Corresponds to the JSON property `maxOutputTokens`
5885
- # @return [Fixnum]
5886
- attr_accessor :max_output_tokens
5887
-
5888
- # Specifies which Vertex model id to use for generation.
5889
- # Corresponds to the JSON property `modelId`
5890
- # @return [String]
5891
- attr_accessor :model_id
5892
-
5893
- # If specified, custom value for presence penalty will be used.
5894
- # Corresponds to the JSON property `presencePenalty`
5895
- # @return [Float]
5896
- attr_accessor :presence_penalty
5897
-
5898
- # If specified, custom value for the seed will be used.
5899
- # Corresponds to the JSON property `seed`
5900
- # @return [Fixnum]
5901
- attr_accessor :seed
5902
-
5903
- # If specified, custom value for the temperature will be used.
5904
- # Corresponds to the JSON property `temperature`
5905
- # @return [Float]
5906
- attr_accessor :temperature
5907
-
5908
- # If specified, custom value for top-k sampling will be used.
5909
- # Corresponds to the JSON property `topK`
5910
- # @return [Fixnum]
5911
- attr_accessor :top_k
5912
-
5913
- # If specified, custom value for nucleus sampling will be used.
5914
- # Corresponds to the JSON property `topP`
5915
- # @return [Float]
5916
- attr_accessor :top_p
5917
-
5918
- def initialize(**args)
5919
- update!(**args)
5920
- end
5921
-
5922
- # Update properties of this object
5923
- def update!(**args)
5924
- @frequency_penalty = args[:frequency_penalty] if args.key?(:frequency_penalty)
5925
- @language_code = args[:language_code] if args.key?(:language_code)
5926
- @max_output_tokens = args[:max_output_tokens] if args.key?(:max_output_tokens)
5927
- @model_id = args[:model_id] if args.key?(:model_id)
5928
- @presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
5929
- @seed = args[:seed] if args.key?(:seed)
5930
- @temperature = args[:temperature] if args.key?(:temperature)
5931
- @top_k = args[:top_k] if args.key?(:top_k)
5932
- @top_p = args[:top_p] if args.key?(:top_p)
5933
- end
5934
- end
5935
-
5936
- # Grounding source.
5937
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource
5938
- include Google::Apis::Core::Hashable
5939
-
5940
- # Google Search config parameters.
5941
- # Corresponds to the JSON property `googleSearchSource`
5942
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource]
5943
- attr_accessor :google_search_source
5944
-
5945
- # Message to be used for grounding based on inline content.
5946
- # Corresponds to the JSON property `inlineSource`
5947
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource]
5948
- attr_accessor :inline_source
5949
-
5950
- # Message to be used for grounding with Vertex AI Search.
5951
- # Corresponds to the JSON property `searchSource`
5952
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource]
5953
- attr_accessor :search_source
5954
-
5955
- def initialize(**args)
5956
- update!(**args)
5957
- end
5958
-
5959
- # Update properties of this object
5960
- def update!(**args)
5961
- @google_search_source = args[:google_search_source] if args.key?(:google_search_source)
5962
- @inline_source = args[:inline_source] if args.key?(:inline_source)
5963
- @search_source = args[:search_source] if args.key?(:search_source)
5964
- end
5965
- end
5966
-
5967
- # Google Search config parameters.
5968
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceGoogleSearchSource
5969
- include Google::Apis::Core::Hashable
5970
-
5971
- # Describes the options to customize dynamic retrieval.
5972
- # Corresponds to the JSON property `dynamicRetrievalConfig`
5973
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestDynamicRetrievalConfiguration]
5974
- attr_accessor :dynamic_retrieval_config
5975
-
5976
- def initialize(**args)
5977
- update!(**args)
5978
- end
5979
-
5980
- # Update properties of this object
5981
- def update!(**args)
5982
- @dynamic_retrieval_config = args[:dynamic_retrieval_config] if args.key?(:dynamic_retrieval_config)
5983
- end
5984
- end
5985
-
5986
- # Message to be used for grounding based on inline content.
5987
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceInlineSource
5988
- include Google::Apis::Core::Hashable
5989
-
5990
- # Attributes associated with the content. Common attributes include `source` (
5991
- # indicating where the content was sourced from) and `author` (indicating the
5992
- # author of the content).
5993
- # Corresponds to the JSON property `attributes`
5994
- # @return [Hash<String,String>]
5995
- attr_accessor :attributes
5996
-
5997
- # List of facts to be used for grounding.
5998
- # Corresponds to the JSON property `groundingFacts`
5999
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundingFact>]
6000
- attr_accessor :grounding_facts
6001
-
6002
- def initialize(**args)
6003
- update!(**args)
6004
- end
6005
-
6006
- # Update properties of this object
6007
- def update!(**args)
6008
- @attributes = args[:attributes] if args.key?(:attributes)
6009
- @grounding_facts = args[:grounding_facts] if args.key?(:grounding_facts)
6010
- end
6011
- end
6012
-
6013
- # Message to be used for grounding with Vertex AI Search.
6014
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSourceSearchSource
6015
- include Google::Apis::Core::Hashable
6016
-
6017
- # Filter expression to be applied to the search. The syntax is the same as
6018
- # SearchRequest.filter.
6019
- # Corresponds to the JSON property `filter`
6020
- # @return [String]
6021
- attr_accessor :filter
6022
-
6023
- # Number of search results to return. The default value is 10. The maximumm
6024
- # allowed value is 10.
6025
- # Corresponds to the JSON property `maxResultCount`
6026
- # @return [Fixnum]
6027
- attr_accessor :max_result_count
6028
-
6029
- # If set, safe search is enabled in Vertex AI Search requests.
6030
- # Corresponds to the JSON property `safeSearch`
6031
- # @return [Boolean]
6032
- attr_accessor :safe_search
6033
- alias_method :safe_search?, :safe_search
6034
-
6035
- # The resource name of the Engine to use. Format: `projects/`project`/locations/`
6036
- # location`/collections/`collection_id`/engines/`engine_id`/servingConfigs/`
6037
- # serving_config_id``
6038
- # Corresponds to the JSON property `servingConfig`
6039
- # @return [String]
6040
- attr_accessor :serving_config
6041
-
6042
- def initialize(**args)
6043
- update!(**args)
6044
- end
6045
-
6046
- # Update properties of this object
6047
- def update!(**args)
6048
- @filter = args[:filter] if args.key?(:filter)
6049
- @max_result_count = args[:max_result_count] if args.key?(:max_result_count)
6050
- @safe_search = args[:safe_search] if args.key?(:safe_search)
6051
- @serving_config = args[:serving_config] if args.key?(:serving_config)
6052
- end
6053
- end
6054
-
6055
- # Grounding specification.
6056
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSpec
6057
- include Google::Apis::Core::Hashable
6058
-
6059
- # Grounding sources.
6060
- # Corresponds to the JSON property `groundingSources`
6061
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentRequestGroundingSource>]
6062
- attr_accessor :grounding_sources
6063
-
6064
- def initialize(**args)
6065
- update!(**args)
6066
- end
6067
-
6068
- # Update properties of this object
6069
- def update!(**args)
6070
- @grounding_sources = args[:grounding_sources] if args.key?(:grounding_sources)
6071
- end
6072
- end
6073
-
6074
- # Response for the `GenerateGroundedContent` method.
6075
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponse
6076
- include Google::Apis::Core::Hashable
6077
-
6078
- # Generated candidates.
6079
- # Corresponds to the JSON property `candidates`
6080
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate>]
6081
- attr_accessor :candidates
6082
-
6083
- def initialize(**args)
6084
- update!(**args)
6085
- end
6086
-
6087
- # Update properties of this object
6088
- def update!(**args)
6089
- @candidates = args[:candidates] if args.key?(:candidates)
6090
- end
6091
- end
6092
-
6093
- # A response candidate generated from the model.
6094
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidate
6095
- include Google::Apis::Core::Hashable
6096
-
6097
- # Base structured datatype containing multi-part content of a message.
6098
- # Corresponds to the JSON property `content`
6099
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContent]
6100
- attr_accessor :content
6101
-
6102
- # Citation for the generated content.
6103
- # Corresponds to the JSON property `groundingMetadata`
6104
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata]
6105
- attr_accessor :grounding_metadata
6106
-
6107
- # The overall grounding score for the candidate, in the range of [0, 1].
6108
- # Corresponds to the JSON property `groundingScore`
6109
- # @return [Float]
6110
- attr_accessor :grounding_score
6111
-
6112
- # Index of the candidate.
6113
- # Corresponds to the JSON property `index`
6114
- # @return [Fixnum]
6115
- attr_accessor :index
6116
-
6117
- def initialize(**args)
6118
- update!(**args)
6119
- end
6120
-
6121
- # Update properties of this object
6122
- def update!(**args)
6123
- @content = args[:content] if args.key?(:content)
6124
- @grounding_metadata = args[:grounding_metadata] if args.key?(:grounding_metadata)
6125
- @grounding_score = args[:grounding_score] if args.key?(:grounding_score)
6126
- @index = args[:index] if args.key?(:index)
6127
- end
6128
- end
6129
-
6130
- # Citation for the generated content.
6131
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadata
6132
- include Google::Apis::Core::Hashable
6133
-
6134
- # GroundingSupport across all claims in the answer candidate. An support to a
6135
- # fact indicates that the claim is supported by the fact.
6136
- # Corresponds to the JSON property `groundingSupport`
6137
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport>]
6138
- attr_accessor :grounding_support
6139
-
6140
- # Retrieval metadata to provide an understanding in the retrieval steps
6141
- # performed by the model. There can be multiple such messages which can
6142
- # correspond to different parts of the retrieval. This is a mechanism used to
6143
- # ensure transparency to our users.
6144
- # Corresponds to the JSON property `retrievalMetadata`
6145
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata>]
6146
- attr_accessor :retrieval_metadata
6147
-
6148
- # Google search entry point.
6149
- # Corresponds to the JSON property `searchEntryPoint`
6150
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint]
6151
- attr_accessor :search_entry_point
6152
-
6153
- # List of chunks to be attributed across all claims in the candidate. These are
6154
- # derived from the grounding sources supplied in the request.
6155
- # Corresponds to the JSON property `supportChunks`
6156
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1FactChunk>]
6157
- attr_accessor :support_chunks
6158
-
6159
- # Web search queries for the following-up web search.
6160
- # Corresponds to the JSON property `webSearchQueries`
6161
- # @return [Array<String>]
6162
- attr_accessor :web_search_queries
6163
-
6164
- def initialize(**args)
6165
- update!(**args)
6166
- end
6167
-
6168
- # Update properties of this object
6169
- def update!(**args)
6170
- @grounding_support = args[:grounding_support] if args.key?(:grounding_support)
6171
- @retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
6172
- @search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
6173
- @support_chunks = args[:support_chunks] if args.key?(:support_chunks)
6174
- @web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
6175
- end
6176
- end
6177
-
6178
- # Describes the metadata about dynamic retrieval.
6179
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata
6180
- include Google::Apis::Core::Hashable
6181
-
6182
- # Describes the metadata about the dynamic retrieval predictor.
6183
- # Corresponds to the JSON property `predictorMetadata`
6184
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata]
6185
- attr_accessor :predictor_metadata
6186
-
6187
- def initialize(**args)
6188
- update!(**args)
6189
- end
6190
-
6191
- # Update properties of this object
6192
- def update!(**args)
6193
- @predictor_metadata = args[:predictor_metadata] if args.key?(:predictor_metadata)
6194
- end
6195
- end
6196
-
6197
- # Describes the metadata about the dynamic retrieval predictor.
6198
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalPredictorMetadata
6199
- include Google::Apis::Core::Hashable
6200
-
6201
- # The value of the predictor. This should be between [0, 1] where a value of 0
6202
- # means that the query would not benefit from grounding, while a value of 1.0
6203
- # means that the query would benefit the most. In between values allow to
6204
- # differentiate between different usefulness scores for grounding.
6205
- # Corresponds to the JSON property `prediction`
6206
- # @return [Float]
6207
- attr_accessor :prediction
6208
-
6209
- # The version of the predictor which was used in dynamic retrieval.
6210
- # Corresponds to the JSON property `version`
6211
- # @return [String]
6212
- attr_accessor :version
6213
-
6214
- def initialize(**args)
6215
- update!(**args)
6216
- end
6217
-
6218
- # Update properties of this object
6219
- def update!(**args)
6220
- @prediction = args[:prediction] if args.key?(:prediction)
6221
- @version = args[:version] if args.key?(:version)
6222
- end
6223
- end
6224
-
6225
- # Grounding info for a claim in the candidate and its support.
6226
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataGroundingSupport
6227
- include Google::Apis::Core::Hashable
6228
-
6229
- # Text for the claim in the candidate. Always provided when a support is found.
6230
- # Corresponds to the JSON property `claimText`
6231
- # @return [String]
6232
- attr_accessor :claim_text
6233
-
6234
- # A list of indices (into 'support_chunks') specifying the citations associated
6235
- # with the claim. For instance [1,3,4] means that support_chunks[1],
6236
- # support_chunks[3], support_chunks[4] are the chunks attributed to the claim.
6237
- # Corresponds to the JSON property `supportChunkIndices`
6238
- # @return [Array<Fixnum>]
6239
- attr_accessor :support_chunk_indices
6240
-
6241
- # A score in the range of [0, 1] describing how grounded is a specific claim in
6242
- # the support chunks indicated. Higher value means that the claim is better
6243
- # supported by the chunks.
6244
- # Corresponds to the JSON property `supportScore`
6245
- # @return [Float]
6246
- attr_accessor :support_score
6247
-
6248
- def initialize(**args)
6249
- update!(**args)
6250
- end
6251
-
6252
- # Update properties of this object
6253
- def update!(**args)
6254
- @claim_text = args[:claim_text] if args.key?(:claim_text)
6255
- @support_chunk_indices = args[:support_chunk_indices] if args.key?(:support_chunk_indices)
6256
- @support_score = args[:support_score] if args.key?(:support_score)
6257
- end
6258
- end
6259
-
6260
- # Describes the metadata associated with a retrieval step.
6261
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataRetrievalMetadata
6262
- include Google::Apis::Core::Hashable
6263
-
6264
- # Describes the metadata about dynamic retrieval.
6265
- # Corresponds to the JSON property `dynamicRetrievalMetadata`
6266
- # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataDynamicRetrievalMetadata]
6267
- attr_accessor :dynamic_retrieval_metadata
6268
-
6269
- # Describes the source to which the metadata is referring to.
6270
- # Corresponds to the JSON property `source`
6271
- # @return [String]
6272
- attr_accessor :source
6273
-
6274
- def initialize(**args)
6275
- update!(**args)
6276
- end
6277
-
6278
- # Update properties of this object
6279
- def update!(**args)
6280
- @dynamic_retrieval_metadata = args[:dynamic_retrieval_metadata] if args.key?(:dynamic_retrieval_metadata)
6281
- @source = args[:source] if args.key?(:source)
6282
- end
6283
- end
6284
-
6285
- # Google search entry point.
6286
- class GoogleCloudDiscoveryengineV1GenerateGroundedContentResponseCandidateGroundingMetadataSearchEntryPoint
6287
- include Google::Apis::Core::Hashable
6288
-
6289
- # Web content snippet that can be embedded in a web page or an app webview.
6290
- # Corresponds to the JSON property `renderedContent`
6291
- # @return [String]
6292
- attr_accessor :rendered_content
6293
-
6294
- # Base64 encoded JSON representing array of tuple.
6295
- # Corresponds to the JSON property `sdkBlob`
6296
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
6297
- # @return [String]
6298
- attr_accessor :sdk_blob
6299
-
6300
- def initialize(**args)
6301
- update!(**args)
6302
- end
6303
-
6304
- # Update properties of this object
6305
- def update!(**args)
6306
- @rendered_content = args[:rendered_content] if args.key?(:rendered_content)
6307
- @sdk_blob = args[:sdk_blob] if args.key?(:sdk_blob)
6308
- end
6309
- end
6310
-
6311
- # Base structured datatype containing multi-part content of a message.
6312
- class GoogleCloudDiscoveryengineV1GroundedGenerationContent
6313
- include Google::Apis::Core::Hashable
6314
-
6315
- # Ordered `Parts` that constitute a single message.
6316
- # Corresponds to the JSON property `parts`
6317
- # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1GroundedGenerationContentPart>]
6318
- attr_accessor :parts
6319
-
6320
- # Producer of the content. Must be either `user` or `model`. Intended to be used
6321
- # for multi-turn conversations. Otherwise, it can be left unset.
6322
- # Corresponds to the JSON property `role`
6323
- # @return [String]
6324
- attr_accessor :role
6325
-
6326
- def initialize(**args)
6327
- update!(**args)
6328
- end
6329
-
6330
- # Update properties of this object
6331
- def update!(**args)
6332
- @parts = args[:parts] if args.key?(:parts)
6333
- @role = args[:role] if args.key?(:role)
6334
- end
6335
- end
6336
-
6337
- # Single part of content.
6338
- class GoogleCloudDiscoveryengineV1GroundedGenerationContentPart
6339
- include Google::Apis::Core::Hashable
6340
-
6341
- # Inline text.
6342
- # Corresponds to the JSON property `text`
6343
- # @return [String]
6344
- attr_accessor :text
6345
-
6346
- def initialize(**args)
6347
- update!(**args)
6348
- end
6349
-
6350
- # Update properties of this object
6351
- def update!(**args)
6352
- @text = args[:text] if args.key?(:text)
6353
- end
6354
- end
6355
-
6356
5775
  # Grounding Fact.
6357
5776
  class GoogleCloudDiscoveryengineV1GroundingFact
6358
5777
  include Google::Apis::Core::Hashable
@@ -8196,7 +7615,7 @@ module Google
8196
7615
  alias_method :ignore_record_details_in_response?, :ignore_record_details_in_response
8197
7616
 
8198
7617
  # The identifier of the model to use. It is one of: * `semantic-ranker-512@
8199
- # latest`: Semantic ranking model with maxiumn input token size 512. It is set
7618
+ # latest`: Semantic ranking model with maximum input token size 512. It is set
8200
7619
  # to `semantic-ranker-512@latest` by default if unspecified.
8201
7620
  # Corresponds to the JSON property `model`
8202
7621
  # @return [String]
@@ -8681,7 +8100,8 @@ module Google
8681
8100
  # @return [String]
8682
8101
  attr_accessor :title
8683
8102
 
8684
- # Required. The URL for the page the user wants to promote.
8103
+ # Optional. The URL for the page the user wants to promote. Must be set for site
8104
+ # search. For other verticals, this is optional.
8685
8105
  # Corresponds to the JSON property `uri`
8686
8106
  # @return [String]
8687
8107
  attr_accessor :uri
@@ -8734,14 +8154,19 @@ module Google
8734
8154
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestContentSearchSpec]
8735
8155
  attr_accessor :content_search_spec
8736
8156
 
8737
- # Specs defining DataStores to filter on in a search call and configurations for
8738
- # those data stores. This is only considered for Engines with multiple data
8739
- # stores. For engines with a single data store, the specs directly under
8740
- # SearchRequest should be used.
8157
+ # Specifications that define the specific [DataStore]s to be searched, along
8158
+ # with configurations for those data stores. This is only considered for Engines
8159
+ # with multiple data stores. For engines with a single data store, the specs
8160
+ # directly under SearchRequest should be used.
8741
8161
  # Corresponds to the JSON property `dataStoreSpecs`
8742
8162
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDataStoreSpec>]
8743
8163
  attr_accessor :data_store_specs
8744
8164
 
8165
+ # Specifies features for display, like match highlighting.
8166
+ # Corresponds to the JSON property `displaySpec`
8167
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec]
8168
+ attr_accessor :display_spec
8169
+
8745
8170
  # Facet specifications for faceted search. If empty, no facets are returned. A
8746
8171
  # maximum of 100 values are allowed. Otherwise, an `INVALID_ARGUMENT` error is
8747
8172
  # returned.
@@ -8942,6 +8367,7 @@ module Google
8942
8367
  @canonical_filter = args[:canonical_filter] if args.key?(:canonical_filter)
8943
8368
  @content_search_spec = args[:content_search_spec] if args.key?(:content_search_spec)
8944
8369
  @data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
8370
+ @display_spec = args[:display_spec] if args.key?(:display_spec)
8945
8371
  @facet_specs = args[:facet_specs] if args.key?(:facet_specs)
8946
8372
  @filter = args[:filter] if args.key?(:filter)
8947
8373
  @image_query = args[:image_query] if args.key?(:image_query)
@@ -9491,6 +8917,25 @@ module Google
9491
8917
  end
9492
8918
  end
9493
8919
 
8920
+ # Specifies features for display, like match highlighting.
8921
+ class GoogleCloudDiscoveryengineV1SearchRequestDisplaySpec
8922
+ include Google::Apis::Core::Hashable
8923
+
8924
+ # The condition under which match highlighting should occur.
8925
+ # Corresponds to the JSON property `matchHighlightingCondition`
8926
+ # @return [String]
8927
+ attr_accessor :match_highlighting_condition
8928
+
8929
+ def initialize(**args)
8930
+ update!(**args)
8931
+ end
8932
+
8933
+ # Update properties of this object
8934
+ def update!(**args)
8935
+ @match_highlighting_condition = args[:match_highlighting_condition] if args.key?(:match_highlighting_condition)
8936
+ end
8937
+ end
8938
+
9494
8939
  # A facet specification to perform faceted search.
9495
8940
  class GoogleCloudDiscoveryengineV1SearchRequestFacetSpec
9496
8941
  include Google::Apis::Core::Hashable
@@ -11654,6 +11099,56 @@ module Google
11654
11099
  end
11655
11100
  end
11656
11101
 
11102
+ # The connector level alert config.
11103
+ class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig
11104
+ include Google::Apis::Core::Hashable
11105
+
11106
+ # Optional. The enrollment states of each alert.
11107
+ # Corresponds to the JSON property `alertEnrollments`
11108
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment>]
11109
+ attr_accessor :alert_enrollments
11110
+
11111
+ # Immutable. The fully qualified resource name of the AlertPolicy.
11112
+ # Corresponds to the JSON property `alertPolicyName`
11113
+ # @return [String]
11114
+ attr_accessor :alert_policy_name
11115
+
11116
+ def initialize(**args)
11117
+ update!(**args)
11118
+ end
11119
+
11120
+ # Update properties of this object
11121
+ def update!(**args)
11122
+ @alert_enrollments = args[:alert_enrollments] if args.key?(:alert_enrollments)
11123
+ @alert_policy_name = args[:alert_policy_name] if args.key?(:alert_policy_name)
11124
+ end
11125
+ end
11126
+
11127
+ # The alert enrollment status.
11128
+ class GoogleCloudDiscoveryengineV1alphaAlertPolicyConfigAlertEnrollment
11129
+ include Google::Apis::Core::Hashable
11130
+
11131
+ # Immutable. The id of an alert.
11132
+ # Corresponds to the JSON property `alertId`
11133
+ # @return [String]
11134
+ attr_accessor :alert_id
11135
+
11136
+ # Required. The enrollment status of a customer.
11137
+ # Corresponds to the JSON property `enrollState`
11138
+ # @return [String]
11139
+ attr_accessor :enroll_state
11140
+
11141
+ def initialize(**args)
11142
+ update!(**args)
11143
+ end
11144
+
11145
+ # Update properties of this object
11146
+ def update!(**args)
11147
+ @alert_id = args[:alert_id] if args.key?(:alert_id)
11148
+ @enroll_state = args[:enroll_state] if args.key?(:enroll_state)
11149
+ end
11150
+ end
11151
+
11657
11152
  # Defines an answer.
11658
11153
  class GoogleCloudDiscoveryengineV1alphaAnswer
11659
11154
  include Google::Apis::Core::Hashable
@@ -12715,6 +12210,11 @@ module Google
12715
12210
  # @return [Fixnum]
12716
12211
  attr_accessor :indexed_record_count
12717
12212
 
12213
+ # Represents the progress of a sync run.
12214
+ # Corresponds to the JSON property `progress`
12215
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress]
12216
+ attr_accessor :progress
12217
+
12718
12218
  # The number of requests sent to 3p API.
12719
12219
  # Corresponds to the JSON property `sourceApiRequestCount`
12720
12220
  # @return [Fixnum]
@@ -12753,6 +12253,7 @@ module Google
12753
12253
  @errors = args[:errors] if args.key?(:errors)
12754
12254
  @extracted_record_count = args[:extracted_record_count] if args.key?(:extracted_record_count)
12755
12255
  @indexed_record_count = args[:indexed_record_count] if args.key?(:indexed_record_count)
12256
+ @progress = args[:progress] if args.key?(:progress)
12756
12257
  @source_api_request_count = args[:source_api_request_count] if args.key?(:source_api_request_count)
12757
12258
  @state = args[:state] if args.key?(:state)
12758
12259
  @state_update_time = args[:state_update_time] if args.key?(:state_update_time)
@@ -12761,6 +12262,38 @@ module Google
12761
12262
  end
12762
12263
  end
12763
12264
 
12265
+ # Represents the progress of a sync run.
12266
+ class GoogleCloudDiscoveryengineV1alphaConnectorRunEntityRunProgress
12267
+ include Google::Apis::Core::Hashable
12268
+
12269
+ # The current progress.
12270
+ # Corresponds to the JSON property `currentCount`
12271
+ # @return [Fixnum]
12272
+ attr_accessor :current_count
12273
+
12274
+ # Derived. The percentile of the progress.current_count / total_count. The value
12275
+ # is between [0, 1.0] inclusive.
12276
+ # Corresponds to the JSON property `percentile`
12277
+ # @return [Float]
12278
+ attr_accessor :percentile
12279
+
12280
+ # The total.
12281
+ # Corresponds to the JSON property `totalCount`
12282
+ # @return [Fixnum]
12283
+ attr_accessor :total_count
12284
+
12285
+ def initialize(**args)
12286
+ update!(**args)
12287
+ end
12288
+
12289
+ # Update properties of this object
12290
+ def update!(**args)
12291
+ @current_count = args[:current_count] if args.key?(:current_count)
12292
+ @percentile = args[:percentile] if args.key?(:percentile)
12293
+ @total_count = args[:total_count] if args.key?(:total_count)
12294
+ end
12295
+ end
12296
+
12764
12297
  # Defines a conditioned behavior to employ during serving. Must be attached to a
12765
12298
  # ServingConfig to be considered at serving time. Permitted actions dependent on
12766
12299
  # `SolutionType`.
@@ -13291,6 +12824,11 @@ module Google
13291
12824
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaActionConfig]
13292
12825
  attr_accessor :action_config
13293
12826
 
12827
+ # Optional. The connector level alert config.
12828
+ # Corresponds to the JSON property `alertPolicyConfigs`
12829
+ # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaAlertPolicyConfig>]
12830
+ attr_accessor :alert_policy_configs
12831
+
13294
12832
  # Indicates whether the connector is disabled for auto run. It can be used to
13295
12833
  # pause periodical and real time sync.
13296
12834
  # Corresponds to the JSON property `autoRunDisabled`
@@ -13309,6 +12847,13 @@ module Google
13309
12847
  # @return [Array<String>]
13310
12848
  attr_accessor :blocking_reasons
13311
12849
 
12850
+ # Output only. The type of connector. Each source can only map to one type. For
12851
+ # example, salesforce, confluence and jira have THIRD_PARTY connector type. It
12852
+ # is notmutable once set by system.
12853
+ # Corresponds to the JSON property `connectorType`
12854
+ # @return [String]
12855
+ attr_accessor :connector_type
12856
+
13312
12857
  # Output only. Timestamp the DataConnector was created at.
13313
12858
  # Corresponds to the JSON property `createTime`
13314
12859
  # @return [String]
@@ -13428,6 +12973,11 @@ module Google
13428
12973
  # @return [String]
13429
12974
  attr_accessor :private_connectivity_project_id
13430
12975
 
12976
+ # Output only. real-time sync state
12977
+ # Corresponds to the JSON property `realtimeState`
12978
+ # @return [String]
12979
+ attr_accessor :realtime_state
12980
+
13431
12981
  # Required. The refresh interval for data sync. If duration is set to 0, the
13432
12982
  # data will be synced in real time. The streaming feature is not supported yet.
13433
12983
  # The minimum is 30 minutes and maximum is 7 days.
@@ -13468,9 +13018,11 @@ module Google
13468
13018
  # Update properties of this object
13469
13019
  def update!(**args)
13470
13020
  @action_config = args[:action_config] if args.key?(:action_config)
13021
+ @alert_policy_configs = args[:alert_policy_configs] if args.key?(:alert_policy_configs)
13471
13022
  @auto_run_disabled = args[:auto_run_disabled] if args.key?(:auto_run_disabled)
13472
13023
  @bap_config = args[:bap_config] if args.key?(:bap_config)
13473
13024
  @blocking_reasons = args[:blocking_reasons] if args.key?(:blocking_reasons)
13025
+ @connector_type = args[:connector_type] if args.key?(:connector_type)
13474
13026
  @create_time = args[:create_time] if args.key?(:create_time)
13475
13027
  @data_source = args[:data_source] if args.key?(:data_source)
13476
13028
  @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
@@ -13485,6 +13037,7 @@ module Google
13485
13037
  @next_sync_time = args[:next_sync_time] if args.key?(:next_sync_time)
13486
13038
  @params = args[:params] if args.key?(:params)
13487
13039
  @private_connectivity_project_id = args[:private_connectivity_project_id] if args.key?(:private_connectivity_project_id)
13040
+ @realtime_state = args[:realtime_state] if args.key?(:realtime_state)
13488
13041
  @refresh_interval = args[:refresh_interval] if args.key?(:refresh_interval)
13489
13042
  @state = args[:state] if args.key?(:state)
13490
13043
  @static_ip_addresses = args[:static_ip_addresses] if args.key?(:static_ip_addresses)
@@ -13800,11 +13353,21 @@ module Google
13800
13353
  class GoogleCloudDiscoveryengineV1alphaDedicatedCrawlRateTimeSeries
13801
13354
  include Google::Apis::Core::Hashable
13802
13355
 
13356
+ # The historical crawl rate timeseries data, used for monitoring.
13357
+ # Corresponds to the JSON property `autoRefreshCrawlErrorRate`
13358
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13359
+ attr_accessor :auto_refresh_crawl_error_rate
13360
+
13803
13361
  # The historical crawl rate timeseries data, used for monitoring.
13804
13362
  # Corresponds to the JSON property `autoRefreshCrawlRate`
13805
13363
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13806
13364
  attr_accessor :auto_refresh_crawl_rate
13807
13365
 
13366
+ # The historical crawl rate timeseries data, used for monitoring.
13367
+ # Corresponds to the JSON property `userTriggeredCrawlErrorRate`
13368
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
13369
+ attr_accessor :user_triggered_crawl_error_rate
13370
+
13808
13371
  # The historical crawl rate timeseries data, used for monitoring.
13809
13372
  # Corresponds to the JSON property `userTriggeredCrawlRate`
13810
13373
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCrawlRateTimeSeries]
@@ -13816,7 +13379,9 @@ module Google
13816
13379
 
13817
13380
  # Update properties of this object
13818
13381
  def update!(**args)
13382
+ @auto_refresh_crawl_error_rate = args[:auto_refresh_crawl_error_rate] if args.key?(:auto_refresh_crawl_error_rate)
13819
13383
  @auto_refresh_crawl_rate = args[:auto_refresh_crawl_rate] if args.key?(:auto_refresh_crawl_rate)
13384
+ @user_triggered_crawl_error_rate = args[:user_triggered_crawl_error_rate] if args.key?(:user_triggered_crawl_error_rate)
13820
13385
  @user_triggered_crawl_rate = args[:user_triggered_crawl_rate] if args.key?(:user_triggered_crawl_rate)
13821
13386
  end
13822
13387
  end
@@ -16734,7 +16299,8 @@ module Google
16734
16299
  # @return [String]
16735
16300
  attr_accessor :title
16736
16301
 
16737
- # Required. The URL for the page the user wants to promote.
16302
+ # Optional. The URL for the page the user wants to promote. Must be set for site
16303
+ # search. For other verticals, this is optional.
16738
16304
  # Corresponds to the JSON property `uri`
16739
16305
  # @return [String]
16740
16306
  attr_accessor :uri
@@ -16792,10 +16358,10 @@ module Google
16792
16358
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaCustomFineTuningSpec]
16793
16359
  attr_accessor :custom_fine_tuning_spec
16794
16360
 
16795
- # Specs defining DataStores to filter on in a search call and configurations for
16796
- # those data stores. This is only considered for Engines with multiple data
16797
- # stores. For engines with a single data store, the specs directly under
16798
- # SearchRequest should be used.
16361
+ # Specifications that define the specific [DataStore]s to be searched, along
16362
+ # with configurations for those data stores. This is only considered for Engines
16363
+ # with multiple data stores. For engines with a single data store, the specs
16364
+ # directly under SearchRequest should be used.
16799
16365
  # Corresponds to the JSON property `dataStoreSpecs`
16800
16366
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestDataStoreSpec>]
16801
16367
  attr_accessor :data_store_specs
@@ -19727,11 +19293,21 @@ module Google
19727
19293
  class GoogleCloudDiscoveryengineV1betaDedicatedCrawlRateTimeSeries
19728
19294
  include Google::Apis::Core::Hashable
19729
19295
 
19296
+ # The historical crawl rate timeseries data, used for monitoring.
19297
+ # Corresponds to the JSON property `autoRefreshCrawlErrorRate`
19298
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19299
+ attr_accessor :auto_refresh_crawl_error_rate
19300
+
19730
19301
  # The historical crawl rate timeseries data, used for monitoring.
19731
19302
  # Corresponds to the JSON property `autoRefreshCrawlRate`
19732
19303
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19733
19304
  attr_accessor :auto_refresh_crawl_rate
19734
19305
 
19306
+ # The historical crawl rate timeseries data, used for monitoring.
19307
+ # Corresponds to the JSON property `userTriggeredCrawlErrorRate`
19308
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
19309
+ attr_accessor :user_triggered_crawl_error_rate
19310
+
19735
19311
  # The historical crawl rate timeseries data, used for monitoring.
19736
19312
  # Corresponds to the JSON property `userTriggeredCrawlRate`
19737
19313
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaCrawlRateTimeSeries]
@@ -19743,7 +19319,9 @@ module Google
19743
19319
 
19744
19320
  # Update properties of this object
19745
19321
  def update!(**args)
19322
+ @auto_refresh_crawl_error_rate = args[:auto_refresh_crawl_error_rate] if args.key?(:auto_refresh_crawl_error_rate)
19746
19323
  @auto_refresh_crawl_rate = args[:auto_refresh_crawl_rate] if args.key?(:auto_refresh_crawl_rate)
19324
+ @user_triggered_crawl_error_rate = args[:user_triggered_crawl_error_rate] if args.key?(:user_triggered_crawl_error_rate)
19747
19325
  @user_triggered_crawl_rate = args[:user_triggered_crawl_rate] if args.key?(:user_triggered_crawl_rate)
19748
19326
  end
19749
19327
  end
@@ -21607,7 +21185,8 @@ module Google
21607
21185
  # @return [String]
21608
21186
  attr_accessor :title
21609
21187
 
21610
- # Required. The URL for the page the user wants to promote.
21188
+ # Optional. The URL for the page the user wants to promote. Must be set for site
21189
+ # search. For other verticals, this is optional.
21611
21190
  # Corresponds to the JSON property `uri`
21612
21191
  # @return [String]
21613
21192
  attr_accessor :uri
@@ -21660,14 +21239,19 @@ module Google
21660
21239
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestContentSearchSpec]
21661
21240
  attr_accessor :content_search_spec
21662
21241
 
21663
- # Specs defining DataStores to filter on in a search call and configurations for
21664
- # those data stores. This is only considered for Engines with multiple data
21665
- # stores. For engines with a single data store, the specs directly under
21666
- # SearchRequest should be used.
21242
+ # Specifications that define the specific [DataStore]s to be searched, along
21243
+ # with configurations for those data stores. This is only considered for Engines
21244
+ # with multiple data stores. For engines with a single data store, the specs
21245
+ # directly under SearchRequest should be used.
21667
21246
  # Corresponds to the JSON property `dataStoreSpecs`
21668
21247
  # @return [Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDataStoreSpec>]
21669
21248
  attr_accessor :data_store_specs
21670
21249
 
21250
+ # Specifies features for display, like match highlighting.
21251
+ # Corresponds to the JSON property `displaySpec`
21252
+ # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec]
21253
+ attr_accessor :display_spec
21254
+
21671
21255
  # The specification that uses customized query embedding vector to do semantic
21672
21256
  # document retrieval.
21673
21257
  # Corresponds to the JSON property `embeddingSpec`
@@ -21939,6 +21523,7 @@ module Google
21939
21523
  @canonical_filter = args[:canonical_filter] if args.key?(:canonical_filter)
21940
21524
  @content_search_spec = args[:content_search_spec] if args.key?(:content_search_spec)
21941
21525
  @data_store_specs = args[:data_store_specs] if args.key?(:data_store_specs)
21526
+ @display_spec = args[:display_spec] if args.key?(:display_spec)
21942
21527
  @embedding_spec = args[:embedding_spec] if args.key?(:embedding_spec)
21943
21528
  @facet_specs = args[:facet_specs] if args.key?(:facet_specs)
21944
21529
  @filter = args[:filter] if args.key?(:filter)
@@ -22495,6 +22080,25 @@ module Google
22495
22080
  end
22496
22081
  end
22497
22082
 
22083
+ # Specifies features for display, like match highlighting.
22084
+ class GoogleCloudDiscoveryengineV1betaSearchRequestDisplaySpec
22085
+ include Google::Apis::Core::Hashable
22086
+
22087
+ # The condition under which match highlighting should occur.
22088
+ # Corresponds to the JSON property `matchHighlightingCondition`
22089
+ # @return [String]
22090
+ attr_accessor :match_highlighting_condition
22091
+
22092
+ def initialize(**args)
22093
+ update!(**args)
22094
+ end
22095
+
22096
+ # Update properties of this object
22097
+ def update!(**args)
22098
+ @match_highlighting_condition = args[:match_highlighting_condition] if args.key?(:match_highlighting_condition)
22099
+ end
22100
+ end
22101
+
22498
22102
  # The specification that uses customized query embedding vector to do semantic
22499
22103
  # document retrieval.
22500
22104
  class GoogleCloudDiscoveryengineV1betaSearchRequestEmbeddingSpec