google-apis-discoveryengine_v1 0.40.0 → 0.42.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d885baa0b0af9d379d0ce9ec0a93dc5d826fd9d23d768624d0328a32a35a99d6
4
- data.tar.gz: b081a42fe23c24550ff11d7d659298e0f32c3501b383a20fc36b3f7e15fcc7c9
3
+ metadata.gz: a861b647cc66eb13779798a55ed4885b3a312a9dd3a114c2ee2f0dbf844d25f5
4
+ data.tar.gz: 92297101f649afbe5ce79ecaac1b48d4006ead2a2107b6b8bfb2b5006afd0c7b
5
5
  SHA512:
6
- metadata.gz: 67dbf32f0e594a2e4d5d5a251bb32ccf599e146cf5c0436e47ce63c76dfea4ebf3728f862a59ea90ee6da6cd8c1facb20ffddd196becb3bb393ad9a8b8bcc83e
7
- data.tar.gz: 5e49108f8999ff3e757d88c258eaa79cc49dcbe109ba51a17731bb1a3cc160d7cbbcacc1a465431a0e1b46a313a29259de3d2808a8f8b9ece02f63c1fe35606b
6
+ metadata.gz: 8e63003fc3eee5b006fa983d39501620141d89d30d0783d7a043a130f0b2414ad2f5620c6565a58e1d5526d9bbebd96c79ae8a9b9d08abb7e558b33d57633ab3
7
+ data.tar.gz: d572164b4b8b06babb1227a50204a3b6244e99f14a3ec7a13ed49c6b242b771bcd8bbdf7ec0af9a0ee53a0fc2a959925c7bfaaf6dbd219378ccf513adc02e49f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.42.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250617
6
+
7
+ ### v0.41.0 (2025-06-15)
8
+
9
+ * Regenerated from discovery document revision 20250609
10
+
3
11
  ### v0.40.0 (2025-06-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20250604
@@ -7693,6 +7693,12 @@ module Google
7693
7693
  class GoogleCloudDiscoveryengineV1Principal
7694
7694
  include Google::Apis::Core::Hashable
7695
7695
 
7696
+ # For 3P application identities which are not present in the customer identity
7697
+ # provider.
7698
+ # Corresponds to the JSON property `externalEntityId`
7699
+ # @return [String]
7700
+ attr_accessor :external_entity_id
7701
+
7696
7702
  # Group identifier. For Google Workspace user account, group_id should be the
7697
7703
  # google workspace group email. For non-google identity provider user account,
7698
7704
  # group_id is the mapped group identifier configured during the workforcepool
@@ -7715,6 +7721,7 @@ module Google
7715
7721
 
7716
7722
  # Update properties of this object
7717
7723
  def update!(**args)
7724
+ @external_entity_id = args[:external_entity_id] if args.key?(:external_entity_id)
7718
7725
  @group_id = args[:group_id] if args.key?(:group_id)
7719
7726
  @user_id = args[:user_id] if args.key?(:user_id)
7720
7727
  end
@@ -8255,7 +8262,7 @@ module Google
8255
8262
  class GoogleCloudDiscoveryengineV1Query
8256
8263
  include Google::Apis::Core::Hashable
8257
8264
 
8258
- # Unique Id for the query.
8265
+ # Output only. Unique Id for the query.
8259
8266
  # Corresponds to the JSON property `queryId`
8260
8267
  # @return [String]
8261
8268
  attr_accessor :query_id
@@ -10744,8 +10751,8 @@ module Google
10744
10751
  class GoogleCloudDiscoveryengineV1SessionTurn
10745
10752
  include Google::Apis::Core::Hashable
10746
10753
 
10747
- # The resource name of the answer to the user query. Only set if the answer
10748
- # generation (/answer API call) happened in this turn.
10754
+ # Optional. The resource name of the answer to the user query. Only set if the
10755
+ # answer generation (/answer API call) happened in this turn.
10749
10756
  # Corresponds to the JSON property `answer`
10750
10757
  # @return [String]
10751
10758
  attr_accessor :answer
@@ -10762,16 +10769,10 @@ module Google
10762
10769
 
10763
10770
  # Optional. Represents metadata related to the query config, for example LLM
10764
10771
  # model and version used, model parameters (temperature, grounding parameters,
