google-apis-dialogflow_v2 0.83.0 → 0.85.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: de3a41175e8b0a44d2a7dad0c924c65f1b94fd2f0845a3b9d0597052d77835c5
4
- data.tar.gz: 1ff13da4bf1c2d8805360dd1e6df6d6bf3af37c2e6360c75711ee4fb5d1feeb5
3
+ metadata.gz: 70b8c5a0d6e2d019e9b4c1a3e15d9932251ce5f9a1acd570d79bcbef9bbffce9
4
+ data.tar.gz: 1c19864bc3a920b1c6ad55e2df387b2998f909413b0ac5d1b3507fb75b3ae17b
5
5
  SHA512:
6
- metadata.gz: 5030d4a8097d1dc29e0424f793ebc6ad9c9be80d79c813a0a6098142d9b81105297a8fcfe8a0d211e888a56f403ab2c8a5131e82e446e8c484296da5dd2a3392
7
- data.tar.gz: ddcce358698799b0067ef1726dcb21eb7a5d935768a8f6dfa16367a87af8114a18f5757851e1f2e1f8d6997f60efaf03fb0e4a9107d3d2aa2b7ce4fa34d59890
6
+ metadata.gz: cfb0b15893227e5972c82ac34121d6c2345bcc8139d12c12e9412526072d0684448ed747e0d09af20932ab3023f3199bac7da17cb4a1925333bd5f2ca5650ae9
7
+ data.tar.gz: a432527dd121bcbbef2fcd7f921cafb315591c8df434e3cf111779ee6d54951771038f04377cc0b87eefa456f71924401e3c25523568f44ebd345834dc97ef19
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.85.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240417
6
+
7
+ ### v0.84.0 (2024-03-17)
8
+
9
+ * Regenerated from discovery document revision 20240311
10
+
3
11
  ### v0.83.0 (2024-03-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20240305
@@ -2074,6 +2074,37 @@ module Google
2074
2074
  end
2075
2075
  end
2076
2076
 
2077
+ # Represents the language information of the request.
2078
+ class GoogleCloudDialogflowCxV3LanguageInfo
2079
+ include Google::Apis::Core::Hashable
2080
+
2081
+ # The confidence score of the detected language between 0 and 1.
2082
+ # Corresponds to the JSON property `confidenceScore`
2083
+ # @return [Float]
2084
+ attr_accessor :confidence_score
2085
+
2086
+ # The language code specified in the original request.
2087
+ # Corresponds to the JSON property `inputLanguageCode`
2088
+ # @return [String]
2089
+ attr_accessor :input_language_code
2090
+
2091
+ # The language code detected for this request based on the user conversation.
2092
+ # Corresponds to the JSON property `resolvedLanguageCode`
2093
+ # @return [String]
2094
+ attr_accessor :resolved_language_code
2095
+
2096
+ def initialize(**args)
2097
+ update!(**args)
2098
+ end
2099
+
2100
+ # Update properties of this object
2101
+ def update!(**args)
2102
+ @confidence_score = args[:confidence_score] if args.key?(:confidence_score)
2103
+ @input_language_code = args[:input_language_code] if args.key?(:input_language_code)
2104
+ @resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code)
2105
+ end
2106
+ end
2107
+
2077
2108
  # A Dialogflow CX conversation (session) can be described and visualized as a
2078
2109
  # state machine. The states of a CX session are represented by pages. For each
2079
2110
  # flow, you define many pages, where your combined pages can handle a complete
@@ -3381,6 +3412,12 @@ module Google
3381
3412
  # @return [String]
3382
3413
  attr_accessor :http_method
3383
3414
 
3415
+ # Represents configuration of OAuth client credential flow for 3rd party API
3416
+ # authentication.
3417
+ # Corresponds to the JSON property `oauthConfig`
3418
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig]
3419
+ attr_accessor :oauth_config
3420
+
3384
3421
  # Optional. Maps the values extracted from specific fields of the flexible
3385
3422
  # webhook response into session parameters. - Key: session parameter name -
3386
3423
  # Value: field path in the webhook response
@@ -3404,6 +3441,13 @@ module Google
3404
3441
  # @return [Hash<String,String>]
3405
3442
  attr_accessor :request_headers
3406
3443
 
