google-apis-dialogflow_v3 0.103.0 → 0.104.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: 465185077fc97392593c2b80627516b4f780e39ec7a8ff2a4921e4c1b671d66e
|
4
|
+
data.tar.gz: 8bbffe434b7335a4c76752e45cfedc44a0b315dfdc047d0f11800a9904c7ec3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2170a06faf518d1f8cc4d0835b3c97f4e279913664bbdf7c4d9d3b23bad59f6524e2f3c6143bca9f9b5af71f32210876740d1e22b02f4741b0f5759412d8474
|
7
|
+
data.tar.gz: 70640bd6e6db82d1a4419bb9ae4728d4417cf606da79db52c88434b812f65008574131e633566a5eeaa54002b91aa1ddce14ca2ab56d09894e0e07891397adba
|
data/CHANGELOG.md
CHANGED
@@ -13596,6 +13596,25 @@ module Google
|
|
13596
13596
|
end
|
13597
13597
|
end
|
13598
13598
|
|
13599
|
+
# Suggestion generated using free form generator.
|
13600
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
13601
|
+
include Google::Apis::Core::Hashable
|
13602
|
+
|
13603
|
+
# Required. Free form suggestion.
|
13604
|
+
# Corresponds to the JSON property `response`
|
13605
|
+
# @return [String]
|
13606
|
+
attr_accessor :response
|
13607
|
+
|
13608
|
+
def initialize(**args)
|
13609
|
+
update!(**args)
|
13610
|
+
end
|
13611
|
+
|
13612
|
+
# Update properties of this object
|
13613
|
+
def update!(**args)
|
13614
|
+
@response = args[:response] if args.key?(:response)
|
13615
|
+
end
|
13616
|
+
end
|
13617
|
+
|
13599
13618
|
# Google Cloud Storage location for the output.
|
13600
13619
|
class GoogleCloudDialogflowV2GcsDestination
|
13601
13620
|
include Google::Apis::Core::Hashable
|
@@ -13617,6 +13636,90 @@ module Google
|
|
13617
13636
|
end
|
13618
13637
|
end
|
13619
13638
|
|
13639
|
+
# The response message for Conversations.GenerateSuggestions.
|
13640
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
13641
|
+
include Google::Apis::Core::Hashable
|
13642
|
+
|
13643
|
+
# The answers generated for the conversation based on context.
|
13644
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
13645
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
13646
|
+
attr_accessor :generator_suggestion_answers
|
13647
|
+
|
13648
|
+
# The name of the latest conversation message used as context for compiling
|
13649
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
13650
|
+
# Corresponds to the JSON property `latestMessage`
|
13651
|
+
# @return [String]
|
13652
|
+
attr_accessor :latest_message
|
13653
|
+
|
13654
|
+
def initialize(**args)
|
13655
|
+
update!(**args)
|
13656
|
+
end
|
13657
|
+
|
13658
|
+
# Update properties of this object
|
13659
|
+
def update!(**args)
|
13660
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
13661
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
13662
|
+
end
|
13663
|
+
end
|
13664
|
+
|
13665
|
+
# A GeneratorSuggestion answer.
|
13666
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
13667
|
+
include Google::Apis::Core::Hashable
|
13668
|
+
|
13669
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
13670
|
+
# provide suggestion feedback.
|
13671
|
+
# Corresponds to the JSON property `answerRecord`
|
13672
|
+
# @return [String]
|
13673
|
+
attr_accessor :answer_record
|
13674
|
+
|
13675
|
+
# Suggestion generated using a Generator.
|
13676
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
13677
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GeneratorSuggestion]
|
13678
|
+
attr_accessor :generator_suggestion
|
13679
|
+
|
13680
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
13681
|
+
# locations//generators/`.
|
13682
|
+
# Corresponds to the JSON property `sourceGenerator`
|
13683
|
+
# @return [String]
|
13684
|
+
attr_accessor :source_generator
|
13685
|
+
|
13686
|
+
def initialize(**args)
|
13687
|
+
update!(**args)
|
13688
|
+
end
|
13689
|
+
|
13690
|
+
# Update properties of this object
|
13691
|
+
def update!(**args)
|
13692
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
13693
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
13694
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
13695
|
+
end
|
13696
|
+
end
|
13697
|
+
|
13698
|
+
# Suggestion generated using a Generator.
|
13699
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
13700
|
+
include Google::Apis::Core::Hashable
|
13701
|
+
|
13702
|
+
# Suggestion generated using free form generator.
|
13703
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
13704
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2FreeFormSuggestion]
|
13705
|
+
attr_accessor :free_form_suggestion
|
13706
|
+
|
13707
|
+
# Suggested summary of the conversation.
|
13708
|
+
# Corresponds to the JSON property `summarySuggestion`
|
13709
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestion]
|
13710
|
+
attr_accessor :summary_suggestion
|
13711
|
+
|
13712
|
+
def initialize(**args)
|
13713
|
+
update!(**args)
|
13714
|
+
end
|
13715
|
+
|
13716
|
+
# Update properties of this object
|
13717
|
+
def update!(**args)
|
13718
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
13719
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
13720
|
+
end
|
13721
|
+
end
|
13722
|
+
|
13620
13723
|
# Represents a notification sent to Cloud Pub/Sub subscribers for human agent
|
13621
13724
|
# assistant events in a specific conversation.
|
13622
13725
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
@@ -16019,6 +16122,11 @@ module Google
|
|
16019
16122
|
# @return [Google::Apis::DialogflowV3::GoogleRpcStatus]
|
16020
16123
|
attr_accessor :error
|
16021
16124
|
|
16125
|
+
# The response message for Conversations.GenerateSuggestions.
|
16126
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
16127
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponse]
|
16128
|
+
attr_accessor :generate_suggestions_response
|
16129
|
+
|
16022
16130
|
# The response message for Participants.SuggestArticles.
|
16023
16131
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
16024
16132
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestArticlesResponse]
|
@@ -16046,6 +16154,7 @@ module Google
|
|
16046
16154
|
# Update properties of this object
|
16047
16155
|
def update!(**args)
|
16048
16156
|
@error = args[:error] if args.key?(:error)
|
16157
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
16049
16158
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
16050
16159
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
16051
16160
|
@suggest_knowledge_assist_response = args[:suggest_knowledge_assist_response] if args.key?(:suggest_knowledge_assist_response)
|
@@ -16053,6 +16162,50 @@ module Google
|
|
16053
16162
|
end
|
16054
16163
|
end
|
16055
16164
|
|
16165
|
+
# Suggested summary of the conversation.
|
16166
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
16167
|
+
include Google::Apis::Core::Hashable
|
16168
|
+
|
16169
|
+
# Required. All the parts of generated summary.
|
16170
|
+
# Corresponds to the JSON property `summarySections`
|
16171
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestionSummarySection>]
|
16172
|
+
attr_accessor :summary_sections
|
16173
|
+
|
16174
|
+
def initialize(**args)
|
16175
|
+
update!(**args)
|
16176
|
+
end
|
16177
|
+
|
16178
|
+
# Update properties of this object
|
16179
|
+
def update!(**args)
|
16180
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
16181
|
+
end
|
16182
|
+
end
|
16183
|
+
|
16184
|
+
# A component of the generated summary.
|
16185
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
16186
|
+
include Google::Apis::Core::Hashable
|
16187
|
+
|
16188
|
+
# Required. Name of the section.
|
16189
|
+
# Corresponds to the JSON property `section`
|
16190
|
+
# @return [String]
|
16191
|
+
attr_accessor :section
|
16192
|
+
|
16193
|
+
# Required. Summary text for the section.
|
16194
|
+
# Corresponds to the JSON property `summary`
|
16195
|
+
# @return [String]
|
16196
|
+
attr_accessor :summary
|
16197
|
+
|
16198
|
+
def initialize(**args)
|
16199
|
+
update!(**args)
|
16200
|
+
end
|
16201
|
+
|
16202
|
+
# Update properties of this object
|
16203
|
+
def update!(**args)
|
16204
|
+
@section = args[:section] if args.key?(:section)
|
16205
|
+
@summary = args[:summary] if args.key?(:summary)
|
16206
|
+
end
|
16207
|
+
end
|
16208
|
+
|
16056
16209
|
# Metadata for a ConversationModels.UndeployConversationModel operation.
|
16057
16210
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
16058
16211
|
include Google::Apis::Core::Hashable
|
@@ -16803,6 +16956,25 @@ module Google
|
|
16803
16956
|
end
|
16804
16957
|
end
|
16805
16958
|
|
16959
|
+
# Suggestion generated using free form generator.
|
16960
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
16961
|
+
include Google::Apis::Core::Hashable
|
16962
|
+
|
16963
|
+
# Required. Free form suggestion.
|
16964
|
+
# Corresponds to the JSON property `response`
|
16965
|
+
# @return [String]
|
16966
|
+
attr_accessor :response
|
16967
|
+
|
16968
|
+
def initialize(**args)
|
16969
|
+
update!(**args)
|
16970
|
+
end
|
16971
|
+
|
16972
|
+
# Update properties of this object
|
16973
|
+
def update!(**args)
|
16974
|
+
@response = args[:response] if args.key?(:response)
|
16975
|
+
end
|
16976
|
+
end
|
16977
|
+
|
16806
16978
|
# Google Cloud Storage location for the output.
|
16807
16979
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
16808
16980
|
include Google::Apis::Core::Hashable
|
@@ -16824,6 +16996,90 @@ module Google
|
|
16824
16996
|
end
|
16825
16997
|
end
|
16826
16998
|
|
16999
|
+
# The response message for Conversations.GenerateSuggestions.
|
17000
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
17001
|
+
include Google::Apis::Core::Hashable
|
17002
|
+
|
17003
|
+
# The answers generated for the conversation based on context.
|
17004
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
17005
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
17006
|
+
attr_accessor :generator_suggestion_answers
|
17007
|
+
|
17008
|
+
# The name of the latest conversation message used as context for compiling
|
17009
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
17010
|
+
# Corresponds to the JSON property `latestMessage`
|
17011
|
+
# @return [String]
|
17012
|
+
attr_accessor :latest_message
|
17013
|
+
|
17014
|
+
def initialize(**args)
|
17015
|
+
update!(**args)
|
17016
|
+
end
|
17017
|
+
|
17018
|
+
# Update properties of this object
|
17019
|
+
def update!(**args)
|
17020
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
17021
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
17022
|
+
end
|
17023
|
+
end
|
17024
|
+
|
17025
|
+
# A GeneratorSuggestion answer.
|
17026
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
17027
|
+
include Google::Apis::Core::Hashable
|
17028
|
+
|
17029
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
17030
|
+
# provide suggestion feedback.
|
17031
|
+
# Corresponds to the JSON property `answerRecord`
|
17032
|
+
# @return [String]
|
17033
|
+
attr_accessor :answer_record
|
17034
|
+
|
17035
|
+
# Suggestion generated using a Generator.
|
17036
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
17037
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GeneratorSuggestion]
|
17038
|
+
attr_accessor :generator_suggestion
|
17039
|
+
|
17040
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
17041
|
+
# locations//generators/`.
|
17042
|
+
# Corresponds to the JSON property `sourceGenerator`
|
17043
|
+
# @return [String]
|
17044
|
+
attr_accessor :source_generator
|
17045
|
+
|
17046
|
+
def initialize(**args)
|
17047
|
+
update!(**args)
|
17048
|
+
end
|
17049
|
+
|
17050
|
+
# Update properties of this object
|
17051
|
+
def update!(**args)
|
17052
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
17053
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
17054
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
17055
|
+
end
|
17056
|
+
end
|
17057
|
+
|
17058
|
+
# Suggestion generated using a Generator.
|
17059
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
17060
|
+
include Google::Apis::Core::Hashable
|
17061
|
+
|
17062
|
+
# Suggestion generated using free form generator.
|
17063
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
17064
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1FreeFormSuggestion]
|
17065
|
+
attr_accessor :free_form_suggestion
|
17066
|
+
|
17067
|
+
# Suggested summary of the conversation.
|
17068
|
+
# Corresponds to the JSON property `summarySuggestion`
|
17069
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestion]
|
17070
|
+
attr_accessor :summary_suggestion
|
17071
|
+
|
17072
|
+
def initialize(**args)
|
17073
|
+
update!(**args)
|
17074
|
+
end
|
17075
|
+
|
17076
|
+
# Update properties of this object
|
17077
|
+
def update!(**args)
|
17078
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
17079
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
17080
|
+
end
|
17081
|
+
end
|
17082
|
+
|
16827
17083
|
# Output only. Represents a notification sent to Pub/Sub subscribers for agent
|
16828
17084
|
# assistant events in a specific conversation.
|
16829
17085
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
@@ -19979,6 +20235,11 @@ module Google
|
|
19979
20235
|
# @return [Google::Apis::DialogflowV3::GoogleRpcStatus]
|
19980
20236
|
attr_accessor :error
|
19981
20237
|
|
20238
|
+
# The response message for Conversations.GenerateSuggestions.
|
20239
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
20240
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse]
|
20241
|
+
attr_accessor :generate_suggestions_response
|
20242
|
+
|
19982
20243
|
# The response message for Participants.SuggestArticles.
|
19983
20244
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
19984
20245
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestArticlesResponse]
|
@@ -20016,6 +20277,7 @@ module Google
|
|
20016
20277
|
# Update properties of this object
|
20017
20278
|
def update!(**args)
|
20018
20279
|
@error = args[:error] if args.key?(:error)
|
20280
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
20019
20281
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
20020
20282
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
20021
20283
|
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
@@ -20025,6 +20287,50 @@ module Google
|
|
20025
20287
|
end
|
20026
20288
|
end
|
20027
20289
|
|
20290
|
+
# Suggested summary of the conversation.
|
20291
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
20292
|
+
include Google::Apis::Core::Hashable
|
20293
|
+
|
20294
|
+
# Required. All the parts of generated summary.
|
20295
|
+
# Corresponds to the JSON property `summarySections`
|
20296
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection>]
|
20297
|
+
attr_accessor :summary_sections
|
20298
|
+
|
20299
|
+
def initialize(**args)
|
20300
|
+
update!(**args)
|
20301
|
+
end
|
20302
|
+
|
20303
|
+
# Update properties of this object
|
20304
|
+
def update!(**args)
|
20305
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
20306
|
+
end
|
20307
|
+
end
|
20308
|
+
|
20309
|
+
# A component of the generated summary.
|
20310
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
20311
|
+
include Google::Apis::Core::Hashable
|
20312
|
+
|
20313
|
+
# Required. Name of the section.
|
20314
|
+
# Corresponds to the JSON property `section`
|
20315
|
+
# @return [String]
|
20316
|
+
attr_accessor :section
|
20317
|
+
|
20318
|
+
# Required. Summary text for the section.
|
20319
|
+
# Corresponds to the JSON property `summary`
|
20320
|
+
# @return [String]
|
20321
|
+
attr_accessor :summary
|
20322
|
+
|
20323
|
+
def initialize(**args)
|
20324
|
+
update!(**args)
|
20325
|
+
end
|
20326
|
+
|
20327
|
+
# Update properties of this object
|
20328
|
+
def update!(**args)
|
20329
|
+
@section = args[:section] if args.key?(:section)
|
20330
|
+
@summary = args[:summary] if args.key?(:summary)
|
20331
|
+
end
|
20332
|
+
end
|
20333
|
+
|
20028
20334
|
# A wrapper of repeated TelephonyDtmf digits.
|
20029
20335
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
20030
20336
|
include Google::Apis::Core::Hashable
|
@@ -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.104.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2188,12 +2188,36 @@ module Google
|
|
2188
2188
|
include Google::Apis::Core::JsonObjectSupport
|
2189
2189
|
end
|
2190
2190
|
|
2191
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
2192
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
|
+
|
2194
|
+
include Google::Apis::Core::JsonObjectSupport
|
2195
|
+
end
|
2196
|
+
|
2191
2197
|
class GoogleCloudDialogflowV2GcsDestination
|
2192
2198
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
2199
|
|
2194
2200
|
include Google::Apis::Core::JsonObjectSupport
|
2195
2201
|
end
|
2196
2202
|
|
2203
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
2204
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2205
|
+
|
2206
|
+
include Google::Apis::Core::JsonObjectSupport
|
2207
|
+
end
|
2208
|
+
|
2209
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
2210
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2211
|
+
|
2212
|
+
include Google::Apis::Core::JsonObjectSupport
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
2216
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2217
|
+
|
2218
|
+
include Google::Apis::Core::JsonObjectSupport
|
2219
|
+
end
|
2220
|
+
|
2197
2221
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
2198
2222
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2199
2223
|
|
@@ -2578,6 +2602,18 @@ module Google
|
|
2578
2602
|
include Google::Apis::Core::JsonObjectSupport
|
2579
2603
|
end
|
2580
2604
|
|
2605
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
2606
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2607
|
+
|
2608
|
+
include Google::Apis::Core::JsonObjectSupport
|
2609
|
+
end
|
2610
|
+
|
2611
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
2612
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2613
|
+
|
2614
|
+
include Google::Apis::Core::JsonObjectSupport
|
2615
|
+
end
|
2616
|
+
|
2581
2617
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
2582
2618
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2583
2619
|
|
@@ -2686,12 +2722,36 @@ module Google
|
|
2686
2722
|
include Google::Apis::Core::JsonObjectSupport
|
2687
2723
|
end
|
2688
2724
|
|
2725
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
2726
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2727
|
+
|
2728
|
+
include Google::Apis::Core::JsonObjectSupport
|
2729
|
+
end
|
2730
|
+
|
2689
2731
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
2690
2732
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2691
2733
|
|
2692
2734
|
include Google::Apis::Core::JsonObjectSupport
|
2693
2735
|
end
|
2694
2736
|
|
2737
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
2738
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2739
|
+
|
2740
|
+
include Google::Apis::Core::JsonObjectSupport
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
2744
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2745
|
+
|
2746
|
+
include Google::Apis::Core::JsonObjectSupport
|
2747
|
+
end
|
2748
|
+
|
2749
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
2750
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2751
|
+
|
2752
|
+
include Google::Apis::Core::JsonObjectSupport
|
2753
|
+
end
|
2754
|
+
|
2695
2755
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
2696
2756
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2697
2757
|
|
@@ -3202,6 +3262,18 @@ module Google
|
|
3202
3262
|
include Google::Apis::Core::JsonObjectSupport
|
3203
3263
|
end
|
3204
3264
|
|
3265
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
3266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3267
|
+
|
3268
|
+
include Google::Apis::Core::JsonObjectSupport
|
3269
|
+
end
|
3270
|
+
|
3271
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
3272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3273
|
+
|
3274
|
+
include Google::Apis::Core::JsonObjectSupport
|
3275
|
+
end
|
3276
|
+
|
3205
3277
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
3206
3278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3207
3279
|
|
@@ -6908,6 +6980,13 @@ module Google
|
|
6908
6980
|
end
|
6909
6981
|
end
|
6910
6982
|
|
6983
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
6984
|
+
# @private
|
6985
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6986
|
+
property :response, as: 'response'
|
6987
|
+
end
|
6988
|
+
end
|
6989
|
+
|
6911
6990
|
class GoogleCloudDialogflowV2GcsDestination
|
6912
6991
|
# @private
|
6913
6992
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6915,6 +6994,35 @@ module Google
|
|
6915
6994
|
end
|
6916
6995
|
end
|
6917
6996
|
|
6997
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
6998
|
+
# @private
|
6999
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7000
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
7001
|
+
|
7002
|
+
property :latest_message, as: 'latestMessage'
|
7003
|
+
end
|
7004
|
+
end
|
7005
|
+
|
7006
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
7007
|
+
# @private
|
7008
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7009
|
+
property :answer_record, as: 'answerRecord'
|
7010
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GeneratorSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GeneratorSuggestion::Representation
|
7011
|
+
|
7012
|
+
property :source_generator, as: 'sourceGenerator'
|
7013
|
+
end
|
7014
|
+
end
|
7015
|
+
|
7016
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
7017
|
+
# @private
|
7018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7019
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2FreeFormSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2FreeFormSuggestion::Representation
|
7020
|
+
|
7021
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestion::Representation
|
7022
|
+
|
7023
|
+
end
|
7024
|
+
end
|
7025
|
+
|
6918
7026
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
6919
7027
|
# @private
|
6920
7028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7581,6 +7689,8 @@ module Google
|
|
7581
7689
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7582
7690
|
property :error, as: 'error', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
|
7583
7691
|
|
7692
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponse::Representation
|
7693
|
+
|
7584
7694
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestArticlesResponse::Representation
|
7585
7695
|
|
7586
7696
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestFaqAnswersResponse::Representation
|
@@ -7592,6 +7702,22 @@ module Google
|
|
7592
7702
|
end
|
7593
7703
|
end
|
7594
7704
|
|
7705
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
7706
|
+
# @private
|
7707
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7708
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestionSummarySection::Representation
|
7709
|
+
|
7710
|
+
end
|
7711
|
+
end
|
7712
|
+
|
7713
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
7714
|
+
# @private
|
7715
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7716
|
+
property :section, as: 'section'
|
7717
|
+
property :summary, as: 'summary'
|
7718
|
+
end
|
7719
|
+
end
|
7720
|
+
|
7595
7721
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
7596
7722
|
# @private
|
7597
7723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7775,6 +7901,13 @@ module Google
|
|
7775
7901
|
end
|
7776
7902
|
end
|
7777
7903
|
|
7904
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
7905
|
+
# @private
|
7906
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7907
|
+
property :response, as: 'response'
|
7908
|
+
end
|
7909
|
+
end
|
7910
|
+
|
7778
7911
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
7779
7912
|
# @private
|
7780
7913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7782,6 +7915,35 @@ module Google
|
|
7782
7915
|
end
|
7783
7916
|
end
|
7784
7917
|
|
7918
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
7919
|
+
# @private
|
7920
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7921
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
7922
|
+
|
7923
|
+
property :latest_message, as: 'latestMessage'
|
7924
|
+
end
|
7925
|
+
end
|
7926
|
+
|
7927
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
7928
|
+
# @private
|
7929
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7930
|
+
property :answer_record, as: 'answerRecord'
|
7931
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GeneratorSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GeneratorSuggestion::Representation
|
7932
|
+
|
7933
|
+
property :source_generator, as: 'sourceGenerator'
|
7934
|
+
end
|
7935
|
+
end
|
7936
|
+
|
7937
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
7938
|
+
# @private
|
7939
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7940
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1FreeFormSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1FreeFormSuggestion::Representation
|
7941
|
+
|
7942
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestion::Representation
|
7943
|
+
|
7944
|
+
end
|
7945
|
+
end
|
7946
|
+
|
7785
7947
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
7786
7948
|
# @private
|
7787
7949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8659,6 +8821,8 @@ module Google
|
|
8659
8821
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8660
8822
|
property :error, as: 'error', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
|
8661
8823
|
|
8824
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse::Representation
|
8825
|
+
|
8662
8826
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestArticlesResponse::Representation
|
8663
8827
|
|
8664
8828
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
@@ -8674,6 +8838,22 @@ module Google
|
|
8674
8838
|
end
|
8675
8839
|
end
|
8676
8840
|
|
8841
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
8842
|
+
# @private
|
8843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8844
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection::Representation
|
8845
|
+
|
8846
|
+
end
|
8847
|
+
end
|
8848
|
+
|
8849
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
8850
|
+
# @private
|
8851
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8852
|
+
property :section, as: 'section'
|
8853
|
+
property :summary, as: 'summary'
|
8854
|
+
end
|
8855
|
+
end
|
8856
|
+
|
8677
8857
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
8678
8858
|
# @private
|
8679
8859
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.104.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.104.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:
|