google-apis-dialogflow_v2beta1 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce8684ccd85103c8c5f26d95e039e4673a7aa1e3d441643a9a3515ac7c19ea5c
4
- data.tar.gz: 2f543a014ee05eecaeac4dc109831a44b0b93133af6637d9fc8986260467f49d
3
+ metadata.gz: 0453a35fab40c1340d7627c4fb82c80deac20f2eba22af60d542845c493f379d
4
+ data.tar.gz: 634070f930757a852b354d2eb3fac663867bb7b4d0132d441d0b07852b34cccd
5
5
  SHA512:
6
- metadata.gz: 8d92874cd0a251436f73292444a09a89e3b0ba77aa1f54e3d805d828c6086ec761f2ad46f86ca9e81c150f56e6293e7475a052102c69167ac688fe616db124c6
7
- data.tar.gz: 0a97e0a51f22b2ec9e1692e48ebd5a82235880596940f827081759df6b2f9334207b11c2b16d97703f5088f8b367f927e70e163c9432082cd6de8f3b30a3e282
6
+ metadata.gz: 9d9ab330c0cb18aea647b4314606be8d2401d9869439c639933ed8471564a938764a5ed7edaee09be267470c1e81551d0cd22106ed88b9f328bfc3ffa1b3325a
7
+ data.tar.gz: '087d4dd3c7cc2e1ec3f56933f786dbe23992a5236f78130cea04132ca137e3d2079c5a692fc955564cd05a385cbdcf9cd7c01e5cfc13079acc450c1404c5d7e9'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.83.0 (2024-03-17)
4
+
5
+ * Regenerated from discovery document revision 20240311
6
+
7
+ ### v0.82.0 (2024-03-10)
8
+
9
+ * Regenerated from discovery document revision 20240305
10
+
3
11
  ### v0.81.0 (2024-02-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20240219
@@ -49,6 +49,11 @@ module Google
49
49
  # @return [Google::Apis::DialogflowV2beta1::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::DialogflowV2beta1::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
@@ -3332,6 +3381,12 @@ module Google
3332
3381
  # @return [String]
3333
3382
  attr_accessor :http_method
3334
3383
 
3384
+ # Represents configuration of OAuth client credential flow for 3rd party API
3385
+ # authentication.
3386
+ # Corresponds to the JSON property `oauthConfig`
3387
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig]
3388
+ attr_accessor :oauth_config
3389
+
3335
3390
  # Optional. Maps the values extracted from specific fields of the flexible
3336
3391
  # webhook response into session parameters. - Key: session parameter name -
3337
3392
  # Value: field path in the webhook response
@@ -3355,6 +3410,13 @@ module Google
3355
3410
  # @return [Hash<String,String>]
3356
3411
  attr_accessor :request_headers
3357
3412
 
3413
+ # Optional. Indicate the auth token type generated from the [Diglogflow service
3414
+ # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
3415
+ # agent). The generated token is sent in the Authorization header.
3416
+ # Corresponds to the JSON property `serviceAgentAuth`
3417
+ # @return [String]
3418
+ attr_accessor :service_agent_auth
3419
+
3358
3420
  # Required. The webhook URI for receiving POST requests. It must use https
3359
3421
  # protocol.
3360
3422
  # Corresponds to the JSON property `uri`
@@ -3379,16 +3441,57 @@ module Google
3379
3441
  def update!(**args)
3380
3442
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
3381
3443
  @http_method = args[:http_method] if args.key?(:http_method)
3444
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
3382
3445
  @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
3383
3446
  @password = args[:password] if args.key?(:password)
3384
3447
  @request_body = args[:request_body] if args.key?(:request_body)
3385
3448
  @request_headers = args[:request_headers] if args.key?(:request_headers)
3449
+ @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
3386
3450
  @uri = args[:uri] if args.key?(:uri)
3387
3451
  @username = args[:username] if args.key?(:username)
3388
3452
  @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
3389
3453
  end
3390
3454
  end
3391
3455
 
3456
+ # Represents configuration of OAuth client credential flow for 3rd party API
3457
+ # authentication.
3458
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
3459
+ include Google::Apis::Core::Hashable
3460
+
3461
+ # Required. The client ID provided by the 3rd party platform.
3462
+ # Corresponds to the JSON property `clientId`
3463
+ # @return [String]
3464
+ attr_accessor :client_id
3465
+
3466
+ # Required. The client secret provided by the 3rd party platform.
3467
+ # Corresponds to the JSON property `clientSecret`
3468
+ # @return [String]
3469
+ attr_accessor :client_secret
3470
+
3471
+ # Optional. The OAuth scopes to grant.
3472
+ # Corresponds to the JSON property `scopes`
3473
+ # @return [Array<String>]
3474
+ attr_accessor :scopes
3475
+
3476
+ # Required. The token endpoint provided by the 3rd party platform to exchange an
3477
+ # access token.
3478
+ # Corresponds to the JSON property `tokenEndpoint`
3479
+ # @return [String]
3480
+ attr_accessor :token_endpoint
3481
+
3482
+ def initialize(**args)
3483
+ update!(**args)
3484
+ end
3485
+
3486
+ # Update properties of this object
3487
+ def update!(**args)
3488
+ @client_id = args[:client_id] if args.key?(:client_id)
3489
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
3490
+ @scopes = args[:scopes] if args.key?(:scopes)
3491
+ @token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
3492
+ end
3493
+ end
3494
+
3392
3495
  # The request message for a webhook call. The request is sent as a JSON object
3393
3496
  # and the field names will be presented in camel cases. You may see undocumented
3394
3497
  # fields in an actual request. These fields are used internally by Dialogflow
@@ -3743,6 +3846,11 @@ module Google
3743
3846
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings]
3744
3847
  attr_accessor :logging_settings
3745
3848
 
3849
+ # Define behaviors of speech to text detection.
3850
+ # Corresponds to the JSON property `speechSettings`
3851
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings]
3852
+ attr_accessor :speech_settings
3853
+
3746
3854
  def initialize(**args)
3747
3855
  update!(**args)
3748
3856
  end
@@ -3752,6 +3860,7 @@ module Google
3752
3860
  @audio_export_gcs_destination = args[:audio_export_gcs_destination] if args.key?(:audio_export_gcs_destination)
3753
3861
  @dtmf_settings = args[:dtmf_settings] if args.key?(:dtmf_settings)
3754
3862
  @logging_settings = args[:logging_settings] if args.key?(:logging_settings)
3863
+ @speech_settings = args[:speech_settings] if args.key?(:speech_settings)
3755
3864
  end
3756
3865
  end
3757
3866
 
@@ -3818,6 +3927,49 @@ module Google
3818
3927
  end
3819
3928
  end
3820
3929
 
3930
+ # Define behaviors of speech to text detection.
3931
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
3932
+ include Google::Apis::Core::Hashable
3933
+
3934
+ # Sensitivity of the speech model that detects the end of speech. Scale from 0
3935
+ # to 100.
3936
+ # Corresponds to the JSON property `endpointerSensitivity`
3937
+ # @return [Fixnum]
3938
+ attr_accessor :endpointer_sensitivity
3939
+
3940
+ # Mapping from language to Speech-to-Text model. The mapped Speech-to-Text model
3941
+ # will be selected for requests from its corresponding language. For more
3942
+ # information, see [Speech models](https://cloud.google.com/dialogflow/cx/docs/
3943
+ # concept/speech-models).
3944
+ # Corresponds to the JSON property `models`
3945
+ # @return [Hash<String,String>]
3946
+ attr_accessor :models
3947
+
3948
+ # Timeout before detecting no speech.
3949
+ # Corresponds to the JSON property `noSpeechTimeout`
3950
+ # @return [String]
3951
+ attr_accessor :no_speech_timeout
3952
+
3953
+ # Use timeout based endpointing, interpreting endpointer sensitivy as seconds of
3954
+ # timeout value.
3955
+ # Corresponds to the JSON property `useTimeoutBasedEndpointing`
3956
+ # @return [Boolean]
3957
+ attr_accessor :use_timeout_based_endpointing
3958
+ alias_method :use_timeout_based_endpointing?, :use_timeout_based_endpointing
3959
+
3960
+ def initialize(**args)
3961
+ update!(**args)
3962
+ end
3963
+
3964
+ # Update properties of this object
3965
+ def update!(**args)
3966
+ @endpointer_sensitivity = args[:endpointer_sensitivity] if args.key?(:endpointer_sensitivity)
3967
+ @models = args[:models] if args.key?(:models)
3968
+ @no_speech_timeout = args[:no_speech_timeout] if args.key?(:no_speech_timeout)
3969
+ @use_timeout_based_endpointing = args[:use_timeout_based_endpointing] if args.key?(:use_timeout_based_endpointing)
3970
+ end
3971
+ end
3972
+
3821
3973
  # Represents the natural speech audio to be processed.
3822
3974
  class GoogleCloudDialogflowCxV3beta1AudioInput
3823
3975
  include Google::Apis::Core::Hashable
@@ -7020,6 +7172,12 @@ module Google
7020
7172
  # @return [String]
7021
7173
  attr_accessor :http_method
7022
7174
 
7175
+ # Represents configuration of OAuth client credential flow for 3rd party API
7176
+ # authentication.
7177
+ # Corresponds to the JSON property `oauthConfig`
7178
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig]
7179
+ attr_accessor :oauth_config
7180
+
7023
7181
  # Optional. Maps the values extracted from specific fields of the flexible
7024
7182
  # webhook response into session parameters. - Key: session parameter name -
7025
7183
  # Value: field path in the webhook response
@@ -7043,6 +7201,13 @@ module Google
7043
7201
  # @return [Hash<String,String>]
7044
7202
  attr_accessor :request_headers
7045
7203
 
7204
+ # Optional. Indicate the auth token type generated from the [Diglogflow service
7205
+ # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
7206
+ # agent). The generated token is sent in the Authorization header.
7207
+ # Corresponds to the JSON property `serviceAgentAuth`
7208
+ # @return [String]
7209
+ attr_accessor :service_agent_auth
7210
+
7046
7211
  # Required. The webhook URI for receiving POST requests. It must use https
7047
7212
  # protocol.
7048
7213
  # Corresponds to the JSON property `uri`
@@ -7067,16 +7232,57 @@ module Google
7067
7232
  def update!(**args)
7068
7233
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
7069
7234
  @http_method = args[:http_method] if args.key?(:http_method)
7235
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
7070
7236
  @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
7071
7237
  @password = args[:password] if args.key?(:password)
7072
7238
  @request_body = args[:request_body] if args.key?(:request_body)
7073
7239
  @request_headers = args[:request_headers] if args.key?(:request_headers)
7240
+ @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
7074
7241
  @uri = args[:uri] if args.key?(:uri)
7075
7242
  @username = args[:username] if args.key?(:username)
7076
7243
  @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
7077
7244
  end
7078
7245
  end
7079
7246
 
7247
+ # Represents configuration of OAuth client credential flow for 3rd party API
7248
+ # authentication.
7249
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
7250
+ include Google::Apis::Core::Hashable
7251
+
7252
+ # Required. The client ID provided by the 3rd party platform.
7253
+ # Corresponds to the JSON property `clientId`
7254
+ # @return [String]
7255
+ attr_accessor :client_id
7256
+
7257
+ # Required. The client secret provided by the 3rd party platform.
7258
+ # Corresponds to the JSON property `clientSecret`
7259
+ # @return [String]
7260
+ attr_accessor :client_secret
7261
+
7262
+ # Optional. The OAuth scopes to grant.
7263
+ # Corresponds to the JSON property `scopes`
7264
+ # @return [Array<String>]
7265
+ attr_accessor :scopes
7266
+
7267
+ # Required. The token endpoint provided by the 3rd party platform to exchange an
7268
+ # access token.
7269
+ # Corresponds to the JSON property `tokenEndpoint`
7270
+ # @return [String]
7271
+ attr_accessor :token_endpoint
7272
+
7273
+ def initialize(**args)
7274
+ update!(**args)
7275
+ end
7276
+
7277
+ # Update properties of this object
7278
+ def update!(**args)
7279
+ @client_id = args[:client_id] if args.key?(:client_id)
7280
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
7281
+ @scopes = args[:scopes] if args.key?(:scopes)
7282
+ @token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
7283
+ end
7284
+ end
7285
+
7080
7286
  # The request message for a webhook call. The request is sent as a JSON object
7081
7287
  # and the field names will be presented in camel cases. You may see undocumented
7082
7288
  # fields in an actual request. These fields are used internally by Dialogflow
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.81.0"
19
+ GEM_VERSION = "0.83.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240219"
25
+ REVISION = "20240311"
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
 
@@ -598,6 +604,12 @@ module Google
598
604
  include Google::Apis::Core::JsonObjectSupport
599
605
  end
600
606
 
607
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
601
613
  class GoogleCloudDialogflowCxV3WebhookRequest
602
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
615
 
@@ -664,6 +676,12 @@ module Google
664
676
  include Google::Apis::Core::JsonObjectSupport
665
677
  end
666
678
 
679
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
680
+ class Representation < Google::Apis::Core::JsonRepresentation; end
681
+
682
+ include Google::Apis::Core::JsonObjectSupport
683
+ end
684
+
667
685
  class GoogleCloudDialogflowCxV3beta1AudioInput
668
686
  class Representation < Google::Apis::Core::JsonRepresentation; end
669
687
 
@@ -1222,6 +1240,12 @@ module Google
1222
1240
  include Google::Apis::Core::JsonObjectSupport
1223
1241
  end
1224
1242
 
1243
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
1244
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1245
+
1246
+ include Google::Apis::Core::JsonObjectSupport
1247
+ end
1248
+
1225
1249
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
1226
1250
  class Representation < Google::Apis::Core::JsonRepresentation; end
