google-apis-dialogflow_v3 0.122.0 → 0.124.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_v3/classes.rb +198 -0
- data/lib/google/apis/dialogflow_v3/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3/representations.rb +100 -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: cd1576993f8a09b289004bf58889e9d79e36f3e86ac7cd92e26bd22e920b0535
|
|
4
|
+
data.tar.gz: d16ad16e19616537278ee00fef9a61cbda7b37c65f74c67b678cb5f8242e7f99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10ac0a195400db450ac827858478265ff32eca0a7fcc96c9f02f06f9c55afa2bbcebd296d441855b061cfed4bc523e1dc9439ca675d4ba113aaa4ed94786771d
|
|
7
|
+
data.tar.gz: 0f3d173a04bdc74b18ad1129359ca1e19ca04b78ece68818e245aa506678e50cfed3e21bd650168894bccb2b527961c1789cd88b4823ea9e6e8b744b75c51824
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
|
2
2
|
|
|
3
|
+
### v0.124.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260604
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.123.0 (2026-05-24)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260518
|
|
11
|
+
|
|
3
12
|
### v0.122.0 (2026-05-03)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260426
|
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
|
|
|
@@ -15650,6 +15650,25 @@ module Google
|
|
|
15650
15650
|
end
|
|
15651
15651
|
end
|
|
15652
15652
|
|
|
15653
|
+
#
|
|
15654
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
15655
|
+
include Google::Apis::Core::Hashable
|
|
15656
|
+
|
|
15657
|
+
#
|
|
15658
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
15659
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
15660
|
+
attr_accessor :suggested_query
|
|
15661
|
+
|
|
15662
|
+
def initialize(**args)
|
|
15663
|
+
update!(**args)
|
|
15664
|
+
end
|
|
15665
|
+
|
|
15666
|
+
# Update properties of this object
|
|
15667
|
+
def update!(**args)
|
|
15668
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
15669
|
+
end
|
|
15670
|
+
end
|
|
15671
|
+
|
|
15653
15672
|
#
|
|
15654
15673
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
15655
15674
|
include Google::Apis::Core::Hashable
|
|
@@ -15802,6 +15821,11 @@ module Google
|
|
|
15802
15821
|
# @return [String]
|
|
15803
15822
|
attr_accessor :query_text
|
|
15804
15823
|
|
|
15824
|
+
#
|
|
15825
|
+
# Corresponds to the JSON property `searchContexts`
|
|
15826
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
15827
|
+
attr_accessor :search_contexts
|
|
15828
|
+
|
|
15805
15829
|
def initialize(**args)
|
|
15806
15830
|
update!(**args)
|
|
15807
15831
|
end
|
|
@@ -15809,6 +15833,32 @@ module Google
|
|
|
15809
15833
|
# Update properties of this object
|
|
15810
15834
|
def update!(**args)
|
|
15811
15835
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
15836
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
15837
|
+
end
|
|
15838
|
+
end
|
|
15839
|
+
|
|
15840
|
+
#
|
|
15841
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
15842
|
+
include Google::Apis::Core::Hashable
|
|
15843
|
+
|
|
15844
|
+
#
|
|
15845
|
+
# Corresponds to the JSON property `key`
|
|
15846
|
+
# @return [String]
|
|
15847
|
+
attr_accessor :key
|
|
15848
|
+
|
|
15849
|
+
#
|
|
15850
|
+
# Corresponds to the JSON property `value`
|
|
15851
|
+
# @return [String]
|
|
15852
|
+
attr_accessor :value
|
|
15853
|
+
|
|
15854
|
+
def initialize(**args)
|
|
15855
|
+
update!(**args)
|
|
15856
|
+
end
|
|
15857
|
+
|
|
15858
|
+
# Update properties of this object
|
|
15859
|
+
def update!(**args)
|
|
15860
|
+
@key = args[:key] if args.key?(:key)
|
|
15861
|
+
@value = args[:value] if args.key?(:value)
|
|
15812
15862
|
end
|
|
15813
15863
|
end
|
|
15814
15864
|
|
|
@@ -15816,6 +15866,11 @@ module Google
|
|
|
15816
15866
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
15817
15867
|
include Google::Apis::Core::Hashable
|
|
15818
15868
|
|
|
15869
|
+
#
|
|
15870
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
15871
|
+
# @return [Hash<String,Object>]
|
|
15872
|
+
attr_accessor :ces_debug_info
|
|
15873
|
+
|
|
15819
15874
|
#
|
|
15820
15875
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
15821
15876
|
# @return [String]
|
|
@@ -15836,6 +15891,11 @@ module Google
|
|
|
15836
15891
|
# @return [String]
|
|
15837
15892
|
attr_accessor :query_categorization_failure_reason
|
|
15838
15893
|
|
|
15894
|
+
#
|
|
15895
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
15896
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
15897
|
+
attr_accessor :query_generation_debug_info
|
|
15898
|
+
|
|
15839
15899
|
#
|
|
15840
15900
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
15841
15901
|
# @return [String]
|
|
@@ -15852,10 +15912,12 @@ module Google
|
|
|
15852
15912
|
|
|
15853
15913
|
# Update properties of this object
|
|
15854
15914
|
def update!(**args)
|
|
15915
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
15855
15916
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
15856
15917
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
15857
15918
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
15858
15919
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
15920
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
15859
15921
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
15860
15922
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
15861
15923
|
end
|
|
@@ -15992,6 +16054,37 @@ module Google
|
|
|
15992
16054
|
end
|
|
15993
16055
|
end
|
|
15994
16056
|
|
|
16057
|
+
#
|
|
16058
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
16059
|
+
include Google::Apis::Core::Hashable
|
|
16060
|
+
|
|
16061
|
+
#
|
|
16062
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
16063
|
+
# @return [Fixnum]
|
|
16064
|
+
attr_accessor :candidates_token_count
|
|
16065
|
+
|
|
16066
|
+
#
|
|
16067
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
16068
|
+
# @return [Fixnum]
|
|
16069
|
+
attr_accessor :prompt_token_count
|
|
16070
|
+
|
|
16071
|
+
#
|
|
16072
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
16073
|
+
# @return [Fixnum]
|
|
16074
|
+
attr_accessor :total_token_count
|
|
16075
|
+
|
|
16076
|
+
def initialize(**args)
|
|
16077
|
+
update!(**args)
|
|
16078
|
+
end
|
|
16079
|
+
|
|
16080
|
+
# Update properties of this object
|
|
16081
|
+
def update!(**args)
|
|
16082
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
16083
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
16084
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
16085
|
+
end
|
|
16086
|
+
end
|
|
16087
|
+
|
|
15995
16088
|
#
|
|
15996
16089
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
15997
16090
|
include Google::Apis::Core::Hashable
|
|
@@ -16641,6 +16734,11 @@ module Google
|
|
|
16641
16734
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
16642
16735
|
include Google::Apis::Core::Hashable
|
|
16643
16736
|
|
|
16737
|
+
#
|
|
16738
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
16739
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
16740
|
+
attr_accessor :additional_suggested_query_results
|
|
16741
|
+
|
|
16644
16742
|
#
|
|
16645
16743
|
# Corresponds to the JSON property `contextSize`
|
|
16646
16744
|
# @return [Fixnum]
|
|
@@ -16662,6 +16760,7 @@ module Google
|
|
|
16662
16760
|
|
|
16663
16761
|
# Update properties of this object
|
|
16664
16762
|
def update!(**args)
|
|
16763
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
16665
16764
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
16666
16765
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
16667
16766
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -19834,6 +19933,25 @@ module Google
|
|
|
19834
19933
|
end
|
|
19835
19934
|
end
|
|
19836
19935
|
|
|
19936
|
+
#
|
|
19937
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
19938
|
+
include Google::Apis::Core::Hashable
|
|
19939
|
+
|
|
19940
|
+
#
|
|
19941
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
19942
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
19943
|
+
attr_accessor :suggested_query
|
|
19944
|
+
|
|
19945
|
+
def initialize(**args)
|
|
19946
|
+
update!(**args)
|
|
19947
|
+
end
|
|
19948
|
+
|
|
19949
|
+
# Update properties of this object
|
|
19950
|
+
def update!(**args)
|
|
19951
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
19952
|
+
end
|
|
19953
|
+
end
|
|
19954
|
+
|
|
19837
19955
|
#
|
|
19838
19956
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
19839
19957
|
include Google::Apis::Core::Hashable
|
|
@@ -19986,6 +20104,11 @@ module Google
|
|
|
19986
20104
|
# @return [String]
|
|
19987
20105
|
attr_accessor :query_text
|
|
19988
20106
|
|
|
20107
|
+
#
|
|
20108
|
+
# Corresponds to the JSON property `searchContexts`
|
|
20109
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
20110
|
+
attr_accessor :search_contexts
|
|
20111
|
+
|
|
19989
20112
|
def initialize(**args)
|
|
19990
20113
|
update!(**args)
|
|
19991
20114
|
end
|
|
@@ -19993,6 +20116,32 @@ module Google
|
|
|
19993
20116
|
# Update properties of this object
|
|
19994
20117
|
def update!(**args)
|
|
19995
20118
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
20119
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
20120
|
+
end
|
|
20121
|
+
end
|
|
20122
|
+
|
|
20123
|
+
#
|
|
20124
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
20125
|
+
include Google::Apis::Core::Hashable
|
|
20126
|
+
|
|
20127
|
+
#
|
|
20128
|
+
# Corresponds to the JSON property `key`
|
|
20129
|
+
# @return [String]
|
|
20130
|
+
attr_accessor :key
|
|
20131
|
+
|
|
20132
|
+
#
|
|
20133
|
+
# Corresponds to the JSON property `value`
|
|
20134
|
+
# @return [String]
|
|
20135
|
+
attr_accessor :value
|
|
20136
|
+
|
|
20137
|
+
def initialize(**args)
|
|
20138
|
+
update!(**args)
|
|
20139
|
+
end
|
|
20140
|
+
|
|
20141
|
+
# Update properties of this object
|
|
20142
|
+
def update!(**args)
|
|
20143
|
+
@key = args[:key] if args.key?(:key)
|
|
20144
|
+
@value = args[:value] if args.key?(:value)
|
|
19996
20145
|
end
|
|
19997
20146
|
end
|
|
19998
20147
|
|
|
@@ -20000,6 +20149,11 @@ module Google
|
|
|
20000
20149
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
20001
20150
|
include Google::Apis::Core::Hashable
|
|
20002
20151
|
|
|
20152
|
+
#
|
|
20153
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
20154
|
+
# @return [Hash<String,Object>]
|
|
20155
|
+
attr_accessor :ces_debug_info
|
|
20156
|
+
|
|
20003
20157
|
#
|
|
20004
20158
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
20005
20159
|
# @return [String]
|
|
@@ -20020,6 +20174,11 @@ module Google
|
|
|
20020
20174
|
# @return [String]
|
|
20021
20175
|
attr_accessor :query_categorization_failure_reason
|
|
20022
20176
|
|
|
20177
|
+
#
|
|
20178
|
+
# Corresponds to the JSON property `queryGenerationDebugInfo`
|
|
20179
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo]
|
|
20180
|
+
attr_accessor :query_generation_debug_info
|
|
20181
|
+
|
|
20023
20182
|
#
|
|
20024
20183
|
# Corresponds to the JSON property `queryGenerationFailureReason`
|
|
20025
20184
|
# @return [String]
|
|
@@ -20036,10 +20195,12 @@ module Google
|
|
|
20036
20195
|
|
|
20037
20196
|
# Update properties of this object
|
|
20038
20197
|
def update!(**args)
|
|
20198
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
20039
20199
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
20040
20200
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
20041
20201
|
@knowledge_assist_behavior = args[:knowledge_assist_behavior] if args.key?(:knowledge_assist_behavior)
|
|
20042
20202
|
@query_categorization_failure_reason = args[:query_categorization_failure_reason] if args.key?(:query_categorization_failure_reason)
|
|
20203
|
+
@query_generation_debug_info = args[:query_generation_debug_info] if args.key?(:query_generation_debug_info)
|
|
20043
20204
|
@query_generation_failure_reason = args[:query_generation_failure_reason] if args.key?(:query_generation_failure_reason)
|
|
20044
20205
|
@service_latency = args[:service_latency] if args.key?(:service_latency)
|
|
20045
20206
|
end
|
|
@@ -20176,6 +20337,37 @@ module Google
|
|
|
20176
20337
|
end
|
|
20177
20338
|
end
|
|
20178
20339
|
|
|
20340
|
+
#
|
|
20341
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
20342
|
+
include Google::Apis::Core::Hashable
|
|
20343
|
+
|
|
20344
|
+
#
|
|
20345
|
+
# Corresponds to the JSON property `candidatesTokenCount`
|
|
20346
|
+
# @return [Fixnum]
|
|
20347
|
+
attr_accessor :candidates_token_count
|
|
20348
|
+
|
|
20349
|
+
#
|
|
20350
|
+
# Corresponds to the JSON property `promptTokenCount`
|
|
20351
|
+
# @return [Fixnum]
|
|
20352
|
+
attr_accessor :prompt_token_count
|
|
20353
|
+
|
|
20354
|
+
#
|
|
20355
|
+
# Corresponds to the JSON property `totalTokenCount`
|
|
20356
|
+
# @return [Fixnum]
|
|
20357
|
+
attr_accessor :total_token_count
|
|
20358
|
+
|
|
20359
|
+
def initialize(**args)
|
|
20360
|
+
update!(**args)
|
|
20361
|
+
end
|
|
20362
|
+
|
|
20363
|
+
# Update properties of this object
|
|
20364
|
+
def update!(**args)
|
|
20365
|
+
@candidates_token_count = args[:candidates_token_count] if args.key?(:candidates_token_count)
|
|
20366
|
+
@prompt_token_count = args[:prompt_token_count] if args.key?(:prompt_token_count)
|
|
20367
|
+
@total_token_count = args[:total_token_count] if args.key?(:total_token_count)
|
|
20368
|
+
end
|
|
20369
|
+
end
|
|
20370
|
+
|
|
20179
20371
|
#
|
|
20180
20372
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
20181
20373
|
include Google::Apis::Core::Hashable
|
|
@@ -21038,6 +21230,11 @@ module Google
|
|
|
21038
21230
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
21039
21231
|
include Google::Apis::Core::Hashable
|
|
21040
21232
|
|
|
21233
|
+
#
|
|
21234
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
21235
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
21236
|
+
attr_accessor :additional_suggested_query_results
|
|
21237
|
+
|
|
21041
21238
|
#
|
|
21042
21239
|
# Corresponds to the JSON property `contextSize`
|
|
21043
21240
|
# @return [Fixnum]
|
|
@@ -21059,6 +21256,7 @@ module Google
|
|
|
21059
21256
|
|
|
21060
21257
|
# Update properties of this object
|
|
21061
21258
|
def update!(**args)
|
|
21259
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
21062
21260
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
21063
21261
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
21064
21262
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DialogflowV3
|
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.124.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 = "20260604"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2938,6 +2938,12 @@ module Google
|
|
|
2938
2938
|
include Google::Apis::Core::JsonObjectSupport
|
|
2939
2939
|
end
|
|
2940
2940
|
|
|
2941
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
2942
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2943
|
+
|
|
2944
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2945
|
+
end
|
|
2946
|
+
|
|
2941
2947
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
2942
2948
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2943
2949
|
|
|
@@ -2974,6 +2980,12 @@ module Google
|
|
|
2974
2980
|
include Google::Apis::Core::JsonObjectSupport
|
|
2975
2981
|
end
|
|
2976
2982
|
|
|
2983
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
2984
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2985
|
+
|
|
2986
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2987
|
+
end
|
|
2988
|
+
|
|
2977
2989
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
2978
2990
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2979
2991
|
|
|
@@ -2986,6 +2998,12 @@ module Google
|
|
|
2986
2998
|
include Google::Apis::Core::JsonObjectSupport
|
|
2987
2999
|
end
|
|
2988
3000
|
|
|
3001
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
3002
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3003
|
+
|
|
3004
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3005
|
+
end
|
|
3006
|
+
|
|
2989
3007
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
2990
3008
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2991
3009
|
|
|
@@ -3676,6 +3694,12 @@ module Google
|
|
|
3676
3694
|
include Google::Apis::Core::JsonObjectSupport
|
|
3677
3695
|
end
|
|
3678
3696
|
|
|
3697
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3699
|
+
|
|
3700
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3701
|
+
end
|
|
3702
|
+
|
|
3679
3703
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3680
3704
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3681
3705
|
|
|
@@ -3712,6 +3736,12 @@ module Google
|
|
|
3712
3736
|
include Google::Apis::Core::JsonObjectSupport
|
|
3713
3737
|
end
|
|
3714
3738
|
|
|
3739
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3741
|
+
|
|
3742
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3743
|
+
end
|
|
3744
|
+
|
|
3715
3745
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3716
3746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3717
3747
|
|
|
@@ -3724,6 +3754,12 @@ module Google
|
|
|
3724
3754
|
include Google::Apis::Core::JsonObjectSupport
|
|
3725
3755
|
end
|
|
3726
3756
|
|
|
3757
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
3758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3759
|
+
|
|
3760
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3761
|
+
end
|
|
3762
|
+
|
|
3727
3763
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
3728
3764
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3729
3765
|
|
|
@@ -8918,6 +8954,14 @@ module Google
|
|
|
8918
8954
|
end
|
|
8919
8955
|
end
|
|
8920
8956
|
|
|
8957
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
8958
|
+
# @private
|
|
8959
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8960
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
8961
|
+
|
|
8962
|
+
end
|
|
8963
|
+
end
|
|
8964
|
+
|
|
8921
8965
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
8922
8966
|
# @private
|
|
8923
8967
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8971,18 +9015,31 @@ module Google
|
|
|
8971
9015
|
# @private
|
|
8972
9016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8973
9017
|
property :query_text, as: 'queryText'
|
|
9018
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9019
|
+
|
|
9020
|
+
end
|
|
9021
|
+
end
|
|
9022
|
+
|
|
9023
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9024
|
+
# @private
|
|
9025
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9026
|
+
property :key, as: 'key'
|
|
9027
|
+
property :value, as: 'value'
|
|
8974
9028
|
end
|
|
8975
9029
|
end
|
|
8976
9030
|
|
|
8977
9031
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
8978
9032
|
# @private
|
|
8979
9033
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9034
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
8980
9035
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
8981
9036
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
|
|
8982
9037
|
|
|
8983
9038
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
8984
9039
|
|
|
8985
9040
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
9041
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
9042
|
+
|
|
8986
9043
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
8987
9044
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ServiceLatency, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ServiceLatency::Representation
|
|
8988
9045
|
|
|
@@ -9012,6 +9069,15 @@ module Google
|
|
|
9012
9069
|
end
|
|
9013
9070
|
end
|
|
9014
9071
|
|
|
9072
|
+
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
9073
|
+
# @private
|
|
9074
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9075
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
9076
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
9077
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
9078
|
+
end
|
|
9079
|
+
end
|
|
9080
|
+
|
|
9015
9081
|
class GoogleCloudDialogflowV2KnowledgeOperationMetadata
|
|
9016
9082
|
# @private
|
|
9017
9083
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -9201,6 +9267,8 @@ module Google
|
|
|
9201
9267
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
9202
9268
|
# @private
|
|
9203
9269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9270
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
9271
|
+
|
|
9204
9272
|
property :context_size, as: 'contextSize'
|
|
9205
9273
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
9206
9274
|
|
|
@@ -10215,6 +10283,14 @@ module Google
|
|
|
10215
10283
|
end
|
|
10216
10284
|
end
|
|
10217
10285
|
|
|
10286
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
10287
|
+
# @private
|
|
10288
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10289
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
10290
|
+
|
|
10291
|
+
end
|
|
10292
|
+
end
|
|
10293
|
+
|
|
10218
10294
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
10219
10295
|
# @private
|
|
10220
10296
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10268,18 +10344,31 @@ module Google
|
|
|
10268
10344
|
# @private
|
|
10269
10345
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10270
10346
|
property :query_text, as: 'queryText'
|
|
10347
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
10348
|
+
|
|
10349
|
+
end
|
|
10350
|
+
end
|
|
10351
|
+
|
|
10352
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
10353
|
+
# @private
|
|
10354
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10355
|
+
property :key, as: 'key'
|
|
10356
|
+
property :value, as: 'value'
|
|
10271
10357
|
end
|
|
10272
10358
|
end
|
|
10273
10359
|
|
|
10274
10360
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
10275
10361
|
# @private
|
|
10276
10362
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10363
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
10277
10364
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
10278
10365
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IngestedContextReferenceDebugInfo::Representation
|
|
10279
10366
|
|
|
10280
10367
|
property :knowledge_assist_behavior, as: 'knowledgeAssistBehavior', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoKnowledgeAssistBehavior::Representation
|
|
10281
10368
|
|
|
10282
10369
|
property :query_categorization_failure_reason, as: 'queryCategorizationFailureReason'
|
|
10370
|
+
property :query_generation_debug_info, as: 'queryGenerationDebugInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo::Representation
|
|
10371
|
+
|
|
10283
10372
|
property :query_generation_failure_reason, as: 'queryGenerationFailureReason'
|
|
10284
10373
|
property :service_latency, as: 'serviceLatency', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ServiceLatency, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ServiceLatency::Representation
|
|
10285
10374
|
|
|
@@ -10309,6 +10398,15 @@ module Google
|
|
|
10309
10398
|
end
|
|
10310
10399
|
end
|
|
10311
10400
|
|
|
10401
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfoQueryGenerationDebugInfo
|
|
10402
|
+
# @private
|
|
10403
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10404
|
+
property :candidates_token_count, as: 'candidatesTokenCount'
|
|
10405
|
+
property :prompt_token_count, as: 'promptTokenCount'
|
|
10406
|
+
property :total_token_count, as: 'totalTokenCount'
|
|
10407
|
+
end
|
|
10408
|
+
end
|
|
10409
|
+
|
|
10312
10410
|
class GoogleCloudDialogflowV2beta1KnowledgeOperationMetadata
|
|
10313
10411
|
# @private
|
|
10314
10412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10570,6 +10668,8 @@ module Google
|
|
|
10570
10668
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
10571
10669
|
# @private
|
|
10572
10670
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10671
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
10672
|
+
|
|
10573
10673
|
property :context_size, as: 'contextSize'
|
|
10574
10674
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
10575
10675
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dialogflow_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.124.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_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.124.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
|
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
|
- - ">="
|