google-apis-dialogflow_v2 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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/dialogflow_v2/classes.rb +137 -0
- data/lib/google/apis/dialogflow_v2/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v2/representations.rb +68 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69fe8981ac6aae9dbe982f4d3f6e3f12ee15e618e89af818c3fba53c36c1faeb
|
|
4
|
+
data.tar.gz: e291e8c4473bff1712e72d7e48f3c9aa73032b23851ff92d6b2e9445b7e1af51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33aa86d09cf947f70d89b219b58a6abda7a9657a3a02a88c77e2a07d97fb7056613d08baedfeedeac348dfd4e131a7744a5dfffcd72dda53abcc5cb57c2ac7c5
|
|
7
|
+
data.tar.gz: 101769c3bc00d47c5be71ff9b4734cc94f3216c5ede7f1626e9dd039bde55175c8088f9e2ffbb495460d9f266868cccbed7324b0f8005b33918ffac1aab23e36
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
|
2
2
|
|
|
3
|
+
### v0.126.0 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260616
|
|
6
|
+
|
|
7
|
+
### v0.125.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260604
|
|
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
|
|
|
@@ -10983,6 +10983,12 @@ module Google
|
|
|
10983
10983
|
attr_accessor :disable_agent_query_logging
|
|
10984
10984
|
alias_method :disable_agent_query_logging?, :disable_agent_query_logging
|
|
10985
10985
|
|
|
10986
|
+
#
|
|
10987
|
+
# Corresponds to the JSON property `disableQuerySearchContext`
|
|
10988
|
+
# @return [Boolean]
|
|
10989
|
+
attr_accessor :disable_query_search_context
|
|
10990
|
+
alias_method :disable_query_search_context?, :disable_query_search_context
|
|
10991
|
+
|
|
10986
10992
|
#
|
|
10987
10993
|
# Corresponds to the JSON property `enableConversationAugmentedQuery`
|
|
10988
10994
|
# @return [Boolean]
|
|
@@ -11028,6 +11034,11 @@ module Google
|
|
|
11028
11034
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionFeature]
|
|
11029
11035
|
attr_accessor :suggestion_feature
|
|
11030
11036
|
|
|
11037
|
+
#
|
|
11038
|
+
# Corresponds to the JSON property `suggestionTriggerEvent`
|
|
11039
|
+
# @return [String]
|
|
11040
|
+
attr_accessor :suggestion_trigger_event
|
|
11041
|
+
|
|
11031
11042
|
#
|
|
11032
11043
|
# Corresponds to the JSON property `suggestionTriggerSettings`
|
|
11033
11044
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionTriggerSettings]
|
|
@@ -11042,6 +11053,7 @@ module Google
|
|
|
11042
11053
|
@conversation_model_config = args[:conversation_model_config] if args.key?(:conversation_model_config)
|
|
11043
11054
|
@conversation_process_config = args[:conversation_process_config] if args.key?(:conversation_process_config)
|
|
11044
11055
|
@disable_agent_query_logging = args[:disable_agent_query_logging] if args.key?(:disable_agent_query_logging)
|
|
11056
|
+
@disable_query_search_context = args[:disable_query_search_context] if args.key?(:disable_query_search_context)
|
|
11045
11057
|
@enable_conversation_augmented_query = args[:enable_conversation_augmented_query] if args.key?(:enable_conversation_augmented_query)
|
|
11046
11058
|
@enable_event_based_suggestion = args[:enable_event_based_suggestion] if args.key?(:enable_event_based_suggestion)
|
|
11047
11059
|
@enable_query_suggestion_only = args[:enable_query_suggestion_only] if args.key?(:enable_query_suggestion_only)
|
|
@@ -11050,6 +11062,7 @@ module Google
|
|
|
11050
11062
|
@query_config = args[:query_config] if args.key?(:query_config)
|
|
11051
11063
|
@rai_settings = args[:rai_settings] if args.key?(:rai_settings)
|
|
11052
11064
|
@suggestion_feature = args[:suggestion_feature] if args.key?(:suggestion_feature)
|
|
11065
|
+
@suggestion_trigger_event = args[:suggestion_trigger_event] if args.key?(:suggestion_trigger_event)
|
|
11053
11066
|
@suggestion_trigger_settings = args[:suggestion_trigger_settings] if args.key?(:suggestion_trigger_settings)
|
|
11054
11067
|
end
|
|
11055
11068
|
end
|
|
@@ -13128,6 +13141,31 @@ module Google
|
|
|
13128
13141
|
end
|
|
13129
13142
|
end
|
|
13130
13143
|
|
|
13144
|
+
#
|
|
13145
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
13146
|
+
include Google::Apis::Core::Hashable
|
|
13147
|
+
|
|
13148
|
+
#
|
|
13149
|
+
# Corresponds to the JSON property `answerRecord`
|
|
13150
|
+
# @return [String]
|
|
13151
|
+
attr_accessor :answer_record
|
|
13152
|
+
|
|
13153
|
+
#
|
|
13154
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
13155
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
13156
|
+
attr_accessor :suggested_query
|
|
13157
|
+
|
|
13158
|
+
def initialize(**args)
|
|
13159
|
+
update!(**args)
|
|
13160
|
+
end
|
|
13161
|
+
|
|
13162
|
+
# Update properties of this object
|
|
13163
|
+
def update!(**args)
|
|
13164
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
13165
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
13166
|
+
end
|
|
13167
|
+
end
|
|
13168
|
+
|
|
13131
13169
|
#
|
|
13132
13170
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
13133
13171
|
include Google::Apis::Core::Hashable
|
|
@@ -13280,6 +13318,11 @@ module Google
|
|
|
13280
13318
|
# @return [String]
|
|
13281
13319
|
attr_accessor :query_text
|
|
13282
13320
|
|
|
13321
|
+
#
|
|
13322
|
+
# Corresponds to the JSON property `searchContexts`
|
|
13323
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
13324
|
+
attr_accessor :search_contexts
|
|
13325
|
+
|
|
13283
13326
|
def initialize(**args)
|
|
13284
13327
|
update!(**args)
|
|
13285
13328
|
end
|
|
@@ -13287,6 +13330,32 @@ module Google
|
|
|
13287
13330
|
# Update properties of this object
|
|
13288
13331
|
def update!(**args)
|
|
13289
13332
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
13333
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
13334
|
+
end
|
|
13335
|
+
end
|
|
13336
|
+
|
|
13337
|
+
#
|
|
13338
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
13339
|
+
include Google::Apis::Core::Hashable
|
|
13340
|
+
|
|
13341
|
+
#
|
|
13342
|
+
# Corresponds to the JSON property `key`
|
|
13343
|
+
# @return [String]
|
|
13344
|
+
attr_accessor :key
|
|
13345
|
+
|
|
13346
|
+
#
|
|
13347
|
+
# Corresponds to the JSON property `value`
|
|
13348
|
+
# @return [String]
|
|
13349
|
+
attr_accessor :value
|
|
13350
|
+
|
|
13351
|
+
def initialize(**args)
|
|
13352
|
+
update!(**args)
|
|
13353
|
+
end
|
|
13354
|
+
|
|
13355
|
+
# Update properties of this object
|
|
13356
|
+
def update!(**args)
|
|
13357
|
+
@key = args[:key] if args.key?(:key)
|
|
13358
|
+
@value = args[:value] if args.key?(:value)
|
|
13290
13359
|
end
|
|
13291
13360
|
end
|
|
13292
13361
|
|
|
@@ -16054,6 +16123,11 @@ module Google
|
|
|
16054
16123
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
16055
16124
|
include Google::Apis::Core::Hashable
|
|
16056
16125
|
|
|
16126
|
+
#
|
|
16127
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
16128
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
16129
|
+
attr_accessor :additional_suggested_query_results
|
|
16130
|
+
|
|
16057
16131
|
#
|
|
16058
16132
|
# Corresponds to the JSON property `contextSize`
|
|
16059
16133
|
# @return [Fixnum]
|
|
@@ -16075,6 +16149,7 @@ module Google
|
|
|
16075
16149
|
|
|
16076
16150
|
# Update properties of this object
|
|
16077
16151
|
def update!(**args)
|
|
16152
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
16078
16153
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
16079
16154
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
16080
16155
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -20657,6 +20732,31 @@ module Google
|
|
|
20657
20732
|
end
|
|
20658
20733
|
end
|
|
20659
20734
|
|
|
20735
|
+
#
|
|
20736
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
20737
|
+
include Google::Apis::Core::Hashable
|
|
20738
|
+
|
|
20739
|
+
#
|
|
20740
|
+
# Corresponds to the JSON property `answerRecord`
|
|
20741
|
+
# @return [String]
|
|
20742
|
+
attr_accessor :answer_record
|
|
20743
|
+
|
|
20744
|
+
#
|
|
20745
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
20746
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
20747
|
+
attr_accessor :suggested_query
|
|
20748
|
+
|
|
20749
|
+
def initialize(**args)
|
|
20750
|
+
update!(**args)
|
|
20751
|
+
end
|
|
20752
|
+
|
|
20753
|
+
# Update properties of this object
|
|
20754
|
+
def update!(**args)
|
|
20755
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
20756
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
20757
|
+
end
|
|
20758
|
+
end
|
|
20759
|
+
|
|
20660
20760
|
#
|
|
20661
20761
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
20662
20762
|
include Google::Apis::Core::Hashable
|
|
@@ -20809,6 +20909,11 @@ module Google
|
|
|
20809
20909
|
# @return [String]
|
|
20810
20910
|
attr_accessor :query_text
|
|
20811
20911
|
|
|
20912
|
+
#
|
|
20913
|
+
# Corresponds to the JSON property `searchContexts`
|
|
20914
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
20915
|
+
attr_accessor :search_contexts
|
|
20916
|
+
|
|
20812
20917
|
def initialize(**args)
|
|
20813
20918
|
update!(**args)
|
|
20814
20919
|
end
|
|
@@ -20816,6 +20921,32 @@ module Google
|
|
|
20816
20921
|
# Update properties of this object
|
|
20817
20922
|
def update!(**args)
|
|
20818
20923
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
20924
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
20925
|
+
end
|
|
20926
|
+
end
|
|
20927
|
+
|
|
20928
|
+
#
|
|
20929
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
20930
|
+
include Google::Apis::Core::Hashable
|
|
20931
|
+
|
|
20932
|
+
#
|
|
20933
|
+
# Corresponds to the JSON property `key`
|
|
20934
|
+
# @return [String]
|
|
20935
|
+
attr_accessor :key
|
|
20936
|
+
|
|
20937
|
+
#
|
|
20938
|
+
# Corresponds to the JSON property `value`
|
|
20939
|
+
# @return [String]
|
|
20940
|
+
attr_accessor :value
|
|
20941
|
+
|
|
20942
|
+
def initialize(**args)
|
|
20943
|
+
update!(**args)
|
|
20944
|
+
end
|
|
20945
|
+
|
|
20946
|
+
# Update properties of this object
|
|
20947
|
+
def update!(**args)
|
|
20948
|
+
@key = args[:key] if args.key?(:key)
|
|
20949
|
+
@value = args[:value] if args.key?(:value)
|
|
20819
20950
|
end
|
|
20820
20951
|
end
|
|
20821
20952
|
|
|
@@ -21904,6 +22035,11 @@ module Google
|
|
|
21904
22035
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
21905
22036
|
include Google::Apis::Core::Hashable
|
|
21906
22037
|
|
|
22038
|
+
#
|
|
22039
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
22040
|
+
# @return [Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
22041
|
+
attr_accessor :additional_suggested_query_results
|
|
22042
|
+
|
|
21907
22043
|
#
|
|
21908
22044
|
# Corresponds to the JSON property `contextSize`
|
|
21909
22045
|
# @return [Fixnum]
|
|
@@ -21925,6 +22061,7 @@ module Google
|
|
|
21925
22061
|
|
|
21926
22062
|
# Update properties of this object
|
|
21927
22063
|
def update!(**args)
|
|
22064
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
21928
22065
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
21929
22066
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
21930
22067
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV2
|
|
18
18
|
# Version of the google-apis-dialogflow_v2 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 = "20260616"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2422,6 +2422,12 @@ module Google
|
|
|
2422
2422
|
include Google::Apis::Core::JsonObjectSupport
|
|
2423
2423
|
end
|
|
2424
2424
|
|
|
2425
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
2426
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2427
|
+
|
|
2428
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2429
|
+
end
|
|
2430
|
+
|
|
2425
2431
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
2426
2432
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2427
2433
|
|
|
@@ -2458,6 +2464,12 @@ module Google
|
|
|
2458
2464
|
include Google::Apis::Core::JsonObjectSupport
|
|
2459
2465
|
end
|
|
2460
2466
|
|
|
2467
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
2468
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2469
|
+
|
|
2470
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2471
|
+
end
|
|
2472
|
+
|
|
2461
2473
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
2462
2474
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2463
2475
|
|
|
@@ -3808,6 +3820,12 @@ module Google
|
|
|
3808
3820
|
include Google::Apis::Core::JsonObjectSupport
|
|
3809
3821
|
end
|
|
3810
3822
|
|
|
3823
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3824
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3825
|
+
|
|
3826
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3827
|
+
end
|
|
3828
|
+
|
|
3811
3829
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3812
3830
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3813
3831
|
|
|
@@ -3844,6 +3862,12 @@ module Google
|
|
|
3844
3862
|
include Google::Apis::Core::JsonObjectSupport
|
|
3845
3863
|
end
|
|
3846
3864
|
|
|
3865
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3866
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3867
|
+
|
|
3868
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3869
|
+
end
|
|
3870
|
+
|
|
3847
3871
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3848
3872
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3849
3873
|
|
|
@@ -7562,6 +7586,7 @@ module Google
|
|
|
7562
7586
|
property :conversation_process_config, as: 'conversationProcessConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationProcessConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigConversationProcessConfig::Representation
|
|
7563
7587
|
|
|
7564
7588
|
property :disable_agent_query_logging, as: 'disableAgentQueryLogging'
|
|
7589
|
+
property :disable_query_search_context, as: 'disableQuerySearchContext'
|
|
7565
7590
|
property :enable_conversation_augmented_query, as: 'enableConversationAugmentedQuery'
|
|
7566
7591
|
property :enable_event_based_suggestion, as: 'enableEventBasedSuggestion'
|
|
7567
7592
|
property :enable_query_suggestion_only, as: 'enableQuerySuggestionOnly'
|
|
@@ -7573,6 +7598,7 @@ module Google
|
|
|
7573
7598
|
|
|
7574
7599
|
property :suggestion_feature, as: 'suggestionFeature', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionFeature, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SuggestionFeature::Representation
|
|
7575
7600
|
|
|
7601
|
+
property :suggestion_trigger_event, as: 'suggestionTriggerEvent'
|
|
7576
7602
|
property :suggestion_trigger_settings, as: 'suggestionTriggerSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionTriggerSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionTriggerSettings::Representation
|
|
7577
7603
|
|
|
7578
7604
|
end
|
|
@@ -8236,6 +8262,15 @@ module Google
|
|
|
8236
8262
|
end
|
|
8237
8263
|
end
|
|
8238
8264
|
|
|
8265
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
8266
|
+
# @private
|
|
8267
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8268
|
+
property :answer_record, as: 'answerRecord'
|
|
8269
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
8270
|
+
|
|
8271
|
+
end
|
|
8272
|
+
end
|
|
8273
|
+
|
|
8239
8274
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
8240
8275
|
# @private
|
|
8241
8276
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8289,6 +8324,16 @@ module Google
|
|
|
8289
8324
|
# @private
|
|
8290
8325
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8291
8326
|
property :query_text, as: 'queryText'
|
|
8327
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
8328
|
+
|
|
8329
|
+
end
|
|
8330
|
+
end
|
|
8331
|
+
|
|
8332
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
8333
|
+
# @private
|
|
8334
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8335
|
+
property :key, as: 'key'
|
|
8336
|
+
property :value, as: 'value'
|
|
8292
8337
|
end
|
|
8293
8338
|
end
|
|
8294
8339
|
|
|
@@ -9134,6 +9179,8 @@ module Google
|
|
|
9134
9179
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
9135
9180
|
# @private
|
|
9136
9181
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9182
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
9183
|
+
|
|
9137
9184
|
property :context_size, as: 'contextSize'
|
|
9138
9185
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
9139
9186
|
|
|
@@ -10593,6 +10640,15 @@ module Google
|
|
|
10593
10640
|
end
|
|
10594
10641
|
end
|
|
10595
10642
|
|
|
10643
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
10644
|
+
# @private
|
|
10645
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10646
|
+
property :answer_record, as: 'answerRecord'
|
|
10647
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
10648
|
+
|
|
10649
|
+
end
|
|
10650
|
+
end
|
|
10651
|
+
|
|
10596
10652
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
10597
10653
|
# @private
|
|
10598
10654
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10646,6 +10702,16 @@ module Google
|
|
|
10646
10702
|
# @private
|
|
10647
10703
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10648
10704
|
property :query_text, as: 'queryText'
|
|
10705
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
10706
|
+
|
|
10707
|
+
end
|
|
10708
|
+
end
|
|
10709
|
+
|
|
10710
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
10711
|
+
# @private
|
|
10712
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10713
|
+
property :key, as: 'key'
|
|
10714
|
+
property :value, as: 'value'
|
|
10649
10715
|
end
|
|
10650
10716
|
end
|
|
10651
10717
|
|
|
@@ -10960,6 +11026,8 @@ module Google
|
|
|
10960
11026
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
10961
11027
|
# @private
|
|
10962
11028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11029
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
11030
|
+
|
|
10963
11031
|
property :context_size, as: 'contextSize'
|
|
10964
11032
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
10965
11033
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v2
|
|
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_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.126.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
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
|
- - ">="
|