google-apis-discoveryengine_v1 0.40.0 → 0.41.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: 1a9bab2651820fdf80d2d7a4210951ee9e938f214c53d3f1f6241b37bbdf2a50
4
+ data.tar.gz: 6ef540a69afe8d970b16e95befb7e04be9154ae9a1c3112abf78c13393e21a7e
5
5
  SHA512:
6
- metadata.gz: 67dbf32f0e594a2e4d5d5a251bb32ccf599e146cf5c0436e47ce63c76dfea4ebf3728f862a59ea90ee6da6cd8c1facb20ffddd196becb3bb393ad9a8b8bcc83e
7
- data.tar.gz: 5e49108f8999ff3e757d88c258eaa79cc49dcbe109ba51a17731bb1a3cc160d7cbbcacc1a465431a0e1b46a313a29259de3d2808a8f8b9ece02f63c1fe35606b
6
+ metadata.gz: 1ddbec02b6828c64488e64c580aab7995391015feb4cbb95784548989981a8823d94198227239830b083815226d9f4daec6d130f9b5ad34312a0316608024ac2
7
+ data.tar.gz: 5dfcc952bb8581a2b89957759613c551e58d237c78e5831d2acd57800a9eace03a44e328d7f6803f3dbb89bcd0e358bc19ef5b2648d8658e34e0fe6642c084f8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1
2
2
 
3
+ ### v0.41.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250609
6
+
3
7
  ### v0.40.0 (2025-06-08)
4
8
 
5
9
  * 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
@@ -10760,19 +10767,6 @@ module Google
10760
10767
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Query]
10761
10768
  attr_accessor :query
10762
10769
 
10763
- # Optional. Represents metadata related to the query config, for example LLM
10764
- # 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`
10773
- # @return [Hash<String,String>]
10774
- attr_accessor :query_configs
10775
-
10776
10770
  def initialize(**args)
10777
10771
  update!(**args)
10778
10772
  end
@@ -10782,7 +10776,6 @@ module Google
10782
10776
  @answer = args[:answer] if args.key?(:answer)
10783
10777
  @detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
10784
10778
  @query = args[:query] if args.key?(:query)
10785
- @query_configs = args[:query_configs] if args.key?(:query_configs)
10786
10779
  end
10787
10780
  end
10788
10781
 
@@ -17107,7 +17100,7 @@ module Google
17107
17100
  class GoogleCloudDiscoveryengineV1alphaQuery
17108
17101
  include Google::Apis::Core::Hashable
17109
17102
 
17110
- # Unique Id for the query.
17103
+ # Output only. Unique Id for the query.
17111
17104
  # Corresponds to the JSON property `queryId`
17112
17105
  # @return [String]
17113
17106
  attr_accessor :query_id
@@ -17670,34 +17663,52 @@ module Google
17670
17663
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec]
17671
17664
  attr_accessor :query_expansion_spec
17672
17665
 
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 "+". *
17666
+ # Optional. The ranking expression controls the customized ranking on retrieval
17667
+ # documents. This overrides ServingConfig.ranking_expression. The syntax and
17668
+ # supported features depend on the `ranking_expression_backend` value. If `
17669
+ # ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
17670
+ # . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
17671
+ # it should be a single function or multiple functions that are joined by "+". *
17679
17672
  # ranking_expression = function, ` " + ", function `; Supported functions: *
17680
17673
  # double * relevance_score * double * dotProduct(embedding_field_path) Function
17681
17674
  # variables: * `relevance_score`: pre-defined keywords, used for measure
17682
17675
  # relevance between query and document. * `embedding_field_path`: the document
17683
17676
  # embedding field used with query embedding vector. * `dotProduct`: embedding
17684
- # function between embedding_field_path and query embedding vector. Example
17677
+ # function between `embedding_field_path` and query embedding vector. Example
17685
17678
  # ranking expression: If document has an embedding field doc_embedding, the
17686
17679
  # 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
