google-apis-dialogflow_v3beta1 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: 2a6fec71bc0d0212c9a059e11c56c347b2852d854fcf7d4b11a1c9c8b8375135
4
- data.tar.gz: 8be713e4980583f4c5ccbb49dd9074e355ec8ddcb51d85a84e869bae58cc543b
3
+ metadata.gz: 41770737a53560463941a89ea831d0856dcb05b37f0a9b9046d5827482844f7d
4
+ data.tar.gz: badcf8a37dfc9b8df15cb61af256bf6979eb350b1582488d90f681684938ae8b
5
5
  SHA512:
6
- metadata.gz: b67a473f3fdeb0cb17ed28056f4f3d0107e9b9651564fd170f628ea5296d7b196ad3c382e4ebebe72a2bfd90bce4a86cf1a258f56d30858b84ba16c240c85757
7
- data.tar.gz: 3817e01fd1813aa64e68b8595f1187711fe8a8a2b7521fdf6cdc22112b3fd9d18f01f8eb37b0f7bea14d3ba845a4f0b336a0449a20de6be00c354401df70eded
6
+ metadata.gz: cca0e20d5199ad5b8ad9807aa6488c70e9063ba9d204ee49e2c0155ea0e6628210c13664f4456b3943832f037c454cc23de2d01d97bb0e01abed21725c6aabd5
7
+ data.tar.gz: a9d23538dd9bd776393d66f60c021798cc496e07dba93b4c6bb2354eec7eba7bbd7464873b24fec92651651b433634e5f782ae67a35a978891d1e778f4b62d55
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.84.0 (2024-04-07)
4
+
5
+ * Regenerated from discovery document revision 20240326
6
+
7
+ ### v0.83.0 (2024-03-17)
8
+
9
+ * Regenerated from discovery document revision 20240311
10
+
3
11
  ### v0.82.0 (2024-03-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20240305
@@ -3381,6 +3381,12 @@ module Google
3381
3381
  # @return [String]
3382
3382
  attr_accessor :http_method
3383
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::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig]
3388
+ attr_accessor :oauth_config
3389
+
3384
3390
  # Optional. Maps the values extracted from specific fields of the flexible
3385
3391
  # webhook response into session parameters. - Key: session parameter name -
3386
3392
  # Value: field path in the webhook response
@@ -3404,6 +3410,13 @@ module Google
3404
3410
  # @return [Hash<String,String>]
3405
3411
  attr_accessor :request_headers
3406
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
+
3407
3420
  # Required. The webhook URI for receiving POST requests. It must use https
3408
3421
  # protocol.
3409
3422
  # Corresponds to the JSON property `uri`
@@ -3428,16 +3441,57 @@ module Google
3428
3441
  def update!(**args)
3429
3442
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
3430
3443
  @http_method = args[:http_method] if args.key?(:http_method)
3444
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
3431
3445
  @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
3432
3446
  @password = args[:password] if args.key?(:password)
3433
3447
  @request_body = args[:request_body] if args.key?(:request_body)
3434
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)
3435
3450
  @uri = args[:uri] if args.key?(:uri)
3436
3451
  @username = args[:username] if args.key?(:username)
3437
3452
  @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
3438
3453
  end
3439
3454
  end
3440
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
+
3441
3495
  # The request message for a webhook call. The request is sent as a JSON object
3442
3496
  # and the field names will be presented in camel cases. You may see undocumented
3443
3497
  # fields in an actual request. These fields are used internally by Dialogflow
@@ -3968,6 +4022,13 @@ module Google
3968
4022
  # @return [String]
3969
4023
  attr_accessor :display_name
3970
4024
 
4025
+ # Optional. Enable training multi-lingual models for this agent. These models
4026
+ # will be trained on all the languages supported by the agent.
4027
+ # Corresponds to the JSON property `enableMultiLanguageTraining`
4028
+ # @return [Boolean]
4029
+ attr_accessor :enable_multi_language_training
4030
+ alias_method :enable_multi_language_training?, :enable_multi_language_training
4031
+
3971
4032
  # Indicates if automatic spell correction is enabled in detect intent requests.
3972
4033
  # Corresponds to the JSON property `enableSpellCorrection`
3973
4034
  # @return [Boolean]
@@ -4057,6 +4118,7 @@ module Google
4057
4118
  @default_language_code = args[:default_language_code] if args.key?(:default_language_code)
4058
4119
  @description = args[:description] if args.key?(:description)
4059
4120
  @display_name = args[:display_name] if args.key?(:display_name)
