google-apis-dialogflow_v2beta1 0.124.0 → 0.125.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: 4ce7322ff26e135abccc2c77f730c49b4af948d90fbc573a4a361ab0578a11b1
|
|
4
|
+
data.tar.gz: 8432cee4f01a71b612644553c65f78a5af7e1345f69fb9fd7b57316c6730701f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 773622bf676529d205344d260732a9e4cc161a64df277de36d627799f144a04832bd7f77e40a30c539a2d219ded1ce48608ba548b998c664a1c2ba9212051324
|
|
7
|
+
data.tar.gz: 1417de9ab04a1d78ab22d69bba8625c78aa30c0a6621a13ece0b44fb7581e1d5399d9ed48d31ae7dad8a48d0811a31600ffbd2d48a6992690713c553317f13df
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
|
2
2
|
|
|
3
|
+
### v0.125.0 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260616
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.124.0 (2026-05-24)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260518
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dialogflow/) may provide gu
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -9331,6 +9331,31 @@ module Google
|
|
|
9331
9331
|
end
|
|
9332
9332
|
end
|
|
9333
9333
|
|
|
9334
|
+
#
|
|
9335
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
9336
|
+
include Google::Apis::Core::Hashable
|
|
9337
|
+
|
|
9338
|
+
#
|
|
9339
|
+
# Corresponds to the JSON property `answerRecord`
|
|
9340
|
+
# @return [String]
|
|
9341
|
+
attr_accessor :answer_record
|
|
9342
|
+
|
|
9343
|
+
#
|
|
9344
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
9345
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
9346
|
+
attr_accessor :suggested_query
|
|
9347
|
+
|
|
9348
|
+
def initialize(**args)
|
|
9349
|
+
update!(**args)
|
|
9350
|
+
end
|
|
9351
|
+
|
|
9352
|
+
# Update properties of this object
|
|
9353
|
+
def update!(**args)
|
|
9354
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
9355
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
9356
|
+
end
|
|
9357
|
+
end
|
|
9358
|
+
|
|
9334
9359
|
#
|
|
9335
9360
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
9336
9361
|
include Google::Apis::Core::Hashable
|
|
@@ -9483,6 +9508,11 @@ module Google
|
|
|
9483
9508
|
# @return [String]
|
|
9484
9509
|
attr_accessor :query_text
|
|
9485
9510
|
|
|
9511
|
+
#
|
|
9512
|
+
# Corresponds to the JSON property `searchContexts`
|
|
9513
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
9514
|
+
attr_accessor :search_contexts
|
|
9515
|
+
|
|
9486
9516
|
def initialize(**args)
|
|
9487
9517
|
update!(**args)
|
|
9488
9518
|
end
|
|
@@ -9490,6 +9520,32 @@ module Google
|
|
|
9490
9520
|
# Update properties of this object
|
|
9491
9521
|
def update!(**args)
|
|
9492
9522
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
9523
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
9524
|
+
end
|
|
9525
|
+
end
|
|
9526
|
+
|
|
9527
|
+
#
|
|
9528
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9529
|
+
include Google::Apis::Core::Hashable
|
|
9530
|
+
|
|
9531
|
+
#
|
|
9532
|
+
# Corresponds to the JSON property `key`
|
|
9533
|
+
# @return [String]
|
|
9534
|
+
attr_accessor :key
|
|
9535
|
+
|
|
9536
|
+
#
|
|
9537
|
+
# Corresponds to the JSON property `value`
|
|
9538
|
+
# @return [String]
|
|
9539
|
+
attr_accessor :value
|
|
9540
|
+
|
|
9541
|
+
def initialize(**args)
|
|
9542
|
+
update!(**args)
|
|
9543
|
+
end
|
|
9544
|
+
|
|
9545
|
+
# Update properties of this object
|
|
9546
|
+
def update!(**args)
|
|
9547
|
+
@key = args[:key] if args.key?(:key)
|
|
9548
|
+
@value = args[:value] if args.key?(:value)
|
|
9493
9549
|
end
|
|
9494
9550
|
end
|
|
9495
9551
|
|
|
@@ -10365,6 +10421,11 @@ module Google
|
|
|
10365
10421
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
10366
10422
|
include Google::Apis::Core::Hashable
|
|
10367
10423
|
|
|
10424
|
+
#
|
|
10425
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
10426
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
10427
|
+
attr_accessor :additional_suggested_query_results
|
|
10428
|
+
|
|
10368
10429
|
#
|
|
10369
10430
|
# Corresponds to the JSON property `contextSize`
|
|
10370
10431
|
# @return [Fixnum]
|
|
@@ -10386,6 +10447,7 @@ module Google
|
|
|
10386
10447
|
|
|
10387
10448
|
# Update properties of this object
|
|
10388
10449
|
def update!(**args)
|
|
10450
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
10389
10451
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
10390
10452
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
10391
10453
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -14722,6 +14784,12 @@ module Google
|
|
|
14722
14784
|
attr_accessor :disable_agent_query_logging
|
|
14723
14785
|
alias_method :disable_agent_query_logging?, :disable_agent_query_logging
|
|
14724
14786
|
|
|
14787
|
+
#
|
|
14788
|
+
# Corresponds to the JSON property `disableQuerySearchContext`
|
|
14789
|
+
# @return [Boolean]
|
|
14790
|
+
attr_accessor :disable_query_search_context
|
|
14791
|
+
alias_method :disable_query_search_context?, :disable_query_search_context
|
|
14792
|
+
|
|
14725
14793
|
#
|
|
14726
14794
|
# Corresponds to the JSON property `enableConversationAugmentedQuery`
|
|
14727
14795
|
# @return [Boolean]
|
|
@@ -14767,6 +14835,11 @@ module Google
|
|
|
14767
14835
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionFeature]
|
|
14768
14836
|
attr_accessor :suggestion_feature
|
|
14769
14837
|
|
|
14838
|
+
#
|
|
14839
|
+
# Corresponds to the JSON property `suggestionTriggerEvent`
|
|
14840
|
+
# @return [String]
|
|
14841
|
+
attr_accessor :suggestion_trigger_event
|
|
14842
|
+
|
|
14770
14843
|
#
|
|
14771
14844
|
# Corresponds to the JSON property `suggestionTriggerSettings`
|
|
14772
14845
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings]
|
|
@@ -14781,6 +14854,7 @@ module Google
|
|
|
14781
14854
|
@conversation_model_config = args[:conversation_model_config] if args.key?(:conversation_model_config)
|
|
14782
14855
|
@conversation_process_config = args[:conversation_process_config] if args.key?(:conversation_process_config)
|
|
14783
14856
|
@disable_agent_query_logging = args[:disable_agent_query_logging] if args.key?(:disable_agent_query_logging)
|
|
14857
|
+
@disable_query_search_context = args[:disable_query_search_context] if args.key?(:disable_query_search_context)
|
|
14784
14858
|
@enable_conversation_augmented_query = args[:enable_conversation_augmented_query] if args.key?(:enable_conversation_augmented_query)
|
|
14785
14859
|
@enable_event_based_suggestion = args[:enable_event_based_suggestion] if args.key?(:enable_event_based_suggestion)
|
|
14786
14860
|
@enable_query_suggestion_only = args[:enable_query_suggestion_only] if args.key?(:enable_query_suggestion_only)
|
|
@@ -14789,6 +14863,7 @@ module Google
|
|
|
14789
14863
|
@query_config = args[:query_config] if args.key?(:query_config)
|
|
14790
14864
|
@rai_settings = args[:rai_settings] if args.key?(:rai_settings)
|
|
14791
14865
|
@suggestion_feature = args[:suggestion_feature] if args.key?(:suggestion_feature)
|
|
14866
|
+
@suggestion_trigger_event = args[:suggestion_trigger_event] if args.key?(:suggestion_trigger_event)
|
|
14792
14867
|
@suggestion_trigger_settings = args[:suggestion_trigger_settings] if args.key?(:suggestion_trigger_settings)
|
|
14793
14868
|
end
|
|
14794
14869
|
end
|
|
@@ -17252,6 +17327,31 @@ module Google
|
|
|
17252
17327
|
end
|
|
17253
17328
|
end
|
|
17254
17329
|
|
|
17330
|
+
#
|
|
17331
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
17332
|
+
include Google::Apis::Core::Hashable
|
|
17333
|
+
|
|
17334
|
+
#
|
|
17335
|
+
# Corresponds to the JSON property `answerRecord`
|
|
17336
|
+
# @return [String]
|
|
17337
|
+
attr_accessor :answer_record
|
|
17338
|
+
|
|
17339
|
+
#
|
|
17340
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
17341
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
17342
|
+
attr_accessor :suggested_query
|
|
17343
|
+
|
|
17344
|
+
def initialize(**args)
|
|
17345
|
+
update!(**args)
|
|
17346
|
+
end
|
|
17347
|
+
|
|
17348
|
+
# Update properties of this object
|
|
17349
|
+
def update!(**args)
|
|
17350
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
17351
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
17352
|
+
end
|
|
17353
|
+
end
|
|
17354
|
+
|
|
17255
17355
|
#
|
|
17256
17356
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
17257
17357
|
include Google::Apis::Core::Hashable
|
|
@@ -17404,6 +17504,11 @@ module Google
|
|
|
17404
17504
|
# @return [String]
|
|
17405
17505
|
attr_accessor :query_text
|
|
17406
17506
|
|
|
17507
|
+
#
|
|
17508
|
+
# Corresponds to the JSON property `searchContexts`
|
|
17509
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
17510
|
+
attr_accessor :search_contexts
|
|
17511
|
+
|
|
17407
17512
|
def initialize(**args)
|
|
17408
17513
|
update!(**args)
|
|
17409
17514
|
end
|
|
@@ -17411,6 +17516,32 @@ module Google
|
|
|
17411
17516
|
# Update properties of this object
|
|
17412
17517
|
def update!(**args)
|
|
17413
17518
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
17519
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
17520
|
+
end
|
|
17521
|
+
end
|
|
17522
|
+
|
|
17523
|
+
#
|
|
17524
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
17525
|
+
include Google::Apis::Core::Hashable
|
|
17526
|
+
|
|
17527
|
+
#
|
|
17528
|
+
# Corresponds to the JSON property `key`
|
|
17529
|
+
# @return [String]
|
|
17530
|
+
attr_accessor :key
|
|
17531
|
+
|
|
17532
|
+
#
|
|
17533
|
+
# Corresponds to the JSON property `value`
|
|
17534
|
+
# @return [String]
|
|
17535
|
+
attr_accessor :value
|
|
17536
|
+
|
|
17537
|
+
def initialize(**args)
|
|
17538
|
+
update!(**args)
|
|
17539
|
+
end
|
|
17540
|
+
|
|
17541
|
+
# Update properties of this object
|
|
17542
|
+
def update!(**args)
|
|
17543
|
+
@key = args[:key] if args.key?(:key)
|
|
17544
|
+
@value = args[:value] if args.key?(:value)
|
|
17414
17545
|
end
|
|
17415
17546
|
end
|
|
17416
17547
|
|
|
@@ -20414,6 +20545,11 @@ module Google
|
|
|
20414
20545
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
20415
20546
|
include Google::Apis::Core::Hashable
|
|
20416
20547
|
|
|
20548
|
+
#
|
|
20549
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
20550
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
20551
|
+
attr_accessor :additional_suggested_query_results
|
|
20552
|
+
|
|
20417
20553
|
#
|
|
20418
20554
|
# Corresponds to the JSON property `contextSize`
|
|
20419
20555
|
# @return [Fixnum]
|
|
@@ -20435,6 +20571,7 @@ module Google
|
|
|
20435
20571
|
|
|
20436
20572
|
# Update properties of this object
|
|
20437
20573
|
def update!(**args)
|
|
20574
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
20438
20575
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
20439
20576
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
20440
20577
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2beta1
|
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.125.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260616"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1774,6 +1774,12 @@ module Google
|
|
|
1774
1774
|
include Google::Apis::Core::JsonObjectSupport
|
|
1775
1775
|
end
|
|
1776
1776
|
|
|
1777
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
1778
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1779
|
+
|
|
1780
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1781
|
+
end
|
|
1782
|
+
|
|
1777
1783
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
1778
1784
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1779
1785
|
|
|
@@ -1810,6 +1816,12 @@ module Google
|
|
|
1810
1816
|
include Google::Apis::Core::JsonObjectSupport
|
|
1811
1817
|
end
|
|
1812
1818
|
|
|
1819
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
1820
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1821
|
+
|
|
1822
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1823
|
+
end
|
|
1824
|
+
|
|
1813
1825
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
1814
1826
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1815
1827
|
|
|
@@ -3136,6 +3148,12 @@ module Google
|
|
|
3136
3148
|
include Google::Apis::Core::JsonObjectSupport
|
|
3137
3149
|
end
|
|
3138
3150
|
|
|
3151
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3153
|
+
|
|
3154
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3155
|
+
end
|
|
3156
|
+
|
|
3139
3157
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3140
3158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3141
3159
|
|
|
@@ -3172,6 +3190,12 @@ module Google
|
|
|
3172
3190
|
include Google::Apis::Core::JsonObjectSupport
|
|
3173
3191
|
end
|
|
3174
3192
|
|
|
3193
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3195
|
+
|
|
3196
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3197
|
+
end
|
|
3198
|
+
|
|
3175
3199
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3176
3200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3177
3201
|
|
|
@@ -7055,6 +7079,15 @@ module Google
|
|
|
7055
7079
|
end
|
|
7056
7080
|
end
|
|
7057
7081
|
|
|
7082
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
7083
|
+
# @private
|
|
7084
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7085
|
+
property :answer_record, as: 'answerRecord'
|
|
7086
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
7087
|
+
|
|
7088
|
+
end
|
|
7089
|
+
end
|
|
7090
|
+
|
|
7058
7091
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
7059
7092
|
# @private
|
|
7060
7093
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7108,6 +7141,16 @@ module Google
|
|
|
7108
7141
|
# @private
|
|
7109
7142
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7110
7143
|
property :query_text, as: 'queryText'
|
|
7144
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
7145
|
+
|
|
7146
|
+
end
|
|
7147
|
+
end
|
|
7148
|
+
|
|
7149
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
7150
|
+
# @private
|
|
7151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7152
|
+
property :key, as: 'key'
|
|
7153
|
+
property :value, as: 'value'
|
|
7111
7154
|
end
|
|
7112
7155
|
end
|
|
7113
7156
|
|
|
@@ -7350,6 +7393,8 @@ module Google
|
|
|
7350
7393
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
7351
7394
|
# @private
|
|
7352
7395
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7396
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
7397
|
+
|
|
7353
7398
|
property :context_size, as: 'contextSize'
|
|
7354
7399
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
7355
7400
|
|
|
@@ -8693,6 +8738,7 @@ module Google
|
|
|
8693
8738
|
property :conversation_process_config, as: 'conversationProcessConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig::Representation
|
|
8694
8739
|
|
|
8695
8740
|
property :disable_agent_query_logging, as: 'disableAgentQueryLogging'
|
|
8741
|
+
property :disable_query_search_context, as: 'disableQuerySearchContext'
|
|
8696
8742
|
property :enable_conversation_augmented_query, as: 'enableConversationAugmentedQuery'
|
|
8697
8743
|
property :enable_event_based_suggestion, as: 'enableEventBasedSuggestion'
|
|
8698
8744
|
property :enable_query_suggestion_only, as: 'enableQuerySuggestionOnly'
|
|
@@ -8704,6 +8750,7 @@ module Google
|
|
|
8704
8750
|
|
|
8705
8751
|
property :suggestion_feature, as: 'suggestionFeature', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionFeature, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionFeature::Representation
|
|
8706
8752
|
|
|
8753
|
+
property :suggestion_trigger_event, as: 'suggestionTriggerEvent'
|
|
8707
8754
|
property :suggestion_trigger_settings, as: 'suggestionTriggerSettings', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings::Representation
|
|
8708
8755
|
|
|
8709
8756
|
end
|
|
@@ -9492,6 +9539,15 @@ module Google
|
|
|
9492
9539
|
end
|
|
9493
9540
|
end
|
|
9494
9541
|
|
|
9542
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
9543
|
+
# @private
|
|
9544
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9545
|
+
property :answer_record, as: 'answerRecord'
|
|
9546
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
9547
|
+
|
|
9548
|
+
end
|
|
9549
|
+
end
|
|
9550
|
+
|
|
9495
9551
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
9496
9552
|
# @private
|
|
9497
9553
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9545,6 +9601,16 @@ module Google
|
|
|
9545
9601
|
# @private
|
|
9546
9602
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9547
9603
|
property :query_text, as: 'queryText'
|
|
9604
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9605
|
+
|
|
9606
|
+
end
|
|
9607
|
+
end
|
|
9608
|
+
|
|
9609
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9610
|
+
# @private
|
|
9611
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9612
|
+
property :key, as: 'key'
|
|
9613
|
+
property :value, as: 'value'
|
|
9548
9614
|
end
|
|
9549
9615
|
end
|
|
9550
9616
|
|
|
@@ -10468,6 +10534,8 @@ module Google
|
|
|
10468
10534
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
10469
10535
|
# @private
|
|
10470
10536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10537
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
10538
|
+
|
|
10471
10539
|
property :context_size, as: 'contextSize'
|
|
10472
10540
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
10473
10541
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.125.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-dialogflow_v2beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.125.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|