17680
+ # doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
17681
+ # the following expression types (and combinations of those chained using + or *
17682
+ # operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
17683
+ # * `rr(signal, double > 0)` -- reciprocal rank transformation with second
17684
+ # argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
17685
+ # signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
17686
+ # signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
17687
+ # examples of ranking formulas that use the supported ranking expression types: -
17688
+ # `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
17689
+ # mostly rank by the logarithm of `keyword_similarity_score` with slight `
17690
+ # semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
17691
+ # semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
17692
+ # rank by the exponent of `semantic_similarity_score` filling the value with 0
17693
+ # if it's NaN, also add constant 0.3 adjustment to the final score if `
17694
+ # semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
17695
+ # 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
17696
+ # of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
17697
+ # semantic_smilarity_score`. The following signals are supported: * `
17698
+ # semantic_similarity_score`: semantic similarity adjustment that is calculated
17699
+ # using the embeddings generated by a proprietary Google model. This score
17700
+ # determines how semantically similar a search query is to a document. * `
17701
+ # keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
17702
+ # BM25) ranking function. This score is calculated using a probabilistic model
17703
+ # to estimate the probability that a document is relevant to a given query. * `
17704
+ # relevance_score`: semantic relevance adjustment that uses a proprietary Google
17705
+ # model to determine the meaning and intent behind a user's query in context
17706
+ # with the content in the documents. * `pctr_rank`: predicted conversion rate
17707
+ # adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
17708
+ # relevance and attractiveness of a search result from a user's perspective. A
17709
+ # higher pCTR suggests that the result is more likely to satisfy the user's
17710
+ # query and intent, making it a valuable signal for ranking. * `freshness_rank`:
17711
+ # freshness adjustment as a rank * `base_rank`: the default rank of the result
17701
17712
  # Corresponds to the JSON property `rankingExpression`
17702
17713
  # @return [String]
17703
17714
  attr_accessor :ranking_expression
@@ -17782,6 +17793,15 @@ module Google
17782
17793
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec]
17783
17794
  attr_accessor :spell_correction_spec
17784
17795
 
17796
+ # Uses the Engine, ServingConfig and Control freshly read from the database.
17797
+ # Note: this skips config cache and introduces dependency on databases, which
17798
+ # could significantly increase the API latency. It should only be used for
17799
+ # testing, but not serving end users.
17800
+ # Corresponds to the JSON property `useLatestData`
17801
+ # @return [Boolean]
17802
+ attr_accessor :use_latest_data
17803
+ alias_method :use_latest_data?, :use_latest_data
17804
+
17785
17805
  # Information of an end user.
17786
17806
  # Corresponds to the JSON property `userInfo`
17787
17807
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaUserInfo]
@@ -17853,6 +17873,7 @@ module Google
17853
17873
  @session = args[:session] if args.key?(:session)
17854
17874
  @session_spec = args[:session_spec] if args.key?(:session_spec)
17855
17875
  @spell_correction_spec = args[:spell_correction_spec] if args.key?(:spell_correction_spec)
17876
+ @use_latest_data = args[:use_latest_data] if args.key?(:use_latest_data)
17856
17877
  @user_info = args[:user_info] if args.key?(:user_info)
17857
17878
  @user_labels = args[:user_labels] if args.key?(:user_labels)
17858
17879
  @user_pseudo_id = args[:user_pseudo_id] if args.key?(:user_pseudo_id)
@@ -18902,8 +18923,8 @@ module Google
18902
18923
  class GoogleCloudDiscoveryengineV1alphaSessionTurn
18903
18924
  include Google::Apis::Core::Hashable
18904
18925
 
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.
18926
+ # Optional. The resource name of the answer to the user query. Only set if the
18927
+ # answer generation (/answer API call) happened in this turn.
18907
18928
  # Corresponds to the JSON property `answer`
18908
18929
  # @return [String]
18909
18930
  attr_accessor :answer
@@ -18918,19 +18939,6 @@ module Google
18918
18939
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery]
18919
18940
  attr_accessor :query
18920
18941
 
18921
- # Optional. Represents metadata related to the query config, for example LLM
18922
- # 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`
18931
- # @return [Hash<String,String>]
18932
- attr_accessor :query_configs
18933
-
18934
18942
  def initialize(**args)
18935
18943
  update!(**args)
18936
18944
  end
@@ -18940,7 +18948,6 @@ module Google
18940
18948
  @answer = args[:answer] if args.key?(:answer)
18941
18949
  @detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
