@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
@@ -0,0 +1,43 @@
1
+ {
2
+ "interfaces": {
3
+ "google.cloud.discoveryengine.v1.RecommendationService": {
4
+ "retry_codes": {
5
+ "non_idempotent": [],
6
+ "idempotent": [
7
+ "DEADLINE_EXCEEDED",
8
+ "UNAVAILABLE"
9
+ ],
10
+ "unavailable": [
11
+ "UNAVAILABLE"
12
+ ]
13
+ },
14
+ "retry_params": {
15
+ "default": {
16
+ "initial_retry_delay_millis": 100,
17
+ "retry_delay_multiplier": 1.3,
18
+ "max_retry_delay_millis": 60000,
19
+ "initial_rpc_timeout_millis": 60000,
20
+ "rpc_timeout_multiplier": 1,
21
+ "max_rpc_timeout_millis": 60000,
22
+ "total_timeout_millis": 600000
23
+ },
24
+ "319f27672a8be83550d842a373549dd84649a57e": {
25
+ "initial_retry_delay_millis": 100,
26
+ "retry_delay_multiplier": 1.3,
27
+ "max_retry_delay_millis": 5000,
28
+ "initial_rpc_timeout_millis": 60000,
29
+ "rpc_timeout_multiplier": 1,
30
+ "max_rpc_timeout_millis": 60000,
31
+ "total_timeout_millis": 600000
32
+ }
33
+ },
34
+ "methods": {
35
+ "Recommend": {
36
+ "timeout_millis": 5000,
37
+ "retry_codes_name": "unavailable",
38
+ "retry_params_name": "319f27672a8be83550d842a373549dd84649a57e"
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
@@ -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.v1.Document|Document}s to
143
- * return. If unspecified, defaults to a reasonable value. The maximum allowed
144
- * value is 100. Values above 100 are coerced to 100.
143
+ * 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.v1.SearchService.Search|SearchService.Search}
@@ -162,6 +166,8 @@ export declare class SearchServiceClient {
162
166
  * unset.
163
167
  *
164
168
  * If this field is negative, an `INVALID_ARGUMENT` is returned.
169
+ * @param {number[]} request.dataStoreSpecs
170
+ * A list of data store specs to apply on a search call.
165
171
  * @param {string} request.filter
166
172
  * The filter syntax consists of an expression language for constructing a
167
173
  * predicate from one or more fields of the documents being filtered. Filter
@@ -317,10 +323,14 @@ export declare class SearchServiceClient {
317
323
  * Raw image query.
318
324
  * @param {number} request.pageSize
319
325
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1.Document|Document}s to
320
- * return. If unspecified, defaults to a reasonable value. The maximum allowed
321
- * value is 100. Values above 100 are coerced to 100.
326
+ * return. The maximum allowed value depends on the data type. Values above
327
+ * the maximum value are coerced to the maximum value.
322
328
  *
323
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
329
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
330
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
331
+ * * Other: Default `50`, Maximum `100`.
332
+ *
333
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
324
334
  * @param {string} request.pageToken
325
335
  * A page token received from a previous
326
336
  * {@link protos.google.cloud.discoveryengine.v1.SearchService.Search|SearchService.Search}
@@ -339,6 +349,8 @@ export declare class SearchServiceClient {
339
349
  * unset.
340
350
  *
341
351
  * If this field is negative, an `INVALID_ARGUMENT` is returned.
352
+ * @param {number[]} request.dataStoreSpecs
353
+ * A list of data store specs to apply on a search call.
342
354
  * @param {string} request.filter
343
355
  * The filter syntax consists of an expression language for constructing a
344
356
  * predicate from one or more fields of the documents being filtered. Filter
@@ -489,10 +501,14 @@ export declare class SearchServiceClient {
489
501
  * Raw image query.
490
502
  * @param {number} request.pageSize
491
503
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1.Document|Document}s to
492
- * return. If unspecified, defaults to a reasonable value. The maximum allowed
493
- * value is 100. Values above 100 are coerced to 100.
504
+ * return. The maximum allowed value depends on the data type. Values above
505
+ * the maximum value are coerced to the maximum value.
494
506
  *
495
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
507
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
508
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
509
+ * * Other: Default `50`, Maximum `100`.
510
+ *
511
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
496
512
  * @param {string} request.pageToken
497
513
  * A page token received from a previous
498
514
  * {@link protos.google.cloud.discoveryengine.v1.SearchService.Search|SearchService.Search}
@@ -511,6 +527,8 @@ export declare class SearchServiceClient {
511
527
  * unset.
512
528
  *
513
529
  * If this field is negative, an `INVALID_ARGUMENT` is returned.
530
+ * @param {number[]} request.dataStoreSpecs
531
+ * A list of data store specs to apply on a search call.
514
532
  * @param {string} request.filter
515
533
  * The filter syntax consists of an expression language for constructing a
516
534
  * predicate from one or more fields of the documents being filtered. Filter
@@ -329,10 +329,14 @@ class SearchServiceClient {
329
329
  * Raw image query.
330
330
  * @param {number} request.pageSize
331
331
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1.Document|Document}s to
332
- * return. If unspecified, defaults to a reasonable value. The maximum allowed
333
- * value is 100. Values above 100 are coerced to 100.
332
+ * return. The maximum allowed value depends on the data type. Values above
333
+ * the maximum value are coerced to the maximum value.
334
334
  *
335
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
335
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
336
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
337
+ * * Other: Default `50`, Maximum `100`.
338
+ *
339
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
336
340
  * @param {string} request.pageToken
337
341
  * A page token received from a previous
338
342
  * {@link protos.google.cloud.discoveryengine.v1.SearchService.Search|SearchService.Search}
@@ -351,6 +355,8 @@ class SearchServiceClient {
351
355
  * unset.
352
356
  *
353
357
  * If this field is negative, an `INVALID_ARGUMENT` is returned.
358
+ * @param {number[]} request.dataStoreSpecs
359
+ * A list of data store specs to apply on a search call.
354
360
  * @param {string} request.filter
355
361
  * The filter syntax consists of an expression language for constructing a
356
362
  * predicate from one or more fields of the documents being filtered. Filter
@@ -515,10 +521,14 @@ class SearchServiceClient {
515
521
  * Raw image query.
516
522
  * @param {number} request.pageSize
517
523
  * Maximum number of {@link protos.google.cloud.discoveryengine.v1.Document|Document}s to
518
- * return. If unspecified, defaults to a reasonable value. The maximum allowed
519
- * value is 100. Values above 100 are coerced to 100.
524
+ * return. The maximum allowed value depends on the data type. Values above
525
+ * the maximum value are coerced to the maximum value.
520
526
  *
521
- * If this field is negative, an `INVALID_ARGUMENT` is returned.
527
+ * * Websites with basic indexing: Default `10`, Maximum `25`.
528
+ * * Websites with advanced indexing: Default `25`, Maximum `50`.
529
+ * * Other: Default `50`, Maximum `100`.
530
+ *
531
+ * If this field is negative, an `INVALID_ARGUMENT` is returned.
522
532
  * @param {string} request.pageToken
523
533
  * A page token received from a previous
524
534
  * {@link protos.google.cloud.discoveryengine.v1.SearchService.Search|SearchService.Search}
@@ -537,6 +547,8 @@ class SearchServiceClient {
537
547
  * unset.
538
548
  *
539
549
  * If this field is negative, an `INVALID_ARGUMENT` is returned.
550
+ * @param {number[]} request.dataStoreSpecs
551
+ * A list of data store specs to apply on a search call.
540
552
  * @param {string} request.filter
541
553
  * The filter syntax consists of an expression language for constructing a
542
554
  * predicate from one or more fields of the documents being filtered. Filter
@@ -21,10 +21,10 @@
21
21
  "max_rpc_timeout_millis": 60000,
22
22
  "total_timeout_millis": 600000
23
23
  },
24
- "319f27672a8be83550d842a373549dd84649a57e": {
25
- "initial_retry_delay_millis": 100,
24
+ "ce5b960a6ed052e690863808e4f0deff3dc7d49f": {
25
+ "initial_retry_delay_millis": 1000,
26
26
  "retry_delay_multiplier": 1.3,
27
- "max_retry_delay_millis": 5000,
27
+ "max_retry_delay_millis": 10000,
28
28
  "initial_rpc_timeout_millis": 60000,
29
29
  "rpc_timeout_multiplier": 1,
30
30
  "max_rpc_timeout_millis": 60000,
@@ -33,9 +33,9 @@
33
33
  },
34
34
  "methods": {
35
35
  "Search": {
36
- "timeout_millis": 5000,
36
+ "timeout_millis": 30000,
37
37
  "retry_codes_name": "unavailable",
38
- "retry_params_name": "319f27672a8be83550d842a373549dd84649a57e"
38
+ "retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
39
39
  }
40
40
  }
41
41
  }
@@ -284,6 +284,21 @@ export declare class AclConfigServiceClient {
284
284
  * @returns {string} A string representing the engine.
285
285
  */
286
286
  matchEngineFromEngineName(engineName: string): string | number;
287
+ /**
288
+ * Return a fully-qualified project resource name string.
289
+ *
290
+ * @param {string} project
291
+ * @returns {string} Resource name string.
292
+ */
293
+ projectPath(project: string): string;
294
+ /**
295
+ * Parse the project from Project resource.
296
+ *
297
+ * @param {string} projectName
298
+ * A fully-qualified path representing Project resource.
299
+ * @returns {string} A string representing the project.
300
+ */
301
+ matchProjectFromProjectName(projectName: string): string | number;
287
302
  /**
288
303
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
289
304
  *
@@ -650,6 +665,117 @@ export declare class AclConfigServiceClient {
650
665
  * @returns {string} A string representing the serving_config.
651
666
  */
652
667
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
668
+ /**
669
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
670
+ *
671
+ * @param {string} project
672
+ * @param {string} location
673
+ * @param {string} collection
674
+ * @param {string} data_store
675
+ * @param {string} session
676
+ * @returns {string} Resource name string.
677
+ */
678
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
679
+ /**
680
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
681
+ *
682
+ * @param {string} projectLocationCollectionDataStoreSessionName
683
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
684
+ * @returns {string} A string representing the project.
685
+ */
686
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
687
+ /**
688
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
689
+ *
690
+ * @param {string} projectLocationCollectionDataStoreSessionName
691
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
692
+ * @returns {string} A string representing the location.
693
+ */
694
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
695
+ /**
696
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
697
+ *
698
+ * @param {string} projectLocationCollectionDataStoreSessionName
699
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
700
+ * @returns {string} A string representing the collection.
701
+ */
702
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
703
+ /**
704
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
705
+ *
706
+ * @param {string} projectLocationCollectionDataStoreSessionName
707
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
708
+ * @returns {string} A string representing the data_store.
709
+ */
710
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
711
+ /**
712
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
713
+ *
714
+ * @param {string} projectLocationCollectionDataStoreSessionName
715
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
716
+ * @returns {string} A string representing the session.
717
+ */
718
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
719
+ /**
720
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
721
+ *
722
+ * @param {string} project
723
+ * @param {string} location
724
+ * @param {string} collection
725
+ * @param {string} data_store
726
+ * @param {string} session
727
+ * @param {string} answer
728
+ * @returns {string} Resource name string.
729
+ */
730
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
731
+ /**
732
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
733
+ *
734
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
735
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
736
+ * @returns {string} A string representing the project.
737
+ */
738
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
739
+ /**
740
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
741
+ *
742
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
743
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
744
+ * @returns {string} A string representing the location.
745
+ */
746
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
747
+ /**
748
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
749
+ *
750
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
751
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
752
+ * @returns {string} A string representing the collection.
753
+ */
754
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
755
+ /**
756
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
757
+ *
758
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
759
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
760
+ * @returns {string} A string representing the data_store.
761
+ */
762
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
763
+ /**
764
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
765
+ *
766
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
767
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
768
+ * @returns {string} A string representing the session.
769
+ */
770
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
771
+ /**
772
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
773
+ *
774
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
775
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
776
+ * @returns {string} A string representing the answer.
777
+ */
778
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
653
779
  /**
654
780
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
655
781
  *
@@ -845,6 +971,117 @@ export declare class AclConfigServiceClient {
845
971
  * @returns {string} A string representing the serving_config.
846
972
  */
847
973
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
974
+ /**
975
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
976
+ *
977
+ * @param {string} project
978
+ * @param {string} location
979
+ * @param {string} collection
980
+ * @param {string} engine
981
+ * @param {string} session
982
+ * @returns {string} Resource name string.
983
+ */
984
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
985
+ /**
986
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
987
+ *
988
+ * @param {string} projectLocationCollectionEngineSessionName
989
+ * A fully-qualified path representing project_location_collection_engine_session resource.
990
+ * @returns {string} A string representing the project.
991
+ */
992
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
993
+ /**
994
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
995
+ *
996
+ * @param {string} projectLocationCollectionEngineSessionName
997
+ * A fully-qualified path representing project_location_collection_engine_session resource.
998
+ * @returns {string} A string representing the location.
999
+ */
1000
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1001
+ /**
1002
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1003
+ *
1004
+ * @param {string} projectLocationCollectionEngineSessionName
1005
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1006
+ * @returns {string} A string representing the collection.
1007
+ */
1008
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1009
+ /**
1010
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1011
+ *
1012
+ * @param {string} projectLocationCollectionEngineSessionName
1013
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1014
+ * @returns {string} A string representing the engine.
1015
+ */
1016
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1017
+ /**
1018
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1019
+ *
1020
+ * @param {string} projectLocationCollectionEngineSessionName
1021
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1022
+ * @returns {string} A string representing the session.
1023
+ */
1024
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1025
+ /**
1026
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1027
+ *
1028
+ * @param {string} project
1029
+ * @param {string} location
1030
+ * @param {string} collection
1031
+ * @param {string} engine
1032
+ * @param {string} session
1033
+ * @param {string} answer
1034
+ * @returns {string} Resource name string.
1035
+ */
1036
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1037
+ /**
1038
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1039
+ *
1040
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1041
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1042
+ * @returns {string} A string representing the project.
1043
+ */
1044
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1045
+ /**
1046
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1047
+ *
1048
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1049
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1050
+ * @returns {string} A string representing the location.
1051
+ */
1052
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1053
+ /**
1054
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1055
+ *
1056
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1057
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1058
+ * @returns {string} A string representing the collection.
1059
+ */
1060
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1061
+ /**
1062
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1063
+ *
1064
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1065
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1066
+ * @returns {string} A string representing the engine.
1067
+ */
1068
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1069
+ /**
1070
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1071
+ *
1072
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1073
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1074
+ * @returns {string} A string representing the session.
1075
+ */
1076
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1077
+ /**
1078
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1079
+ *
1080
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1081
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1082
+ * @returns {string} A string representing the answer.
1083
+ */
1084
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
848
1085
  /**
849
1086
  * Return a fully-qualified projectLocationDataStore resource name string.
850
1087
  *
@@ -1148,6 +1385,99 @@ export declare class AclConfigServiceClient {
1148
1385
  * @returns {string} A string representing the serving_config.
1149
1386
  */
1150
1387
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1388
+ /**
1389
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1390
+ *
1391
+ * @param {string} project
1392
+ * @param {string} location
1393
+ * @param {string} data_store
1394
+ * @param {string} session
1395
+ * @returns {string} Resource name string.
1396
+ */
1397
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1398
+ /**
1399
+ * Parse the project from ProjectLocationDataStoreSession resource.
1400
+ *
1401
+ * @param {string} projectLocationDataStoreSessionName
1402
+ * A fully-qualified path representing project_location_data_store_session resource.
1403
+ * @returns {string} A string representing the project.
1404
+ */
1405
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1406
+ /**
1407
+ * Parse the location from ProjectLocationDataStoreSession resource.
1408
+ *
1409
+ * @param {string} projectLocationDataStoreSessionName
1410
+ * A fully-qualified path representing project_location_data_store_session resource.
1411
+ * @returns {string} A string representing the location.
1412
+ */
1413
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1414
+ /**
1415
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1416
+ *
1417
+ * @param {string} projectLocationDataStoreSessionName
1418
+ * A fully-qualified path representing project_location_data_store_session resource.
1419
+ * @returns {string} A string representing the data_store.
1420
+ */
1421
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1422
+ /**
1423
+ * Parse the session from ProjectLocationDataStoreSession resource.
1424
+ *
1425
+ * @param {string} projectLocationDataStoreSessionName
1426
+ * A fully-qualified path representing project_location_data_store_session resource.
1427
+ * @returns {string} A string representing the session.
1428
+ */
1429
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1430
+ /**
1431
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1432
+ *
1433
+ * @param {string} project
1434
+ * @param {string} location
1435
+ * @param {string} data_store
1436
+ * @param {string} session
1437
+ * @param {string} answer
1438
+ * @returns {string} Resource name string.
1439
+ */
1440
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1441
+ /**
1442
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1443
+ *
1444
+ * @param {string} projectLocationDataStoreSessionAnswerName
1445
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1446
+ * @returns {string} A string representing the project.
1447
+ */
1448
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1449
+ /**
1450
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1451
+ *
1452
+ * @param {string} projectLocationDataStoreSessionAnswerName
1453
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1454
+ * @returns {string} A string representing the location.
1455
+ */
1456
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1457
+ /**
1458
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1459
+ *
1460
+ * @param {string} projectLocationDataStoreSessionAnswerName
1461
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1462
+ * @returns {string} A string representing the data_store.
1463
+ */
1464
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1465
+ /**
1466
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1467
+ *
1468
+ * @param {string} projectLocationDataStoreSessionAnswerName
1469
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1470
+ * @returns {string} A string representing the session.
1471
+ */
1472
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1473
+ /**
1474
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1475
+ *
1476
+ * @param {string} projectLocationDataStoreSessionAnswerName
1477
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1478
+ * @returns {string} A string representing the answer.
1479
+ */
1480
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1151
1481
  /**
1152
1482
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1153
1483
  *