@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
@@ -140,10 +140,14 @@ export declare class SearchServiceClient {
140
140
  * Raw image query.
141
141
  * @param {number} request.pageSize
142
142
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1beta.Document|Document}s
143
- * to return. If unspecified, defaults to a reasonable value. The maximum
144
- * allowed value is 100. Values above 100 are coerced to 100.
143
+ * to return. The maximum allowed value depends on the data type. Values above
144
+ * the maximum value are coerced to the maximum value.
145
145
  *
146
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
146
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
147
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
148
+ * * Other: Default `50`, Maximum `100`.
149
+ *
150
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
147
151
  * @param {string} request.pageToken
148
152
  * A page token received from a previous
149
153
  * {@link protos.google.cloud.discoveryengine.v1beta.SearchService.Search|SearchService.Search}
@@ -265,7 +269,8 @@ export declare class SearchServiceClient {
265
269
  *
266
270
  * If
267
271
  * {@link protos.google.cloud.discoveryengine.v1beta.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
268
- * is not provided, it will use {@link protos.|ServingConfig.EmbeddingConfig.field_path}.
272
+ * is not provided, it will use
273
+ * {@link protos.google.cloud.discoveryengine.v1beta.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
269
274
  * @param {string} request.rankingExpression
270
275
  * The ranking expression controls the customized ranking on retrieval
271
276
  * documents. This overrides
@@ -350,10 +355,14 @@ export declare class SearchServiceClient {
350
355
  * Raw image query.
351
356
  * @param {number} request.pageSize
352
357
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1beta.Document|Document}s
353
- * to return. If unspecified, defaults to a reasonable value. The maximum
354
- * allowed value is 100. Values above 100 are coerced to 100.
358
+ * to return. The maximum allowed value depends on the data type. Values above
359
+ * the maximum value are coerced to the maximum value.
355
360
  *
356
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
361
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
362
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
363
+ * * Other: Default `50`, Maximum `100`.
364
+ *
365
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
357
366
  * @param {string} request.pageToken
358
367
  * A page token received from a previous
359
368
  * {@link protos.google.cloud.discoveryengine.v1beta.SearchService.Search|SearchService.Search}
@@ -475,7 +484,8 @@ export declare class SearchServiceClient {
475
484
  *
476
485
  * If
477
486
  * {@link protos.google.cloud.discoveryengine.v1beta.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
478
- * is not provided, it will use {@link protos.|ServingConfig.EmbeddingConfig.field_path}.
487
+ * is not provided, it will use
488
+ * {@link protos.google.cloud.discoveryengine.v1beta.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
479
489
  * @param {string} request.rankingExpression
480
490
  * The ranking expression controls the customized ranking on retrieval
481
491
  * documents. This overrides
@@ -555,10 +565,14 @@ export declare class SearchServiceClient {
555
565
  * Raw image query.
556
566
  * @param {number} request.pageSize
557
567
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1beta.Document|Document}s
558
- * to return. If unspecified, defaults to a reasonable value. The maximum
559
- * allowed value is 100. Values above 100 are coerced to 100.
568
+ * to return. The maximum allowed value depends on the data type. Values above
569
+ * the maximum value are coerced to the maximum value.
560
570
  *
561
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
571
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
572
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
573
+ * * Other: Default `50`, Maximum `100`.
574
+ *
575
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
562
576
  * @param {string} request.pageToken
563
577
  * A page token received from a previous
564
578
  * {@link protos.google.cloud.discoveryengine.v1beta.SearchService.Search|SearchService.Search}
@@ -680,7 +694,8 @@ export declare class SearchServiceClient {
680
694
  *
681
695
  * If
682
696
  * {@link protos.google.cloud.discoveryengine.v1beta.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
683
- * is not provided, it will use {@link protos.|ServingConfig.EmbeddingConfig.field_path}.
697
+ * is not provided, it will use
698
+ * {@link protos.google.cloud.discoveryengine.v1beta.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
684
699
  * @param {string} request.rankingExpression
685
700
  * The ranking expression controls the customized ranking on retrieval
686
701
  * documents. This overrides
@@ -1177,6 +1192,117 @@ export declare class SearchServiceClient {
1177
1192
  * @returns {string} A string representing the serving_config.
1178
1193
  */
1179
1194
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1195
+ /**
1196
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
1197
+ *
1198
+ * @param {string} project
1199
+ * @param {string} location
1200
+ * @param {string} collection
1201
+ * @param {string} data_store
1202
+ * @param {string} session
1203
+ * @returns {string} Resource name string.
1204
+ */
1205
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
1206
+ /**
1207
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
1208
+ *
1209
+ * @param {string} projectLocationCollectionDataStoreSessionName
1210
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1211
+ * @returns {string} A string representing the project.
1212
+ */
1213
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1214
+ /**
1215
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
1216
+ *
1217
+ * @param {string} projectLocationCollectionDataStoreSessionName
1218
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1219
+ * @returns {string} A string representing the location.
1220
+ */
1221
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1222
+ /**
1223
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
1224
+ *
1225
+ * @param {string} projectLocationCollectionDataStoreSessionName
1226
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1227
+ * @returns {string} A string representing the collection.
1228
+ */
1229
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1230
+ /**
1231
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
1232
+ *
1233
+ * @param {string} projectLocationCollectionDataStoreSessionName
1234
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1235
+ * @returns {string} A string representing the data_store.
1236
+ */
1237
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1238
+ /**
1239
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
1240
+ *
1241
+ * @param {string} projectLocationCollectionDataStoreSessionName
1242
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1243
+ * @returns {string} A string representing the session.
1244
+ */
1245
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1246
+ /**
1247
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
1248
+ *
1249
+ * @param {string} project
1250
+ * @param {string} location
1251
+ * @param {string} collection
1252
+ * @param {string} data_store
1253
+ * @param {string} session
1254
+ * @param {string} answer
1255
+ * @returns {string} Resource name string.
1256
+ */
1257
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
1258
+ /**
1259
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
1260
+ *
1261
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1262
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1263
+ * @returns {string} A string representing the project.
1264
+ */
1265
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1266
+ /**
1267
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
1268
+ *
1269
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1270
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1271
+ * @returns {string} A string representing the location.
1272
+ */
1273
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1274
+ /**
1275
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
1276
+ *
1277
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1278
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1279
+ * @returns {string} A string representing the collection.
1280
+ */
1281
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1282
+ /**
1283
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
1284
+ *
1285
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1286
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1287
+ * @returns {string} A string representing the data_store.
1288
+ */
1289
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1290
+ /**
1291
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
1292
+ *
1293
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1294
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1295
+ * @returns {string} A string representing the session.
1296
+ */
1297
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1298
+ /**
1299
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
1300
+ *
1301
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1302
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1303
+ * @returns {string} A string representing the answer.
1304
+ */
1305
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1180
1306
  /**
1181
1307
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1182
1308
  *
@@ -1372,6 +1498,117 @@ export declare class SearchServiceClient {
1372
1498
  * @returns {string} A string representing the serving_config.
1373
1499
  */
1374
1500
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1501
+ /**
1502
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1503
+ *
1504
+ * @param {string} project
1505
+ * @param {string} location
1506
+ * @param {string} collection
1507
+ * @param {string} engine
1508
+ * @param {string} session
1509
+ * @returns {string} Resource name string.
1510
+ */
1511
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1512
+ /**
1513
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1514
+ *
1515
+ * @param {string} projectLocationCollectionEngineSessionName
1516
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1517
+ * @returns {string} A string representing the project.
1518
+ */
1519
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1520
+ /**
1521
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1522
+ *
1523
+ * @param {string} projectLocationCollectionEngineSessionName
1524
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1525
+ * @returns {string} A string representing the location.
1526
+ */
1527
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1528
+ /**
1529
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1530
+ *
1531
+ * @param {string} projectLocationCollectionEngineSessionName
1532
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1533
+ * @returns {string} A string representing the collection.
1534
+ */
1535
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1536
+ /**
1537
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1538
+ *
1539
+ * @param {string} projectLocationCollectionEngineSessionName
1540
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1541
+ * @returns {string} A string representing the engine.
1542
+ */
1543
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1544
+ /**
1545
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1546
+ *
1547
+ * @param {string} projectLocationCollectionEngineSessionName
1548
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1549
+ * @returns {string} A string representing the session.
1550
+ */
1551
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1552
+ /**
1553
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1554
+ *
1555
+ * @param {string} project
1556
+ * @param {string} location
1557
+ * @param {string} collection
1558
+ * @param {string} engine
1559
+ * @param {string} session
1560
+ * @param {string} answer
1561
+ * @returns {string} Resource name string.
1562
+ */
1563
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1564
+ /**
1565
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1566
+ *
1567
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1568
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1569
+ * @returns {string} A string representing the project.
1570
+ */
1571
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1572
+ /**
1573
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1574
+ *
1575
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1576
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1577
+ * @returns {string} A string representing the location.
1578
+ */
1579
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1580
+ /**
1581
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1582
+ *
1583
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1584
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1585
+ * @returns {string} A string representing the collection.
1586
+ */
1587
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1588
+ /**
1589
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1590
+ *
1591
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1592
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1593
+ * @returns {string} A string representing the engine.
1594
+ */
1595
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1596
+ /**
1597
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1598
+ *
1599
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1600
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1601
+ * @returns {string} A string representing the session.
1602
+ */
1603
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1604
+ /**
1605
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1606
+ *
1607
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1608
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1609
+ * @returns {string} A string representing the answer.
1610
+ */
1611
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1375
1612
  /**
1376
1613
  * Return a fully-qualified projectLocationDataStore resource name string.
1377
1614
  *
@@ -1657,6 +1894,99 @@ export declare class SearchServiceClient {
1657
1894
  * @returns {string} A string representing the serving_config.
1658
1895
  */
1659
1896
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1897
+ /**
1898
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1899
+ *
1900
+ * @param {string} project
1901
+ * @param {string} location
1902
+ * @param {string} data_store
1903
+ * @param {string} session
1904
+ * @returns {string} Resource name string.
1905
+ */
1906
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1907
+ /**
1908
+ * Parse the project from ProjectLocationDataStoreSession resource.
1909
+ *
1910
+ * @param {string} projectLocationDataStoreSessionName
1911
+ * A fully-qualified path representing project_location_data_store_session resource.
1912
+ * @returns {string} A string representing the project.
1913
+ */
1914
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1915
+ /**
1916
+ * Parse the location from ProjectLocationDataStoreSession resource.
1917
+ *
1918
+ * @param {string} projectLocationDataStoreSessionName
1919
+ * A fully-qualified path representing project_location_data_store_session resource.
1920
+ * @returns {string} A string representing the location.
1921
+ */
1922
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1923
+ /**
1924
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1925
+ *
1926
+ * @param {string} projectLocationDataStoreSessionName
1927
+ * A fully-qualified path representing project_location_data_store_session resource.
1928
+ * @returns {string} A string representing the data_store.
1929
+ */
1930
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1931
+ /**
1932
+ * Parse the session from ProjectLocationDataStoreSession resource.
1933
+ *
1934
+ * @param {string} projectLocationDataStoreSessionName
1935
+ * A fully-qualified path representing project_location_data_store_session resource.
1936
+ * @returns {string} A string representing the session.
1937
+ */
1938
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1939
+ /**
1940
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1941
+ *
1942
+ * @param {string} project
1943
+ * @param {string} location
1944
+ * @param {string} data_store
1945
+ * @param {string} session
1946
+ * @param {string} answer
1947
+ * @returns {string} Resource name string.
1948
+ */
1949
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1950
+ /**
1951
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1952
+ *
1953
+ * @param {string} projectLocationDataStoreSessionAnswerName
1954
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1955
+ * @returns {string} A string representing the project.
1956
+ */
1957
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1958
+ /**
1959
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1960
+ *
1961
+ * @param {string} projectLocationDataStoreSessionAnswerName
1962
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1963
+ * @returns {string} A string representing the location.
1964
+ */
1965
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1966
+ /**
1967
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1968
+ *
1969
+ * @param {string} projectLocationDataStoreSessionAnswerName
1970
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1971
+ * @returns {string} A string representing the data_store.
1972
+ */
1973
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1974
+ /**
1975
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1976
+ *
1977
+ * @param {string} projectLocationDataStoreSessionAnswerName
1978
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1979
+ * @returns {string} A string representing the session.
1980
+ */
1981
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1982
+ /**
1983
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1984
+ *
1985
+ * @param {string} projectLocationDataStoreSessionAnswerName
1986
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1987
+ * @returns {string} A string representing the answer.
1988
+ */
1989
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1660
1990
  /**
1661
1991
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1662
1992
  *