google-apis-dialogflow_v2 0.82.0 → 0.84.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: 2b71d682e11bbda970bd5350a9a72339c127d61a46d4bf31ddc2d4eae54005f4
4
- data.tar.gz: 996a5489079c278fa49fa1e81b2caac2f27b17318dc7b820ad32964a40ebe32e
3
+ metadata.gz: 51eeec463b44ff170bfe02ecd3ef98d0459d88393d818bb5473f1d780127a251
4
+ data.tar.gz: 24d812fdf511718b5b26d367ab239dab4a8be160b0b2ec2590d68745a9b0b677
5
5
  SHA512:
6
- metadata.gz: 16e669534c2bcf92f57fc1b819d0193041f145a1d3d43f17ebe5a38a20f1b6af55abebb3992c0ed9504f9476333356a23672d625c3be6c1855c44bc39415580c
7
- data.tar.gz: '0619d79b413d4357b90ed8c2bd6bab9e801c42259677f2289877cbec9e9e2dfd2af1c59a4c0122db1ace458d93c949c13ab2fe44b1bcf649dda48d07064df2f7'
6
+ metadata.gz: 663a648e8e62d7c18fbe8f0ef29e717d798a2a97bdc2eb8bd0d853fd0bb449fd39cc895b3135031b71ca0bed3a476968aa30e362bfec54eb0440ed337b671c2d
7
+ data.tar.gz: 9c419b86591439a1c31c0438f20ecef29c16959ca8e0b13d1ae106ffe67b1b742642f35c4aba0878c4b602a74a6d7a7ffdd2ffd51e60b91e4c96851954d1be81
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.84.0 (2024-03-17)
4
+
5
+ * Regenerated from discovery document revision 20240311
6
+
7
+ ### v0.83.0 (2024-03-10)
8
+
9
+ * Regenerated from discovery document revision 20240305
10
+
3
11
  ### v0.82.0 (2024-02-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240219
@@ -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
@@ -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::DialogflowV2::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::DialogflowV2::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::DialogflowV2::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::DialogflowV2::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 DialogflowV2
18
18
  # Version of the google-apis-dialogflow_v2 gem
19
- GEM_VERSION = "0.82.0"
19
+ GEM_VERSION = "0.84.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
 
@@ -3133,6 +3157,8 @@ module Google
3133
3157
 
3134
3158
  property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings::Representation
3135
3159
 
3160
+ property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings::Representation
3161
+
3136
3162
  end
3137
3163
  end
3138
3164
 
@@ -3153,6 +3179,16 @@ module Google
3153
3179
  end
3154
3180
  end
3155
3181
 
3182
+ class GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
3183
+ # @private
3184
+ class Representation < Google::Apis::Core::JsonRepresentation
3185
+ property :endpointer_sensitivity, as: 'endpointerSensitivity'
3186
+ hash :models, as: 'models'
3187
+ property :no_speech_timeout, as: 'noSpeechTimeout'
3188
+ property :use_timeout_based_endpointing, as: 'useTimeoutBasedEndpointing'
3189
+ end
3190
+ end
3191
+
3156
3192
  class GoogleCloudDialogflowCxV3AudioInput
3157
3193
  # @private
3158
3194
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4037,16 +4073,29 @@ module Google
4037
4073
  class Representation < Google::Apis::Core::JsonRepresentation
4038
4074
  collection :allowed_ca_certs, as: 'allowedCaCerts'
4039
4075
  property :http_method, as: 'httpMethod'
4076
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig::Representation
4077
+
4040
4078
  hash :parameter_mapping, as: 'parameterMapping'
4041
4079
  property :password, as: 'password'
4042
4080
  property :request_body, as: 'requestBody'
4043
4081
  hash :request_headers, as: 'requestHeaders'
4082
+ property :service_agent_auth, as: 'serviceAgentAuth'
4044
4083
  property :uri, as: 'uri'
4045
4084
  property :username, as: 'username'
4046
4085
  property :webhook_type, as: 'webhookType'
4047
4086
  end
4048
4087
  end
4049
4088
 
4089
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
4090
+ # @private
4091
+ class Representation < Google::Apis::Core::JsonRepresentation
4092
+ property :client_id, as: 'clientId'
4093
+ property :client_secret, as: 'clientSecret'
4094
+ collection :scopes, as: 'scopes'
4095
+ property :token_endpoint, as: 'tokenEndpoint'
4096
+ end
4097
+ end
4098
+
4050
4099
  class GoogleCloudDialogflowCxV3WebhookRequest
4051
4100
  # @private
4052
4101
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4149,6 +4198,8 @@ module Google
4149
4198
 
4150
4199
  property :logging_settings, as: 'loggingSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings::Representation
4151
4200
 
4201
+ property :speech_settings, as: 'speechSettings', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings::Representation
4202
+
4152
4203
  end
4153
4204
  end
4154
4205
 
@@ -4169,6 +4220,16 @@ module Google
4169
4220
  end
4170
4221
  end
4171
4222
 
4223
+ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
4224
+ # @private
4225
+ class Representation < Google::Apis::Core::JsonRepresentation
4226
+ property :endpointer_sensitivity, as: 'endpointerSensitivity'
4227
+ hash :models, as: 'models'
4228
+ property :no_speech_timeout, as: 'noSpeechTimeout'
4229
+ property :use_timeout_based_endpointing, as: 'useTimeoutBasedEndpointing'
4230
+ end
4231
+ end
4232
+
4172
4233
  class GoogleCloudDialogflowCxV3beta1AudioInput
4173
4234
  # @private
4174
4235
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5052,16 +5113,29 @@ module Google
5052
5113
  class Representation < Google::Apis::Core::JsonRepresentation
5053
5114
  collection :allowed_ca_certs, as: 'allowedCaCerts'
5054
5115
  property :http_method, as: 'httpMethod'
5116
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig::Representation
5117
+
5055
5118
  hash :parameter_mapping, as: 'parameterMapping'
5056
5119
  property :password, as: 'password'
5057
5120
  property :request_body, as: 'requestBody'
5058
5121
  hash :request_headers, as: 'requestHeaders'
5122
+ property :service_agent_auth, as: 'serviceAgentAuth'
5059
5123
  property :uri, as: 'uri'
5060
5124
  property :username, as: 'username'
5061
5125
  property :webhook_type, as: 'webhookType'
5062
5126
  end
5063
5127
  end
5064
5128
 
5129
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
5130
+ # @private
5131
+ class Representation < Google::Apis::Core::JsonRepresentation
5132
+ property :client_id, as: 'clientId'
5133
+ property :client_secret, as: 'clientSecret'
5134
+ collection :scopes, as: 'scopes'
5135
+ property :token_endpoint, as: 'tokenEndpoint'
5136
+ end
5137
+ end
5138
+
5065
5139
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
5066
5140
  # @private
5067
5141
  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.82.0
4
+ version: 0.84.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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.82.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.84.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: []