4121
+ @enable_multi_language_training = args[:enable_multi_language_training] if args.key?(:enable_multi_language_training)
4060
4122
  @enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
4061
4123
  @enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
4062
4124
  @gen_app_builder_settings = args[:gen_app_builder_settings] if args.key?(:gen_app_builder_settings)
@@ -4973,6 +5035,265 @@ module Google
4973
5035
  end
4974
5036
  end
4975
5037
 
5038
+ # Data store connection feature output signals. Might be only partially field if
5039
+ # processing stop before the final answer. Reasons for this can be, but are not
5040
+ # limited to: empty UCS search results, positive RAI check outcome, grounding
5041
+ # failure, ...
5042
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals
5043
+ include Google::Apis::Core::Hashable
5044
+
5045
+ # Optional. The final compiled answer.
5046
+ # Corresponds to the JSON property `answer`
5047
+ # @return [String]
5048
+ attr_accessor :answer
5049
+
5050
+ # Diagnostic info related to the answer generation model call.
5051
+ # Corresponds to the JSON property `answerGenerationModelCallSignals`
5052
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals]
5053
+ attr_accessor :answer_generation_model_call_signals
5054
+
5055
+ # Optional. Answer parts with relevant citations. Concatenation of texts should
5056
+ # add up the `answer` (not counting whitespaces).
5057
+ # Corresponds to the JSON property `answerParts`
5058
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart>]
5059
+ attr_accessor :answer_parts
5060
+
5061
+ # Optional. Snippets cited by the answer generation model from the most to least
5062
+ # relevant.
5063
+ # Corresponds to the JSON property `citedSnippets`
5064
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet>]
5065
+ attr_accessor :cited_snippets
5066
+
5067
+ # Grounding signals.
5068
+ # Corresponds to the JSON property `groundingSignals`
5069
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals]
5070
+ attr_accessor :grounding_signals
5071
+
5072
+ # Diagnostic info related to the rewriter model call.
5073
+ # Corresponds to the JSON property `rewriterModelCallSignals`
5074
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals]
5075
+ attr_accessor :rewriter_model_call_signals
5076
+
5077
+ # Optional. Rewritten string query used for search.
5078
+ # Corresponds to the JSON property `rewrittenQuery`
5079
+ # @return [String]
5080
+ attr_accessor :rewritten_query
5081
+
5082
+ # Safety check results.
5083
+ # Corresponds to the JSON property `safetySignals`
5084
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals]
5085
+ attr_accessor :safety_signals
5086
+
5087
+ # Optional. Search snippets included in the answer generation prompt.
5088
+ # Corresponds to the JSON property `searchSnippets`
5089
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet>]
5090
+ attr_accessor :search_snippets
5091
+
5092
+ def initialize(**args)
5093
+ update!(**args)
5094
+ end
5095
+
5096
+ # Update properties of this object
5097
+ def update!(**args)
5098
+ @answer = args[:answer] if args.key?(:answer)
5099
+ @answer_generation_model_call_signals = args[:answer_generation_model_call_signals] if args.key?(:answer_generation_model_call_signals)
5100
+ @answer_parts = args[:answer_parts] if args.key?(:answer_parts)
5101
+ @cited_snippets = args[:cited_snippets] if args.key?(:cited_snippets)
5102
+ @grounding_signals = args[:grounding_signals] if args.key?(:grounding_signals)
5103
+ @rewriter_model_call_signals = args[:rewriter_model_call_signals] if args.key?(:rewriter_model_call_signals)
5104
+ @rewritten_query = args[:rewritten_query] if args.key?(:rewritten_query)
5105
+ @safety_signals = args[:safety_signals] if args.key?(:safety_signals)
5106
+ @search_snippets = args[:search_snippets] if args.key?(:search_snippets)
5107
+ end
5108
+ end
5109
+
5110
+ # Diagnostic info related to the answer generation model call.
5111
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals
5112
+ include Google::Apis::Core::Hashable
5113
+
5114
+ # Output of the generative model.
5115
+ # Corresponds to the JSON property `modelOutput`
5116
+ # @return [String]
5117
+ attr_accessor :model_output
5118
+
5119
+ # Prompt as sent to the model.
5120
+ # Corresponds to the JSON property `renderedPrompt`
5121
+ # @return [String]
5122
+ attr_accessor :rendered_prompt
5123
+
5124
+ def initialize(**args)
5125
+ update!(**args)
5126
+ end
5127
+
5128
+ # Update properties of this object
5129
+ def update!(**args)
5130
+ @model_output = args[:model_output] if args.key?(:model_output)
5131
+ @rendered_prompt = args[:rendered_prompt] if args.key?(:rendered_prompt)
5132
+ end
5133
+ end
5134
+
5135
+ # Answer part with citation.
5136
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart
5137
+ include Google::Apis::Core::Hashable
5138
+
5139
+ # Citations for this answer part. Indices of `search_snippets`.
5140
+ # Corresponds to the JSON property `supportingIndices`
5141
+ # @return [Array<Fixnum>]
5142
+ attr_accessor :supporting_indices
5143
+
5144
+ # Substring of the answer.
5145
+ # Corresponds to the JSON property `text`
5146
+ # @return [String]
5147
+ attr_accessor :text
5148
+
5149
+ def initialize(**args)
5150
+ update!(**args)
5151
+ end
5152
+
5153
+ # Update properties of this object
5154
+ def update!(**args)
5155
+ @supporting_indices = args[:supporting_indices] if args.key?(:supporting_indices)
5156
+ @text = args[:text] if args.key?(:text)
5157
+ end
5158
+ end
5159
+
5160
+ # Snippet cited by the answer generation model.
5161
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet
5162
+ include Google::Apis::Core::Hashable
5163
+
5164
+ # Search snippet details.
5165
+ # Corresponds to the JSON property `searchSnippet`
5166
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet]
5167
+ attr_accessor :search_snippet
5168
+
5169
+ # Index of the snippet in `search_snippets` field.
5170
+ # Corresponds to the JSON property `snippetIndex`
5171
+ # @return [Fixnum]
5172
+ attr_accessor :snippet_index
5173
+
5174
+ def initialize(**args)
5175
+ update!(**args)
5176
+ end
5177
+
5178
+ # Update properties of this object
5179
+ def update!(**args)
5180
+ @search_snippet = args[:search_snippet] if args.key?(:search_snippet)
5181
+ @snippet_index = args[:snippet_index] if args.key?(:snippet_index)
5182
+ end
5183
+ end
5184
+
5185
+ # Grounding signals.
5186
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals
5187
+ include Google::Apis::Core::Hashable
5188
+
5189
+ # Represents the decision of the grounding check.
5190
+ # Corresponds to the JSON property `decision`
5191
+ # @return [String]
5192
+ attr_accessor :decision
5193
+
5194
+ # Grounding score bucket setting.
5195
+ # Corresponds to the JSON property `score`
5196
+ # @return [String]
5197
+ attr_accessor :score
5198
+
5199
+ def initialize(**args)
5200
+ update!(**args)
5201
+ end
5202
+
5203
+ # Update properties of this object
5204
+ def update!(**args)
5205
+ @decision = args[:decision] if args.key?(:decision)
5206
+ @score = args[:score] if args.key?(:score)
5207
+ end
5208
+ end
5209
+
5210
+ # Diagnostic info related to the rewriter model call.
5211
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
5212
+ include Google::Apis::Core::Hashable
5213
+
5214
+ # Output of the generative model.
5215
+ # Corresponds to the JSON property `modelOutput`
5216
+ # @return [String]
5217
+ attr_accessor :model_output
5218
+
5219
+ # Prompt as sent to the model.
5220
+ # Corresponds to the JSON property `renderedPrompt`
5221
+ # @return [String]
5222
+ attr_accessor :rendered_prompt
5223
+
5224
+ def initialize(**args)
5225
+ update!(**args)
5226
+ end
5227
+
5228
+ # Update properties of this object
5229
+ def update!(**args)
5230
+ @model_output = args[:model_output] if args.key?(:model_output)
5231
+ @rendered_prompt = args[:rendered_prompt] if args.key?(:rendered_prompt)
5232
+ end
5233
+ end
5234
+
5235
+ # Safety check results.
5236
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals
5237
+ include Google::Apis::Core::Hashable
5238
+
5239
+ # Specifies banned phrase match subject.
5240
+ # Corresponds to the JSON property `bannedPhraseMatch`
5241
+ # @return [String]
5242
+ attr_accessor :banned_phrase_match
5243
+
5244
+ # Safety decision.
5245
+ # Corresponds to the JSON property `decision`
5246
+ # @return [String]
5247
+ attr_accessor :decision
5248
+
5249
+ # The matched banned phrase if there was a match.
5250
+ # Corresponds to the JSON property `matchedBannedPhrase`
5251
+ # @return [String]
5252
+ attr_accessor :matched_banned_phrase
5253
+
5254
+ def initialize(**args)
5255
+ update!(**args)
5256
+ end
5257
+
5258
+ # Update properties of this object
5259
+ def update!(**args)
5260
+ @banned_phrase_match = args[:banned_phrase_match] if args.key?(:banned_phrase_match)
5261
+ @decision = args[:decision] if args.key?(:decision)
5262
+ @matched_banned_phrase = args[:matched_banned_phrase] if args.key?(:matched_banned_phrase)
5263
+ end
5264
+ end
5265
+
5266
+ # Search snippet details.
5267
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet
5268
+ include Google::Apis::Core::Hashable
5269
+
5270
+ # Title of the enclosing document.
5271
+ # Corresponds to the JSON property `documentTitle`
5272
+ # @return [String]
5273
+ attr_accessor :document_title
5274
+
5275
+ # Uri for the document. Present if specified for the document.
5276
+ # Corresponds to the JSON property `documentUri`
5277
+ # @return [String]
5278
+ attr_accessor :document_uri
5279
+
5280
+ # Text included in the prompt.
5281
+ # Corresponds to the JSON property `text`
5282
+ # @return [String]
5283
+ attr_accessor :text
5284
+
5285
+ def initialize(**args)
5286
+ update!(**args)
5287
+ end
5288
+
5289
+ # Update properties of this object
5290
+ def update!(**args)
5291
+ @document_title = args[:document_title] if args.key?(:document_title)
5292
+ @document_uri = args[:document_uri] if args.key?(:document_uri)
5293
+ @text = args[:text] if args.key?(:text)
5294
+ end
5295
+ end
5296
+
4976
5297
  # Metadata for DeleteDocument operation.
4977
5298
  class GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata
4978
5299
  include Google::Apis::Core::Hashable
@@ -6423,6 +6744,11 @@ module Google
6423
6744
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings]
6424
6745
  attr_accessor :knowledge_connector_settings
6425
6746
 
6747
+ # Settings for multi-lingual agents.
6748
+ # Corresponds to the JSON property `multiLanguageSettings`
6749
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings]
6750
+ attr_accessor :multi_language_settings
6751
+
6426
6752
  # The unique identifier of the flow. Format: `projects//locations//agents//flows/
6427
6753
  # `.
6428
6754
  # Corresponds to the JSON property `name`
@@ -6468,6 +6794,7 @@ module Google
6468
6794
  @display_name = args[:display_name] if args.key?(:display_name)
6469
6795
  @event_handlers = args[:event_handlers] if args.key?(:event_handlers)
6470
6796
  @knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
6797
+ @multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
6471
6798
  @name = args[:name] if args.key?(:name)
6472
6799
  @nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
6473
6800
  @transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
@@ -6498,6 +6825,37 @@ module Google
6498
6825
  end
6499
6826
  end
6500
6827
 
6828
+ # Settings for multi-lingual agents.
6829
+ class GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings
6830
+ include Google::Apis::Core::Hashable
6831
+
6832
+ # Optional. Enable multi-language detection for this flow. This can be set only
6833
+ # if agent level multi language setting is enabled.
6834
+ # Corresponds to the JSON property `enableMultiLanguageDetection`
6835
+ # @return [Boolean]
6836
+ attr_accessor :enable_multi_language_detection
6837
+ alias_method :enable_multi_language_detection?, :enable_multi_language_detection
6838
+
6839
+ # Optional. Agent will respond in the detected language if the detected language
6840
+ # code is in the supported resolved languages for this flow. This will be used
6841
+ # only if multi-language training is enabled in the agent and multi-language
6842
+ # detection is enabled in the flow. The supported languages must be a subset of
6843
+ # the languages supported by the agent.
6844
+ # Corresponds to the JSON property `supportedResponseLanguageCodes`
6845
+ # @return [Array<String>]
6846
+ attr_accessor :supported_response_language_codes
6847
+
6848
+ def initialize(**args)
6849
+ update!(**args)
6850
+ end
6851
+
6852
+ # Update properties of this object
6853
+ def update!(**args)
6854
+ @enable_multi_language_detection = args[:enable_multi_language_detection] if args.key?(:enable_multi_language_detection)
6855
+ @supported_response_language_codes = args[:supported_response_language_codes] if args.key?(:supported_response_language_codes)
6856
+ end
6857
+ end
6858
+
6501
6859
  # The response message for Flows.GetFlowValidationResult.
6502
6860
  class GoogleCloudDialogflowCxV3beta1FlowValidationResult
6503
6861
  include Google::Apis::Core::Hashable
@@ -9269,6 +9627,14 @@ module Google
9269
9627
  # @return [Hash<String,Object>]
9270
9628
  attr_accessor :payload
9271
9629
 
9630
+ # Optional. If set to true and data stores are involved in serving the request
9631
+ # then DetectIntentResponse.query_result.data_store_connection_signals will be
9632
+ # filled with data that can help evaluations.
9633
+ # Corresponds to the JSON property `populateDataStoreConnectionSignals`
9634
+ # @return [Boolean]
9635
+ attr_accessor :populate_data_store_connection_signals
9636
+ alias_method :populate_data_store_connection_signals?, :populate_data_store_connection_signals
9637
+
9272
9638
  # Search configuration for UCS search queries.
9273
9639
  # Corresponds to the JSON property `searchConfig`
9274
9640
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SearchConfig]
@@ -9323,6 +9689,7 @@ module Google
9323
9689
  @geo_location = args[:geo_location] if args.key?(:geo_location)
9324
9690
  @parameters = args[:parameters] if args.key?(:parameters)
9325
9691
  @payload = args[:payload] if args.key?(:payload)
9692
+ @populate_data_store_connection_signals = args[:populate_data_store_connection_signals] if args.key?(:populate_data_store_connection_signals)
9326
9693
  @search_config = args[:search_config] if args.key?(:search_config)
9327
9694
  @session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
9328
9695
  @session_ttl = args[:session_ttl] if args.key?(:session_ttl)
@@ -9370,6 +9737,14 @@ module Google
9370
9737
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page]
9371
9738
  attr_accessor :current_page
9372
9739
 
9740
+ # Data store connection feature output signals. Might be only partially field if
9741
+ # processing stop before the final answer. Reasons for this can be, but are not
9742
+ # limited to: empty UCS search results, positive RAI check outcome, grounding
9743
+ # failure, ...
9744
+ # Corresponds to the JSON property `dataStoreConnectionSignals`
9745
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals]
9746
+ attr_accessor :data_store_connection_signals
9747
+
9373
9748
  # The free-form diagnostic info. For example, this field could contain webhook
9374
9749
  # call latency. The fields of this data can change without notice, so you should
9375
9750
  # not write code that depends on its structure. One of the fields is called "
@@ -9513,6 +9888,7 @@ module Google
9513
9888
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
9514
9889
  @allow_answer_feedback = args[:allow_answer_feedback] if args.key?(:allow_answer_feedback)
9515
9890
  @current_page = args[:current_page] if args.key?(:current_page)
9891
+ @data_store_connection_signals = args[:data_store_connection_signals] if args.key?(:data_store_connection_signals)
9516
9892
  @diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
9517
9893
  @dtmf = args[:dtmf] if args.key?(:dtmf)
9518
9894
  @intent = args[:intent] if args.key?(:intent)
@@ -11764,6 +12140,12 @@ module Google
11764
12140
  # @return [String]
11765
12141
  attr_accessor :http_method
11766
12142
 
12143
+ # Represents configuration of OAuth client credential flow for 3rd party API
12144
+ # authentication.
12145
+ # Corresponds to the JSON property `oauthConfig`
12146
+ # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig]
12147
+ attr_accessor :oauth_config
12148
+
11767
12149
  # Optional. Maps the values extracted from specific fields of the flexible
11768
12150
  # webhook response into session parameters. - Key: session parameter name -
11769
12151
  # Value: field path in the webhook response
@@ -11787,6 +12169,13 @@ module Google
11787
12169
  # @return [Hash<String,String>]
11788
12170
  attr_accessor :request_headers
11789
12171
 
12172
+ # Optional. Indicate the auth token type generated from the [Diglogflow service
12173
+ # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
12174
+ # agent). The generated token is sent in the Authorization header.
12175
+ # Corresponds to the JSON property `serviceAgentAuth`
12176
+ # @return [String]
12177
+ attr_accessor :service_agent_auth
12178
+
11790
12179
  # Required. The webhook URI for receiving POST requests. It must use https
11791
12180
  # protocol.
11792
12181
  # Corresponds to the JSON property `uri`
@@ -11811,16 +12200,57 @@ module Google
11811
12200
  def update!(**args)
11812
12201
  @allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
11813
12202
  @http_method = args[:http_method] if args.key?(:http_method)
12203
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
11814
12204
  @parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
11815
12205
  @password = args[:password] if args.key?(:password)
11816
12206
  @request_body = args[:request_body] if args.key?(:request_body)
11817
12207
  @request_headers = args[:request_headers] if args.key?(:request_headers)
12208
+ @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
11818
12209
  @uri = args[:uri] if args.key?(:uri)
11819
12210
  @username = args[:username] if args.key?(:username)
11820
12211
  @webhook_type = args[:webhook_type] if args.key?(:webhook_type)
11821
12212
  end
11822
12213
  end
11823
12214
 
12215
+ # Represents configuration of OAuth client credential flow for 3rd party API
12216
+ # authentication.
12217
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
12218
+ include Google::Apis::Core::Hashable
12219
+
12220
+ # Required. The client ID provided by the 3rd party platform.
12221
+ # Corresponds to the JSON property `clientId`
12222
+ # @return [String]
12223
+ attr_accessor :client_id
12224
+
12225
+ # Required. The client secret provided by the 3rd party platform.
12226
+ # Corresponds to the JSON property `clientSecret`
12227
+ # @return [String]
12228
+ attr_accessor :client_secret
12229
+
12230
+ # Optional. The OAuth scopes to grant.
12231
+ # Corresponds to the JSON property `scopes`
12232
+ # @return [Array<String>]
12233
+ attr_accessor :scopes
12234
+
12235
+ # Required. The token endpoint provided by the 3rd party platform to exchange an
12236
+ # access token.
12237
+ # Corresponds to the JSON property `tokenEndpoint`
12238
+ # @return [String]
12239
+ attr_accessor :token_endpoint
12240
+
12241
+ def initialize(**args)
12242
+ update!(**args)
12243
+ end
12244
+
12245
+ # Update properties of this object
12246
+ def update!(**args)
12247
+ @client_id = args[:client_id] if args.key?(:client_id)
12248
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
12249
+ @scopes = args[:scopes] if args.key?(:scopes)
12250
+ @token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
12251
+ end
12252
+ end
12253
+
11824
12254
  # The request message for a webhook call. The request is sent as a JSON object
11825
12255
  # and the field names will be presented in camel cases. You may see undocumented
11826
12256
  # 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 DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 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 = "20240305"
25
+ REVISION = "20240326"
26
26
  end
27
27
  end
28
28
  end
@@ -604,6 +604,12 @@ module Google
604
604
  include Google::Apis::Core::JsonObjectSupport
605
605
  end
606
606
 
607
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
607
613
  class GoogleCloudDialogflowCxV3WebhookRequest
608
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
609
615
 
@@ -856,6 +862,54 @@ module Google
856
862
  include Google::Apis::Core::JsonObjectSupport
857
863
  end
858
864
 
865
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals
866
+ class Representation < Google::Apis::Core::JsonRepresentation; end
867
+
868
+ include Google::Apis::Core::JsonObjectSupport
869
+ end
870
+
871
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals
872
+ class Representation < Google::Apis::Core::JsonRepresentation; end
873
+
874
+ include Google::Apis::Core::JsonObjectSupport
875
+ end
876
+
877
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
883
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
889
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals
890
+ class Representation < Google::Apis::Core::JsonRepresentation; end
891
+
892
+ include Google::Apis::Core::JsonObjectSupport
893
+ end
894
+
895
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
896
+ class Representation < Google::Apis::Core::JsonRepresentation; end
897
+
898
+ include Google::Apis::Core::JsonObjectSupport
899
+ end
900
+
901
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals
902
+ class Representation < Google::Apis::Core::JsonRepresentation; end
903
+
904
+ include Google::Apis::Core::JsonObjectSupport
905
+ end
906
+
907
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet
908
+ class Representation < Google::Apis::Core::JsonRepresentation; end
909
+
910
+ include Google::Apis::Core::JsonObjectSupport
911
+ end
912
+
859
913
  class GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata
860
914
  class Representation < Google::Apis::Core::JsonRepresentation; end
861
915
 
@@ -1102,6 +1156,12 @@ module Google
1102
1156
  include Google::Apis::Core::JsonObjectSupport
1103
1157
  end
1104
1158
 
1159
+ class GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings
1160
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1161
+
1162
+ include Google::Apis::Core::JsonObjectSupport
1163
+ end
1164
+
1105
1165
  class GoogleCloudDialogflowCxV3beta1FlowValidationResult
1106
1166
  class Representation < Google::Apis::Core::JsonRepresentation; end
1107
1167
 
@@ -1972,6 +2032,12 @@ module Google
1972
2032
  include Google::Apis::Core::JsonObjectSupport
1973
2033
  end
1974
2034
 
2035
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
2036
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2037
+
2038
+ include Google::Apis::Core::JsonObjectSupport
2039
+ end
2040
+
1975
2041
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
1976
2042
  class Representation < Google::Apis::Core::JsonRepresentation; end
1977
2043
 
@@ -4013,16 +4079,29 @@ module Google
4013
4079
  class Representation < Google::Apis::Core::JsonRepresentation
4014
4080
  collection :allowed_ca_certs, as: 'allowedCaCerts'
4015
4081
  property :http_method, as: 'httpMethod'
4082
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig::Representation
4083
+
4016
4084
  hash :parameter_mapping, as: 'parameterMapping'
4017
4085
  property :password, as: 'password'
4018
4086
  property :request_body, as: 'requestBody'
4019
4087
  hash :request_headers, as: 'requestHeaders'
4088
+ property :service_agent_auth, as: 'serviceAgentAuth'
4020
4089
  property :uri, as: 'uri'
4021
4090
  property :username, as: 'username'
4022
4091
  property :webhook_type, as: 'webhookType'
4023
4092
  end
4024
4093
  end
4025
4094
 
4095
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
4096
+ # @private
4097
+ class Representation < Google::Apis::Core::JsonRepresentation
4098
+ property :client_id, as: 'clientId'
4099
+ property :client_secret, as: 'clientSecret'
4100
+ collection :scopes, as: 'scopes'
4101
+ property :token_endpoint, as: 'tokenEndpoint'
4102
+ end
4103
+ end
4104
+
4026
4105
  class GoogleCloudDialogflowCxV3WebhookRequest
4027
4106
  # @private
4028
4107
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4168,6 +4247,7 @@ module Google
4168
4247
  property :default_language_code, as: 'defaultLanguageCode'
4169
4248
  property :description, as: 'description'
4170
4249
  property :display_name, as: 'displayName'
4250
+ property :enable_multi_language_training, as: 'enableMultiLanguageTraining'
4171
4251
  property :enable_spell_correction, as: 'enableSpellCorrection'
4172
4252
  property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
4173
4253
  property :gen_app_builder_settings, as: 'genAppBuilderSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentGenAppBuilderSettings::Representation
@@ -4453,6 +4533,87 @@ module Google
4453
4533
  end
4454
4534
  end
4455
4535
 
4536
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals
4537
+ # @private
4538
+ class Representation < Google::Apis::Core::JsonRepresentation
4539
+ property :answer, as: 'answer'
4540
+ property :answer_generation_model_call_signals, as: 'answerGenerationModelCallSignals', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals::Representation
4541
+
4542
+ collection :answer_parts, as: 'answerParts', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart::Representation
4543
+
4544
+ collection :cited_snippets, as: 'citedSnippets', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet::Representation
4545
+
4546
+ property :grounding_signals, as: 'groundingSignals', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals::Representation
4547
+
4548
+ property :rewriter_model_call_signals, as: 'rewriterModelCallSignals', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals::Representation
4549
+
4550
+ property :rewritten_query, as: 'rewrittenQuery'
4551
+ property :safety_signals, as: 'safetySignals', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals::Representation
4552
+
4553
+ collection :search_snippets, as: 'searchSnippets', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet::Representation
4554
+
4555
+ end
4556
+ end
4557
+
4558
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerGenerationModelCallSignals
4559
+ # @private
4560
+ class Representation < Google::Apis::Core::JsonRepresentation
4561
+ property :model_output, as: 'modelOutput'
4562
+ property :rendered_prompt, as: 'renderedPrompt'
4563
+ end
4564
+ end
4565
+
4566
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsAnswerPart
4567
+ # @private
4568
+ class Representation < Google::Apis::Core::JsonRepresentation
4569
+ collection :supporting_indices, as: 'supportingIndices'
4570
+ property :text, as: 'text'
4571
+ end
4572
+ end
4573
+
4574
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsCitedSnippet
4575
+ # @private
4576
+ class Representation < Google::Apis::Core::JsonRepresentation
4577
+ property :search_snippet, as: 'searchSnippet', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet::Representation
4578
+
4579
+ property :snippet_index, as: 'snippetIndex'
4580
+ end
4581
+ end
4582
+
4583
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsGroundingSignals
4584
+ # @private
4585
+ class Representation < Google::Apis::Core::JsonRepresentation
4586
+ property :decision, as: 'decision'
4587
+ property :score, as: 'score'
4588
+ end
4589
+ end
4590
+
4591
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsRewriterModelCallSignals
4592
+ # @private
4593
+ class Representation < Google::Apis::Core::JsonRepresentation
4594
+ property :model_output, as: 'modelOutput'
4595
+ property :rendered_prompt, as: 'renderedPrompt'
4596
+ end
4597
+ end
4598
+
4599
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSafetySignals
4600
+ # @private
4601
+ class Representation < Google::Apis::Core::JsonRepresentation
4602
+ property :banned_phrase_match, as: 'bannedPhraseMatch'
4603
+ property :decision, as: 'decision'
4604
+ property :matched_banned_phrase, as: 'matchedBannedPhrase'
4605
+ end
4606
+ end
4607
+
4608
+ class GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignalsSearchSnippet
4609
+ # @private
4610
+ class Representation < Google::Apis::Core::JsonRepresentation
4611
+ property :document_title, as: 'documentTitle'
4612
+ property :document_uri, as: 'documentUri'
4613
+ property :text, as: 'text'
4614
+ end
4615
+ end
4616
+
4456
4617
  class GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata
4457
4618
  # @private
4458
4619
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4844,6 +5005,8 @@ module Google
4844
5005
 
4845
5006
  property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings::Representation
4846
5007
 
5008
+ property :multi_language_settings, as: 'multiLanguageSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings::Representation
5009
+
4847
5010
  property :name, as: 'name'
4848
5011
  property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings::Representation
4849
5012
 
@@ -4860,6 +5023,14 @@ module Google
4860
5023
  end
4861
5024
  end
4862
5025
 
5026
+ class GoogleCloudDialogflowCxV3beta1FlowMultiLanguageSettings
5027
+ # @private
5028
+ class Representation < Google::Apis::Core::JsonRepresentation
5029
+ property :enable_multi_language_detection, as: 'enableMultiLanguageDetection'
5030
+ collection :supported_response_language_codes, as: 'supportedResponseLanguageCodes'
5031
+ end
5032
+ end
5033
+
4863
5034
  class GoogleCloudDialogflowCxV3beta1FlowValidationResult
4864
5035
  # @private
4865
5036
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5617,6 +5788,7 @@ module Google
5617
5788
 
5618
5789
  hash :parameters, as: 'parameters'
5619
5790
  hash :payload, as: 'payload'
5791
+ property :populate_data_store_connection_signals, as: 'populateDataStoreConnectionSignals'
5620
5792
  property :search_config, as: 'searchConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SearchConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SearchConfig::Representation
5621
5793
 
5622
5794
  collection :session_entity_types, as: 'sessionEntityTypes', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SessionEntityType, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SessionEntityType::Representation
@@ -5635,6 +5807,8 @@ module Google
5635
5807
  property :allow_answer_feedback, as: 'allowAnswerFeedback'
5636
5808
  property :current_page, as: 'currentPage', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page::Representation
5637
5809
 
5810
+ property :data_store_connection_signals, as: 'dataStoreConnectionSignals', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DataStoreConnectionSignals::Representation
5811
+
5638
5812
  hash :diagnostic_info, as: 'diagnosticInfo'
5639
5813
  property :dtmf, as: 'dtmf', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DtmfInput, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DtmfInput::Representation
5640
5814
 
@@ -6289,16 +6463,29 @@ module Google
6289
6463
  class Representation < Google::Apis::Core::JsonRepresentation
6290
6464
  collection :allowed_ca_certs, as: 'allowedCaCerts'
6291
6465
  property :http_method, as: 'httpMethod'
6466
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig::Representation
6467
+
6292
6468
  hash :parameter_mapping, as: 'parameterMapping'
6293
6469
  property :password, as: 'password'
6294
6470
  property :request_body, as: 'requestBody'
6295
6471
  hash :request_headers, as: 'requestHeaders'
6472
+ property :service_agent_auth, as: 'serviceAgentAuth'
6296
6473
  property :uri, as: 'uri'
6297
6474
  property :username, as: 'username'
6298
6475
  property :webhook_type, as: 'webhookType'
6299
6476
  end
6300
6477
  end
6301
6478
 
6479
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
6480
+ # @private
6481
+ class Representation < Google::Apis::Core::JsonRepresentation
6482
+ property :client_id, as: 'clientId'
6483
+ property :client_secret, as: 'clientSecret'
6484
+ collection :scopes, as: 'scopes'
6485
+ property :token_endpoint, as: 'tokenEndpoint'
6486
+ end
6487
+ end
6488
+
6302
6489
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
6303
6490
  # @private
6304
6491
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
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-03-10 00:00:00.000000000 Z
11
+ date: 2024-04-07 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_v3beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.82.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.84.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
63
63
  post_install_message:
64
64
  rdoc_options: []