google-apis-discoveryengine_v1beta 0.68.0 → 0.69.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91904a463a895559bfa3b7c0e72df667ba162d78e2b083bc6fb98b2cffc0b43b
|
4
|
+
data.tar.gz: 525cd55e903f1a3353fcb0281117631673b19e8865766a241782117088affa5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7195d5cf9bbe977abab90089c5f47a34d6420c6a92583558eb203755cc17e2daf9ff4f141b7976f6ddd3f2d23ae097b6a3ad726c63b93607c1656e8ff9504418
|
7
|
+
data.tar.gz: 32cb2bd3bf4e9d9408d987593136f2fb2472cf4959008d8a760d6d52361b7a22534e1ac370ac38d67fcadf38669e3683c08c0b5f3eca96075ca4d9c0f34436d0
|
data/CHANGELOG.md
CHANGED
@@ -9879,7 +9879,7 @@ module Google
|
|
9879
9879
|
class GoogleCloudDiscoveryengineV1alphaQuery
|
9880
9880
|
include Google::Apis::Core::Hashable
|
9881
9881
|
|
9882
|
-
# Unique Id for the query.
|
9882
|
+
# Output only. Unique Id for the query.
|
9883
9883
|
# Corresponds to the JSON property `queryId`
|
9884
9884
|
# @return [String]
|
9885
9885
|
attr_accessor :query_id
|
@@ -10442,34 +10442,52 @@ module Google
|
|
10442
10442
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSearchRequestQueryExpansionSpec]
|
10443
10443
|
attr_accessor :query_expansion_spec
|
10444
10444
|
|
10445
|
-
# The ranking expression controls the customized ranking on retrieval
|
10446
|
-
# This overrides ServingConfig.ranking_expression. The syntax and
|
10447
|
-
# features depend on the ranking_expression_backend value. If
|
10448
|
-
# ranking_expression_backend is not provided, it defaults to
|
10449
|
-
# If ranking_expression_backend is not provided or set to `
|
10450
|
-
# single function or multiple functions that are joined by "+". *
|
10445
|
+
# Optional. The ranking expression controls the customized ranking on retrieval
|
10446
|
+
# documents. This overrides ServingConfig.ranking_expression. The syntax and
|
10447
|
+
# supported features depend on the `ranking_expression_backend` value. If `
|
10448
|
+
# ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
|
10449
|
+
# . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
|
10450
|
+
# it should be a single function or multiple functions that are joined by "+". *
|
10451
10451
|
# ranking_expression = function, ` " + ", function `; Supported functions: *
|
10452
10452
|
# double * relevance_score * double * dotProduct(embedding_field_path) Function
|
10453
10453
|
# variables: * `relevance_score`: pre-defined keywords, used for measure
|
10454
10454
|
# relevance between query and document. * `embedding_field_path`: the document
|
10455
10455
|
# embedding field used with query embedding vector. * `dotProduct`: embedding
|
10456
|
-
# function between embedding_field_path and query embedding vector. Example
|
10456
|
+
# function between `embedding_field_path` and query embedding vector. Example
|
10457
10457
|
# ranking expression: If document has an embedding field doc_embedding, the
|
10458
10458
|
# ranking expression could be `0.5 * relevance_score + 0.3 * dotProduct(
|
10459
|
-
# doc_embedding)`.
|
10460
|
-
#
|
10461
|
-
#
|
10462
|
-
#
|
10463
|
-
# argument being a denominator constant. * is_nan(signal) -- returns 0 if
|
10464
|
-
# is NaN, 1 otherwise. * fill_nan(signal1, signal2 | double) -- if
|
10465
|
-
# NaN, returns signal2 | double, else returns signal1.
|
10466
|
-
#
|
10467
|
-
#
|
10468
|
-
#
|
10469
|
-
# adjustment
|
10470
|
-
#
|
10471
|
-
#
|
10472
|
-
#
|
10459
|
+
# doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
|
10460
|
+
# the following expression types (and combinations of those chained using + or *
|
10461
|
+
# operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
|
10462
|
+
# * `rr(signal, double > 0)` -- reciprocal rank transformation with second
|
10463
|
+
# argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
|
10464
|
+
# signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
|
10465
|
+
# signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
|
10466
|
+
# examples of ranking formulas that use the supported ranking expression types: -
|
10467
|
+
# `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
|
10468
|
+
# mostly rank by the logarithm of `keyword_similarity_score` with slight `
|
10469
|
+
# semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
|
10470
|
+
# semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
|
10471
|
+
# rank by the exponent of `semantic_similarity_score` filling the value with 0
|
10472
|
+
# if it's NaN, also add constant 0.3 adjustment to the final score if `
|
10473
|
+
# semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
|
10474
|
+
# 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
|
10475
|
+
# of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
|
10476
|
+
# semantic_smilarity_score`. The following signals are supported: * `
|
10477
|
+
# semantic_similarity_score`: semantic similarity adjustment that is calculated
|
10478
|
+
# using the embeddings generated by a proprietary Google model. This score
|
10479
|
+
# determines how semantically similar a search query is to a document. * `
|
10480
|
+
# keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
|
10481
|
+
# BM25) ranking function. This score is calculated using a probabilistic model
|
10482
|
+
# to estimate the probability that a document is relevant to a given query. * `
|
10483
|
+
# relevance_score`: semantic relevance adjustment that uses a proprietary Google
|
10484
|
+
# model to determine the meaning and intent behind a user's query in context
|
10485
|
+
# with the content in the documents. * `pctr_rank`: predicted conversion rate
|
10486
|
+
# adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
|
10487
|
+
# relevance and attractiveness of a search result from a user's perspective. A
|
10488
|
+
# higher pCTR suggests that the result is more likely to satisfy the user's
|
10489
|
+
# query and intent, making it a valuable signal for ranking. * `freshness_rank`:
|
10490
|
+
# freshness adjustment as a rank * `base_rank`: the default rank of the result
|
10473
10491
|
# Corresponds to the JSON property `rankingExpression`
|
10474
10492
|
# @return [String]
|
10475
10493
|
attr_accessor :ranking_expression
|
@@ -10554,6 +10572,15 @@ module Google
|
|
10554
10572
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec]
|
10555
10573
|
attr_accessor :spell_correction_spec
|
10556
10574
|
|
10575
|
+
# Uses the Engine, ServingConfig and Control freshly read from the database.
|
10576
|
+
# Note: this skips config cache and introduces dependency on databases, which
|
10577
|
+
# could significantly increase the API latency. It should only be used for
|
10578
|
+
# testing, but not serving end users.
|
10579
|
+
# Corresponds to the JSON property `useLatestData`
|
10580
|
+
# @return [Boolean]
|
10581
|
+
attr_accessor :use_latest_data
|
10582
|
+
alias_method :use_latest_data?, :use_latest_data
|
10583
|
+
|
10557
10584
|
# Information of an end user.
|
10558
10585
|
# Corresponds to the JSON property `userInfo`
|
10559
10586
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaUserInfo]
|
@@ -10625,6 +10652,7 @@ module Google
|
|
10625
10652
|
@session = args[:session] if args.key?(:session)
|
10626
10653
|
@session_spec = args[:session_spec] if args.key?(:session_spec)
|
10627
10654
|
@spell_correction_spec = args[:spell_correction_spec] if args.key?(:spell_correction_spec)
|
10655
|
+
@use_latest_data = args[:use_latest_data] if args.key?(:use_latest_data)
|
10628
10656
|
@user_info = args[:user_info] if args.key?(:user_info)
|
10629
10657
|
@user_labels = args[:user_labels] if args.key?(:user_labels)
|
10630
10658
|
@user_pseudo_id = args[:user_pseudo_id] if args.key?(:user_pseudo_id)
|
@@ -11674,8 +11702,8 @@ module Google
|
|
11674
11702
|
class GoogleCloudDiscoveryengineV1alphaSessionTurn
|
11675
11703
|
include Google::Apis::Core::Hashable
|
11676
11704
|
|
11677
|
-
# The resource name of the answer to the user query. Only set if the
|
11678
|
-
# generation (/answer API call) happened in this turn.
|
11705
|
+
# Optional. The resource name of the answer to the user query. Only set if the
|
11706
|
+
# answer generation (/answer API call) happened in this turn.
|
11679
11707
|
# Corresponds to the JSON property `answer`
|
11680
11708
|
# @return [String]
|
11681
11709
|
attr_accessor :answer
|
@@ -11690,19 +11718,6 @@ module Google
|
|
11690
11718
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery]
|
11691
11719
|
attr_accessor :query
|
11692
11720
|
|
11693
|
-
# Optional. Represents metadata related to the query config, for example LLM
|
11694
|
-
# model and version used, model parameters (temperature, grounding parameters,
|
11695
|
-
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
11696
|
-
# as this will serve a more general purpose and a wider set of customers. This
|
11697
|
-
# information is used in particular when rendering alternative answers to the
|
11698
|
-
# same prompt, providing visual information about how each answer was generated.
|
11699
|
-
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
11700
|
-
# Assistant, etc.) should always store their information with "google..". 3P
|
11701
|
-
# services can use anything not starting with "google."
|
11702
|
-
# Corresponds to the JSON property `queryConfigs`
|
11703
|
-
# @return [Hash<String,String>]
|
11704
|
-
attr_accessor :query_configs
|
11705
|
-
|
11706
11721
|
def initialize(**args)
|
11707
11722
|
update!(**args)
|
11708
11723
|
end
|
@@ -11712,7 +11727,6 @@ module Google
|
|
11712
11727
|
@answer = args[:answer] if args.key?(:answer)
|
11713
11728
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
11714
11729
|
@query = args[:query] if args.key?(:query)
|
11715
|
-
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
11716
11730
|
end
|
11717
11731
|
end
|
11718
11732
|
|
@@ -20519,6 +20533,12 @@ module Google
|
|
20519
20533
|
class GoogleCloudDiscoveryengineV1betaPrincipal
|
20520
20534
|
include Google::Apis::Core::Hashable
|
20521
20535
|
|
20536
|
+
# For 3P application identities which are not present in the customer identity
|
20537
|
+
# provider.
|
20538
|
+
# Corresponds to the JSON property `externalEntityId`
|
20539
|
+
# @return [String]
|
20540
|
+
attr_accessor :external_entity_id
|
20541
|
+
|
20522
20542
|
# Group identifier. For Google Workspace user account, group_id should be the
|
20523
20543
|
# google workspace group email. For non-google identity provider user account,
|
20524
20544
|
# group_id is the mapped group identifier configured during the workforcepool
|
@@ -20541,6 +20561,7 @@ module Google
|
|
20541
20561
|
|
20542
20562
|
# Update properties of this object
|
20543
20563
|
def update!(**args)
|
20564
|
+
@external_entity_id = args[:external_entity_id] if args.key?(:external_entity_id)
|
20544
20565
|
@group_id = args[:group_id] if args.key?(:group_id)
|
20545
20566
|
@user_id = args[:user_id] if args.key?(:user_id)
|
20546
20567
|
end
|
@@ -21108,7 +21129,7 @@ module Google
|
|
21108
21129
|
class GoogleCloudDiscoveryengineV1betaQuery
|
21109
21130
|
include Google::Apis::Core::Hashable
|
21110
21131
|
|
21111
|
-
# Unique Id for the query.
|
21132
|
+
# Output only. Unique Id for the query.
|
21112
21133
|
# Corresponds to the JSON property `queryId`
|
21113
21134
|
# @return [String]
|
21114
21135
|
attr_accessor :query_id
|
@@ -22161,34 +22182,52 @@ module Google
|
|
22161
22182
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec]
|
22162
22183
|
attr_accessor :query_expansion_spec
|
22163
22184
|
|
22164
|
-
# The ranking expression controls the customized ranking on retrieval
|
22165
|
-
# This overrides ServingConfig.ranking_expression. The syntax and
|
22166
|
-
# features depend on the ranking_expression_backend value. If
|
22167
|
-
# ranking_expression_backend is not provided, it defaults to
|
22168
|
-
# If ranking_expression_backend is not provided or set to `
|
22169
|
-
# single function or multiple functions that are joined by "+". *
|
22185
|
+
# Optional. The ranking expression controls the customized ranking on retrieval
|
22186
|
+
# documents. This overrides ServingConfig.ranking_expression. The syntax and
|
22187
|
+
# supported features depend on the `ranking_expression_backend` value. If `
|
22188
|
+
# ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
|
22189
|
+
# . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
|
22190
|
+
# it should be a single function or multiple functions that are joined by "+". *
|
22170
22191
|
# ranking_expression = function, ` " + ", function `; Supported functions: *
|
22171
22192
|
# double * relevance_score * double * dotProduct(embedding_field_path) Function
|
22172
22193
|
# variables: * `relevance_score`: pre-defined keywords, used for measure
|
22173
22194
|
# relevance between query and document. * `embedding_field_path`: the document
|
22174
22195
|
# embedding field used with query embedding vector. * `dotProduct`: embedding
|
22175
|
-
# function between embedding_field_path and query embedding vector. Example
|
22196
|
+
# function between `embedding_field_path` and query embedding vector. Example
|
22176
22197
|
# ranking expression: If document has an embedding field doc_embedding, the
|
22177
22198
|
# ranking expression could be `0.5 * relevance_score + 0.3 * dotProduct(
|
22178
|
-
# doc_embedding)`.
|
22179
|
-
#
|
22180
|
-
#
|
22181
|
-
#
|
22182
|
-
# argument being a denominator constant. * is_nan(signal) -- returns 0 if
|
22183
|
-
# is NaN, 1 otherwise. * fill_nan(signal1, signal2 | double) -- if
|
22184
|
-
# NaN, returns signal2 | double, else returns signal1.
|
22185
|
-
#
|
22186
|
-
#
|
22187
|
-
#
|
22188
|
-
# adjustment
|
22189
|
-
#
|
22190
|
-
#
|
22191
|
-
#
|
22199
|
+
# doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
|
22200
|
+
# the following expression types (and combinations of those chained using + or *
|
22201
|
+
# operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
|
22202
|
+
# * `rr(signal, double > 0)` -- reciprocal rank transformation with second
|
22203
|
+
# argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
|
22204
|
+
# signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
|
22205
|
+
# signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
|
22206
|
+
# examples of ranking formulas that use the supported ranking expression types: -
|
22207
|
+
# `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
|
22208
|
+
# mostly rank by the logarithm of `keyword_similarity_score` with slight `
|
22209
|
+
# semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
|
22210
|
+
# semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
|
22211
|
+
# rank by the exponent of `semantic_similarity_score` filling the value with 0
|
22212
|
+
# if it's NaN, also add constant 0.3 adjustment to the final score if `
|
22213
|
+
# semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
|
22214
|
+
# 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
|
22215
|
+
# of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
|
22216
|
+
# semantic_smilarity_score`. The following signals are supported: * `
|
22217
|
+
# semantic_similarity_score`: semantic similarity adjustment that is calculated
|
22218
|
+
# using the embeddings generated by a proprietary Google model. This score
|
22219
|
+
# determines how semantically similar a search query is to a document. * `
|
22220
|
+
# keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
|
22221
|
+
# BM25) ranking function. This score is calculated using a probabilistic model
|
22222
|
+
# to estimate the probability that a document is relevant to a given query. * `
|
22223
|
+
# relevance_score`: semantic relevance adjustment that uses a proprietary Google
|
22224
|
+
# model to determine the meaning and intent behind a user's query in context
|
22225
|
+
# with the content in the documents. * `pctr_rank`: predicted conversion rate
|
22226
|
+
# adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
|
22227
|
+
# relevance and attractiveness of a search result from a user's perspective. A
|
22228
|
+
# higher pCTR suggests that the result is more likely to satisfy the user's
|
22229
|
+
# query and intent, making it a valuable signal for ranking. * `freshness_rank`:
|
22230
|
+
# freshness adjustment as a rank * `base_rank`: the default rank of the result
|
22192
22231
|
# Corresponds to the JSON property `rankingExpression`
|
22193
22232
|
# @return [String]
|
22194
22233
|
attr_accessor :ranking_expression
|
@@ -24621,8 +24660,8 @@ module Google
|
|
24621
24660
|
class GoogleCloudDiscoveryengineV1betaSessionTurn
|
24622
24661
|
include Google::Apis::Core::Hashable
|
24623
24662
|
|
24624
|
-
# The resource name of the answer to the user query. Only set if the
|
24625
|
-
# generation (/answer API call) happened in this turn.
|
24663
|
+
# Optional. The resource name of the answer to the user query. Only set if the
|
24664
|
+
# answer generation (/answer API call) happened in this turn.
|
24626
24665
|
# Corresponds to the JSON property `answer`
|
24627
24666
|
# @return [String]
|
24628
24667
|
attr_accessor :answer
|
@@ -24637,19 +24676,6 @@ module Google
|
|
24637
24676
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery]
|
24638
24677
|
attr_accessor :query
|
24639
24678
|
|
24640
|
-
# Optional. Represents metadata related to the query config, for example LLM
|
24641
|
-
# model and version used, model parameters (temperature, grounding parameters,
|
24642
|
-
# etc.). We don't want to import directly the [AnswerGenerationSpec] structure
|
24643
|
-
# as this will serve a more general purpose and a wider set of customers. This
|
24644
|
-
# information is used in particular when rendering alternative answers to the
|
24645
|
-
# same prompt, providing visual information about how each answer was generated.
|
24646
|
-
# The prefix "google." will be reserved for the key, and 1P services (Answer,
|
24647
|
-
# Assistant, etc.) should always store their information with "google..". 3P
|
24648
|
-
# services can use anything not starting with "google."
|
24649
|
-
# Corresponds to the JSON property `queryConfigs`
|
24650
|
-
# @return [Hash<String,String>]
|
24651
|
-
attr_accessor :query_configs
|
24652
|
-
|
24653
24679
|
def initialize(**args)
|
24654
24680
|
update!(**args)
|
24655
24681
|
end
|
@@ -24659,7 +24685,6 @@ module Google
|
|
24659
24685
|
@answer = args[:answer] if args.key?(:answer)
|
24660
24686
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
24661
24687
|
@query = args[:query] if args.key?(:query)
|
24662
|
-
@query_configs = args[:query_configs] if args.key?(:query_configs)
|
24663
24688
|
end
|
24664
24689
|
end
|
24665
24690
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DiscoveryengineV1beta
|
18
18
|
# Version of the google-apis-discoveryengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.69.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 = "
|
25
|
+
REVISION = "20250609"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -7014,6 +7014,7 @@ module Google
|
|
7014
7014
|
|
7015
7015
|
property :spell_correction_spec, as: 'spellCorrectionSpec', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec::Representation
|
7016
7016
|
|
7017
|
+
property :use_latest_data, as: 'useLatestData'
|
7017
7018
|
property :user_info, as: 'userInfo', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaUserInfo, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaUserInfo::Representation
|
7018
7019
|
|
7019
7020
|
hash :user_labels, as: 'userLabels'
|
@@ -7283,7 +7284,6 @@ module Google
|
|
7283
7284
|
|
7284
7285
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaQuery::Representation
|
7285
7286
|
|
7286
|
-
hash :query_configs, as: 'queryConfigs'
|
7287
7287
|
end
|
7288
7288
|
end
|
7289
7289
|
|
@@ -9814,6 +9814,7 @@ module Google
|
|
9814
9814
|
class GoogleCloudDiscoveryengineV1betaPrincipal
|
9815
9815
|
# @private
|
9816
9816
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9817
|
+
property :external_entity_id, as: 'externalEntityId'
|
9817
9818
|
property :group_id, as: 'groupId'
|
9818
9819
|
property :user_id, as: 'userId'
|
9819
9820
|
end
|
@@ -10875,7 +10876,6 @@ module Google
|
|
10875
10876
|
|
10876
10877
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery::Representation
|
10877
10878
|
|
10878
|
-
hash :query_configs, as: 'queryConfigs'
|
10879
10879
|
end
|
10880
10880
|
end
|
10881
10881
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-discoveryengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.69.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_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.69.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|