1227
1251
 
@@ -3151,6 +3175,8 @@ module Google
3151
3175
 
3152
3176
  property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
3153
3177
 
3178
+ property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings::Representation
3179
+
3154
3180
  end
3155
3181
  end
3156
3182
 
@@ -3171,6 +3197,16 @@ module Google
3171
3197
  end
3172
3198
  end
3173
3199
 
3200
+ class GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
3201
+ # @private
3202
+ class Representation < Google::Apis::Core::JsonRepresentation
3203
+ property :endpointer_sensitivity, as: 'endpointerSensitivity'
3204
+ hash :models, as: 'models'
3205
+ property :no_speech_timeout, as: 'noSpeechTimeout'
3206
+ property :use_timeout_based_endpointing, as: 'useTimeoutBasedEndpointing'
3207
+ end
3208
+ end
3209
+
3174
3210
  class GoogleCloudDialogflowCxV3AudioInput
3175
3211
  # @private
3176
3212
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4055,16 +4091,29 @@ module Google
4055
4091
  class Representation < Google::Apis::Core::JsonRepresentation
4056
4092
  collection :allowed_ca_certs, as: 'allowedCaCerts'
4057
4093
  property :http_method, as: 'httpMethod'
4094
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig::Representation
4095
+
4058
4096
  hash :parameter_mapping, as: 'parameterMapping'
4059
4097
  property :password, as: 'password'
4060
4098
  property :request_body, as: 'requestBody'
4061
4099
  hash :request_headers, as: 'requestHeaders'
4100
+ property :service_agent_auth, as: 'serviceAgentAuth'
4062
4101
  property :uri, as: 'uri'
4063
4102
  property :username, as: 'username'
4064
4103
  property :webhook_type, as: 'webhookType'
4065
4104
  end
4066
4105
  end
4067
4106
 
4107
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
4108
+ # @private
4109
+ class Representation < Google::Apis::Core::JsonRepresentation
4110
+ property :client_id, as: 'clientId'
4111
+ property :client_secret, as: 'clientSecret'
4112
+ collection :scopes, as: 'scopes'
4113
+ property :token_endpoint, as: 'tokenEndpoint'
4114
+ end
4115
+ end
4116
+
4068
4117
  class GoogleCloudDialogflowCxV3WebhookRequest
4069
4118
  # @private
4070
4119
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4167,6 +4216,8 @@ module Google
4167
4216
 
4168
4217
  property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
4169
4218
 
4219
+ property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings::Representation
4220
+
4170
4221
  end
4171
4222
  end
4172
4223
 
@@ -4187,6 +4238,16 @@ module Google
4187
4238
  end
4188
4239
  end
4189
4240
 
4241
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
4242
+ # @private
4243
+ class Representation < Google::Apis::Core::JsonRepresentation
4244
+ property :endpointer_sensitivity, as: 'endpointerSensitivity'
4245
+ hash :models, as: 'models'
4246
+ property :no_speech_timeout, as: 'noSpeechTimeout'
4247
+ property :use_timeout_based_endpointing, as: 'useTimeoutBasedEndpointing'
4248
+ end
4249
+ end
4250
+
4190
4251
  class GoogleCloudDialogflowCxV3beta1AudioInput
4191
4252
  # @private
4192
4253
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5070,16 +5131,29 @@ module Google
5070
5131
  class Representation < Google::Apis::Core::JsonRepresentation
5071
5132
  collection :allowed_ca_certs, as: 'allowedCaCerts'
5072
5133
  property :http_method, as: 'httpMethod'
5134
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig::Representation
5135
+
5073
5136
  hash :parameter_mapping, as: 'parameterMapping'
5074
5137
  property :password, as: 'password'
5075
5138
  property :request_body, as: 'requestBody'
5076
5139
  hash :request_headers, as: 'requestHeaders'
5140
+ property :service_agent_auth, as: 'serviceAgentAuth'
5077
5141
  property :uri, as: 'uri'
5078
5142
  property :username, as: 'username'
5079
5143
  property :webhook_type, as: 'webhookType'
5080
5144
  end
5081
5145
  end
5082
5146
 
5147
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
5148
+ # @private
5149
+ class Representation < Google::Apis::Core::JsonRepresentation
5150
+ property :client_id, as: 'clientId'
5151
+ property :client_secret, as: 'clientSecret'
5152
+ collection :scopes, as: 'scopes'
5153
+ property :token_endpoint, as: 'tokenEndpoint'
5154
+ end
5155
+ end
5156
+
5083
5157
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
5084
5158
  # @private
5085
5159
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.81.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-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.81.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.83.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []