google-apis-discoveryengine_v1beta 0.68.0 → 0.70.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: 88db35960f3e4ab94f3cd8adc32de8284404cdd135bbd3774bae9c25f9d4e31d
|
4
|
+
data.tar.gz: f0eed7859d824bfa8eb74cc450bd19d6658c45a49231620dc7988b7c9d74b093
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5da3e18794f42715c5044eeaf40b6b0d0c256a6f70032e85b8b68dfe4f778d9ecc7c996d297c35c014f4028167358912cb71c0a3b68cd6989edd85bef05e8dcb
|
7
|
+
data.tar.gz: 1de619fe48d5f3537f6238632b154e2244c0b4dd7d4ba51bc9b6b9464b956fa891d6200e929275df2875c209559eea2fa58869ac4531fc64887306914557fa1d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-discoveryengine_v1beta
|
2
2
|
|
3
|
+
### v0.70.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250617
|
6
|
+
|
7
|
+
### v0.69.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250609
|
10
|
+
|
3
11
|
### v0.68.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250604
|
@@ -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,55 @@ 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 * `topicality_rank`: topicality adjustment as a
|
10491
|
+
# rank. Uses proprietary Google model to determine the keyword-based overlap
|
10492
|
+
# between the query and the document. * `base_rank`: the default rank of the
|
10493
|
+
# result
|
10473
10494
|
# Corresponds to the JSON property `rankingExpression`
|
10474
10495
|
# @return [String]
|
10475
10496
|
attr_accessor :ranking_expression
|
@@ -10554,6 +10575,15 @@ module Google
|
|
10554
10575
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaSearchRequestSpellCorrectionSpec]
|
10555
10576
|
attr_accessor :spell_correction_spec
|
10556
10577
|
|
10578
|
+
# Uses the Engine, ServingConfig and Control freshly read from the database.
|
10579
|
+
# Note: this skips config cache and introduces dependency on databases, which
|
10580
|
+
# could significantly increase the API latency. It should only be used for
|
10581
|
+
# testing, but not serving end users.
|
10582
|
+
# Corresponds to the JSON property `useLatestData`
|
10583
|
+
# @return [Boolean]
|
10584
|
+
attr_accessor :use_latest_data
|
10585
|
+
alias_method :use_latest_data?, :use_latest_data
|
10586
|
+
|
10557
10587
|
# Information of an end user.
|
10558
10588
|
# Corresponds to the JSON property `userInfo`
|
10559
10589
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaUserInfo]
|
@@ -10625,6 +10655,7 @@ module Google
|
|
10625
10655
|
@session = args[:session] if args.key?(:session)
|
10626
10656
|
@session_spec = args[:session_spec] if args.key?(:session_spec)
|
10627
10657
|
@spell_correction_spec = args[:spell_correction_spec] if args.key?(:spell_correction_spec)
|
10658
|
+
@use_latest_data = args[:use_latest_data] if args.key?(:use_latest_data)
|
10628
10659
|
@user_info = args[:user_info] if args.key?(:user_info)
|
10629
10660
|
@user_labels = args[:user_labels] if args.key?(:user_labels)
|
10630
10661
|
@user_pseudo_id = args[:user_pseudo_id] if args.key?(:user_pseudo_id)
|
@@ -11674,8 +11705,8 @@ module Google
|
|
11674
11705
|
class GoogleCloudDiscoveryengineV1alphaSessionTurn
|
11675
11706
|
include Google::Apis::Core::Hashable
|
11676
11707
|
|
11677
|
-
# The resource name of the answer to the user query. Only set if the
|
11678
|
-
# generation (/answer API call) happened in this turn.
|
11708
|
+
# Optional. The resource name of the answer to the user query. Only set if the
|
11709
|
+
# answer generation (/answer API call) happened in this turn.
|
11679
11710
|
# Corresponds to the JSON property `answer`
|
11680
11711
|
# @return [String]
|
11681
11712
|
attr_accessor :answer
|
@@ -11692,16 +11723,10 @@ module Google
|
|
11692
11723
|
|
11693
11724
|
# Optional. Represents metadata related to the query config, for example LLM
|
11694
11725
|
# model and version used, model parameters (temperature, grounding parameters,
|
11695
|
-
# etc.).
|
11696
|
-
#
|
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`
|
11726
|
+
# etc.). The prefix "google." is reserved for Google-developed functionality.
|
11727
|
+
# Corresponds to the JSON property `queryConfig`
|
11703
11728
|
# @return [Hash<String,String>]
|
11704
|
-
attr_accessor :
|
11729
|
+
attr_accessor :query_config
|
11705
11730
|
|
11706
11731
|
def initialize(**args)
|
11707
11732
|
update!(**args)
|
@@ -11712,7 +11737,7 @@ module Google
|
|
11712
11737
|
@answer = args[:answer] if args.key?(:answer)
|
11713
11738
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
11714
11739
|
@query = args[:query] if args.key?(:query)
|
11715
|
-
@
|
11740
|
+
@query_config = args[:query_config] if args.key?(:query_config)
|
11716
11741
|
end
|
11717
11742
|
end
|
11718
11743
|
|
@@ -20519,6 +20544,12 @@ module Google
|
|
20519
20544
|
class GoogleCloudDiscoveryengineV1betaPrincipal
|
20520
20545
|
include Google::Apis::Core::Hashable
|
20521
20546
|
|
20547
|
+
# For 3P application identities which are not present in the customer identity
|
20548
|
+
# provider.
|
20549
|
+
# Corresponds to the JSON property `externalEntityId`
|
20550
|
+
# @return [String]
|
20551
|
+
attr_accessor :external_entity_id
|
20552
|
+
|
20522
20553
|
# Group identifier. For Google Workspace user account, group_id should be the
|
20523
20554
|
# google workspace group email. For non-google identity provider user account,
|
20524
20555
|
# group_id is the mapped group identifier configured during the workforcepool
|
@@ -20541,6 +20572,7 @@ module Google
|
|
20541
20572
|
|
20542
20573
|
# Update properties of this object
|
20543
20574
|
def update!(**args)
|
20575
|
+
@external_entity_id = args[:external_entity_id] if args.key?(:external_entity_id)
|
20544
20576
|
@group_id = args[:group_id] if args.key?(:group_id)
|
20545
20577
|
@user_id = args[:user_id] if args.key?(:user_id)
|
20546
20578
|
end
|
@@ -21108,7 +21140,7 @@ module Google
|
|
21108
21140
|
class GoogleCloudDiscoveryengineV1betaQuery
|
21109
21141
|
include Google::Apis::Core::Hashable
|
21110
21142
|
|
21111
|
-
# Unique Id for the query.
|
21143
|
+
# Output only. Unique Id for the query.
|
21112
21144
|
# Corresponds to the JSON property `queryId`
|
21113
21145
|
# @return [String]
|
21114
21146
|
attr_accessor :query_id
|
@@ -22161,34 +22193,55 @@ module Google
|
|
22161
22193
|
# @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchRequestQueryExpansionSpec]
|
22162
22194
|
attr_accessor :query_expansion_spec
|
22163
22195
|
|
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 "+". *
|
22196
|
+
# Optional. The ranking expression controls the customized ranking on retrieval
|
22197
|
+
# documents. This overrides ServingConfig.ranking_expression. The syntax and
|
22198
|
+
# supported features depend on the `ranking_expression_backend` value. If `
|
22199
|
+
# ranking_expression_backend` is not provided, it defaults to `RANK_BY_EMBEDDING`
|
22200
|
+
# . If ranking_expression_backend is not provided or set to `RANK_BY_EMBEDDING`,
|
22201
|
+
# it should be a single function or multiple functions that are joined by "+". *
|
22170
22202
|
# ranking_expression = function, ` " + ", function `; Supported functions: *
|
22171
22203
|
# double * relevance_score * double * dotProduct(embedding_field_path) Function
|
22172
22204
|
# variables: * `relevance_score`: pre-defined keywords, used for measure
|
22173
22205
|
# relevance between query and document. * `embedding_field_path`: the document
|
22174
22206
|
# embedding field used with query embedding vector. * `dotProduct`: embedding
|
22175
|
-
# function between embedding_field_path and query embedding vector. Example
|
22207
|
+
# function between `embedding_field_path` and query embedding vector. Example
|
22176
22208
|
# ranking expression: If document has an embedding field doc_embedding, the
|
22177
22209
|
# 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
|
-
#
|
22210
|
+
# doc_embedding)`. If ranking_expression_backend is set to `RANK_BY_FORMULA`,
|
22211
|
+
# the following expression types (and combinations of those chained using + or *
|
22212
|
+
# operators) are supported: * `double` * `signal` * `log(signal)` * `exp(signal)`
|
22213
|
+
# * `rr(signal, double > 0)` -- reciprocal rank transformation with second
|
22214
|
+
# argument being a denominator constant. * `is_nan(signal)` -- returns 0 if
|
22215
|
+
# signal is NaN, 1 otherwise. * `fill_nan(signal1, signal2 | double)` -- if
|
22216
|
+
# signal1 is NaN, returns signal2 | double, else returns signal1. Here are a few
|
22217
|
+
# examples of ranking formulas that use the supported ranking expression types: -
|
22218
|
+
# `0.2 * semantic_similarity_score + 0.8 * log(keyword_similarity_score)` --
|
22219
|
+
# mostly rank by the logarithm of `keyword_similarity_score` with slight `
|
22220
|
+
# semantic_smilarity_score` adjustment. - `0.2 * exp(fill_nan(
|
22221
|
+
# semantic_similarity_score, 0)) + 0.3 * is_nan(keyword_similarity_score)` --
|
22222
|
+
# rank by the exponent of `semantic_similarity_score` filling the value with 0
|
22223
|
+
# if it's NaN, also add constant 0.3 adjustment to the final score if `
|
22224
|
+
# semantic_similarity_score` is NaN. - `0.2 * rr(semantic_similarity_score, 16) +
|
22225
|
+
# 0.8 * rr(keyword_similarity_score, 16)` -- mostly rank by the reciprocal rank
|
22226
|
+
# of `keyword_similarity_score` with slight adjustment of reciprocal rank of `
|
22227
|
+
# semantic_smilarity_score`. The following signals are supported: * `
|
22228
|
+
# semantic_similarity_score`: semantic similarity adjustment that is calculated
|
22229
|
+
# using the embeddings generated by a proprietary Google model. This score
|
22230
|
+
# determines how semantically similar a search query is to a document. * `
|
22231
|
+
# keyword_similarity_score`: keyword match adjustment uses the Best Match 25 (
|
22232
|
+
# BM25) ranking function. This score is calculated using a probabilistic model
|
22233
|
+
# to estimate the probability that a document is relevant to a given query. * `
|
22234
|
+
# relevance_score`: semantic relevance adjustment that uses a proprietary Google
|
22235
|
+
# model to determine the meaning and intent behind a user's query in context
|
22236
|
+
# with the content in the documents. * `pctr_rank`: predicted conversion rate
|
22237
|
+
# adjustment as a rank use predicted Click-through rate (pCTR) to gauge the
|
22238
|
+
# relevance and attractiveness of a search result from a user's perspective. A
|
22239
|
+
# higher pCTR suggests that the result is more likely to satisfy the user's
|
22240
|
+
# query and intent, making it a valuable signal for ranking. * `freshness_rank`:
|
22241
|
+
# freshness adjustment as a rank * `topicality_rank`: topicality adjustment as a
|
22242
|
+
# rank. Uses proprietary Google model to determine the keyword-based overlap
|
22243
|
+
# between the query and the document. * `base_rank`: the default rank of the
|
22244
|
+
# result
|
22192
22245
|
# Corresponds to the JSON property `rankingExpression`
|
22193
22246
|
# @return [String]
|
22194
22247
|
attr_accessor :ranking_expression
|
@@ -24621,8 +24674,8 @@ module Google
|
|
24621
24674
|
class GoogleCloudDiscoveryengineV1betaSessionTurn
|
24622
24675
|
include Google::Apis::Core::Hashable
|
24623
24676
|
|
24624
|
-
# The resource name of the answer to the user query. Only set if the
|
24625
|
-
# generation (/answer API call) happened in this turn.
|
24677
|
+
# Optional. The resource name of the answer to the user query. Only set if the
|
24678
|
+
# answer generation (/answer API call) happened in this turn.
|
24626
24679
|
# Corresponds to the JSON property `answer`
|
24627
24680
|
# @return [String]
|
24628
24681
|
attr_accessor :answer
|
@@ -24639,16 +24692,10 @@ module Google
|
|
24639
24692
|
|
24640
24693
|
# Optional. Represents metadata related to the query config, for example LLM
|
24641
24694
|
# model and version used, model parameters (temperature, grounding parameters,
|
24642
|
-
# etc.).
|
24643
|
-
#
|
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`
|
24695
|
+
# etc.). The prefix "google." is reserved for Google-developed functionality.
|
24696
|
+
# Corresponds to the JSON property `queryConfig`
|
24650
24697
|
# @return [Hash<String,String>]
|
24651
|
-
attr_accessor :
|
24698
|
+
attr_accessor :query_config
|
24652
24699
|
|
24653
24700
|
def initialize(**args)
|
24654
24701
|
update!(**args)
|
@@ -24659,7 +24706,7 @@ module Google
|
|
24659
24706
|
@answer = args[:answer] if args.key?(:answer)
|
24660
24707
|
@detailed_answer = args[:detailed_answer] if args.key?(:detailed_answer)
|
24661
24708
|
@query = args[:query] if args.key?(:query)
|
24662
|
-
@
|
24709
|
+
@query_config = args[:query_config] if args.key?(:query_config)
|
24663
24710
|
end
|
24664
24711
|
end
|
24665
24712
|
|
@@ -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.70.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 = "20250617"
|
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,7 @@ 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 :
|
7287
|
+
hash :query_config, as: 'queryConfig'
|
7287
7288
|
end
|
7288
7289
|
end
|
7289
7290
|
|
@@ -9814,6 +9815,7 @@ module Google
|
|
9814
9815
|
class GoogleCloudDiscoveryengineV1betaPrincipal
|
9815
9816
|
# @private
|
9816
9817
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9818
|
+
property :external_entity_id, as: 'externalEntityId'
|
9817
9819
|
property :group_id, as: 'groupId'
|
9818
9820
|
property :user_id, as: 'userId'
|
9819
9821
|
end
|
@@ -10875,7 +10877,7 @@ module Google
|
|
10875
10877
|
|
10876
10878
|
property :query, as: 'query', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaQuery::Representation
|
10877
10879
|
|
10878
|
-
hash :
|
10880
|
+
hash :query_config, as: 'queryConfig'
|
10879
10881
|
end
|
10880
10882
|
end
|
10881
10883
|
|
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.70.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.70.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:
|