10765
- # etc.). We don't want to import directly the [AnswerGenerationSpec] structure
10766
- # as this will serve a more general purpose and a wider set of customers. This
10767
- # information is used in particular when rendering alternative answers to the
10768
- # same prompt, providing visual information about how each answer was generated.
10769
- # The prefix "google." will be reserved for the key, and 1P services (Answer,
10770
- # Assistant, etc.) should always store their information with "google..". 3P
10771
- # services can use anything not starting with "google."
10772
- # Corresponds to the JSON property `queryConfigs`
10772
+ # etc.). The prefix "google." is reserved for Google-developed functionality.
10773
+ # Corresponds to the JSON property `queryConfig`
10773
10774
  # @return [Hash<String,String>]
10774
- attr_accessor :query_configs
10775
+ attr_accessor :query_config
10775
10776
 
10776
10777
  def initialize(**args)
10777
10778
  update!(**args)
@@ -10782,7 +10783,7 @@ module Google
10782
10783
  @answer = args[:answer] if args.key?(:answer)
10783
10784
  @detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
10784
10785
  @query = args[:query] if args.key?(:query)
10785
- @query_configs = args[:query_configs] if args.key?(:query_configs)
10786
+ @query_config = args[:query_config] if args.key?(:query_config)
10786
10787
  end
10787
10788
  end
10788
10789
 
@@ -17107,7 +17108,7 @@ module Google
17107
17108
  class GoogleCloudDiscoveryengineV1alphaQuery
17108
17109
  include Google::Apis::Core::Hashable
17109
17110
 
17110
- # Unique Id for the query.
17111
+ # Output only. Unique Id for the query.
17111
17112
  # Corresponds to the JSON property `queryId`
17112
17113
  # @return [String]
17113
17114
  attr_accessor :query_id
@@ -17670,34 +17671,55 @@ module Google
17670
17671
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec]
17671
17672
  attr_accessor :query_expansion_spec
17672
17673
 
17673
- # The ranking expression controls the customized ranking on retrieval documents.
17674
- # This overrides ServingConfig.ranking_expression. The syntax and supported
17675
- # features depend on the ranking_expression_backend value. If
17676
- # ranking_expression_backend is not provided, it defaults to BYOE. === BYOE ===
17677
- # If ranking_expression_backend is not provided or set to `BYOE`, it should be a
17678
- # single function or multiple functions that are joined by "+". *
17674
+ # Optional. The ranking expression controls the customized ranking on retrieval
17675
+ # documents. This overrides ServingConfig.ranking_expression. The syntax and
17676
+ # supported features depend on the `ranking_expression_backend` value. If `
17677
+ # ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
17678
+ # . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
17679
+ # it should be a single function or multiple functions that are joined by "+". *
17679
17680
  # ranking_expression = function, ` " + ", function `; Supported functions: *
17680
17681
  # double * relevance_score * double * dotProduct(embedding_field_path) Function
17681
17682
  # variables: * `relevance_score`: pre-defined keywords, used for measure
17682
17683
  # relevance between query and document. * `embedding_field_path`: the document
17683
17684
  # embedding field used with query embedding vector. * `dotProduct`: embedding
17684
- # function between embedding_field_path and query embedding vector. Example
17685
+ # function between `embedding_field_path` and query embedding vector. Example
17685
17686
  # ranking expression: If document has an embedding field doc_embedding, the
17686
17687
  # ranking expression could be `0.5 * relevance_score + 0.3 * dotProduct(
