@google-cloud/discoveryengine 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +24 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/common.proto +13 -1
  4. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +5 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +17 -0
  6. package/build/protos/google/cloud/discoveryengine/v1/document.proto +9 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +6 -0
  8. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +2 -2
  9. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +284 -22
  10. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +3 -0
  11. package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +228 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +125 -21
  13. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +16 -11
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +328 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +41 -1
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +21 -1
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +574 -0
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +19 -0
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +3 -6
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +64 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +2 -2
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/grounded_generation_service.proto +120 -0
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/grounding.proto +55 -0
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +283 -24
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/project.proto +102 -0
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/project_service.proto +171 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +21 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +158 -24
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +9 -3
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +2 -1
  31. package/build/protos/google/cloud/discoveryengine/v1alpha/session.proto +94 -0
  32. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +1 -1
  33. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +328 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +30 -1
  35. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +559 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +3 -6
  37. package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +6 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +2 -2
  39. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +93 -0
  40. package/build/protos/google/cloud/discoveryengine/v1beta/grounded_generation_service.proto +120 -0
  41. package/build/protos/google/cloud/discoveryengine/v1beta/grounding.proto +55 -0
  42. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +283 -24
  43. package/build/protos/google/cloud/discoveryengine/v1beta/rank_service.proto +115 -0
  44. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +142 -22
  45. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +7 -1
  46. package/build/protos/google/cloud/discoveryengine/v1beta/session.proto +94 -0
  47. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +1 -1
  48. package/build/protos/protos.d.ts +44799 -26093
  49. package/build/protos/protos.js +120465 -74222
  50. package/build/protos/protos.json +8911 -4556
  51. package/build/src/index.d.ts +4 -1
  52. package/build/src/index.js +4 -1
  53. package/build/src/v1/conversational_search_service_client.d.ts +4 -0
  54. package/build/src/v1/document_service_client.d.ts +47 -19
  55. package/build/src/v1/index.d.ts +1 -0
  56. package/build/src/v1/index.js +3 -1
  57. package/build/src/v1/recommendation_service_client.d.ts +1087 -0
  58. package/build/src/v1/recommendation_service_client.js +1432 -0
  59. package/build/src/v1/recommendation_service_client_config.json +43 -0
  60. package/build/src/v1/search_service_client.d.ts +27 -9
  61. package/build/src/v1/search_service_client.js +18 -6
  62. package/build/src/v1/search_service_client_config.json +5 -5
  63. package/build/src/v1alpha/acl_config_service_client.d.ts +330 -0
  64. package/build/src/v1alpha/acl_config_service_client.js +454 -0
  65. package/build/src/v1alpha/chunk_service_client.d.ts +330 -0
  66. package/build/src/v1alpha/chunk_service_client.js +454 -0
  67. package/build/src/v1alpha/completion_service_client.d.ts +330 -0
  68. package/build/src/v1alpha/completion_service_client.js +457 -0
  69. package/build/src/v1alpha/conversational_search_service_client.d.ts +674 -0
  70. package/build/src/v1alpha/conversational_search_service_client.js +724 -0
  71. package/build/src/v1alpha/conversational_search_service_client_config.json +35 -0
  72. package/build/src/v1alpha/data_store_service_client.d.ts +330 -0
  73. package/build/src/v1alpha/data_store_service_client.js +457 -0
  74. package/build/src/v1alpha/document_service_client.d.ts +410 -21
  75. package/build/src/v1alpha/document_service_client.js +479 -0
  76. package/build/src/v1alpha/document_service_client_config.json +5 -0
  77. package/build/src/v1alpha/engine_service_client.d.ts +330 -0
  78. package/build/src/v1alpha/engine_service_client.js +457 -0
  79. package/build/src/v1alpha/estimate_billing_service_client.d.ts +330 -0
  80. package/build/src/v1alpha/estimate_billing_service_client.js +457 -0
  81. package/build/src/v1alpha/grounded_generation_service_client.d.ts +1574 -0
  82. package/build/src/v1alpha/grounded_generation_service_client.js +2248 -0
  83. package/build/src/v1alpha/grounded_generation_service_client_config.json +43 -0
  84. package/build/src/v1alpha/index.d.ts +3 -1
  85. package/build/src/v1alpha/index.js +7 -3
  86. package/build/src/v1alpha/project_service_client.d.ts +1756 -0
  87. package/build/src/v1alpha/project_service_client.js +2500 -0
  88. package/build/src/v1alpha/project_service_client_config.json +38 -0
  89. package/build/src/v1alpha/rank_service_client.d.ts +330 -0
  90. package/build/src/v1alpha/rank_service_client.js +454 -0
  91. package/build/src/v1alpha/rank_service_client_config.json +15 -2
  92. package/build/src/v1alpha/recommendation_service_client.d.ts +330 -0
  93. package/build/src/v1alpha/recommendation_service_client.js +454 -0
  94. package/build/src/v1alpha/schema_service_client.d.ts +330 -0
  95. package/build/src/v1alpha/schema_service_client.js +457 -0
  96. package/build/src/v1alpha/search_service_client.d.ts +360 -15
  97. package/build/src/v1alpha/search_service_client.js +474 -10
  98. package/build/src/v1alpha/search_service_client_config.json +5 -5
  99. package/build/src/v1alpha/search_tuning_service_client.d.ts +330 -0
  100. package/build/src/v1alpha/search_tuning_service_client.js +457 -0
  101. package/build/src/v1alpha/serving_config_service_client.d.ts +317 -1
  102. package/build/src/v1alpha/serving_config_service_client.js +434 -1
  103. package/build/src/v1alpha/site_search_engine_service_client.d.ts +330 -0
  104. package/build/src/v1alpha/site_search_engine_service_client.js +457 -0
  105. package/build/src/v1alpha/user_event_service_client.d.ts +330 -0
  106. package/build/src/v1alpha/user_event_service_client.js +457 -0
  107. package/build/src/v1beta/completion_service_client.d.ts +315 -0
  108. package/build/src/v1beta/completion_service_client.js +432 -0
  109. package/build/src/v1beta/conversational_search_service_client.d.ts +659 -0
  110. package/build/src/v1beta/conversational_search_service_client.js +702 -0
  111. package/build/src/v1beta/conversational_search_service_client_config.json +35 -0
  112. package/build/src/v1beta/data_store_service_client.d.ts +315 -0
  113. package/build/src/v1beta/data_store_service_client.js +432 -0
  114. package/build/src/v1beta/document_service_client.d.ts +361 -21
  115. package/build/src/v1beta/document_service_client.js +432 -0
  116. package/build/src/v1beta/engine_service_client.d.ts +410 -0
  117. package/build/src/v1beta/engine_service_client.js +518 -0
  118. package/build/src/v1beta/engine_service_client_config.json +12 -0
  119. package/build/src/v1beta/grounded_generation_service_client.d.ts +1406 -0
  120. package/build/src/v1beta/grounded_generation_service_client.js +2014 -0
  121. package/build/src/v1beta/grounded_generation_service_client_config.json +43 -0
  122. package/build/src/v1beta/index.d.ts +2 -0
  123. package/build/src/v1beta/index.js +5 -1
  124. package/build/src/v1beta/rank_service_client.d.ts +1416 -0
  125. package/build/src/v1beta/rank_service_client.js +2015 -0
  126. package/build/src/v1beta/rank_service_client_config.json +43 -0
  127. package/build/src/v1beta/recommendation_service_client.d.ts +315 -0
  128. package/build/src/v1beta/recommendation_service_client.js +432 -0
  129. package/build/src/v1beta/schema_service_client.d.ts +315 -0
  130. package/build/src/v1beta/schema_service_client.js +432 -0
  131. package/build/src/v1beta/search_service_client.d.ts +342 -12
  132. package/build/src/v1beta/search_service_client.js +450 -8
  133. package/build/src/v1beta/search_service_client_config.json +5 -5
  134. package/build/src/v1beta/search_tuning_service_client.d.ts +315 -0
  135. package/build/src/v1beta/search_tuning_service_client.js +432 -0
  136. package/build/src/v1beta/serving_config_service_client.d.ts +315 -0
  137. package/build/src/v1beta/serving_config_service_client.js +432 -0
  138. package/build/src/v1beta/site_search_engine_service_client.d.ts +315 -0
  139. package/build/src/v1beta/site_search_engine_service_client.js +432 -0
  140. package/build/src/v1beta/user_event_service_client.d.ts +315 -0
  141. package/build/src/v1beta/user_event_service_client.js +432 -0
  142. package/package.json +1 -1
@@ -1264,6 +1264,117 @@ export declare class SiteSearchEngineServiceClient {
1264
1264
  * @returns {string} A string representing the serving_config.
1265
1265
  */
1266
1266
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1267
+ /**
1268
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
1269
+ *
1270
+ * @param {string} project
1271
+ * @param {string} location
1272
+ * @param {string} collection
1273
+ * @param {string} data_store
1274
+ * @param {string} session
1275
+ * @returns {string} Resource name string.
1276
+ */
1277
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
1278
+ /**
1279
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
1280
+ *
1281
+ * @param {string} projectLocationCollectionDataStoreSessionName
1282
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1283
+ * @returns {string} A string representing the project.
1284
+ */
1285
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1286
+ /**
1287
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
1288
+ *
1289
+ * @param {string} projectLocationCollectionDataStoreSessionName
1290
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1291
+ * @returns {string} A string representing the location.
1292
+ */
1293
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1294
+ /**
1295
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
1296
+ *
1297
+ * @param {string} projectLocationCollectionDataStoreSessionName
1298
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1299
+ * @returns {string} A string representing the collection.
1300
+ */
1301
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1302
+ /**
1303
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
1304
+ *
1305
+ * @param {string} projectLocationCollectionDataStoreSessionName
1306
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1307
+ * @returns {string} A string representing the data_store.
1308
+ */
1309
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1310
+ /**
1311
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
1312
+ *
1313
+ * @param {string} projectLocationCollectionDataStoreSessionName
1314
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1315
+ * @returns {string} A string representing the session.
1316
+ */
1317
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1318
+ /**
1319
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
1320
+ *
1321
+ * @param {string} project
1322
+ * @param {string} location
1323
+ * @param {string} collection
1324
+ * @param {string} data_store
1325
+ * @param {string} session
1326
+ * @param {string} answer
1327
+ * @returns {string} Resource name string.
1328
+ */
1329
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
1330
+ /**
1331
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
1332
+ *
1333
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1334
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1335
+ * @returns {string} A string representing the project.
1336
+ */
1337
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1338
+ /**
1339
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
1340
+ *
1341
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1342
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1343
+ * @returns {string} A string representing the location.
1344
+ */
1345
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1346
+ /**
1347
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
1348
+ *
1349
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1350
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1351
+ * @returns {string} A string representing the collection.
1352
+ */
1353
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1354
+ /**
1355
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
1356
+ *
1357
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1358
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1359
+ * @returns {string} A string representing the data_store.
1360
+ */
1361
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1362
+ /**
1363
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
1364
+ *
1365
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1366
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1367
+ * @returns {string} A string representing the session.
1368
+ */
1369
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1370
+ /**
1371
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
1372
+ *
1373
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1374
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1375
+ * @returns {string} A string representing the answer.
1376
+ */
1377
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1267
1378
  /**
1268
1379
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1269
1380
  *
@@ -1459,6 +1570,117 @@ export declare class SiteSearchEngineServiceClient {
1459
1570
  * @returns {string} A string representing the serving_config.
1460
1571
  */
1461
1572
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1573
+ /**
1574
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1575
+ *
1576
+ * @param {string} project
1577
+ * @param {string} location
1578
+ * @param {string} collection
1579
+ * @param {string} engine
1580
+ * @param {string} session
1581
+ * @returns {string} Resource name string.
1582
+ */
1583
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1584
+ /**
1585
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1586
+ *
1587
+ * @param {string} projectLocationCollectionEngineSessionName
1588
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1589
+ * @returns {string} A string representing the project.
1590
+ */
1591
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1592
+ /**
1593
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1594
+ *
1595
+ * @param {string} projectLocationCollectionEngineSessionName
1596
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1597
+ * @returns {string} A string representing the location.
1598
+ */
1599
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1600
+ /**
1601
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1602
+ *
1603
+ * @param {string} projectLocationCollectionEngineSessionName
1604
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1605
+ * @returns {string} A string representing the collection.
1606
+ */
1607
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1608
+ /**
1609
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1610
+ *
1611
+ * @param {string} projectLocationCollectionEngineSessionName
1612
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1613
+ * @returns {string} A string representing the engine.
1614
+ */
1615
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1616
+ /**
1617
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1618
+ *
1619
+ * @param {string} projectLocationCollectionEngineSessionName
1620
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1621
+ * @returns {string} A string representing the session.
1622
+ */
1623
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1624
+ /**
1625
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1626
+ *
1627
+ * @param {string} project
1628
+ * @param {string} location
1629
+ * @param {string} collection
1630
+ * @param {string} engine
1631
+ * @param {string} session
1632
+ * @param {string} answer
1633
+ * @returns {string} Resource name string.
1634
+ */
1635
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1636
+ /**
1637
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1638
+ *
1639
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1640
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1641
+ * @returns {string} A string representing the project.
1642
+ */
1643
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1644
+ /**
1645
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1646
+ *
1647
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1648
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1649
+ * @returns {string} A string representing the location.
1650
+ */
1651
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1652
+ /**
1653
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1654
+ *
1655
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1656
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1657
+ * @returns {string} A string representing the collection.
1658
+ */
1659
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1660
+ /**
1661
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1662
+ *
1663
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1664
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1665
+ * @returns {string} A string representing the engine.
1666
+ */
1667
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1668
+ /**
1669
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1670
+ *
1671
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1672
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1673
+ * @returns {string} A string representing the session.
1674
+ */
1675
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1676
+ /**
1677
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1678
+ *
1679
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1680
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1681
+ * @returns {string} A string representing the answer.
1682
+ */
1683
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1462
1684
  /**
1463
1685
  * Return a fully-qualified projectLocationDataStore resource name string.
1464
1686
  *
@@ -1702,6 +1924,99 @@ export declare class SiteSearchEngineServiceClient {
1702
1924
  * @returns {string} A string representing the serving_config.
1703
1925
  */
1704
1926
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1927
+ /**
1928
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1929
+ *
1930
+ * @param {string} project
1931
+ * @param {string} location
1932
+ * @param {string} data_store
1933
+ * @param {string} session
1934
+ * @returns {string} Resource name string.
1935
+ */
1936
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1937
+ /**
1938
+ * Parse the project from ProjectLocationDataStoreSession resource.
1939
+ *
1940
+ * @param {string} projectLocationDataStoreSessionName
1941
+ * A fully-qualified path representing project_location_data_store_session resource.
1942
+ * @returns {string} A string representing the project.
1943
+ */
1944
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1945
+ /**
1946
+ * Parse the location from ProjectLocationDataStoreSession resource.
1947
+ *
1948
+ * @param {string} projectLocationDataStoreSessionName
1949
+ * A fully-qualified path representing project_location_data_store_session resource.
1950
+ * @returns {string} A string representing the location.
1951
+ */
1952
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1953
+ /**
1954
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1955
+ *
1956
+ * @param {string} projectLocationDataStoreSessionName
1957
+ * A fully-qualified path representing project_location_data_store_session resource.
1958
+ * @returns {string} A string representing the data_store.
1959
+ */
1960
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1961
+ /**
1962
+ * Parse the session from ProjectLocationDataStoreSession resource.
1963
+ *
1964
+ * @param {string} projectLocationDataStoreSessionName
1965
+ * A fully-qualified path representing project_location_data_store_session resource.
1966
+ * @returns {string} A string representing the session.
1967
+ */
1968
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1969
+ /**
1970
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1971
+ *
1972
+ * @param {string} project
1973
+ * @param {string} location
1974
+ * @param {string} data_store
1975
+ * @param {string} session
1976
+ * @param {string} answer
1977
+ * @returns {string} Resource name string.
1978
+ */
1979
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1980
+ /**
1981
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1982
+ *
1983
+ * @param {string} projectLocationDataStoreSessionAnswerName
1984
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1985
+ * @returns {string} A string representing the project.
1986
+ */
1987
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1988
+ /**
1989
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1990
+ *
1991
+ * @param {string} projectLocationDataStoreSessionAnswerName
1992
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1993
+ * @returns {string} A string representing the location.
1994
+ */
1995
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1996
+ /**
1997
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1998
+ *
1999
+ * @param {string} projectLocationDataStoreSessionAnswerName
2000
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2001
+ * @returns {string} A string representing the data_store.
2002
+ */
2003
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2004
+ /**
2005
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
2006
+ *
2007
+ * @param {string} projectLocationDataStoreSessionAnswerName
2008
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2009
+ * @returns {string} A string representing the session.
2010
+ */
2011
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2012
+ /**
2013
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
2014
+ *
2015
+ * @param {string} projectLocationDataStoreSessionAnswerName
2016
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2017
+ * @returns {string} A string representing the answer.
2018
+ */
2019
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1705
2020
  /**
1706
2021
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1707
2022
  *