@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
@@ -509,6 +509,21 @@ export declare class CompletionServiceClient {
509
509
  * @returns {string} A string representing the engine.
510
510
  */
511
511
  matchEngineFromEngineName(engineName: string): string | number;
512
+ /**
513
+ * Return a fully-qualified project resource name string.
514
+ *
515
+ * @param {string} project
516
+ * @returns {string} Resource name string.
517
+ */
518
+ projectPath(project: string): string;
519
+ /**
520
+ * Parse the project from Project resource.
521
+ *
522
+ * @param {string} projectName
523
+ * A fully-qualified path representing Project resource.
524
+ * @returns {string} A string representing the project.
525
+ */
526
+ matchProjectFromProjectName(projectName: string): string | number;
512
527
  /**
513
528
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
514
529
  *
@@ -875,6 +890,117 @@ export declare class CompletionServiceClient {
875
890
  * @returns {string} A string representing the serving_config.
876
891
  */
877
892
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
893
+ /**
894
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
895
+ *
896
+ * @param {string} project
897
+ * @param {string} location
898
+ * @param {string} collection
899
+ * @param {string} data_store
900
+ * @param {string} session
901
+ * @returns {string} Resource name string.
902
+ */
903
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
904
+ /**
905
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
906
+ *
907
+ * @param {string} projectLocationCollectionDataStoreSessionName
908
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
909
+ * @returns {string} A string representing the project.
910
+ */
911
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
912
+ /**
913
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
914
+ *
915
+ * @param {string} projectLocationCollectionDataStoreSessionName
916
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
917
+ * @returns {string} A string representing the location.
918
+ */
919
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
920
+ /**
921
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
922
+ *
923
+ * @param {string} projectLocationCollectionDataStoreSessionName
924
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
925
+ * @returns {string} A string representing the collection.
926
+ */
927
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
928
+ /**
929
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
930
+ *
931
+ * @param {string} projectLocationCollectionDataStoreSessionName
932
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
933
+ * @returns {string} A string representing the data_store.
934
+ */
935
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
936
+ /**
937
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
938
+ *
939
+ * @param {string} projectLocationCollectionDataStoreSessionName
940
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
941
+ * @returns {string} A string representing the session.
942
+ */
943
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
944
+ /**
945
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
946
+ *
947
+ * @param {string} project
948
+ * @param {string} location
949
+ * @param {string} collection
950
+ * @param {string} data_store
951
+ * @param {string} session
952
+ * @param {string} answer
953
+ * @returns {string} Resource name string.
954
+ */
955
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
956
+ /**
957
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
958
+ *
959
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
960
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
961
+ * @returns {string} A string representing the project.
962
+ */
963
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
964
+ /**
965
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
966
+ *
967
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
968
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
969
+ * @returns {string} A string representing the location.
970
+ */
971
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
972
+ /**
973
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
974
+ *
975
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
976
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
977
+ * @returns {string} A string representing the collection.
978
+ */
979
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
980
+ /**
981
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
982
+ *
983
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
984
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
985
+ * @returns {string} A string representing the data_store.
986
+ */
987
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
988
+ /**
989
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
990
+ *
991
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
992
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
993
+ * @returns {string} A string representing the session.
994
+ */
995
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
996
+ /**
997
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
998
+ *
999
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1000
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1001
+ * @returns {string} A string representing the answer.
1002
+ */
1003
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
878
1004
  /**
879
1005
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
880
1006
  *
@@ -1070,6 +1196,117 @@ export declare class CompletionServiceClient {
1070
1196
  * @returns {string} A string representing the serving_config.
1071
1197
  */
1072
1198
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1199
+ /**
1200
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1201
+ *
1202
+ * @param {string} project
1203
+ * @param {string} location
1204
+ * @param {string} collection
1205
+ * @param {string} engine
1206
+ * @param {string} session
1207
+ * @returns {string} Resource name string.
1208
+ */
1209
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1210
+ /**
1211
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1212
+ *
1213
+ * @param {string} projectLocationCollectionEngineSessionName
1214
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1215
+ * @returns {string} A string representing the project.
1216
+ */
1217
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1218
+ /**
1219
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1220
+ *
1221
+ * @param {string} projectLocationCollectionEngineSessionName
1222
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1223
+ * @returns {string} A string representing the location.
1224
+ */
1225
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1226
+ /**
1227
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1228
+ *
1229
+ * @param {string} projectLocationCollectionEngineSessionName
1230
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1231
+ * @returns {string} A string representing the collection.
1232
+ */
1233
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1234
+ /**
1235
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1236
+ *
1237
+ * @param {string} projectLocationCollectionEngineSessionName
1238
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1239
+ * @returns {string} A string representing the engine.
1240
+ */
1241
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1242
+ /**
1243
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1244
+ *
1245
+ * @param {string} projectLocationCollectionEngineSessionName
1246
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1247
+ * @returns {string} A string representing the session.
1248
+ */
1249
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1250
+ /**
1251
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1252
+ *
1253
+ * @param {string} project
1254
+ * @param {string} location
1255
+ * @param {string} collection
1256
+ * @param {string} engine
1257
+ * @param {string} session
1258
+ * @param {string} answer
1259
+ * @returns {string} Resource name string.
1260
+ */
1261
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1262
+ /**
1263
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1264
+ *
1265
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1266
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1267
+ * @returns {string} A string representing the project.
1268
+ */
1269
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1270
+ /**
1271
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1272
+ *
1273
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1274
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1275
+ * @returns {string} A string representing the location.
1276
+ */
1277
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1278
+ /**
1279
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1280
+ *
1281
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1282
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1283
+ * @returns {string} A string representing the collection.
1284
+ */
1285
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1286
+ /**
1287
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1288
+ *
1289
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1290
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1291
+ * @returns {string} A string representing the engine.
1292
+ */
1293
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1294
+ /**
1295
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1296
+ *
1297
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1298
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1299
+ * @returns {string} A string representing the session.
1300
+ */
1301
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1302
+ /**
1303
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1304
+ *
1305
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1306
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1307
+ * @returns {string} A string representing the answer.
1308
+ */
1309
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1073
1310
  /**
1074
1311
  * Return a fully-qualified projectLocationDataStore resource name string.
1075
1312
  *
@@ -1373,6 +1610,99 @@ export declare class CompletionServiceClient {
1373
1610
  * @returns {string} A string representing the serving_config.
1374
1611
  */
1375
1612
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1613
+ /**
1614
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1615
+ *
1616
+ * @param {string} project
1617
+ * @param {string} location
1618
+ * @param {string} data_store
1619
+ * @param {string} session
1620
+ * @returns {string} Resource name string.
1621
+ */
1622
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1623
+ /**
1624
+ * Parse the project from ProjectLocationDataStoreSession resource.
1625
+ *
1626
+ * @param {string} projectLocationDataStoreSessionName
1627
+ * A fully-qualified path representing project_location_data_store_session resource.
1628
+ * @returns {string} A string representing the project.
1629
+ */
1630
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1631
+ /**
1632
+ * Parse the location from ProjectLocationDataStoreSession resource.
1633
+ *
1634
+ * @param {string} projectLocationDataStoreSessionName
1635
+ * A fully-qualified path representing project_location_data_store_session resource.
1636
+ * @returns {string} A string representing the location.
1637
+ */
1638
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1639
+ /**
1640
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1641
+ *
1642
+ * @param {string} projectLocationDataStoreSessionName
1643
+ * A fully-qualified path representing project_location_data_store_session resource.
1644
+ * @returns {string} A string representing the data_store.
1645
+ */
1646
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1647
+ /**
1648
+ * Parse the session from ProjectLocationDataStoreSession resource.
1649
+ *
1650
+ * @param {string} projectLocationDataStoreSessionName
1651
+ * A fully-qualified path representing project_location_data_store_session resource.
1652
+ * @returns {string} A string representing the session.
1653
+ */
1654
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1655
+ /**
1656
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1657
+ *
1658
+ * @param {string} project
1659
+ * @param {string} location
1660
+ * @param {string} data_store
1661
+ * @param {string} session
1662
+ * @param {string} answer
1663
+ * @returns {string} Resource name string.
1664
+ */
1665
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1666
+ /**
1667
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1668
+ *
1669
+ * @param {string} projectLocationDataStoreSessionAnswerName
1670
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1671
+ * @returns {string} A string representing the project.
1672
+ */
1673
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1674
+ /**
1675
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1676
+ *
1677
+ * @param {string} projectLocationDataStoreSessionAnswerName
1678
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1679
+ * @returns {string} A string representing the location.
1680
+ */
1681
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1682
+ /**
1683
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1684
+ *
1685
+ * @param {string} projectLocationDataStoreSessionAnswerName
1686
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1687
+ * @returns {string} A string representing the data_store.
1688
+ */
1689
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1690
+ /**
1691
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1692
+ *
1693
+ * @param {string} projectLocationDataStoreSessionAnswerName
1694
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1695
+ * @returns {string} A string representing the session.
1696
+ */
1697
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1698
+ /**
1699
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1700
+ *
1701
+ * @param {string} projectLocationDataStoreSessionAnswerName
1702
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1703
+ * @returns {string} A string representing the answer.
1704
+ */
1705
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1376
1706
  /**
1377
1707
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1378
1708
  *