3444
+ # Optional. Indicate the auth token type generated from the [Diglogflow service
3445
+ # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
3446
+ # agent). The generated token is sent in the Authorization header.
3447
+ # Corresponds to the JSON property `serviceAgentAuth`
3448
+ # @return [String]
3449
+ attr_accessor :service_agent_auth
3450
+
3407
3451
  # Required. The webhook URI for receiving POST requests. It must use https
3408
3452
  # protocol.
3409
3453
  # Corresponds to the JSON property `uri`
@@ -3428,16 +3472,57 @@ module Google
3428
3472
  def update!(**args)
3429
3473
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
3430
3474
  @http_method = args[:http_method] if args.key?(:http_method)
3475
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
3431
3476
  @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
3432
3477
  @password = args[:password] if args.key?(:password)
3433
3478
  @request_body = args[:request_body] if args.key?(:request_body)
3434
3479
  @request_headers = args[:request_headers] if args.key?(:request_headers)
3480
+ @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
3435
3481
  @uri = args[:uri] if args.key?(:uri)
3436
3482
  @username = args[:username] if args.key?(:username)
3437
3483
  @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
3438
3484
  end
3439
3485
  end
3440
3486
 
3487
+ # Represents configuration of OAuth client credential flow for 3rd party API
3488
+ # authentication.
3489
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
3490
+ include Google::Apis::Core::Hashable
3491
+
3492
+ # Required. The client ID provided by the 3rd party platform.
3493
+ # Corresponds to the JSON property `clientId`
3494
+ # @return [String]
3495
+ attr_accessor :client_id
3496
+
3497
+ # Required. The client secret provided by the 3rd party platform.
3498
+ # Corresponds to the JSON property `clientSecret`
3499
+ # @return [String]
3500
+ attr_accessor :client_secret
3501
+
3502
+ # Optional. The OAuth scopes to grant.
3503
+ # Corresponds to the JSON property `scopes`
3504
+ # @return [Array<String>]
3505
+ attr_accessor :scopes
3506
+
3507
+ # Required. The token endpoint provided by the 3rd party platform to exchange an
3508
+ # access token.
3509
+ # Corresponds to the JSON property `tokenEndpoint`
3510
+ # @return [String]
3511
+ attr_accessor :token_endpoint
3512
+
3513
+ def initialize(**args)
3514
+ update!(**args)
3515
+ end
3516
+
3517
+ # Update properties of this object
3518
+ def update!(**args)
3519
+ @client_id = args[:client_id] if args.key?(:client_id)
3520
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
3521
+ @scopes = args[:scopes] if args.key?(:scopes)
3522
+ @token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
3523
+ end
3524
+ end
3525
+
3441
3526
  # The request message for a webhook call. The request is sent as a JSON object
3442
3527
  # and the field names will be presented in camel cases. You may see undocumented
3443
3528
  # fields in an actual request. These fields are used internally by Dialogflow
@@ -3471,6 +3556,11 @@ module Google
3471
3556
  # @return [String]
3472
3557
  attr_accessor :language_code
3473
3558
 
3559
+ # Represents the language information of the request.
3560
+ # Corresponds to the JSON property `languageInfo`
3561
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3LanguageInfo]
3562
+ attr_accessor :language_info
3563
+
3474
3564
  # The list of rich message responses to present to the user. Webhook can choose
3475
3565
  # to append or replace this list in WebhookResponse.fulfillment_response;
3476
3566
  # Corresponds to the JSON property `messages`
@@ -3532,6 +3622,7 @@ module Google
3532
3622
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
3533
3623
  @intent_info = args[:intent_info] if args.key?(:intent_info)
3534
3624
  @language_code = args[:language_code] if args.key?(:language_code)
3625
+ @language_info = args[:language_info] if args.key?(:language_info)
3535
3626
  @messages = args[:messages] if args.key?(:messages)
3536
3627
  @page_info = args[:page_info] if args.key?(:page_info)
3537
3628
  @payload = args[:payload] if args.key?(:payload)
@@ -5817,6 +5908,37 @@ module Google
5817
5908
  end
5818
5909
  end
5819
5910
 