17687
- # doc_embedding)`. === CLEARBOX === If ranking_expression_backend is set to `
17688
- # CLEARBOX`, the following expression types (and combinations of those chained
17689
- # using + or * operators) are supported: * double * signal * log(signal) * exp(
17690
- # signal) * rr(signal, double > 0) -- reciprocal rank transformation with second
17691
- # argument being a denominator constant. * is_nan(signal) -- returns 0 if signal
17692
- # is NaN, 1 otherwise. * fill_nan(signal1, signal2 | double) -- if signal1 is
17693
- # NaN, returns signal2 | double, else returns signal1. Examples: * 0.2 *
17694
- # gecko_score + 0.8 * log(bm25_score) * 0.2 * exp(fill_nan(gecko_score, 0)) + 0.
17695
- # 3 * is_nan(bm25_score) * 0.2 * rr(gecko_score, 16) + 0.8 * rr(bm25_score, 32)
17696
- # The following signals are supported: * gecko_score -- semantic similarity
17697
- # adjustment * bm25_score -- keyword match adjustment * jetstream_score --
17698
- # semantic relevance adjustment * pctr_rank -- predicted conversion rate
17699
- # adjustment as a rank * freshness_rank -- freshness adjustment as a rank *
17700
- # base_rank -- the default rank of the result
17688
+ # doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
17689
+ # the following expression types (and combinations of those chained using + or *
17690
+ # operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
17691
+ # * `rr(signal, double > 0)` -- reciprocal rank transformation with second
17692
+ # argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
17693
+ # signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
17694
+ # signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
17695
+ # examples of ranking formulas that use the supported ranking expression types: -
17696
+ # `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
17697
+ # mostly rank by the logarithm of `keyword_similarity_score` with slight `
17698
+ # semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
17699
+ # semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
17700
+ # rank by the exponent of `semantic_similarity_score` filling the value with 0
17701
+ # if it's NaN, also add constant 0.3 adjustment to the final score if `
17702
+ # semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
17703
+ # 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
17704
+ # of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
17705
+ # semantic_smilarity_score`. The following signals are supported: * `
17706
+ # semantic_similarity_score`: semantic similarity adjustment that is calculated
17707
+ # using the embeddings generated by a proprietary Google model. This score
17708
+ # determines how semantically similar a search query is to a document. * `
17709
+ # keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
17710
+ # BM25) ranking function. This score is calculated using a probabilistic model
17711
+ # to estimate the probability that a document is relevant to a given query. * `
17712
+ # relevance_score`: semantic relevance adjustment that uses a proprietary Google
17713
+ # model to determine the meaning and intent behind a user's query in context
17714
+ # with the content in the documents. * `pctr_rank`: predicted conversion rate
17715
+ # adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
17716
+ # relevance and attractiveness of a search result from a user's perspective. A
17717
+ # higher pCTR suggests that the result is more likely to satisfy the user's
17718
+ # query and intent, making it a valuable signal for ranking. * `freshness_rank`:
17719
+ # freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
17720
+ # rank. Uses proprietary Google model to determine the keyword-based overlap
17721
+ # between the query and the document. * `base_rank`: the default rank of the
17722
+ # result
17701
17723
  # Corresponds to the JSON property `rankingExpression`
17702
17724
  # @return [String]
17703
17725
  attr_accessor :ranking_expression
@@ -17782,6 +17804,15 @@ module Google
17782
17804
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec]
17783
17805
  attr_accessor :spell_correction_spec
17784
17806
 
17807
+ # Uses the Engine, ServingConfig and Control freshly read from the database.
17808
+ # Note: this skips config cache and introduces dependency on databases, which
17809
+ # could significantly increase the API latency. It should only be used for
17810
+ # testing, but not serving end users.
17811
+ # Corresponds to the JSON property `useLatestData`
17812
+ # @return [Boolean]
17813
+ attr_accessor :use_latest_data
17814
+ alias_method :use_latest_data?, :use_latest_data
17815
+
17785
17816
  # Information of an end user.
17786
17817
  # Corresponds to the JSON property `userInfo`
17787
17818
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaUserInfo]
@@ -17853,6 +17884,7 @@ module Google
17853
17884
  @session = args[:session] if args.key?(:session)
17854
17885
  @session_spec = args[:session_spec] if args.key?(:session_spec)
17855
17886
  @spell_correction_spec = args[:spell_correction_spec] if args.key?(:spell_correction_spec)
17887
+ @use_latest_data = args[:use_latest_data] if args.key?(:use_latest_data)
17856
17888
  @user_info = args[:user_info] if args.key?(:user_info)
17857
17889
  @user_labels = args[:user_labels] if args.key?(:user_labels)
17858
17890
  @user_pseudo_id = args[:user_pseudo_id] if args.key?(:user_pseudo_id)
@@ -18902,8 +18934,8 @@ module Google
18902
18934
  class GoogleCloudDiscoveryengineV1alphaSessionTurn
18903
18935
  include Google::Apis::Core::Hashable
18904
18936
 
18905
- # The resource name of the answer to the user query. Only set if the answer
18906
- # generation (/answer API call) happened in this turn.
18937
+ # Optional. The resource name of the answer to the user query. Only set if the
18938
+ # answer generation (/answer API call) happened in this turn.
18907
18939
  # Corresponds to the JSON property `answer`
18908
18940
  # @return [String]
18909
18941
  attr_accessor :answer
@@ -18920,16 +18952,10 @@ module Google
18920
18952
 
18921
18953
  # Optional. Represents metadata related to the query config, for example LLM
18922
18954
  # model and version used, model parameters (temperature, grounding parameters,
18923
- # etc.). We don't want to import directly the [AnswerGenerationSpec] structure
18924
- # as this will serve a more general purpose and a wider set of customers. This
18925
- # information is used in particular when rendering alternative answers to the
18926
- # same prompt, providing visual information about how each answer was generated.
18927
- # The prefix "google." will be reserved for the key, and 1P services (Answer,
18928
- # Assistant, etc.) should always store their information with "google..". 3P
18929
- # services can use anything not starting with "google."
18930
- # Corresponds to the JSON property `queryConfigs`
18955
+ # etc.). The prefix "google." is reserved for Google-developed functionality.
18956
+ # Corresponds to the JSON property `queryConfig`
18931
18957
  # @return [Hash<String,String>]
18932
- attr_accessor :query_configs
18958
+ attr_accessor :query_config
18933
18959
 
18934
18960
  def initialize(**args)
18935
18961
  update!(**args)
@@ -18940,7 +18966,7 @@ module Google
18940
18966
  @answer = args[:answer] if args.key?(:answer)
18941
18967
  @detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
18942
18968
  @query = args[:query] if args.key?(:query)
18943
- @query_configs = args[:query_configs] if args.key?(:query_configs)
18969
+ @query_config = args[:query_config] if args.key?(:query_config)
18944
18970
  end
18945
18971
  end
18946
18972
 
@@ -22971,34 +22997,55 @@ module Google
22971
22997
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec]
22972
22998
  attr_accessor :query_expansion_spec
22973
22999
 
22974
- # The ranking expression controls the customized ranking on retrieval documents.
22975
- # This overrides ServingConfig.ranking_expression. The syntax and supported
22976
- # features depend on the ranking_expression_backend value. If
22977
- # ranking_expression_backend is not provided, it defaults to BYOE. === BYOE ===
22978
- # If ranking_expression_backend is not provided or set to `BYOE`, it should be a
22979
- # single function or multiple functions that are joined by "+". *
23000
+ # Optional. The ranking expression controls the customized ranking on retrieval
23001
+ # documents. This overrides ServingConfig.ranking_expression. The syntax and
23002
+ # supported features depend on the `ranking_expression_backend` value. If `
23003
+ # ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
23004
+ # . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
23005
+ # it should be a single function or multiple functions that are joined by "+". *
22980
23006
  # ranking_expression = function, ` " + ", function `; Supported functions: *
22981
23007
  # double * relevance_score * double * dotProduct(embedding_field_path) Function
22982
23008
  # variables: * `relevance_score`: pre-defined keywords, used for measure
22983
23009
  # relevance between query and document. * `embedding_field_path`: the document
22984
23010
  # embedding field used with query embedding vector. * `dotProduct`: embedding
22985
- # function between embedding_field_path and query embedding vector. Example
23011
+ # function between `embedding_field_path` and query embedding vector. Example
22986
23012
  # ranking expression: If document has an embedding field doc_embedding, the
22987
23013
  # ranking expression could be `0.5 * relevance_score + 0.3 * dotProduct(
22988
- # doc_embedding)`. === CLEARBOX === If ranking_expression_backend is set to `
22989
- # CLEARBOX`, the following expression types (and combinations of those chained
22990
- # using + or * operators) are supported: * double * signal * log(signal) * exp(
22991
- # signal) * rr(signal, double > 0) -- reciprocal rank transformation with second
22992
- # argument being a denominator constant. * is_nan(signal) -- returns 0 if signal
22993
- # is NaN, 1 otherwise. * fill_nan(signal1, signal2 | double) -- if signal1 is
22994
- # NaN, returns signal2 | double, else returns signal1. Examples: * 0.2 *
22995
- # gecko_score + 0.8 * log(bm25_score) * 0.2 * exp(fill_nan(gecko_score, 0)) + 0.
22996
- # 3 * is_nan(bm25_score) * 0.2 * rr(gecko_score, 16) + 0.8 * rr(bm25_score, 32)
22997
- # The following signals are supported: * gecko_score -- semantic similarity
22998
- # adjustment * bm25_score -- keyword match adjustment * jetstream_score --
22999
- # semantic relevance adjustment * pctr_rank -- predicted conversion rate
23000
- # adjustment as a rank * freshness_rank -- freshness adjustment as a rank *
23001
- # base_rank -- the default rank of the result
23014
+ # doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
23015
+ # the following expression types (and combinations of those chained using + or *
23016
+ # operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
23017
+ # * `rr(signal, double > 0)` -- reciprocal rank transformation with second
23018
+ # argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
23019
+ # signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
23020
+ # signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
23021
+ # examples of ranking formulas that use the supported ranking expression types: -
23022
+ # `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
23023
+ # mostly rank by the logarithm of `keyword_similarity_score` with slight `
23024
+ # semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
23025
+ # semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
23026
+ # rank by the exponent of `semantic_similarity_score` filling the value with 0
23027
+ # if it's NaN, also add constant 0.3 adjustment to the final score if `
23028
+ # semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
23029
+ # 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
23030
+ # of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
23031
+ # semantic_smilarity_score`. The following signals are supported: * `
23032
+ # semantic_similarity_score`: semantic similarity adjustment that is calculated
23033
+ # using the embeddings generated by a proprietary Google model. This score
23034
+ # determines how semantically similar a search query is to a document. * `
23035
+ # keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
23036
+ # BM25) ranking function. This score is calculated using a probabilistic model
23037
+ # to estimate the probability that a document is relevant to a given query. * `
23038
+ # relevance_score`: semantic relevance adjustment that uses a proprietary Google
23039
+ # model to determine the meaning and intent behind a user's query in context
23040
+ # with the content in the documents. * `pctr_rank`: predicted conversion rate
23041
+ # adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
23042
+ # relevance and attractiveness of a search result from a user's perspective. A
23043
+ # higher pCTR suggests that the result is more likely to satisfy the user's
23044
+ # query and intent, making it a valuable signal for ranking. * `freshness_rank`:
23045
+ # freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
23046
+ # rank. Uses proprietary Google model to determine the keyword-based overlap
23047
+ # between the query and the document. * `base_rank`: the default rank of the
23048
+ # result
23002
23049
  # Corresponds to the JSON property `rankingExpression`
23003
23050
  # @return [String]
23004
23051
  attr_accessor :ranking_expression
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1
18
18
  # Version of the google-apis-discoveryengine_v1 gem
19
- GEM_VERSION = "0.40.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250604"
25
+ REVISION = "20250617"
26
26
  end
27
27
  end
28
28
  end
@@ -6143,6 +6143,7 @@ module Google
6143
6143
  class GoogleCloudDiscoveryengineV1Principal
6144
6144
  # @private
6145
6145
  class Representation < Google::Apis::Core::JsonRepresentation
6146
+ property :external_entity_id, as: 'externalEntityId'
6146
6147
  property :group_id, as: 'groupId'
6147
6148
  property :user_id, as: 'userId'
6148
6149
  end
@@ -6897,7 +6898,7 @@ module Google
6897
6898
 
6898
6899
  property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query::Representation
6899
6900
 
6900
- hash :query_configs, as: 'queryConfigs'
6901
+ hash :query_config, as: 'queryConfig'
6901
6902
  end
6902
6903
  end
6903
6904
 
@@ -8758,6 +8759,7 @@ module Google
8758
8759
 
8759
8760
  property :spell_correction_spec, as: 'spellCorrectionSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec::Representation
8760
8761
 
8762
+ property :use_latest_data, as: 'useLatestData'
8761
8763
  property :user_info, as: 'userInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaUserInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaUserInfo::Representation
8762
8764
 
8763
8765
  hash :user_labels, as: 'userLabels'
@@ -9027,7 +9029,7 @@ module Google
9027
9029
 
9028
9030
  property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery::Representation
9029
9031
 
9030
- hash :query_configs, as: 'queryConfigs'
9032
+ hash :query_config, as: 'queryConfig'
9031
9033
  end
9032
9034
  end
9033
9035
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.40.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1/v0.42.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: