google-apis-dialogflow_v3 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38c1009be8e58192e51e9adab2d17947d5e6ea1d0fa8c8815318817330db00dd
|
4
|
+
data.tar.gz: eb59f939ec27de726f20c320a10a89f36611d71d2a9213ffe9e1c81abd3d7a7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f76580044ed5135c685badf9942bedd4166a42b4ce49671d726001aa85cece84805f24e7f63e4c7843d586a4e9d497f6ac70e6709f59ef52c765c254795ea207
|
7
|
+
data.tar.gz: 020135bc8aa9b9cb5d4511ca56a2d5473ead3efbd89a64d514d665207fe209f501811cd6a15d62c6d002ae498eb00ecdf96813e25a0985da23d6e2e34d8b907c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
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
|
@@ -225,6 +225,13 @@ module Google
|
|
225
225
|
# @return [String]
|
226
226
|
attr_accessor :display_name
|
227
227
|
|
228
|
+
# Optional. Enable training multi-lingual models for this agent. These models
|
229
|
+
# will be trained on all the languages supported by the agent.
|
230
|
+
# Corresponds to the JSON property `enableMultiLanguageTraining`
|
231
|
+
# @return [Boolean]
|
232
|
+
attr_accessor :enable_multi_language_training
|
233
|
+
alias_method :enable_multi_language_training?, :enable_multi_language_training
|
234
|
+
|
228
235
|
# Indicates if automatic spell correction is enabled in detect intent requests.
|
229
236
|
# Corresponds to the JSON property `enableSpellCorrection`
|
230
237
|
# @return [Boolean]
|
@@ -314,6 +321,7 @@ module Google
|
|
314
321
|
@default_language_code = args[:default_language_code] if args.key?(:default_language_code)
|
315
322
|
@description = args[:description] if args.key?(:description)
|
316
323
|
@display_name = args[:display_name] if args.key?(:display_name)
|
324
|
+
@enable_multi_language_training = args[:enable_multi_language_training] if args.key?(:enable_multi_language_training)
|
317
325
|
@enable_spell_correction = args[:enable_spell_correction] if args.key?(:enable_spell_correction)
|
318
326
|
@enable_stackdriver_logging = args[:enable_stackdriver_logging] if args.key?(:enable_stackdriver_logging)
|
319
327
|
@gen_app_builder_settings = args[:gen_app_builder_settings] if args.key?(:gen_app_builder_settings)
|
@@ -1230,6 +1238,265 @@ module Google
|
|
1230
1238
|
end
|
1231
1239
|
end
|
1232
1240
|
|
1241
|
+
# Data store connection feature output signals. Might be only partially field if
|
1242
|
+
# processing stop before the final answer. Reasons for this can be, but are not
|
1243
|
+
# limited to: empty UCS search results, positive RAI check outcome, grounding
|
1244
|
+
# failure, ...
|
1245
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignals
|
1246
|
+
include Google::Apis::Core::Hashable
|
1247
|
+
|
1248
|
+
# Optional. The final compiled answer.
|
1249
|
+
# Corresponds to the JSON property `answer`
|
1250
|
+
# @return [String]
|
1251
|
+
attr_accessor :answer
|
1252
|
+
|
1253
|
+
# Diagnostic info related to the answer generation model call.
|
1254
|
+
# Corresponds to the JSON property `answerGenerationModelCallSignals`
|
1255
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerGenerationModelCallSignals]
|
1256
|
+
attr_accessor :answer_generation_model_call_signals
|
1257
|
+
|
1258
|
+
# Optional. Answer parts with relevant citations. Concatenation of texts should
|
1259
|
+
# add up the `answer` (not counting whitespaces).
|
1260
|
+
# Corresponds to the JSON property `answerParts`
|
1261
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerPart>]
|
1262
|
+
attr_accessor :answer_parts
|
1263
|
+
|
1264
|
+
# Optional. Snippets cited by the answer generation model from the most to least
|
1265
|
+
# relevant.
|
1266
|
+
# Corresponds to the JSON property `citedSnippets`
|
1267
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet>]
|
1268
|
+
attr_accessor :cited_snippets
|
1269
|
+
|
1270
|
+
# Grounding signals.
|
1271
|
+
# Corresponds to the JSON property `groundingSignals`
|
1272
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsGroundingSignals]
|
1273
|
+
attr_accessor :grounding_signals
|
1274
|
+
|
1275
|
+
# Diagnostic info related to the rewriter model call.
|
1276
|
+
# Corresponds to the JSON property `rewriterModelCallSignals`
|
1277
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals]
|
1278
|
+
attr_accessor :rewriter_model_call_signals
|
1279
|
+
|
1280
|
+
# Optional. Rewritten string query used for search.
|
1281
|
+
# Corresponds to the JSON property `rewrittenQuery`
|
1282
|
+
# @return [String]
|
1283
|
+
attr_accessor :rewritten_query
|
1284
|
+
|
1285
|
+
# Safety check results.
|
1286
|
+
# Corresponds to the JSON property `safetySignals`
|
1287
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals]
|
1288
|
+
attr_accessor :safety_signals
|
1289
|
+
|
1290
|
+
# Optional. Search snippets included in the answer generation prompt.
|
1291
|
+
# Corresponds to the JSON property `searchSnippets`
|
1292
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet>]
|
1293
|
+
attr_accessor :search_snippets
|
1294
|
+
|
1295
|
+
def initialize(**args)
|
1296
|
+
update!(**args)
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
# Update properties of this object
|
1300
|
+
def update!(**args)
|
1301
|
+
@answer = args[:answer] if args.key?(:answer)
|
1302
|
+
@answer_generation_model_call_signals = args[:answer_generation_model_call_signals] if args.key?(:answer_generation_model_call_signals)
|
1303
|
+
@answer_parts = args[:answer_parts] if args.key?(:answer_parts)
|
1304
|
+
@cited_snippets = args[:cited_snippets] if args.key?(:cited_snippets)
|
1305
|
+
@grounding_signals = args[:grounding_signals] if args.key?(:grounding_signals)
|
1306
|
+
@rewriter_model_call_signals = args[:rewriter_model_call_signals] if args.key?(:rewriter_model_call_signals)
|
1307
|
+
@rewritten_query = args[:rewritten_query] if args.key?(:rewritten_query)
|
1308
|
+
@safety_signals = args[:safety_signals] if args.key?(:safety_signals)
|
1309
|
+
@search_snippets = args[:search_snippets] if args.key?(:search_snippets)
|
1310
|
+
end
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
# Diagnostic info related to the answer generation model call.
|
1314
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerGenerationModelCallSignals
|
1315
|
+
include Google::Apis::Core::Hashable
|
1316
|
+
|
1317
|
+
# Output of the generative model.
|
1318
|
+
# Corresponds to the JSON property `modelOutput`
|
1319
|
+
# @return [String]
|
1320
|
+
attr_accessor :model_output
|
1321
|
+
|
1322
|
+
# Prompt as sent to the model.
|
1323
|
+
# Corresponds to the JSON property `renderedPrompt`
|
1324
|
+
# @return [String]
|
1325
|
+
attr_accessor :rendered_prompt
|
1326
|
+
|
1327
|
+
def initialize(**args)
|
1328
|
+
update!(**args)
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
# Update properties of this object
|
1332
|
+
def update!(**args)
|
1333
|
+
@model_output = args[:model_output] if args.key?(:model_output)
|
1334
|
+
@rendered_prompt = args[:rendered_prompt] if args.key?(:rendered_prompt)
|
1335
|
+
end
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
# Answer part with citation.
|
1339
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerPart
|
1340
|
+
include Google::Apis::Core::Hashable
|
1341
|
+
|
1342
|
+
# Citations for this answer part. Indices of `search_snippets`.
|
1343
|
+
# Corresponds to the JSON property `supportingIndices`
|
1344
|
+
# @return [Array<Fixnum>]
|
1345
|
+
attr_accessor :supporting_indices
|
1346
|
+
|
1347
|
+
# Substring of the answer.
|
1348
|
+
# Corresponds to the JSON property `text`
|
1349
|
+
# @return [String]
|
1350
|
+
attr_accessor :text
|
1351
|
+
|
1352
|
+
def initialize(**args)
|
1353
|
+
update!(**args)
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
# Update properties of this object
|
1357
|
+
def update!(**args)
|
1358
|
+
@supporting_indices = args[:supporting_indices] if args.key?(:supporting_indices)
|
1359
|
+
@text = args[:text] if args.key?(:text)
|
1360
|
+
end
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
# Snippet cited by the answer generation model.
|
1364
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
|
1365
|
+
include Google::Apis::Core::Hashable
|
1366
|
+
|
1367
|
+
# Search snippet details.
|
1368
|
+
# Corresponds to the JSON property `searchSnippet`
|
1369
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet]
|
1370
|
+
attr_accessor :search_snippet
|
1371
|
+
|
1372
|
+
# Index of the snippet in `search_snippets` field.
|
1373
|
+
# Corresponds to the JSON property `snippetIndex`
|
1374
|
+
# @return [Fixnum]
|
1375
|
+
attr_accessor :snippet_index
|
1376
|
+
|
1377
|
+
def initialize(**args)
|
1378
|
+
update!(**args)
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
# Update properties of this object
|
1382
|
+
def update!(**args)
|
1383
|
+
@search_snippet = args[:search_snippet] if args.key?(:search_snippet)
|
1384
|
+
@snippet_index = args[:snippet_index] if args.key?(:snippet_index)
|
1385
|
+
end
|
1386
|
+
end
|
1387
|
+
|
1388
|
+
# Grounding signals.
|
1389
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsGroundingSignals
|
1390
|
+
include Google::Apis::Core::Hashable
|
1391
|
+
|
1392
|
+
# Represents the decision of the grounding check.
|
1393
|
+
# Corresponds to the JSON property `decision`
|
1394
|
+
# @return [String]
|
1395
|
+
attr_accessor :decision
|
1396
|
+
|
1397
|
+
# Grounding score bucket setting.
|
1398
|
+
# Corresponds to the JSON property `score`
|
1399
|
+
# @return [String]
|
1400
|
+
attr_accessor :score
|
1401
|
+
|
1402
|
+
def initialize(**args)
|
1403
|
+
update!(**args)
|
1404
|
+
end
|
1405
|
+
|
1406
|
+
# Update properties of this object
|
1407
|
+
def update!(**args)
|
1408
|
+
@decision = args[:decision] if args.key?(:decision)
|
1409
|
+
@score = args[:score] if args.key?(:score)
|
1410
|
+
end
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
# Diagnostic info related to the rewriter model call.
|
1414
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals
|
1415
|
+
include Google::Apis::Core::Hashable
|
1416
|
+
|
1417
|
+
# Output of the generative model.
|
1418
|
+
# Corresponds to the JSON property `modelOutput`
|
1419
|
+
# @return [String]
|
1420
|
+
attr_accessor :model_output
|
1421
|
+
|
1422
|
+
# Prompt as sent to the model.
|
1423
|
+
# Corresponds to the JSON property `renderedPrompt`
|
1424
|
+
# @return [String]
|
1425
|
+
attr_accessor :rendered_prompt
|
1426
|
+
|
1427
|
+
def initialize(**args)
|
1428
|
+
update!(**args)
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# Update properties of this object
|
1432
|
+
def update!(**args)
|
1433
|
+
@model_output = args[:model_output] if args.key?(:model_output)
|
1434
|
+
@rendered_prompt = args[:rendered_prompt] if args.key?(:rendered_prompt)
|
1435
|
+
end
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
# Safety check results.
|
1439
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals
|
1440
|
+
include Google::Apis::Core::Hashable
|
1441
|
+
|
1442
|
+
# Specifies banned phrase match subject.
|
1443
|
+
# Corresponds to the JSON property `bannedPhraseMatch`
|
1444
|
+
# @return [String]
|
1445
|
+
attr_accessor :banned_phrase_match
|
1446
|
+
|
1447
|
+
# Safety decision.
|
1448
|
+
# Corresponds to the JSON property `decision`
|
1449
|
+
# @return [String]
|
1450
|
+
attr_accessor :decision
|
1451
|
+
|
1452
|
+
# The matched banned phrase if there was a match.
|
1453
|
+
# Corresponds to the JSON property `matchedBannedPhrase`
|
1454
|
+
# @return [String]
|
1455
|
+
attr_accessor :matched_banned_phrase
|
1456
|
+
|
1457
|
+
def initialize(**args)
|
1458
|
+
update!(**args)
|
1459
|
+
end
|
1460
|
+
|
1461
|
+
# Update properties of this object
|
1462
|
+
def update!(**args)
|
1463
|
+
@banned_phrase_match = args[:banned_phrase_match] if args.key?(:banned_phrase_match)
|
1464
|
+
@decision = args[:decision] if args.key?(:decision)
|
1465
|
+
@matched_banned_phrase = args[:matched_banned_phrase] if args.key?(:matched_banned_phrase)
|
1466
|
+
end
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
# Search snippet details.
|
1470
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet
|
1471
|
+
include Google::Apis::Core::Hashable
|
1472
|
+
|
1473
|
+
# Title of the enclosing document.
|
1474
|
+
# Corresponds to the JSON property `documentTitle`
|
1475
|
+
# @return [String]
|
1476
|
+
attr_accessor :document_title
|
1477
|
+
|
1478
|
+
# Uri for the document. Present if specified for the document.
|
1479
|
+
# Corresponds to the JSON property `documentUri`
|
1480
|
+
# @return [String]
|
1481
|
+
attr_accessor :document_uri
|
1482
|
+
|
1483
|
+
# Text included in the prompt.
|
1484
|
+
# Corresponds to the JSON property `text`
|
1485
|
+
# @return [String]
|
1486
|
+
attr_accessor :text
|
1487
|
+
|
1488
|
+
def initialize(**args)
|
1489
|
+
update!(**args)
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
# Update properties of this object
|
1493
|
+
def update!(**args)
|
1494
|
+
@document_title = args[:document_title] if args.key?(:document_title)
|
1495
|
+
@document_uri = args[:document_uri] if args.key?(:document_uri)
|
1496
|
+
@text = args[:text] if args.key?(:text)
|
1497
|
+
end
|
1498
|
+
end
|
1499
|
+
|
1233
1500
|
# Metadata for DeleteDocument operation.
|
1234
1501
|
class GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata
|
1235
1502
|
include Google::Apis::Core::Hashable
|
@@ -2680,6 +2947,11 @@ module Google
|
|
2680
2947
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings]
|
2681
2948
|
attr_accessor :knowledge_connector_settings
|
2682
2949
|
|
2950
|
+
# Settings for multi-lingual agents.
|
2951
|
+
# Corresponds to the JSON property `multiLanguageSettings`
|
2952
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowMultiLanguageSettings]
|
2953
|
+
attr_accessor :multi_language_settings
|
2954
|
+
|
2683
2955
|
# The unique identifier of the flow. Format: `projects//locations//agents//flows/
|
2684
2956
|
# `.
|
2685
2957
|
# Corresponds to the JSON property `name`
|
@@ -2725,6 +2997,7 @@ module Google
|
|
2725
2997
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2726
2998
|
@event_handlers = args[:event_handlers] if args.key?(:event_handlers)
|
2727
2999
|
@knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
|
3000
|
+
@multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
|
2728
3001
|
@name = args[:name] if args.key?(:name)
|
2729
3002
|
@nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
|
2730
3003
|
@transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
|
@@ -2754,6 +3027,37 @@ module Google
|
|
2754
3027
|
end
|
2755
3028
|
end
|
2756
3029
|
|
3030
|
+
# Settings for multi-lingual agents.
|
3031
|
+
class GoogleCloudDialogflowCxV3FlowMultiLanguageSettings
|
3032
|
+
include Google::Apis::Core::Hashable
|
3033
|
+
|
3034
|
+
# Optional. Enable multi-language detection for this flow. This can be set only
|
3035
|
+
# if agent level multi language setting is enabled.
|
3036
|
+
# Corresponds to the JSON property `enableMultiLanguageDetection`
|
3037
|
+
# @return [Boolean]
|
3038
|
+
attr_accessor :enable_multi_language_detection
|
3039
|
+
alias_method :enable_multi_language_detection?, :enable_multi_language_detection
|
3040
|
+
|
3041
|
+
# Optional. Agent will respond in the detected language if the detected language
|
3042
|
+
# code is in the supported resolved languages for this flow. This will be used
|
3043
|
+
# only if multi-language training is enabled in the agent and multi-language
|
3044
|
+
# detection is enabled in the flow. The supported languages must be a subset of
|
3045
|
+
# the languages supported by the agent.
|
3046
|
+
# Corresponds to the JSON property `supportedResponseLanguageCodes`
|
3047
|
+
# @return [Array<String>]
|
3048
|
+
attr_accessor :supported_response_language_codes
|
3049
|
+
|
3050
|
+
def initialize(**args)
|
3051
|
+
update!(**args)
|
3052
|
+
end
|
3053
|
+
|
3054
|
+
# Update properties of this object
|
3055
|
+
def update!(**args)
|
3056
|
+
@enable_multi_language_detection = args[:enable_multi_language_detection] if args.key?(:enable_multi_language_detection)
|
3057
|
+
@supported_response_language_codes = args[:supported_response_language_codes] if args.key?(:supported_response_language_codes)
|
3058
|
+
end
|
3059
|
+
end
|
3060
|
+
|
2757
3061
|
# The response message for Flows.GetFlowValidationResult.
|
2758
3062
|
class GoogleCloudDialogflowCxV3FlowValidationResult
|
2759
3063
|
include Google::Apis::Core::Hashable
|
@@ -5525,6 +5829,14 @@ module Google
|
|
5525
5829
|
# @return [Hash<String,Object>]
|
5526
5830
|
attr_accessor :payload
|
5527
5831
|
|
5832
|
+
# Optional. If set to true and data stores are involved in serving the request
|
5833
|
+
# then DetectIntentResponse.query_result.data_store_connection_signals will be
|
5834
|
+
# filled with data that can help evaluations.
|
5835
|
+
# Corresponds to the JSON property `populateDataStoreConnectionSignals`
|
5836
|
+
# @return [Boolean]
|
5837
|
+
attr_accessor :populate_data_store_connection_signals
|
5838
|
+
alias_method :populate_data_store_connection_signals?, :populate_data_store_connection_signals
|
5839
|
+
|
5528
5840
|
# Search configuration for UCS search queries.
|
5529
5841
|
# Corresponds to the JSON property `searchConfig`
|
5530
5842
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SearchConfig]
|
@@ -5579,6 +5891,7 @@ module Google
|
|
5579
5891
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
5580
5892
|
@parameters = args[:parameters] if args.key?(:parameters)
|
5581
5893
|
@payload = args[:payload] if args.key?(:payload)
|
5894
|
+
@populate_data_store_connection_signals = args[:populate_data_store_connection_signals] if args.key?(:populate_data_store_connection_signals)
|
5582
5895
|
@search_config = args[:search_config] if args.key?(:search_config)
|
5583
5896
|
@session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
|
5584
5897
|
@session_ttl = args[:session_ttl] if args.key?(:session_ttl)
|
@@ -5626,6 +5939,14 @@ module Google
|
|
5626
5939
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page]
|
5627
5940
|
attr_accessor :current_page
|
5628
5941
|
|
5942
|
+
# Data store connection feature output signals. Might be only partially field if
|
5943
|
+
# processing stop before the final answer. Reasons for this can be, but are not
|
5944
|
+
# limited to: empty UCS search results, positive RAI check outcome, grounding
|
5945
|
+
# failure, ...
|
5946
|
+
# Corresponds to the JSON property `dataStoreConnectionSignals`
|
5947
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignals]
|
5948
|
+
attr_accessor :data_store_connection_signals
|
5949
|
+
|
5629
5950
|
# The free-form diagnostic info. For example, this field could contain webhook
|
5630
5951
|
# call latency. The fields of this data can change without notice, so you should
|
5631
5952
|
# not write code that depends on its structure. One of the fields is called "
|
@@ -5749,6 +6070,7 @@ module Google
|
|
5749
6070
|
@advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
|
5750
6071
|
@allow_answer_feedback = args[:allow_answer_feedback] if args.key?(:allow_answer_feedback)
|
5751
6072
|
@current_page = args[:current_page] if args.key?(:current_page)
|
6073
|
+
@data_store_connection_signals = args[:data_store_connection_signals] if args.key?(:data_store_connection_signals)
|
5752
6074
|
@diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
|
5753
6075
|
@dtmf = args[:dtmf] if args.key?(:dtmf)
|
5754
6076
|
@intent = args[:intent] if args.key?(:intent)
|
@@ -8000,6 +8322,12 @@ module Google
|
|
8000
8322
|
# @return [String]
|
8001
8323
|
attr_accessor :http_method
|
8002
8324
|
|
8325
|
+
# Represents configuration of OAuth client credential flow for 3rd party API
|
8326
|
+
# authentication.
|
8327
|
+
# Corresponds to the JSON property `oauthConfig`
|
8328
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig]
|
8329
|
+
attr_accessor :oauth_config
|
8330
|
+
|
8003
8331
|
# Optional. Maps the values extracted from specific fields of the flexible
|
8004
8332
|
# webhook response into session parameters. - Key: session parameter name -
|
8005
8333
|
# Value: field path in the webhook response
|
@@ -8023,6 +8351,13 @@ module Google
|
|
8023
8351
|
# @return [Hash<String,String>]
|
8024
8352
|
attr_accessor :request_headers
|
8025
8353
|
|
8354
|
+
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
8355
|
+
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
8356
|
+
# agent). The generated token is sent in the Authorization header.
|
8357
|
+
# Corresponds to the JSON property `serviceAgentAuth`
|
8358
|
+
# @return [String]
|
8359
|
+
attr_accessor :service_agent_auth
|
8360
|
+
|
8026
8361
|
# Required. The webhook URI for receiving POST requests. It must use https
|
8027
8362
|
# protocol.
|
8028
8363
|
# Corresponds to the JSON property `uri`
|
@@ -8047,16 +8382,57 @@ module Google
|
|
8047
8382
|
def update!(**args)
|
8048
8383
|
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
8049
8384
|
@http_method = args[:http_method] if args.key?(:http_method)
|
8385
|
+
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
8050
8386
|
@parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
|
8051
8387
|
@password = args[:password] if args.key?(:password)
|
8052
8388
|
@request_body = args[:request_body] if args.key?(:request_body)
|
8053
8389
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
8390
|
+
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
8054
8391
|
@uri = args[:uri] if args.key?(:uri)
|
8055
8392
|
@username = args[:username] if args.key?(:username)
|
8056
8393
|
@webhook_type = args[:webhook_type] if args.key?(:webhook_type)
|
8057
8394
|
end
|
8058
8395
|
end
|
8059
8396
|
|
8397
|
+
# Represents configuration of OAuth client credential flow for 3rd party API
|
8398
|
+
# authentication.
|
8399
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
|
8400
|
+
include Google::Apis::Core::Hashable
|
8401
|
+
|
8402
|
+
# Required. The client ID provided by the 3rd party platform.
|
8403
|
+
# Corresponds to the JSON property `clientId`
|
8404
|
+
# @return [String]
|
8405
|
+
attr_accessor :client_id
|
8406
|
+
|
8407
|
+
# Required. The client secret provided by the 3rd party platform.
|
8408
|
+
# Corresponds to the JSON property `clientSecret`
|
8409
|
+
# @return [String]
|
8410
|
+
attr_accessor :client_secret
|
8411
|
+
|
8412
|
+
# Optional. The OAuth scopes to grant.
|
8413
|
+
# Corresponds to the JSON property `scopes`
|
8414
|
+
# @return [Array<String>]
|
8415
|
+
attr_accessor :scopes
|
8416
|
+
|
8417
|
+
# Required. The token endpoint provided by the 3rd party platform to exchange an
|
8418
|
+
# access token.
|
8419
|
+
# Corresponds to the JSON property `tokenEndpoint`
|
8420
|
+
# @return [String]
|
8421
|
+
attr_accessor :token_endpoint
|
8422
|
+
|
8423
|
+
def initialize(**args)
|
8424
|
+
update!(**args)
|
8425
|
+
end
|
8426
|
+
|
8427
|
+
# Update properties of this object
|
8428
|
+
def update!(**args)
|
8429
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
8430
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
8431
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
8432
|
+
@token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
|
8433
|
+
end
|
8434
|
+
end
|
8435
|
+
|
8060
8436
|
# The request message for a webhook call. The request is sent as a JSON object
|
8061
8437
|
# and the field names will be presented in camel cases. You may see undocumented
|
8062
8438
|
# fields in an actual request. These fields are used internally by Dialogflow
|
@@ -11737,6 +12113,12 @@ module Google
|
|
11737
12113
|
# @return [String]
|
11738
12114
|
attr_accessor :http_method
|
11739
12115
|
|
12116
|
+
# Represents configuration of OAuth client credential flow for 3rd party API
|
12117
|
+
# authentication.
|
12118
|
+
# Corresponds to the JSON property `oauthConfig`
|
12119
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig]
|
12120
|
+
attr_accessor :oauth_config
|
12121
|
+
|
11740
12122
|
# Optional. Maps the values extracted from specific fields of the flexible
|
11741
12123
|
# webhook response into session parameters. - Key: session parameter name -
|
11742
12124
|
# Value: field path in the webhook response
|
@@ -11760,6 +12142,13 @@ module Google
|
|
11760
12142
|
# @return [Hash<String,String>]
|
11761
12143
|
attr_accessor :request_headers
|
11762
12144
|
|
12145
|
+
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
12146
|
+
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
12147
|
+
# agent). The generated token is sent in the Authorization header.
|
12148
|
+
# Corresponds to the JSON property `serviceAgentAuth`
|
12149
|
+
# @return [String]
|
12150
|
+
attr_accessor :service_agent_auth
|
12151
|
+
|
11763
12152
|
# Required. The webhook URI for receiving POST requests. It must use https
|
11764
12153
|
# protocol.
|
11765
12154
|
# Corresponds to the JSON property `uri`
|
@@ -11784,16 +12173,57 @@ module Google
|
|
11784
12173
|
def update!(**args)
|
11785
12174
|
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
11786
12175
|
@http_method = args[:http_method] if args.key?(:http_method)
|
12176
|
+
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
11787
12177
|
@parameter_mapping = args[:parameter_mapping] if args.key?(:parameter_mapping)
|
11788
12178
|
@password = args[:password] if args.key?(:password)
|
11789
12179
|
@request_body = args[:request_body] if args.key?(:request_body)
|
11790
12180
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
12181
|
+
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
11791
12182
|
@uri = args[:uri] if args.key?(:uri)
|
11792
12183
|
@username = args[:username] if args.key?(:username)
|
11793
12184
|
@webhook_type = args[:webhook_type] if args.key?(:webhook_type)
|
11794
12185
|
end
|
11795
12186
|
end
|
11796
12187
|
|
12188
|
+
# Represents configuration of OAuth client credential flow for 3rd party API
|
12189
|
+
# authentication.
|
12190
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
|
12191
|
+
include Google::Apis::Core::Hashable
|
12192
|
+
|
12193
|
+
# Required. The client ID provided by the 3rd party platform.
|
12194
|
+
# Corresponds to the JSON property `clientId`
|
12195
|
+
# @return [String]
|
12196
|
+
attr_accessor :client_id
|
12197
|
+
|
12198
|
+
# Required. The client secret provided by the 3rd party platform.
|
12199
|
+
# Corresponds to the JSON property `clientSecret`
|
12200
|
+
# @return [String]
|
12201
|
+
attr_accessor :client_secret
|
12202
|
+
|
12203
|
+
# Optional. The OAuth scopes to grant.
|
12204
|
+
# Corresponds to the JSON property `scopes`
|
12205
|
+
# @return [Array<String>]
|
12206
|
+
attr_accessor :scopes
|
12207
|
+
|
12208
|
+
# Required. The token endpoint provided by the 3rd party platform to exchange an
|
12209
|
+
# access token.
|
12210
|
+
# Corresponds to the JSON property `tokenEndpoint`
|
12211
|
+
# @return [String]
|
12212
|
+
attr_accessor :token_endpoint
|
12213
|
+
|
12214
|
+
def initialize(**args)
|
12215
|
+
update!(**args)
|
12216
|
+
end
|
12217
|
+
|
12218
|
+
# Update properties of this object
|
12219
|
+
def update!(**args)
|
12220
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
12221
|
+
@client_secret = args[:client_secret] if args.key?(:client_secret)
|
12222
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
12223
|
+
@token_endpoint = args[:token_endpoint] if args.key?(:token_endpoint)
|
12224
|
+
end
|
12225
|
+
end
|
12226
|
+
|
11797
12227
|
# The request message for a webhook call. The request is sent as a JSON object
|
11798
12228
|
# and the field names will be presented in camel cases. You may see undocumented
|
11799
12229
|
# 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 DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
19
|
-
GEM_VERSION = "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 = "
|
25
|
+
REVISION = "20240326"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,54 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignals
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
235
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerGenerationModelCallSignals
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
241
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerPart
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
247
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
253
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsGroundingSignals
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
259
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
229
277
|
class GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata
|
230
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
279
|
|
@@ -472,6 +520,12 @@ module Google
|
|
472
520
|
include Google::Apis::Core::JsonObjectSupport
|
473
521
|
end
|
474
522
|
|
523
|
+
class GoogleCloudDialogflowCxV3FlowMultiLanguageSettings
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
+
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
527
|
+
end
|
528
|
+
|
475
529
|
class GoogleCloudDialogflowCxV3FlowValidationResult
|
476
530
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
531
|
|
@@ -1342,6 +1396,12 @@ module Google
|
|
1342
1396
|
include Google::Apis::Core::JsonObjectSupport
|
1343
1397
|
end
|
1344
1398
|
|
1399
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
|
1400
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1401
|
+
|
1402
|
+
include Google::Apis::Core::JsonObjectSupport
|
1403
|
+
end
|
1404
|
+
|
1345
1405
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
1346
1406
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1347
1407
|
|
@@ -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
|
|
@@ -3140,6 +3206,7 @@ module Google
|
|
3140
3206
|
property :default_language_code, as: 'defaultLanguageCode'
|
3141
3207
|
property :description, as: 'description'
|
3142
3208
|
property :display_name, as: 'displayName'
|
3209
|
+
property :enable_multi_language_training, as: 'enableMultiLanguageTraining'
|
3143
3210
|
property :enable_spell_correction, as: 'enableSpellCorrection'
|
3144
3211
|
property :enable_stackdriver_logging, as: 'enableStackdriverLogging'
|
3145
3212
|
property :gen_app_builder_settings, as: 'genAppBuilderSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGenAppBuilderSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentGenAppBuilderSettings::Representation
|
@@ -3425,6 +3492,87 @@ module Google
|
|
3425
3492
|
end
|
3426
3493
|
end
|
3427
3494
|
|
3495
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignals
|
3496
|
+
# @private
|
3497
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3498
|
+
property :answer, as: 'answer'
|
3499
|
+
property :answer_generation_model_call_signals, as: 'answerGenerationModelCallSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerGenerationModelCallSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerGenerationModelCallSignals::Representation
|
3500
|
+
|
3501
|
+
collection :answer_parts, as: 'answerParts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerPart, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerPart::Representation
|
3502
|
+
|
3503
|
+
collection :cited_snippets, as: 'citedSnippets', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet::Representation
|
3504
|
+
|
3505
|
+
property :grounding_signals, as: 'groundingSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsGroundingSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsGroundingSignals::Representation
|
3506
|
+
|
3507
|
+
property :rewriter_model_call_signals, as: 'rewriterModelCallSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals::Representation
|
3508
|
+
|
3509
|
+
property :rewritten_query, as: 'rewrittenQuery'
|
3510
|
+
property :safety_signals, as: 'safetySignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals::Representation
|
3511
|
+
|
3512
|
+
collection :search_snippets, as: 'searchSnippets', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet::Representation
|
3513
|
+
|
3514
|
+
end
|
3515
|
+
end
|
3516
|
+
|
3517
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerGenerationModelCallSignals
|
3518
|
+
# @private
|
3519
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3520
|
+
property :model_output, as: 'modelOutput'
|
3521
|
+
property :rendered_prompt, as: 'renderedPrompt'
|
3522
|
+
end
|
3523
|
+
end
|
3524
|
+
|
3525
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsAnswerPart
|
3526
|
+
# @private
|
3527
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3528
|
+
collection :supporting_indices, as: 'supportingIndices'
|
3529
|
+
property :text, as: 'text'
|
3530
|
+
end
|
3531
|
+
end
|
3532
|
+
|
3533
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsCitedSnippet
|
3534
|
+
# @private
|
3535
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3536
|
+
property :search_snippet, as: 'searchSnippet', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet::Representation
|
3537
|
+
|
3538
|
+
property :snippet_index, as: 'snippetIndex'
|
3539
|
+
end
|
3540
|
+
end
|
3541
|
+
|
3542
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsGroundingSignals
|
3543
|
+
# @private
|
3544
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3545
|
+
property :decision, as: 'decision'
|
3546
|
+
property :score, as: 'score'
|
3547
|
+
end
|
3548
|
+
end
|
3549
|
+
|
3550
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsRewriterModelCallSignals
|
3551
|
+
# @private
|
3552
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3553
|
+
property :model_output, as: 'modelOutput'
|
3554
|
+
property :rendered_prompt, as: 'renderedPrompt'
|
3555
|
+
end
|
3556
|
+
end
|
3557
|
+
|
3558
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals
|
3559
|
+
# @private
|
3560
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3561
|
+
property :banned_phrase_match, as: 'bannedPhraseMatch'
|
3562
|
+
property :decision, as: 'decision'
|
3563
|
+
property :matched_banned_phrase, as: 'matchedBannedPhrase'
|
3564
|
+
end
|
3565
|
+
end
|
3566
|
+
|
3567
|
+
class GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSearchSnippet
|
3568
|
+
# @private
|
3569
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3570
|
+
property :document_title, as: 'documentTitle'
|
3571
|
+
property :document_uri, as: 'documentUri'
|
3572
|
+
property :text, as: 'text'
|
3573
|
+
end
|
3574
|
+
end
|
3575
|
+
|
3428
3576
|
class GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata
|
3429
3577
|
# @private
|
3430
3578
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3816,6 +3964,8 @@ module Google
|
|
3816
3964
|
|
3817
3965
|
property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings::Representation
|
3818
3966
|
|
3967
|
+
property :multi_language_settings, as: 'multiLanguageSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowMultiLanguageSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowMultiLanguageSettings::Representation
|
3968
|
+
|
3819
3969
|
property :name, as: 'name'
|
3820
3970
|
property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings::Representation
|
3821
3971
|
|
@@ -3832,6 +3982,14 @@ module Google
|
|
3832
3982
|
end
|
3833
3983
|
end
|
3834
3984
|
|
3985
|
+
class GoogleCloudDialogflowCxV3FlowMultiLanguageSettings
|
3986
|
+
# @private
|
3987
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3988
|
+
property :enable_multi_language_detection, as: 'enableMultiLanguageDetection'
|
3989
|
+
collection :supported_response_language_codes, as: 'supportedResponseLanguageCodes'
|
3990
|
+
end
|
3991
|
+
end
|
3992
|
+
|
3835
3993
|
class GoogleCloudDialogflowCxV3FlowValidationResult
|
3836
3994
|
# @private
|
3837
3995
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4589,6 +4747,7 @@ module Google
|
|
4589
4747
|
|
4590
4748
|
hash :parameters, as: 'parameters'
|
4591
4749
|
hash :payload, as: 'payload'
|
4750
|
+
property :populate_data_store_connection_signals, as: 'populateDataStoreConnectionSignals'
|
4592
4751
|
property :search_config, as: 'searchConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SearchConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SearchConfig::Representation
|
4593
4752
|
|
4594
4753
|
collection :session_entity_types, as: 'sessionEntityTypes', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType::Representation
|
@@ -4607,6 +4766,8 @@ module Google
|
|
4607
4766
|
property :allow_answer_feedback, as: 'allowAnswerFeedback'
|
4608
4767
|
property :current_page, as: 'currentPage', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Page::Representation
|
4609
4768
|
|
4769
|
+
property :data_store_connection_signals, as: 'dataStoreConnectionSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DataStoreConnectionSignals::Representation
|
4770
|
+
|
4610
4771
|
hash :diagnostic_info, as: 'diagnosticInfo'
|
4611
4772
|
property :dtmf, as: 'dtmf', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DtmfInput, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DtmfInput::Representation
|
4612
4773
|
|
@@ -5258,16 +5419,29 @@ module Google
|
|
5258
5419
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5259
5420
|
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
5260
5421
|
property :http_method, as: 'httpMethod'
|
5422
|
+
property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig::Representation
|
5423
|
+
|
5261
5424
|
hash :parameter_mapping, as: 'parameterMapping'
|
5262
5425
|
property :password, as: 'password'
|
5263
5426
|
property :request_body, as: 'requestBody'
|
5264
5427
|
hash :request_headers, as: 'requestHeaders'
|
5428
|
+
property :service_agent_auth, as: 'serviceAgentAuth'
|
5265
5429
|
property :uri, as: 'uri'
|
5266
5430
|
property :username, as: 'username'
|
5267
5431
|
property :webhook_type, as: 'webhookType'
|
5268
5432
|
end
|
5269
5433
|
end
|
5270
5434
|
|
5435
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceOAuthConfig
|
5436
|
+
# @private
|
5437
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5438
|
+
property :client_id, as: 'clientId'
|
5439
|
+
property :client_secret, as: 'clientSecret'
|
5440
|
+
collection :scopes, as: 'scopes'
|
5441
|
+
property :token_endpoint, as: 'tokenEndpoint'
|
5442
|
+
end
|
5443
|
+
end
|
5444
|
+
|
5271
5445
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
5272
5446
|
# @private
|
5273
5447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6285,16 +6459,29 @@ module Google
|
|
6285
6459
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6286
6460
|
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
6287
6461
|
property :http_method, as: 'httpMethod'
|
6462
|
+
property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig::Representation
|
6463
|
+
|
6288
6464
|
hash :parameter_mapping, as: 'parameterMapping'
|
6289
6465
|
property :password, as: 'password'
|
6290
6466
|
property :request_body, as: 'requestBody'
|
6291
6467
|
hash :request_headers, as: 'requestHeaders'
|
6468
|
+
property :service_agent_auth, as: 'serviceAgentAuth'
|
6292
6469
|
property :uri, as: 'uri'
|
6293
6470
|
property :username, as: 'username'
|
6294
6471
|
property :webhook_type, as: 'webhookType'
|
6295
6472
|
end
|
6296
6473
|
end
|
6297
6474
|
|
6475
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceOAuthConfig
|
6476
|
+
# @private
|
6477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6478
|
+
property :client_id, as: 'clientId'
|
6479
|
+
property :client_secret, as: 'clientSecret'
|
6480
|
+
collection :scopes, as: 'scopes'
|
6481
|
+
property :token_endpoint, as: 'tokenEndpoint'
|
6482
|
+
end
|
6483
|
+
end
|
6484
|
+
|
6298
6485
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
6299
6486
|
# @private
|
6300
6487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.84.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|