5911
+ # Represents the language information of the request.
5912
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
5913
+ include Google::Apis::Core::Hashable
5914
+
5915
+ # The confidence score of the detected language between 0 and 1.
5916
+ # Corresponds to the JSON property `confidenceScore`
5917
+ # @return [Float]
5918
+ attr_accessor :confidence_score
5919
+
5920
+ # The language code specified in the original request.
5921
+ # Corresponds to the JSON property `inputLanguageCode`
5922
+ # @return [String]
5923
+ attr_accessor :input_language_code
5924
+
5925
+ # The language code detected for this request based on the user conversation.
5926
+ # Corresponds to the JSON property `resolvedLanguageCode`
5927
+ # @return [String]
5928
+ attr_accessor :resolved_language_code
5929
+
5930
+ def initialize(**args)
5931
+ update!(**args)
5932
+ end
5933
+
5934
+ # Update properties of this object
5935
+ def update!(**args)
5936
+ @confidence_score = args[:confidence_score] if args.key?(:confidence_score)
5937
+ @input_language_code = args[:input_language_code] if args.key?(:input_language_code)
5938
+ @resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code)
5939
+ end
5940
+ end
5941
+
5820
5942
  # A Dialogflow CX conversation (session) can be described and visualized as a
5821
5943
  # state machine. The states of a CX session are represented by pages. For each
5822
5944
  # flow, you define many pages, where your combined pages can handle a complete
@@ -7118,6 +7240,12 @@ module Google
7118
7240
  # @return [String]
7119
7241
  attr_accessor :http_method
7120
7242
 
7243
+ # Represents configuration of OAuth client credential flow for 3rd party API
7244
+ # authentication.
7245
+ # Corresponds to the JSON property `oauthConfig`
7246
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig]
7247
+ attr_accessor :oauth_config
7248
+
7121
7249
  # Optional. Maps the values extracted from specific fields of the flexible
7122
7250
  # webhook response into session parameters. - Key: session parameter name -
7123
7251
  # Value: field path in the webhook response
@@ -7141,6 +7269,13 @@ module Google
7141
7269
  # @return [Hash<String,String>]
7142
7270
  attr_accessor :request_headers
7143
7271
 
7272
+ # Optional. Indicate the auth token type generated from the [Diglogflow service
7273
+ # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
7274
+ # agent). The generated token is sent in the Authorization header.
7275
+ # Corresponds to the JSON property `serviceAgentAuth`
7276
+ # @return [String]
7277
+ attr_accessor :service_agent_auth
7278
+
7144
7279
  # Required. The webhook URI for receiving POST requests. It must use https
7145
7280
  # protocol.
7146
7281
  # Corresponds to the JSON property `uri`
@@ -7165,16 +7300,57 @@ module Google
7165
7300
  def update!(**args)
7166
7301
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
7167
7302
  @http_method = args[:http_method] if args.key?(:http_method)
7303
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
7168
7304
  @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
7169
7305
  @password = args[:password] if args.key?(:password)
7170
7306
  @request_body = args[:request_body] if args.key?(:request_body)
7171
7307
  @request_headers = args[:request_headers] if args.key?(:request_headers)
7308
+ @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
7172
7309
  @uri = args[:uri] if args.key?(:uri)
7173
7310
  @username = args[:username] if args.key?(:username)
7174
7311
  @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
7175
7312
  end
7176
7313
  end
7177
7314
 
7315
+ # Represents configuration of OAuth client credential flow for 3rd party API
7316
+ # authentication.
7317
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
7318
+ include Google::Apis::Core::Hashable
7319
+
7320
+ # Required. The client ID provided by the 3rd party platform.
7321
+ # Corresponds to the JSON property `clientId`
7322
+ # @return [String]
7323
+ attr_accessor :client_id
7324
+
7325
+ # Required. The client secret provided by the 3rd party platform.
7326
+ # Corresponds to the JSON property `clientSecret`
7327
+ # @return [String]
7328
+ attr_accessor :client_secret
7329
+
7330
+ # Optional. The OAuth scopes to grant.
7331
+ # Corresponds to the JSON property `scopes`
7332
+ # @return [Array<String>]
7333
+ attr_accessor :scopes
7334
+
7335
+ # Required. The token endpoint provided by the 3rd party platform to exchange an
7336
+ # access token.
7337
+ # Corresponds to the JSON property `tokenEndpoint`
7338
+ # @return [String]
7339
+ attr_accessor :token_endpoint
7340
+
7341
+ def initialize(**args)
7342
+ update!(**args)
7343
+ end
7344
+
7345
+ # Update properties of this object
7346
+ def update!(**args)
7347
+ @client_id = args[:client_id] if args.key?(:client_id)
7348
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
7349
+ @scopes = args[:scopes] if args.key?(:scopes)
7350
+ @token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
7351
+ end
7352
+ end
7353
+
7178
7354
  # The request message for a webhook call. The request is sent as a JSON object
7179
7355
  # and the field names will be presented in camel cases. You may see undocumented
7180
7356
  # fields in an actual request. These fields are used internally by Dialogflow
@@ -7208,6 +7384,11 @@ module Google
7208
7384
  # @return [String]
7209
7385
  attr_accessor :language_code
7210
7386
 
7387
+ # Represents the language information of the request.
7388
+ # Corresponds to the JSON property `languageInfo`
7389
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo]
7390
+ attr_accessor :language_info
7391
+
7211
7392
  # The list of rich message responses to present to the user. Webhook can choose
7212
7393
  # to append or replace this list in WebhookResponse.fulfillment_response;
7213
7394
  # Corresponds to the JSON property `messages`
@@ -7269,6 +7450,7 @@ module Google
7269
7450
  @fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
7270
7451
  @intent_info = args[:intent_info] if args.key?(:intent_info)
7271
7452
  @language_code = args[:language_code] if args.key?(:language_code)
7453
+ @language_info = args[:language_info] if args.key?(:language_info)
7272
7454
  @messages = args[:messages] if args.key?(:messages)
7273
7455
  @page_info = args[:page_info] if args.key?(:page_info)
7274
7456
  @payload = args[:payload] if args.key?(:payload)
@@ -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.83.0"
19
+ GEM_VERSION = "0.85.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 = "20240305"
25
+ REVISION = "20240417"
26
26
  end
27
27
  end
28
28
  end
@@ -400,6 +400,12 @@ module Google
400
400
  include Google::Apis::Core::JsonObjectSupport
401
401
  end
402
402
 
403
+ class GoogleCloudDialogflowCxV3LanguageInfo
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
403
409
  class GoogleCloudDialogflowCxV3Page
404
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
411
 
@@ -604,6 +610,12 @@ module Google
604
610
  include Google::Apis::Core::JsonObjectSupport
605
611
  end
606
612
 
613
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
614
+ class Representation < Google::Apis::Core::JsonRepresentation; end
615
+
616
+ include Google::Apis::Core::JsonObjectSupport
617
+ end
618
+
607
619
  class GoogleCloudDialogflowCxV3WebhookRequest
608
620
  class Representation < Google::Apis::Core::JsonRepresentation; end
609
621
 
@@ -1030,6 +1042,12 @@ module Google
1030
1042
  include Google::Apis::Core::JsonObjectSupport
1031
1043
  end
1032
1044
 
1045
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
1046
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1047
+
1048
+ include Google::Apis::Core::JsonObjectSupport
1049
+ end
1050
+
1033
1051
  class GoogleCloudDialogflowCxV3beta1Page
1034
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1035
1053
 
@@ -1234,6 +1252,12 @@ module Google
1234
1252
  include Google::Apis::Core::JsonObjectSupport
1235
1253
  end
1236
1254
 
1255
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
1256
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1257
+
1258
+ include Google::Apis::Core::JsonObjectSupport
1259
+ end
1260
+
1237
1261
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
1238
1262
  class Representation < Google::Apis::Core::JsonRepresentation; end
1239
1263
 
@@ -3715,6 +3739,15 @@ module Google
3715
3739
  end
3716
3740
  end
3717
3741
 
3742
+ class GoogleCloudDialogflowCxV3LanguageInfo
3743
+ # @private
3744
+ class Representation < Google::Apis::Core::JsonRepresentation
3745
+ property :confidence_score, as: 'confidenceScore'
3746
+ property :input_language_code, as: 'inputLanguageCode'
3747
+ property :resolved_language_code, as: 'resolvedLanguageCode'
3748
+ end
3749
+ end
3750
+
3718
3751
  class GoogleCloudDialogflowCxV3Page
3719
3752
  # @private
3720
3753
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4061,16 +4094,29 @@ module Google
4061
4094
  class Representation < Google::Apis::Core::JsonRepresentation
4062
4095
  collection :allowed_ca_certs, as: 'allowedCaCerts'
4063
4096
  property :http_method, as: 'httpMethod'
4097
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig::Representation
4098
+
4064
4099
  hash :parameter_mapping, as: 'parameterMapping'
4065
4100
  property :password, as: 'password'
4066
4101
  property :request_body, as: 'requestBody'
4067
4102
  hash :request_headers, as: 'requestHeaders'
4103
+ property :service_agent_auth, as: 'serviceAgentAuth'
4068
4104
  property :uri, as: 'uri'
4069
4105
  property :username, as: 'username'
4070
4106
  property :webhook_type, as: 'webhookType'
4071
4107
  end
4072
4108
  end
4073
4109
 
4110
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
4111
+ # @private
4112
+ class Representation < Google::Apis::Core::JsonRepresentation
4113
+ property :client_id, as: 'clientId'
4114
+ property :client_secret, as: 'clientSecret'
4115
+ collection :scopes, as: 'scopes'
4116
+ property :token_endpoint, as: 'tokenEndpoint'
4117
+ end
4118
+ end
4119
+
4074
4120
  class GoogleCloudDialogflowCxV3WebhookRequest
4075
4121
  # @private
4076
4122
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4081,6 +4127,8 @@ module Google
4081
4127
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
4082
4128
 
4083
4129
  property :language_code, as: 'languageCode'
4130
+ property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3LanguageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3LanguageInfo::Representation
4131
+
4084
4132
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessage, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessage::Representation
4085
4133
 
4086
4134
  property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfo::Representation
@@ -4743,6 +4791,15 @@ module Google
4743
4791
  end
4744
4792
  end
4745
4793
 
4794
+ class GoogleCloudDialogflowCxV3beta1LanguageInfo
4795
+ # @private
4796
+ class Representation < Google::Apis::Core::JsonRepresentation
4797
+ property :confidence_score, as: 'confidenceScore'
4798
+ property :input_language_code, as: 'inputLanguageCode'
4799
+ property :resolved_language_code, as: 'resolvedLanguageCode'
4800
+ end
4801
+ end
4802
+
4746
4803
  class GoogleCloudDialogflowCxV3beta1Page
4747
4804
  # @private
4748
4805
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5088,16 +5145,29 @@ module Google
5088
5145
  class Representation < Google::Apis::Core::JsonRepresentation
5089
5146
  collection :allowed_ca_certs, as: 'allowedCaCerts'
5090
5147
  property :http_method, as: 'httpMethod'
5148
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig::Representation
5149
+
5091
5150
  hash :parameter_mapping, as: 'parameterMapping'
5092
5151
  property :password, as: 'password'
5093
5152
  property :request_body, as: 'requestBody'
5094
5153
  hash :request_headers, as: 'requestHeaders'
5154
+ property :service_agent_auth, as: 'serviceAgentAuth'
5095
5155
  property :uri, as: 'uri'
5096
5156
  property :username, as: 'username'
5097
5157
  property :webhook_type, as: 'webhookType'
5098
5158
  end
5099
5159
  end
5100
5160
 
5161
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
5162
+ # @private
5163
+ class Representation < Google::Apis::Core::JsonRepresentation
5164
+ property :client_id, as: 'clientId'
5165
+ property :client_secret, as: 'clientSecret'
5166
+ collection :scopes, as: 'scopes'
5167
+ property :token_endpoint, as: 'tokenEndpoint'
5168
+ end
5169
+ end
5170
+
5101
5171
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
5102
5172
  # @private
5103
5173
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5108,6 +5178,8 @@ module Google
5108
5178
  property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
5109
5179
 
5110
5180
  property :language_code, as: 'languageCode'
5181
+ property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1LanguageInfo::Representation
5182
+
5111
5183
  collection :messages, as: 'messages', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
5112
5184
 
5113
5185
  property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1PageInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1PageInfo::Representation
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.83.0
4
+ version: 0.85.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-03-10 00:00:00.000000000 Z
11
+ date: 2024-04-21 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.83.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.85.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: []