google-apis-dialogflow_v2 0.81.0 → 0.83.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/dialogflow_v2/classes.rb +98 -139
- data/lib/google/apis/dialogflow_v2/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v2/representations.rb +36 -66
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de3a41175e8b0a44d2a7dad0c924c65f1b94fd2f0845a3b9d0597052d77835c5
|
4
|
+
data.tar.gz: 1ff13da4bf1c2d8805360dd1e6df6d6bf3af37c2e6360c75711ee4fb5d1feeb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5030d4a8097d1dc29e0424f793ebc6ad9c9be80d79c813a0a6098142d9b81105297a8fcfe8a0d211e888a56f403ab2c8a5131e82e446e8c484296da5dd2a3392
|
7
|
+
data.tar.gz: ddcce358698799b0067ef1726dcb21eb7a5d935768a8f6dfa16367a87af8114a18f5757851e1f2e1f8d6997f60efaf03fb0e4a9107d3d2aa2b7ce4fa34d59890
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.83.0 (2024-03-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240305
|
6
|
+
|
7
|
+
### v0.82.0 (2024-02-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240219
|
10
|
+
* Regenerated using generator version 0.14.0
|
11
|
+
|
3
12
|
### v0.81.0 (2024-02-18)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240215
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ 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 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
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.
|
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
|
|
90
90
|
## License
|
91
91
|
|
@@ -49,6 +49,11 @@ module Google
|
|
49
49
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings]
|
50
50
|
attr_accessor :logging_settings
|
51
51
|
|
52
|
+
# Define behaviors of speech to text detection.
|
53
|
+
# Corresponds to the JSON property `speechSettings`
|
54
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings]
|
55
|
+
attr_accessor :speech_settings
|
56
|
+
|
52
57
|
def initialize(**args)
|
53
58
|
update!(**args)
|
54
59
|
end
|
@@ -58,6 +63,7 @@ module Google
|
|
58
63
|
@audio_export_gcs_destination = args[:audio_export_gcs_destination] if args.key?(:audio_export_gcs_destination)
|
59
64
|
@dtmf_settings = args[:dtmf_settings] if args.key?(:dtmf_settings)
|
60
65
|
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
66
|
+
@speech_settings = args[:speech_settings] if args.key?(:speech_settings)
|
61
67
|
end
|
62
68
|
end
|
63
69
|
|
@@ -124,6 +130,49 @@ module Google
|
|
124
130
|
end
|
125
131
|
end
|
126
132
|
|
133
|
+
# Define behaviors of speech to text detection.
|
134
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
|
135
|
+
include Google::Apis::Core::Hashable
|
136
|
+
|
137
|
+
# Sensitivity of the speech model that detects the end of speech. Scale from 0
|
138
|
+
# to 100.
|
139
|
+
# Corresponds to the JSON property `endpointerSensitivity`
|
140
|
+
# @return [Fixnum]
|
141
|
+
attr_accessor :endpointer_sensitivity
|
142
|
+
|
143
|
+
# Mapping from language to Speech-to-Text model. The mapped Speech-to-Text model
|
144
|
+
# will be selected for requests from its corresponding language. For more
|
145
|
+
# information, see [Speech models](https://cloud.google.com/dialogflow/cx/docs/
|
146
|
+
# concept/speech-models).
|
147
|
+
# Corresponds to the JSON property `models`
|
148
|
+
# @return [Hash<String,String>]
|
149
|
+
attr_accessor :models
|
150
|
+
|
151
|
+
# Timeout before detecting no speech.
|
152
|
+
# Corresponds to the JSON property `noSpeechTimeout`
|
153
|
+
# @return [String]
|
154
|
+
attr_accessor :no_speech_timeout
|
155
|
+
|
156
|
+
# Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
|
157
|
+
# timeout value.
|
158
|
+
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
159
|
+
# @return [Boolean]
|
160
|
+
attr_accessor :use_timeout_based_endpointing
|
161
|
+
alias_method :use_timeout_based_endpointing?, :use_timeout_based_endpointing
|
162
|
+
|
163
|
+
def initialize(**args)
|
164
|
+
update!(**args)
|
165
|
+
end
|
166
|
+
|
167
|
+
# Update properties of this object
|
168
|
+
def update!(**args)
|
169
|
+
@endpointer_sensitivity = args[:endpointer_sensitivity] if args.key?(:endpointer_sensitivity)
|
170
|
+
@models = args[:models] if args.key?(:models)
|
171
|
+
@no_speech_timeout = args[:no_speech_timeout] if args.key?(:no_speech_timeout)
|
172
|
+
@use_timeout_based_endpointing = args[:use_timeout_based_endpointing] if args.key?(:use_timeout_based_endpointing)
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
127
176
|
# Represents the natural speech audio to be processed.
|
128
177
|
class GoogleCloudDialogflowCxV3AudioInput
|
129
178
|
include Google::Apis::Core::Hashable
|
@@ -2433,11 +2482,6 @@ module Google
|
|
2433
2482
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageText]
|
2434
2483
|
attr_accessor :text
|
2435
2484
|
|
2436
|
-
# Represents a call of a specific tool's action with the specified inputs.
|
2437
|
-
# Corresponds to the JSON property `toolCall`
|
2438
|
-
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ToolCall]
|
2439
|
-
attr_accessor :tool_call
|
2440
|
-
|
2441
2485
|
def initialize(**args)
|
2442
2486
|
update!(**args)
|
2443
2487
|
end
|
@@ -2456,7 +2500,6 @@ module Google
|
|
2456
2500
|
@response_type = args[:response_type] if args.key?(:response_type)
|
2457
2501
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
2458
2502
|
@text = args[:text] if args.key?(:text)
|
2459
|
-
@tool_call = args[:tool_call] if args.key?(:tool_call)
|
2460
2503
|
end
|
2461
2504
|
end
|
2462
2505
|
|
@@ -3079,38 +3122,6 @@ module Google
|
|
3079
3122
|
end
|
3080
3123
|
end
|
3081
3124
|
|
3082
|
-
# Represents a call of a specific tool's action with the specified inputs.
|
3083
|
-
class GoogleCloudDialogflowCxV3ToolCall
|
3084
|
-
include Google::Apis::Core::Hashable
|
3085
|
-
|
3086
|
-
# Required. The name of the tool's action associated with this call.
|
3087
|
-
# Corresponds to the JSON property `action`
|
3088
|
-
# @return [String]
|
3089
|
-
attr_accessor :action
|
3090
|
-
|
3091
|
-
# Optional. The action's input parameters.
|
3092
|
-
# Corresponds to the JSON property `inputParameters`
|
3093
|
-
# @return [Hash<String,Object>]
|
3094
|
-
attr_accessor :input_parameters
|
3095
|
-
|
3096
|
-
# Required. The tool associated with this call. Format: `projects//locations//
|
3097
|
-
# agents//tools/`.
|
3098
|
-
# Corresponds to the JSON property `tool`
|
3099
|
-
# @return [String]
|
3100
|
-
attr_accessor :tool
|
3101
|
-
|
3102
|
-
def initialize(**args)
|
3103
|
-
update!(**args)
|
3104
|
-
end
|
3105
|
-
|
3106
|
-
# Update properties of this object
|
3107
|
-
def update!(**args)
|
3108
|
-
@action = args[:action] if args.key?(:action)
|
3109
|
-
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
3110
|
-
@tool = args[:tool] if args.key?(:tool)
|
3111
|
-
end
|
3112
|
-
end
|
3113
|
-
|
3114
3125
|
# A transition route specifies a intent that can be matched and/or a data
|
3115
3126
|
# condition that can be evaluated during a session. When a specified transition
|
3116
3127
|
# is matched, the following actions are taken in order: * If there is a `
|
@@ -3781,6 +3792,11 @@ module Google
|
|
3781
3792
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings]
|
3782
3793
|
attr_accessor :logging_settings
|
3783
3794
|
|
3795
|
+
# Define behaviors of speech to text detection.
|
3796
|
+
# Corresponds to the JSON property `speechSettings`
|
3797
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings]
|
3798
|
+
attr_accessor :speech_settings
|
3799
|
+
|
3784
3800
|
def initialize(**args)
|
3785
3801
|
update!(**args)
|
3786
3802
|
end
|
@@ -3790,6 +3806,7 @@ module Google
|
|
3790
3806
|
@audio_export_gcs_destination = args[:audio_export_gcs_destination] if args.key?(:audio_export_gcs_destination)
|
3791
3807
|
@dtmf_settings = args[:dtmf_settings] if args.key?(:dtmf_settings)
|
3792
3808
|
@logging_settings = args[:logging_settings] if args.key?(:logging_settings)
|
3809
|
+
@speech_settings = args[:speech_settings] if args.key?(:speech_settings)
|
3793
3810
|
end
|
3794
3811
|
end
|
3795
3812
|
|
@@ -3856,6 +3873,49 @@ module Google
|
|
3856
3873
|
end
|
3857
3874
|
end
|
3858
3875
|
|
3876
|
+
# Define behaviors of speech to text detection.
|
3877
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
|
3878
|
+
include Google::Apis::Core::Hashable
|
3879
|
+
|
3880
|
+
# Sensitivity of the speech model that detects the end of speech. Scale from 0
|
3881
|
+
# to 100.
|
3882
|
+
# Corresponds to the JSON property `endpointerSensitivity`
|
3883
|
+
# @return [Fixnum]
|
3884
|
+
attr_accessor :endpointer_sensitivity
|
3885
|
+
|
3886
|
+
# Mapping from language to Speech-to-Text model. The mapped Speech-to-Text model
|
3887
|
+
# will be selected for requests from its corresponding language. For more
|
3888
|
+
# information, see [Speech models](https://cloud.google.com/dialogflow/cx/docs/
|
3889
|
+
# concept/speech-models).
|
3890
|
+
# Corresponds to the JSON property `models`
|
3891
|
+
# @return [Hash<String,String>]
|
3892
|
+
attr_accessor :models
|
3893
|
+
|
3894
|
+
# Timeout before detecting no speech.
|
3895
|
+
# Corresponds to the JSON property `noSpeechTimeout`
|
3896
|
+
# @return [String]
|
3897
|
+
attr_accessor :no_speech_timeout
|
3898
|
+
|
3899
|
+
# Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
|
3900
|
+
# timeout value.
|
3901
|
+
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
3902
|
+
# @return [Boolean]
|
3903
|
+
attr_accessor :use_timeout_based_endpointing
|
3904
|
+
alias_method :use_timeout_based_endpointing?, :use_timeout_based_endpointing
|
3905
|
+
|
3906
|
+
def initialize(**args)
|
3907
|
+
update!(**args)
|
3908
|
+
end
|
3909
|
+
|
3910
|
+
# Update properties of this object
|
3911
|
+
def update!(**args)
|
3912
|
+
@endpointer_sensitivity = args[:endpointer_sensitivity] if args.key?(:endpointer_sensitivity)
|
3913
|
+
@models = args[:models] if args.key?(:models)
|
3914
|
+
@no_speech_timeout = args[:no_speech_timeout] if args.key?(:no_speech_timeout)
|
3915
|
+
@use_timeout_based_endpointing = args[:use_timeout_based_endpointing] if args.key?(:use_timeout_based_endpointing)
|
3916
|
+
end
|
3917
|
+
end
|
3918
|
+
|
3859
3919
|
# Represents the natural speech audio to be processed.
|
3860
3920
|
class GoogleCloudDialogflowCxV3beta1AudioInput
|
3861
3921
|
include Google::Apis::Core::Hashable
|
@@ -6032,11 +6092,6 @@ module Google
|
|
6032
6092
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1TextInput]
|
6033
6093
|
attr_accessor :text
|
6034
6094
|
|
6035
|
-
# The result of calling a tool's action that has been executed by the client.
|
6036
|
-
# Corresponds to the JSON property `toolCallResult`
|
6037
|
-
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCallResult]
|
6038
|
-
attr_accessor :tool_call_result
|
6039
|
-
|
6040
6095
|
def initialize(**args)
|
6041
6096
|
update!(**args)
|
6042
6097
|
end
|
@@ -6049,7 +6104,6 @@ module Google
|
|
6049
6104
|
@intent = args[:intent] if args.key?(:intent)
|
6050
6105
|
@language_code = args[:language_code] if args.key?(:language_code)
|
6051
6106
|
@text = args[:text] if args.key?(:text)
|
6052
|
-
@tool_call_result = args[:tool_call_result] if args.key?(:tool_call_result)
|
6053
6107
|
end
|
6054
6108
|
end
|
6055
6109
|
|
@@ -6166,11 +6220,6 @@ module Google
|
|
6166
6220
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessageText]
|
6167
6221
|
attr_accessor :text
|
6168
6222
|
|
6169
|
-
# Represents a call of a specific tool's action with the specified inputs.
|
6170
|
-
# Corresponds to the JSON property `toolCall`
|
6171
|
-
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCall]
|
6172
|
-
attr_accessor :tool_call
|
6173
|
-
|
6174
6223
|
def initialize(**args)
|
6175
6224
|
update!(**args)
|
6176
6225
|
end
|
@@ -6188,7 +6237,6 @@ module Google
|
|
6188
6237
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
6189
6238
|
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
6190
6239
|
@text = args[:text] if args.key?(:text)
|
6191
|
-
@tool_call = args[:tool_call] if args.key?(:tool_call)
|
6192
6240
|
end
|
6193
6241
|
end
|
6194
6242
|
|
@@ -6811,95 +6859,6 @@ module Google
|
|
6811
6859
|
end
|
6812
6860
|
end
|
6813
6861
|
|
6814
|
-
# Represents a call of a specific tool's action with the specified inputs.
|
6815
|
-
class GoogleCloudDialogflowCxV3beta1ToolCall
|
6816
|
-
include Google::Apis::Core::Hashable
|
6817
|
-
|
6818
|
-
# Required. The name of the tool's action associated with this call.
|
6819
|
-
# Corresponds to the JSON property `action`
|
6820
|
-
# @return [String]
|
6821
|
-
attr_accessor :action
|
6822
|
-
|
6823
|
-
# Optional. The action's input parameters.
|
6824
|
-
# Corresponds to the JSON property `inputParameters`
|
6825
|
-
# @return [Hash<String,Object>]
|
6826
|
-
attr_accessor :input_parameters
|
6827
|
-
|
6828
|
-
# Required. The tool associated with this call. Format: `projects//locations//
|
6829
|
-
# agents//tools/`.
|
6830
|
-
# Corresponds to the JSON property `tool`
|
6831
|
-
# @return [String]
|
6832
|
-
attr_accessor :tool
|
6833
|
-
|
6834
|
-
def initialize(**args)
|
6835
|
-
update!(**args)
|
6836
|
-
end
|
6837
|
-
|
6838
|
-
# Update properties of this object
|
6839
|
-
def update!(**args)
|
6840
|
-
@action = args[:action] if args.key?(:action)
|
6841
|
-
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
6842
|
-
@tool = args[:tool] if args.key?(:tool)
|
6843
|
-
end
|
6844
|
-
end
|
6845
|
-
|
6846
|
-
# The result of calling a tool's action that has been executed by the client.
|
6847
|
-
class GoogleCloudDialogflowCxV3beta1ToolCallResult
|
6848
|
-
include Google::Apis::Core::Hashable
|
6849
|
-
|
6850
|
-
# Required. The name of the tool's action associated with this call.
|
6851
|
-
# Corresponds to the JSON property `action`
|
6852
|
-
# @return [String]
|
6853
|
-
attr_accessor :action
|
6854
|
-
|
6855
|
-
# An error produced by the tool call.
|
6856
|
-
# Corresponds to the JSON property `error`
|
6857
|
-
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCallResultError]
|
6858
|
-
attr_accessor :error
|
6859
|
-
|
6860
|
-
# The tool call's output parameters.
|
6861
|
-
# Corresponds to the JSON property `outputParameters`
|
6862
|
-
# @return [Hash<String,Object>]
|
6863
|
-
attr_accessor :output_parameters
|
6864
|
-
|
6865
|
-
# Required. The tool associated with this call. Format: `projects//locations//
|
6866
|
-
# agents//tools/`.
|
6867
|
-
# Corresponds to the JSON property `tool`
|
6868
|
-
# @return [String]
|
6869
|
-
attr_accessor :tool
|
6870
|
-
|
6871
|
-
def initialize(**args)
|
6872
|
-
update!(**args)
|
6873
|
-
end
|
6874
|
-
|
6875
|
-
# Update properties of this object
|
6876
|
-
def update!(**args)
|
6877
|
-
@action = args[:action] if args.key?(:action)
|
6878
|
-
@error = args[:error] if args.key?(:error)
|
6879
|
-
@output_parameters = args[:output_parameters] if args.key?(:output_parameters)
|
6880
|
-
@tool = args[:tool] if args.key?(:tool)
|
6881
|
-
end
|
6882
|
-
end
|
6883
|
-
|
6884
|
-
# An error produced by the tool call.
|
6885
|
-
class GoogleCloudDialogflowCxV3beta1ToolCallResultError
|
6886
|
-
include Google::Apis::Core::Hashable
|
6887
|
-
|
6888
|
-
# Optional. The error message of the function.
|
6889
|
-
# Corresponds to the JSON property `message`
|
6890
|
-
# @return [String]
|
6891
|
-
attr_accessor :message
|
6892
|
-
|
6893
|
-
def initialize(**args)
|
6894
|
-
update!(**args)
|
6895
|
-
end
|
6896
|
-
|
6897
|
-
# Update properties of this object
|
6898
|
-
def update!(**args)
|
6899
|
-
@message = args[:message] if args.key?(:message)
|
6900
|
-
end
|
6901
|
-
end
|
6902
|
-
|
6903
6862
|
# A transition route specifies a intent that can be matched and/or a data
|
6904
6863
|
# condition that can be evaluated during a session. When a specified transition
|
6905
6864
|
# is matched, the following actions are taken in order: * If there is a `
|
@@ -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.83.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240305"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class GoogleCloudDialogflowCxV3AudioInput
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -568,12 +574,6 @@ module Google
|
|
568
574
|
include Google::Apis::Core::JsonObjectSupport
|
569
575
|
end
|
570
576
|
|
571
|
-
class GoogleCloudDialogflowCxV3ToolCall
|
572
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
-
|
574
|
-
include Google::Apis::Core::JsonObjectSupport
|
575
|
-
end
|
576
|
-
|
577
577
|
class GoogleCloudDialogflowCxV3TransitionRoute
|
578
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
579
579
|
|
@@ -670,6 +670,12 @@ module Google
|
|
670
670
|
include Google::Apis::Core::JsonObjectSupport
|
671
671
|
end
|
672
672
|
|
673
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
673
679
|
class GoogleCloudDialogflowCxV3beta1AudioInput
|
674
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
681
|
|
@@ -1198,24 +1204,6 @@ module Google
|
|
1198
1204
|
include Google::Apis::Core::JsonObjectSupport
|
1199
1205
|
end
|
1200
1206
|
|
1201
|
-
class GoogleCloudDialogflowCxV3beta1ToolCall
|
1202
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1203
|
-
|
1204
|
-
include Google::Apis::Core::JsonObjectSupport
|
1205
|
-
end
|
1206
|
-
|
1207
|
-
class GoogleCloudDialogflowCxV3beta1ToolCallResult
|
1208
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1209
|
-
|
1210
|
-
include Google::Apis::Core::JsonObjectSupport
|
1211
|
-
end
|
1212
|
-
|
1213
|
-
class GoogleCloudDialogflowCxV3beta1ToolCallResultError
|
1214
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1215
|
-
|
1216
|
-
include Google::Apis::Core::JsonObjectSupport
|
1217
|
-
end
|
1218
|
-
|
1219
1207
|
class GoogleCloudDialogflowCxV3beta1TransitionRoute
|
1220
1208
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1221
1209
|
|
@@ -3157,6 +3145,8 @@ module Google
|
|
3157
3145
|
|
3158
3146
|
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
|
3159
3147
|
|
3148
|
+
property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings::Representation
|
3149
|
+
|
3160
3150
|
end
|
3161
3151
|
end
|
3162
3152
|
|
@@ -3177,6 +3167,16 @@ module Google
|
|
3177
3167
|
end
|
3178
3168
|
end
|
3179
3169
|
|
3170
|
+
class GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
|
3171
|
+
# @private
|
3172
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3173
|
+
property :endpointer_sensitivity, as: 'endpointerSensitivity'
|
3174
|
+
hash :models, as: 'models'
|
3175
|
+
property :no_speech_timeout, as: 'noSpeechTimeout'
|
3176
|
+
property :use_timeout_based_endpointing, as: 'useTimeoutBasedEndpointing'
|
3177
|
+
end
|
3178
|
+
end
|
3179
|
+
|
3180
3180
|
class GoogleCloudDialogflowCxV3AudioInput
|
3181
3181
|
# @private
|
3182
3182
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3815,8 +3815,6 @@ module Google
|
|
3815
3815
|
|
3816
3816
|
property :text, as: 'text', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
3817
3817
|
|
3818
|
-
property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ToolCall, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ToolCall::Representation
|
3819
|
-
|
3820
3818
|
end
|
3821
3819
|
end
|
3822
3820
|
|
@@ -4006,15 +4004,6 @@ module Google
|
|
4006
4004
|
end
|
4007
4005
|
end
|
4008
4006
|
|
4009
|
-
class GoogleCloudDialogflowCxV3ToolCall
|
4010
|
-
# @private
|
4011
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
4012
|
-
property :action, as: 'action'
|
4013
|
-
hash :input_parameters, as: 'inputParameters'
|
4014
|
-
property :tool, as: 'tool'
|
4015
|
-
end
|
4016
|
-
end
|
4017
|
-
|
4018
4007
|
class GoogleCloudDialogflowCxV3TransitionRoute
|
4019
4008
|
# @private
|
4020
4009
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4184,6 +4173,8 @@ module Google
|
|
4184
4173
|
|
4185
4174
|
property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
|
4186
4175
|
|
4176
|
+
property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings::Representation
|
4177
|
+
|
4187
4178
|
end
|
4188
4179
|
end
|
4189
4180
|
|
@@ -4204,6 +4195,16 @@ module Google
|
|
4204
4195
|
end
|
4205
4196
|
end
|
4206
4197
|
|
4198
|
+
class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
|
4199
|
+
# @private
|
4200
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4201
|
+
property :endpointer_sensitivity, as: 'endpointerSensitivity'
|
4202
|
+
hash :models, as: 'models'
|
4203
|
+
property :no_speech_timeout, as: 'noSpeechTimeout'
|
4204
|
+
property :use_timeout_based_endpointing, as: 'useTimeoutBasedEndpointing'
|
4205
|
+
end
|
4206
|
+
end
|
4207
|
+
|
4207
4208
|
class GoogleCloudDialogflowCxV3beta1AudioInput
|
4208
4209
|
# @private
|
4209
4210
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4807,8 +4808,6 @@ module Google
|
|
4807
4808
|
property :language_code, as: 'languageCode'
|
4808
4809
|
property :text, as: 'text', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1TextInput, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1TextInput::Representation
|
4809
4810
|
|
4810
|
-
property :tool_call_result, as: 'toolCallResult', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCallResult, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCallResult::Representation
|
4811
|
-
|
4812
4811
|
end
|
4813
4812
|
end
|
4814
4813
|
|
@@ -4843,8 +4842,6 @@ module Google
|
|
4843
4842
|
|
4844
4843
|
property :text, as: 'text', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessageText, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessageText::Representation
|
4845
4844
|
|
4846
|
-
property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCall, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCall::Representation
|
4847
|
-
|
4848
4845
|
end
|
4849
4846
|
end
|
4850
4847
|
|
@@ -5034,33 +5031,6 @@ module Google
|
|
5034
5031
|
end
|
5035
5032
|
end
|
5036
5033
|
|
5037
|
-
class GoogleCloudDialogflowCxV3beta1ToolCall
|
5038
|
-
# @private
|
5039
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5040
|
-
property :action, as: 'action'
|
5041
|
-
hash :input_parameters, as: 'inputParameters'
|
5042
|
-
property :tool, as: 'tool'
|
5043
|
-
end
|
5044
|
-
end
|
5045
|
-
|
5046
|
-
class GoogleCloudDialogflowCxV3beta1ToolCallResult
|
5047
|
-
# @private
|
5048
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5049
|
-
property :action, as: 'action'
|
5050
|
-
property :error, as: 'error', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCallResultError, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ToolCallResultError::Representation
|
5051
|
-
|
5052
|
-
hash :output_parameters, as: 'outputParameters'
|
5053
|
-
property :tool, as: 'tool'
|
5054
|
-
end
|
5055
|
-
end
|
5056
|
-
|
5057
|
-
class GoogleCloudDialogflowCxV3beta1ToolCallResultError
|
5058
|
-
# @private
|
5059
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5060
|
-
property :message, as: 'message'
|
5061
|
-
end
|
5062
|
-
end
|
5063
|
-
|
5064
5034
|
class GoogleCloudDialogflowCxV3beta1TransitionRoute
|
5065
5035
|
# @private
|
5066
5036
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.83.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.83.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Dialogflow API V2
|