18942
18950
  @query = args[:query] if args.key?(:query)
18943
- @query_configs = args[:query_configs] if args.key?(:query_configs)
18944
18951
  end
18945
18952
  end
18946
18953
 
@@ -22971,34 +22978,52 @@ module Google
22971
22978
  # @return [Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec]
22972
22979
  attr_accessor :query_expansion_spec
22973
22980
 
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 "+". *
22981
+ # Optional. The ranking expression controls the customized ranking on retrieval
22982
+ # documents. This overrides ServingConfig.ranking_expression. The syntax and
22983
+ # supported features depend on the `ranking_expression_backend` value. If `
22984
+ # ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
22985
+ # . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
22986
+ # it should be a single function or multiple functions that are joined by "+". *
22980
22987
  # ranking_expression = function, ` " + ", function `; Supported functions: *
22981
22988
  # double * relevance_score * double * dotProduct(embedding_field_path) Function
22982
22989
  # variables: * `relevance_score`: pre-defined keywords, used for measure
22983
22990
  # relevance between query and document. * `embedding_field_path`: the document
22984
22991
  # embedding field used with query embedding vector. * `dotProduct`: embedding
22985
- # function between embedding_field_path and query embedding vector. Example
22992
+ # function between `embedding_field_path` and query embedding vector. Example
22986
22993
  # ranking expression: If document has an embedding field doc_embedding, the
22987
22994
  # 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
22995
+ # doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
22996
+ # the following expression types (and combinations of those chained using + or *
22997
+ # operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
22998
+ # * `rr(signal, double > 0)` -- reciprocal rank transformation with second
22999
+ # argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
23000
+ # signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
23001
+ # signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
23002
+ # examples of ranking formulas that use the supported ranking expression types: -
23003
+ # `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
23004
+ # mostly rank by the logarithm of `keyword_similarity_score` with slight `
23005
+ # semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
23006
+ # semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
23007
+ # rank by the exponent of `semantic_similarity_score` filling the value with 0
23008
+ # if it's NaN, also add constant 0.3 adjustment to the final score if `
23009
+ # semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
23010
+ # 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
23011
+ # of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
23012
+ # semantic_smilarity_score`. The following signals are supported: * `
23013
+ # semantic_similarity_score`: semantic similarity adjustment that is calculated
23014
+ # using the embeddings generated by a proprietary Google model. This score
23015
+ # determines how semantically similar a search query is to a document. * `
23016
+ # keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
23017
+ # BM25) ranking function. This score is calculated using a probabilistic model
23018
+ # to estimate the probability that a document is relevant to a given query. * `
23019
+ # relevance_score`: semantic relevance adjustment that uses a proprietary Google
23020
+ # model to determine the meaning and intent behind a user's query in context
23021
+ # with the content in the documents. * `pctr_rank`: predicted conversion rate
23022
+ # adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
23023
+ # relevance and attractiveness of a search result from a user's perspective. A
23024
+ # higher pCTR suggests that the result is more likely to satisfy the user's
23025
+ # query and intent, making it a valuable signal for ranking. * `freshness_rank`:
23026
+ # freshness adjustment as a rank * `base_rank`: the default rank of the result
23002
23027
  # Corresponds to the JSON property `rankingExpression`
23003
23028
  # @return [String]
23004
23029
  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.41.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 = "20250609"
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,6 @@ 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
6901
  end
6902
6902
  end
6903
6903
 
@@ -8758,6 +8758,7 @@ module Google
8758
8758
 
8759
8759
  property :spell_correction_spec, as: 'spellCorrectionSpec', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec::Representation
8760
8760
 
8761
+ property :use_latest_data, as: 'useLatestData'
8761
8762
  property :user_info, as: 'userInfo', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaUserInfo, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaUserInfo::Representation
8762
8763
 
8763
8764
  hash :user_labels, as: 'userLabels'
@@ -9027,7 +9028,6 @@ module Google
9027
9028
 
9028
9029
  property :query, as: 'query', class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1alphaQuery::Representation
9029
9030
 
9030
- hash :query_configs, as: 'queryConfigs'
9031
9031
  end
9032
9032
  end
9033
9033
 
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.41.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.41.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: