google-apis-dialogflow_v2beta1 0.124.0 → 0.126.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: 1ed312890a2df40a26238aaa927c7eaac3dad301ec59f241d5ffb916d17c2941
|
|
4
|
+
data.tar.gz: 8e7574d35dbea82ca14c325f9ae74f252e693622c24f3f37a131809d2d07d48b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26af67e5c6d3b30fc7cc8eb0de1b46da5639a2c11aad8808635c9a6f113e73ed4067927abbed353496caae3ea5def085e47cbe82c532f0d67d694bac7ed37757
|
|
7
|
+
data.tar.gz: 1a4f1af6a22bc9fd459e04602bab908816bbd23cbc17d8c3b1889f6a330ccce5098c842746490b7d355bcaa691c13ca07094b823291e8724eee1ccfa00bd7752
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
|
2
2
|
|
|
3
|
+
### v0.126.0 (2026-07-05)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260622
|
|
6
|
+
|
|
7
|
+
### v0.125.0 (2026-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260616
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.124.0 (2026-05-24)
|
|
4
13
|
|
|
5
14
|
* 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)
|
|
@@ -14564,31 +14626,6 @@ module Google
|
|
|
14564
14626
|
end
|
|
14565
14627
|
end
|
|
14566
14628
|
|
|
14567
|
-
#
|
|
14568
|
-
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig
|
|
14569
|
-
include Google::Apis::Core::Hashable
|
|
14570
|
-
|
|
14571
|
-
#
|
|
14572
|
-
# Corresponds to the JSON property `baselineModelVersion`
|
|
14573
|
-
# @return [String]
|
|
14574
|
-
attr_accessor :baseline_model_version
|
|
14575
|
-
|
|
14576
|
-
#
|
|
14577
|
-
# Corresponds to the JSON property `model`
|
|
14578
|
-
# @return [String]
|
|
14579
|
-
attr_accessor :model
|
|
14580
|
-
|
|
14581
|
-
def initialize(**args)
|
|
14582
|
-
update!(**args)
|
|
14583
|
-
end
|
|
14584
|
-
|
|
14585
|
-
# Update properties of this object
|
|
14586
|
-
def update!(**args)
|
|
14587
|
-
@baseline_model_version = args[:baseline_model_version] if args.key?(:baseline_model_version)
|
|
14588
|
-
@model = args[:model] if args.key?(:model)
|
|
14589
|
-
end
|
|
14590
|
-
end
|
|
14591
|
-
|
|
14592
14629
|
#
|
|
14593
14630
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig
|
|
14594
14631
|
include Google::Apis::Core::Hashable
|
|
@@ -14706,11 +14743,6 @@ module Google
|
|
|
14706
14743
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionFeatureConfig
|
|
14707
14744
|
include Google::Apis::Core::Hashable
|
|
14708
14745
|
|
|
14709
|
-
#
|
|
14710
|
-
# Corresponds to the JSON property `conversationModelConfig`
|
|
14711
|
-
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig]
|
|
14712
|
-
attr_accessor :conversation_model_config
|
|
14713
|
-
|
|
14714
14746
|
#
|
|
14715
14747
|
# Corresponds to the JSON property `conversationProcessConfig`
|
|
14716
14748
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig]
|
|
@@ -14722,6 +14754,12 @@ module Google
|
|
|
14722
14754
|
attr_accessor :disable_agent_query_logging
|
|
14723
14755
|
alias_method :disable_agent_query_logging?, :disable_agent_query_logging
|
|
14724
14756
|
|
|
14757
|
+
#
|
|
14758
|
+
# Corresponds to the JSON property `disableQuerySearchContext`
|
|
14759
|
+
# @return [Boolean]
|
|
14760
|
+
attr_accessor :disable_query_search_context
|
|
14761
|
+
alias_method :disable_query_search_context?, :disable_query_search_context
|
|
14762
|
+
|
|
14725
14763
|
#
|
|
14726
14764
|
# Corresponds to the JSON property `enableConversationAugmentedQuery`
|
|
14727
14765
|
# @return [Boolean]
|
|
@@ -14767,6 +14805,11 @@ module Google
|
|
|
14767
14805
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionFeature]
|
|
14768
14806
|
attr_accessor :suggestion_feature
|
|
14769
14807
|
|
|
14808
|
+
#
|
|
14809
|
+
# Corresponds to the JSON property `suggestionTriggerEvent`
|
|
14810
|
+
# @return [String]
|
|
14811
|
+
attr_accessor :suggestion_trigger_event
|
|
14812
|
+
|
|
14770
14813
|
#
|
|
14771
14814
|
# Corresponds to the JSON property `suggestionTriggerSettings`
|
|
14772
14815
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings]
|
|
@@ -14778,9 +14821,9 @@ module Google
|
|
|
14778
14821
|
|
|
14779
14822
|
# Update properties of this object
|
|
14780
14823
|
def update!(**args)
|
|
14781
|
-
@conversation_model_config = args[:conversation_model_config] if args.key?(:conversation_model_config)
|
|
14782
14824
|
@conversation_process_config = args[:conversation_process_config] if args.key?(:conversation_process_config)
|
|
14783
14825
|
@disable_agent_query_logging = args[:disable_agent_query_logging] if args.key?(:disable_agent_query_logging)
|
|
14826
|
+
@disable_query_search_context = args[:disable_query_search_context] if args.key?(:disable_query_search_context)
|
|
14784
14827
|
@enable_conversation_augmented_query = args[:enable_conversation_augmented_query] if args.key?(:enable_conversation_augmented_query)
|
|
14785
14828
|
@enable_event_based_suggestion = args[:enable_event_based_suggestion] if args.key?(:enable_event_based_suggestion)
|
|
14786
14829
|
@enable_query_suggestion_only = args[:enable_query_suggestion_only] if args.key?(:enable_query_suggestion_only)
|
|
@@ -14789,6 +14832,7 @@ module Google
|
|
|
14789
14832
|
@query_config = args[:query_config] if args.key?(:query_config)
|
|
14790
14833
|
@rai_settings = args[:rai_settings] if args.key?(:rai_settings)
|
|
14791
14834
|
@suggestion_feature = args[:suggestion_feature] if args.key?(:suggestion_feature)
|
|
14835
|
+
@suggestion_trigger_event = args[:suggestion_trigger_event] if args.key?(:suggestion_trigger_event)
|
|
14792
14836
|
@suggestion_trigger_settings = args[:suggestion_trigger_settings] if args.key?(:suggestion_trigger_settings)
|
|
14793
14837
|
end
|
|
14794
14838
|
end
|
|
@@ -17252,6 +17296,31 @@ module Google
|
|
|
17252
17296
|
end
|
|
17253
17297
|
end
|
|
17254
17298
|
|
|
17299
|
+
#
|
|
17300
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
17301
|
+
include Google::Apis::Core::Hashable
|
|
17302
|
+
|
|
17303
|
+
#
|
|
17304
|
+
# Corresponds to the JSON property `answerRecord`
|
|
17305
|
+
# @return [String]
|
|
17306
|
+
attr_accessor :answer_record
|
|
17307
|
+
|
|
17308
|
+
#
|
|
17309
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
17310
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
17311
|
+
attr_accessor :suggested_query
|
|
17312
|
+
|
|
17313
|
+
def initialize(**args)
|
|
17314
|
+
update!(**args)
|
|
17315
|
+
end
|
|
17316
|
+
|
|
17317
|
+
# Update properties of this object
|
|
17318
|
+
def update!(**args)
|
|
17319
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
17320
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
17321
|
+
end
|
|
17322
|
+
end
|
|
17323
|
+
|
|
17255
17324
|
#
|
|
17256
17325
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
17257
17326
|
include Google::Apis::Core::Hashable
|
|
@@ -17404,6 +17473,11 @@ module Google
|
|
|
17404
17473
|
# @return [String]
|
|
17405
17474
|
attr_accessor :query_text
|
|
17406
17475
|
|
|
17476
|
+
#
|
|
17477
|
+
# Corresponds to the JSON property `searchContexts`
|
|
17478
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
17479
|
+
attr_accessor :search_contexts
|
|
17480
|
+
|
|
17407
17481
|
def initialize(**args)
|
|
17408
17482
|
update!(**args)
|
|
17409
17483
|
end
|
|
@@ -17411,6 +17485,32 @@ module Google
|
|
|
17411
17485
|
# Update properties of this object
|
|
17412
17486
|
def update!(**args)
|
|
17413
17487
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
17488
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
17489
|
+
end
|
|
17490
|
+
end
|
|
17491
|
+
|
|
17492
|
+
#
|
|
17493
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
17494
|
+
include Google::Apis::Core::Hashable
|
|
17495
|
+
|
|
17496
|
+
#
|
|
17497
|
+
# Corresponds to the JSON property `key`
|
|
17498
|
+
# @return [String]
|
|
17499
|
+
attr_accessor :key
|
|
17500
|
+
|
|
17501
|
+
#
|
|
17502
|
+
# Corresponds to the JSON property `value`
|
|
17503
|
+
# @return [String]
|
|
17504
|
+
attr_accessor :value
|
|
17505
|
+
|
|
17506
|
+
def initialize(**args)
|
|
17507
|
+
update!(**args)
|
|
17508
|
+
end
|
|
17509
|
+
|
|
17510
|
+
# Update properties of this object
|
|
17511
|
+
def update!(**args)
|
|
17512
|
+
@key = args[:key] if args.key?(:key)
|
|
17513
|
+
@value = args[:value] if args.key?(:value)
|
|
17414
17514
|
end
|
|
17415
17515
|
end
|
|
17416
17516
|
|
|
@@ -20414,6 +20514,11 @@ module Google
|
|
|
20414
20514
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
20415
20515
|
include Google::Apis::Core::Hashable
|
|
20416
20516
|
|
|
20517
|
+
#
|
|
20518
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
20519
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
20520
|
+
attr_accessor :additional_suggested_query_results
|
|
20521
|
+
|
|
20417
20522
|
#
|
|
20418
20523
|
# Corresponds to the JSON property `contextSize`
|
|
20419
20524
|
# @return [Fixnum]
|
|
@@ -20435,6 +20540,7 @@ module Google
|
|
|
20435
20540
|
|
|
20436
20541
|
# Update properties of this object
|
|
20437
20542
|
def update!(**args)
|
|
20543
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
20438
20544
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
20439
20545
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
20440
20546
|
@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.126.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 = "20260622"
|
|
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
|
|
|
@@ -2644,12 +2656,6 @@ module Google
|
|
|
2644
2656
|
include Google::Apis::Core::JsonObjectSupport
|
|
2645
2657
|
end
|
|
2646
2658
|
|
|
2647
|
-
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig
|
|
2648
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2649
|
-
|
|
2650
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
2651
|
-
end
|
|
2652
|
-
|
|
2653
2659
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig
|
|
2654
2660
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2655
2661
|
|
|
@@ -3136,6 +3142,12 @@ module Google
|
|
|
3136
3142
|
include Google::Apis::Core::JsonObjectSupport
|
|
3137
3143
|
end
|
|
3138
3144
|
|
|
3145
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3147
|
+
|
|
3148
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3149
|
+
end
|
|
3150
|
+
|
|
3139
3151
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3140
3152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3141
3153
|
|
|
@@ -3172,6 +3184,12 @@ module Google
|
|
|
3172
3184
|
include Google::Apis::Core::JsonObjectSupport
|
|
3173
3185
|
end
|
|
3174
3186
|
|
|
3187
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3189
|
+
|
|
3190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3191
|
+
end
|
|
3192
|
+
|
|
3175
3193
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3176
3194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3177
3195
|
|
|
@@ -7055,6 +7073,15 @@ module Google
|
|
|
7055
7073
|
end
|
|
7056
7074
|
end
|
|
7057
7075
|
|
|
7076
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
7077
|
+
# @private
|
|
7078
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7079
|
+
property :answer_record, as: 'answerRecord'
|
|
7080
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
7081
|
+
|
|
7082
|
+
end
|
|
7083
|
+
end
|
|
7084
|
+
|
|
7058
7085
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
7059
7086
|
# @private
|
|
7060
7087
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7108,6 +7135,16 @@ module Google
|
|
|
7108
7135
|
# @private
|
|
7109
7136
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7110
7137
|
property :query_text, as: 'queryText'
|
|
7138
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
7139
|
+
|
|
7140
|
+
end
|
|
7141
|
+
end
|
|
7142
|
+
|
|
7143
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
7144
|
+
# @private
|
|
7145
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7146
|
+
property :key, as: 'key'
|
|
7147
|
+
property :value, as: 'value'
|
|
7111
7148
|
end
|
|
7112
7149
|
end
|
|
7113
7150
|
|
|
@@ -7350,6 +7387,8 @@ module Google
|
|
|
7350
7387
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
7351
7388
|
# @private
|
|
7352
7389
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7390
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
7391
|
+
|
|
7353
7392
|
property :context_size, as: 'contextSize'
|
|
7354
7393
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
7355
7394
|
|
|
@@ -8647,14 +8686,6 @@ module Google
|
|
|
8647
8686
|
end
|
|
8648
8687
|
end
|
|
8649
8688
|
|
|
8650
|
-
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig
|
|
8651
|
-
# @private
|
|
8652
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8653
|
-
property :baseline_model_version, as: 'baselineModelVersion'
|
|
8654
|
-
property :model, as: 'model'
|
|
8655
|
-
end
|
|
8656
|
-
end
|
|
8657
|
-
|
|
8658
8689
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig
|
|
8659
8690
|
# @private
|
|
8660
8691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8688,11 +8719,10 @@ module Google
|
|
|
8688
8719
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionFeatureConfig
|
|
8689
8720
|
# @private
|
|
8690
8721
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8691
|
-
property :conversation_model_config, as: 'conversationModelConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationModelConfig::Representation
|
|
8692
|
-
|
|
8693
8722
|
property :conversation_process_config, as: 'conversationProcessConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig::Representation
|
|
8694
8723
|
|
|
8695
8724
|
property :disable_agent_query_logging, as: 'disableAgentQueryLogging'
|
|
8725
|
+
property :disable_query_search_context, as: 'disableQuerySearchContext'
|
|
8696
8726
|
property :enable_conversation_augmented_query, as: 'enableConversationAugmentedQuery'
|
|
8697
8727
|
property :enable_event_based_suggestion, as: 'enableEventBasedSuggestion'
|
|
8698
8728
|
property :enable_query_suggestion_only, as: 'enableQuerySuggestionOnly'
|
|
@@ -8704,6 +8734,7 @@ module Google
|
|
|
8704
8734
|
|
|
8705
8735
|
property :suggestion_feature, as: 'suggestionFeature', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionFeature, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestionFeature::Representation
|
|
8706
8736
|
|
|
8737
|
+
property :suggestion_trigger_event, as: 'suggestionTriggerEvent'
|
|
8707
8738
|
property :suggestion_trigger_settings, as: 'suggestionTriggerSettings', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings::Representation
|
|
8708
8739
|
|
|
8709
8740
|
end
|
|
@@ -9492,6 +9523,15 @@ module Google
|
|
|
9492
9523
|
end
|
|
9493
9524
|
end
|
|
9494
9525
|
|
|
9526
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
9527
|
+
# @private
|
|
9528
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9529
|
+
property :answer_record, as: 'answerRecord'
|
|
9530
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
9531
|
+
|
|
9532
|
+
end
|
|
9533
|
+
end
|
|
9534
|
+
|
|
9495
9535
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
9496
9536
|
# @private
|
|
9497
9537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9545,6 +9585,16 @@ module Google
|
|
|
9545
9585
|
# @private
|
|
9546
9586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9547
9587
|
property :query_text, as: 'queryText'
|
|
9588
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9589
|
+
|
|
9590
|
+
end
|
|
9591
|
+
end
|
|
9592
|
+
|
|
9593
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9594
|
+
# @private
|
|
9595
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9596
|
+
property :key, as: 'key'
|
|
9597
|
+
property :value, as: 'value'
|
|
9548
9598
|
end
|
|
9549
9599
|
end
|
|
9550
9600
|
|
|
@@ -10468,6 +10518,8 @@ module Google
|
|
|
10468
10518
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
10469
10519
|
# @private
|
|
10470
10520
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10521
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
10522
|
+
|
|
10471
10523
|
property :context_size, as: 'contextSize'
|
|
10472
10524
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
10473
10525
|
|
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.126.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.126.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
|
- - ">="
|