@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,11 +140,15 @@ export declare class SearchServiceClient {
140
140
  * Raw image query.
141
141
  * @param {number} request.pageSize
142
142
  * Maximum number of
143
- * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. If
144
- * unspecified, defaults to a reasonable value. The maximum allowed value is
145
- * 100. Values above 100 are coerced to 100.
143
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. The
144
+ * maximum allowed value depends on the data type. Values above the maximum
145
+ * value are coerced to the maximum value.
146
146
  *
147
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
147
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
148
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
149
+ * * Other: Default `50`, Maximum `100`.
150
+ *
151
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
148
152
  * @param {string} request.pageToken
149
153
  * A page token received from a previous
150
154
  * {@link protos.google.cloud.discoveryengine.v1alpha.SearchService.Search|SearchService.Search}
@@ -266,7 +270,8 @@ export declare class SearchServiceClient {
266
270
  *
267
271
  * If
268
272
  * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
269
- * is not provided, it will use {@link protos.|ServingConfig.EmbeddingConfig.field_path}.
273
+ * is not provided, it will use
274
+ * {@link protos.google.cloud.discoveryengine.v1alpha.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
270
275
  * @param {string} request.rankingExpression
271
276
  * The ranking expression controls the customized ranking on retrieval
272
277
  * documents. This overrides
@@ -353,11 +358,15 @@ export declare class SearchServiceClient {
353
358
  * Raw image query.
354
359
  * @param {number} request.pageSize
355
360
  * Maximum number of
356
- * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. If
357
- * unspecified, defaults to a reasonable value. The maximum allowed value is
358
- * 100. Values above 100 are coerced to 100.
361
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. The
362
+ * maximum allowed value depends on the data type. Values above the maximum
363
+ * value are coerced to the maximum value.
359
364
  *
360
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
365
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
366
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
367
+ * * Other: Default `50`, Maximum `100`.
368
+ *
369
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
361
370
  * @param {string} request.pageToken
362
371
  * A page token received from a previous
363
372
  * {@link protos.google.cloud.discoveryengine.v1alpha.SearchService.Search|SearchService.Search}
@@ -479,7 +488,8 @@ export declare class SearchServiceClient {
479
488
  *
480
489
  * If
481
490
  * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
482
- * is not provided, it will use {@link protos.|ServingConfig.EmbeddingConfig.field_path}.
491
+ * is not provided, it will use
492
+ * {@link protos.google.cloud.discoveryengine.v1alpha.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
483
493
  * @param {string} request.rankingExpression
484
494
  * The ranking expression controls the customized ranking on retrieval
485
495
  * documents. This overrides
@@ -561,11 +571,15 @@ export declare class SearchServiceClient {
561
571
  * Raw image query.
562
572
  * @param {number} request.pageSize
563
573
  * Maximum number of
564
- * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. If
565
- * unspecified, defaults to a reasonable value. The maximum allowed value is
566
- * 100. Values above 100 are coerced to 100.
574
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. The
575
+ * maximum allowed value depends on the data type. Values above the maximum
576
+ * value are coerced to the maximum value.
567
577
  *
568
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
578
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
579
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
580
+ * * Other: Default `50`, Maximum `100`.
581
+ *
582
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
569
583
  * @param {string} request.pageToken
570
584
  * A page token received from a previous
571
585
  * {@link protos.google.cloud.discoveryengine.v1alpha.SearchService.Search|SearchService.Search}
@@ -687,7 +701,8 @@ export declare class SearchServiceClient {
687
701
  *
688
702
  * If
689
703
  * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
690
- * is not provided, it will use {@link protos.|ServingConfig.EmbeddingConfig.field_path}.
704
+ * is not provided, it will use
705
+ * {@link protos.google.cloud.discoveryengine.v1alpha.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
691
706
  * @param {string} request.rankingExpression
692
707
  * The ranking expression controls the customized ranking on retrieval
693
708
  * documents. This overrides
@@ -862,6 +877,21 @@ export declare class SearchServiceClient {
862
877
  * @returns {string} A string representing the engine.
863
878
  */
864
879
  matchEngineFromEngineName(engineName: string): string | number;
880
+ /**
881
+ * Return a fully-qualified project resource name string.
882
+ *
883
+ * @param {string} project
884
+ * @returns {string} Resource name string.
885
+ */
886
+ projectPath(project: string): string;
887
+ /**
888
+ * Parse the project from Project resource.
889
+ *
890
+ * @param {string} projectName
891
+ * A fully-qualified path representing Project resource.
892
+ * @returns {string} A string representing the project.
893
+ */
894
+ matchProjectFromProjectName(projectName: string): string | number;
865
895
  /**
866
896
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
867
897
  *
@@ -1279,6 +1309,117 @@ export declare class SearchServiceClient {
1279
1309
  * @returns {string} A string representing the serving_config.
1280
1310
  */
1281
1311
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1312
+ /**
1313
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
1314
+ *
1315
+ * @param {string} project
1316
+ * @param {string} location
1317
+ * @param {string} collection
1318
+ * @param {string} data_store
1319
+ * @param {string} session
1320
+ * @returns {string} Resource name string.
1321
+ */
1322
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
1323
+ /**
1324
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
1325
+ *
1326
+ * @param {string} projectLocationCollectionDataStoreSessionName
1327
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1328
+ * @returns {string} A string representing the project.
1329
+ */
1330
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1331
+ /**
1332
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
1333
+ *
1334
+ * @param {string} projectLocationCollectionDataStoreSessionName
1335
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1336
+ * @returns {string} A string representing the location.
1337
+ */
1338
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1339
+ /**
1340
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
1341
+ *
1342
+ * @param {string} projectLocationCollectionDataStoreSessionName
1343
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1344
+ * @returns {string} A string representing the collection.
1345
+ */
1346
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1347
+ /**
1348
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
1349
+ *
1350
+ * @param {string} projectLocationCollectionDataStoreSessionName
1351
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1352
+ * @returns {string} A string representing the data_store.
1353
+ */
1354
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1355
+ /**
1356
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
1357
+ *
1358
+ * @param {string} projectLocationCollectionDataStoreSessionName
1359
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1360
+ * @returns {string} A string representing the session.
1361
+ */
1362
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1363
+ /**
1364
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
1365
+ *
1366
+ * @param {string} project
1367
+ * @param {string} location
1368
+ * @param {string} collection
1369
+ * @param {string} data_store
1370
+ * @param {string} session
1371
+ * @param {string} answer
1372
+ * @returns {string} Resource name string.
1373
+ */
1374
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
1375
+ /**
1376
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
1377
+ *
1378
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1379
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1380
+ * @returns {string} A string representing the project.
1381
+ */
1382
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1383
+ /**
1384
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
1385
+ *
1386
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1387
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1388
+ * @returns {string} A string representing the location.
1389
+ */
1390
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1391
+ /**
1392
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
1393
+ *
1394
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1395
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1396
+ * @returns {string} A string representing the collection.
1397
+ */
1398
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1399
+ /**
1400
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
1401
+ *
1402
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1403
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1404
+ * @returns {string} A string representing the data_store.
1405
+ */
1406
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1407
+ /**
1408
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
1409
+ *
1410
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1411
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1412
+ * @returns {string} A string representing the session.
1413
+ */
1414
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1415
+ /**
1416
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
1417
+ *
1418
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1419
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1420
+ * @returns {string} A string representing the answer.
1421
+ */
1422
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1282
1423
  /**
1283
1424
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1284
1425
  *
@@ -1474,6 +1615,117 @@ export declare class SearchServiceClient {
1474
1615
  * @returns {string} A string representing the serving_config.
1475
1616
  */
1476
1617
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1618
+ /**
1619
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1620
+ *
1621
+ * @param {string} project
1622
+ * @param {string} location
1623
+ * @param {string} collection
1624
+ * @param {string} engine
1625
+ * @param {string} session
1626
+ * @returns {string} Resource name string.
1627
+ */
1628
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1629
+ /**
1630
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1631
+ *
1632
+ * @param {string} projectLocationCollectionEngineSessionName
1633
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1634
+ * @returns {string} A string representing the project.
1635
+ */
1636
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1637
+ /**
1638
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1639
+ *
1640
+ * @param {string} projectLocationCollectionEngineSessionName
1641
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1642
+ * @returns {string} A string representing the location.
1643
+ */
1644
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1645
+ /**
1646
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1647
+ *
1648
+ * @param {string} projectLocationCollectionEngineSessionName
1649
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1650
+ * @returns {string} A string representing the collection.
1651
+ */
1652
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1653
+ /**
1654
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1655
+ *
1656
+ * @param {string} projectLocationCollectionEngineSessionName
1657
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1658
+ * @returns {string} A string representing the engine.
1659
+ */
1660
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1661
+ /**
1662
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1663
+ *
1664
+ * @param {string} projectLocationCollectionEngineSessionName
1665
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1666
+ * @returns {string} A string representing the session.
1667
+ */
1668
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1669
+ /**
1670
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1671
+ *
1672
+ * @param {string} project
1673
+ * @param {string} location
1674
+ * @param {string} collection
1675
+ * @param {string} engine
1676
+ * @param {string} session
1677
+ * @param {string} answer
1678
+ * @returns {string} Resource name string.
1679
+ */
1680
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1681
+ /**
1682
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1683
+ *
1684
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1685
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1686
+ * @returns {string} A string representing the project.
1687
+ */
1688
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1689
+ /**
1690
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1691
+ *
1692
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1693
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1694
+ * @returns {string} A string representing the location.
1695
+ */
1696
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1697
+ /**
1698
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1699
+ *
1700
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1701
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1702
+ * @returns {string} A string representing the collection.
1703
+ */
1704
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1705
+ /**
1706
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1707
+ *
1708
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1709
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1710
+ * @returns {string} A string representing the engine.
1711
+ */
1712
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1713
+ /**
1714
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1715
+ *
1716
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1717
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1718
+ * @returns {string} A string representing the session.
1719
+ */
1720
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1721
+ /**
1722
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1723
+ *
1724
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1725
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1726
+ * @returns {string} A string representing the answer.
1727
+ */
1728
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1477
1729
  /**
1478
1730
  * Return a fully-qualified projectLocationDataStore resource name string.
1479
1731
  *
@@ -1819,6 +2071,99 @@ export declare class SearchServiceClient {
1819
2071
  * @returns {string} A string representing the serving_config.
1820
2072
  */
1821
2073
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
2074
+ /**
2075
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
2076
+ *
2077
+ * @param {string} project
2078
+ * @param {string} location
2079
+ * @param {string} data_store
2080
+ * @param {string} session
2081
+ * @returns {string} Resource name string.
2082
+ */
2083
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
2084
+ /**
2085
+ * Parse the project from ProjectLocationDataStoreSession resource.
2086
+ *
2087
+ * @param {string} projectLocationDataStoreSessionName
2088
+ * A fully-qualified path representing project_location_data_store_session resource.
2089
+ * @returns {string} A string representing the project.
2090
+ */
2091
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2092
+ /**
2093
+ * Parse the location from ProjectLocationDataStoreSession resource.
2094
+ *
2095
+ * @param {string} projectLocationDataStoreSessionName
2096
+ * A fully-qualified path representing project_location_data_store_session resource.
2097
+ * @returns {string} A string representing the location.
2098
+ */
2099
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2100
+ /**
2101
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
2102
+ *
2103
+ * @param {string} projectLocationDataStoreSessionName
2104
+ * A fully-qualified path representing project_location_data_store_session resource.
2105
+ * @returns {string} A string representing the data_store.
2106
+ */
2107
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2108
+ /**
2109
+ * Parse the session from ProjectLocationDataStoreSession resource.
2110
+ *
2111
+ * @param {string} projectLocationDataStoreSessionName
2112
+ * A fully-qualified path representing project_location_data_store_session resource.
2113
+ * @returns {string} A string representing the session.
2114
+ */
2115
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2116
+ /**
2117
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
2118
+ *
2119
+ * @param {string} project
2120
+ * @param {string} location
2121
+ * @param {string} data_store
2122
+ * @param {string} session
2123
+ * @param {string} answer
2124
+ * @returns {string} Resource name string.
2125
+ */
2126
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
2127
+ /**
2128
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
2129
+ *
2130
+ * @param {string} projectLocationDataStoreSessionAnswerName
2131
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2132
+ * @returns {string} A string representing the project.
2133
+ */
2134
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2135
+ /**
2136
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
2137
+ *
2138
+ * @param {string} projectLocationDataStoreSessionAnswerName
2139
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2140
+ * @returns {string} A string representing the location.
2141
+ */
2142
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2143
+ /**
2144
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
2145
+ *
2146
+ * @param {string} projectLocationDataStoreSessionAnswerName
2147
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2148
+ * @returns {string} A string representing the data_store.
2149
+ */
2150
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2151
+ /**
2152
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
2153
+ *
2154
+ * @param {string} projectLocationDataStoreSessionAnswerName
2155
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2156
+ * @returns {string} A string representing the session.
2157
+ */
2158
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2159
+ /**
2160
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
2161
+ *
2162
+ * @param {string} projectLocationDataStoreSessionAnswerName
2163
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2164
+ * @returns {string} A string representing the answer.
2165
+ */
2166
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1822
2167
  /**
1823
2168
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1824
2169
  *