@google-cloud/discoveryengine 1.2.0 → 1.3.1

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 (63) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +25 -0
  3. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +38 -8
  4. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +3 -0
  5. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +39 -0
  6. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +98 -0
  7. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +307 -0
  8. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +1 -1
  9. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +370 -0
  10. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +336 -0
  11. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +9 -3
  12. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +123 -3
  13. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +147 -0
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +164 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +540 -0
  16. package/build/protos/protos.d.ts +10923 -3222
  17. package/build/protos/protos.js +29891 -12914
  18. package/build/protos/protos.json +2367 -668
  19. package/build/src/index.js +1 -1
  20. package/build/src/v1/completion_service_client.js +1 -1
  21. package/build/src/v1/conversational_search_service_client.js +1 -1
  22. package/build/src/v1/document_service_client.js +1 -1
  23. package/build/src/v1/index.js +1 -1
  24. package/build/src/v1/schema_service_client.js +1 -1
  25. package/build/src/v1/search_service_client.js +1 -1
  26. package/build/src/v1/user_event_service_client.js +1 -1
  27. package/build/src/v1alpha/completion_service_client.d.ts +261 -0
  28. package/build/src/v1alpha/completion_service_client.js +360 -0
  29. package/build/src/v1alpha/conversational_search_service_client.d.ts +278 -0
  30. package/build/src/v1alpha/conversational_search_service_client.js +360 -0
  31. package/build/src/v1alpha/data_store_service_client.d.ts +1279 -0
  32. package/build/src/v1alpha/data_store_service_client.js +1739 -0
  33. package/build/src/v1alpha/data_store_service_client_config.json +46 -0
  34. package/build/src/v1alpha/document_service_client.d.ts +336 -0
  35. package/build/src/v1alpha/document_service_client.js +472 -2
  36. package/build/src/v1alpha/engine_service_client.d.ts +1298 -0
  37. package/build/src/v1alpha/engine_service_client.js +1789 -0
  38. package/build/src/v1alpha/engine_service_client_config.json +58 -0
  39. package/build/src/v1alpha/index.d.ts +3 -0
  40. package/build/src/v1alpha/index.js +7 -1
  41. package/build/src/v1alpha/recommendation_service_client.d.ts +345 -3
  42. package/build/src/v1alpha/recommendation_service_client.js +464 -0
  43. package/build/src/v1alpha/schema_service_client.d.ts +261 -0
  44. package/build/src/v1alpha/schema_service_client.js +368 -2
  45. package/build/src/v1alpha/search_service_client.d.ts +453 -9
  46. package/build/src/v1alpha/search_service_client.js +542 -6
  47. package/build/src/v1alpha/search_tuning_service_client.d.ts +968 -0
  48. package/build/src/v1alpha/search_tuning_service_client.js +1452 -0
  49. package/build/src/v1alpha/search_tuning_service_client_config.json +30 -0
  50. package/build/src/v1alpha/site_search_engine_service_client.d.ts +856 -1
  51. package/build/src/v1alpha/site_search_engine_service_client.js +993 -34
  52. package/build/src/v1alpha/site_search_engine_service_client_config.json +44 -0
  53. package/build/src/v1alpha/user_event_service_client.d.ts +261 -0
  54. package/build/src/v1alpha/user_event_service_client.js +368 -2
  55. package/build/src/v1beta/completion_service_client.js +1 -1
  56. package/build/src/v1beta/conversational_search_service_client.js +1 -1
  57. package/build/src/v1beta/document_service_client.js +1 -1
  58. package/build/src/v1beta/index.js +1 -1
  59. package/build/src/v1beta/recommendation_service_client.js +1 -1
  60. package/build/src/v1beta/schema_service_client.js +1 -1
  61. package/build/src/v1beta/search_service_client.js +1 -1
  62. package/build/src/v1beta/user_event_service_client.js +1 -1
  63. package/package.json +4 -4
@@ -114,6 +114,8 @@ export declare class SearchServiceClient {
114
114
  * The request object that will be sent.
115
115
  * @param {string} request.servingConfig
116
116
  * Required. The resource name of the Search serving config, such as
117
+ * `projects/* /locations/global/collections/default_collection/engines/* /servingConfigs/default_serving_config`,
118
+ * or
117
119
  * `projects/* /locations/global/collections/default_collection/dataStores/default_data_store/servingConfigs/default_serving_config`.
118
120
  * This field is used to identify the serving configuration name, set
119
121
  * of models used to make the search.
@@ -158,11 +160,35 @@ export declare class SearchServiceClient {
158
160
  * expression is case-sensitive.
159
161
  *
160
162
  * If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
163
+ *
164
+ * Filtering in Vertex AI Search is done by mapping the LHS filter key to a
165
+ * key property defined in the Vertex AI Search backend -- this mapping is
166
+ * defined by the customer in their schema. For example a media customer might
167
+ * have a field 'name' in their schema. In this case the filter would look
168
+ * like this: filter --> name:'ANY("king kong")'
169
+ *
170
+ * For more information about filtering including syntax and filter
171
+ * operators, see
172
+ * [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
173
+ * @param {string} request.canonicalFilter
174
+ * The default filter that is applied when a user performs a search without
175
+ * checking any filters on the search page.
176
+ *
177
+ * The filter applied to every search request when quality improvement such as
178
+ * query expansion is needed. In the case a query does not have a sufficient
179
+ * amount of results this filter will be used to determine whether or not to
180
+ * enable the query expansion flow. The original filter will still be used for
181
+ * the query expanded search.
182
+ * This field is strongly recommended to achieve high search quality.
183
+ *
184
+ * For more information about filter syntax, see
185
+ * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.filter|SearchRequest.filter}.
161
186
  * @param {string} request.orderBy
162
187
  * The order in which documents are returned. Documents can be ordered by
163
188
  * a field in an {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
164
189
  * object. Leave it unset if ordered by relevance. `order_by` expression is
165
- * case-sensitive.
190
+ * case-sensitive. For more information on ordering, see
191
+ * [Ordering](https://cloud.google.com/retail/docs/filter-and-order#order)
166
192
  *
167
193
  * If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
168
194
  * @param {google.cloud.discoveryengine.v1alpha.UserInfo} request.userInfo
@@ -177,6 +203,8 @@ export declare class SearchServiceClient {
177
203
  * error is returned.
178
204
  * @param {google.cloud.discoveryengine.v1alpha.SearchRequest.BoostSpec} request.boostSpec
179
205
  * Boost specification to boost certain documents.
206
+ * For more information on boosting, see
207
+ * [Boosting](https://cloud.google.com/retail/docs/boosting#boost)
180
208
  * @param {number[]} request.params
181
209
  * Additional search parameters.
182
210
  *
@@ -184,9 +212,17 @@ export declare class SearchServiceClient {
184
212
  *
185
213
  * * `user_country_code`: string. Default empty. If set to non-empty, results
186
214
  * are restricted or boosted based on the location provided.
215
+ * Example:
216
+ * user_country_code: "au"
217
+ *
218
+ * For available codes see [Country
219
+ * Codes](https://developers.google.com/custom-search/docs/json_api_reference#countryCodes)
220
+ *
187
221
  * * `search_type`: double. Default empty. Enables non-webpage searching
188
- * depending on the value. The only valid non-default value is 1,
189
- * which enables image searching.
222
+ * depending on the value. The only valid non-default value is 1,
223
+ * which enables image searching.
224
+ * Example:
225
+ * search_type: 1
190
226
  * @param {google.cloud.discoveryengine.v1alpha.SearchRequest.QueryExpansionSpec} request.queryExpansionSpec
191
227
  * The query expansion specification that specifies the conditions under which
192
228
  * query expansion occurs.
@@ -286,6 +322,8 @@ export declare class SearchServiceClient {
286
322
  * The request object that will be sent.
287
323
  * @param {string} request.servingConfig
288
324
  * Required. The resource name of the Search serving config, such as
325
+ * `projects/* /locations/global/collections/default_collection/engines/* /servingConfigs/default_serving_config`,
326
+ * or
289
327
  * `projects/* /locations/global/collections/default_collection/dataStores/default_data_store/servingConfigs/default_serving_config`.
290
328
  * This field is used to identify the serving configuration name, set
291
329
  * of models used to make the search.
@@ -330,11 +368,35 @@ export declare class SearchServiceClient {
330
368
  * expression is case-sensitive.
331
369
  *
332
370
  * If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
371
+ *
372
+ * Filtering in Vertex AI Search is done by mapping the LHS filter key to a
373
+ * key property defined in the Vertex AI Search backend -- this mapping is
374
+ * defined by the customer in their schema. For example a media customer might
375
+ * have a field 'name' in their schema. In this case the filter would look
376
+ * like this: filter --> name:'ANY("king kong")'
377
+ *
378
+ * For more information about filtering including syntax and filter
379
+ * operators, see
380
+ * [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
381
+ * @param {string} request.canonicalFilter
382
+ * The default filter that is applied when a user performs a search without
383
+ * checking any filters on the search page.
384
+ *
385
+ * The filter applied to every search request when quality improvement such as
386
+ * query expansion is needed. In the case a query does not have a sufficient
387
+ * amount of results this filter will be used to determine whether or not to
388
+ * enable the query expansion flow. The original filter will still be used for
389
+ * the query expanded search.
390
+ * This field is strongly recommended to achieve high search quality.
391
+ *
392
+ * For more information about filter syntax, see
393
+ * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.filter|SearchRequest.filter}.
333
394
  * @param {string} request.orderBy
334
395
  * The order in which documents are returned. Documents can be ordered by
335
396
  * a field in an {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
336
397
  * object. Leave it unset if ordered by relevance. `order_by` expression is
337
- * case-sensitive.
398
+ * case-sensitive. For more information on ordering, see
399
+ * [Ordering](https://cloud.google.com/retail/docs/filter-and-order#order)
338
400
  *
339
401
  * If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
340
402
  * @param {google.cloud.discoveryengine.v1alpha.UserInfo} request.userInfo
@@ -349,6 +411,8 @@ export declare class SearchServiceClient {
349
411
  * error is returned.
350
412
  * @param {google.cloud.discoveryengine.v1alpha.SearchRequest.BoostSpec} request.boostSpec
351
413
  * Boost specification to boost certain documents.
414
+ * For more information on boosting, see
415
+ * [Boosting](https://cloud.google.com/retail/docs/boosting#boost)
352
416
  * @param {number[]} request.params
353
417
  * Additional search parameters.
354
418
  *
@@ -356,9 +420,17 @@ export declare class SearchServiceClient {
356
420
  *
357
421
  * * `user_country_code`: string. Default empty. If set to non-empty, results
358
422
  * are restricted or boosted based on the location provided.
423
+ * Example:
424
+ * user_country_code: "au"
425
+ *
426
+ * For available codes see [Country
427
+ * Codes](https://developers.google.com/custom-search/docs/json_api_reference#countryCodes)
428
+ *
359
429
  * * `search_type`: double. Default empty. Enables non-webpage searching
360
- * depending on the value. The only valid non-default value is 1,
361
- * which enables image searching.
430
+ * depending on the value. The only valid non-default value is 1,
431
+ * which enables image searching.
432
+ * Example:
433
+ * search_type: 1
362
434
  * @param {google.cloud.discoveryengine.v1alpha.SearchRequest.QueryExpansionSpec} request.queryExpansionSpec
363
435
  * The query expansion specification that specifies the conditions under which
364
436
  * query expansion occurs.
@@ -453,6 +525,8 @@ export declare class SearchServiceClient {
453
525
  * The request object that will be sent.
454
526
  * @param {string} request.servingConfig
455
527
  * Required. The resource name of the Search serving config, such as
528
+ * `projects/* /locations/global/collections/default_collection/engines/* /servingConfigs/default_serving_config`,
529
+ * or
456
530
  * `projects/* /locations/global/collections/default_collection/dataStores/default_data_store/servingConfigs/default_serving_config`.
457
531
  * This field is used to identify the serving configuration name, set
458
532
  * of models used to make the search.
@@ -497,11 +571,35 @@ export declare class SearchServiceClient {
497
571
  * expression is case-sensitive.
498
572
  *
499
573
  * If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
574
+ *
575
+ * Filtering in Vertex AI Search is done by mapping the LHS filter key to a
576
+ * key property defined in the Vertex AI Search backend -- this mapping is
577
+ * defined by the customer in their schema. For example a media customer might
578
+ * have a field 'name' in their schema. In this case the filter would look
579
+ * like this: filter --> name:'ANY("king kong")'
580
+ *
581
+ * For more information about filtering including syntax and filter
582
+ * operators, see
583
+ * [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
584
+ * @param {string} request.canonicalFilter
585
+ * The default filter that is applied when a user performs a search without
586
+ * checking any filters on the search page.
587
+ *
588
+ * The filter applied to every search request when quality improvement such as
589
+ * query expansion is needed. In the case a query does not have a sufficient
590
+ * amount of results this filter will be used to determine whether or not to
591
+ * enable the query expansion flow. The original filter will still be used for
592
+ * the query expanded search.
593
+ * This field is strongly recommended to achieve high search quality.
594
+ *
595
+ * For more information about filter syntax, see
596
+ * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.filter|SearchRequest.filter}.
500
597
  * @param {string} request.orderBy
501
598
  * The order in which documents are returned. Documents can be ordered by
502
599
  * a field in an {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
503
600
  * object. Leave it unset if ordered by relevance. `order_by` expression is
504
- * case-sensitive.
601
+ * case-sensitive. For more information on ordering, see
602
+ * [Ordering](https://cloud.google.com/retail/docs/filter-and-order#order)
505
603
  *
506
604
  * If this field is unrecognizable, an `INVALID_ARGUMENT` is returned.
507
605
  * @param {google.cloud.discoveryengine.v1alpha.UserInfo} request.userInfo
@@ -516,6 +614,8 @@ export declare class SearchServiceClient {
516
614
  * error is returned.
517
615
  * @param {google.cloud.discoveryengine.v1alpha.SearchRequest.BoostSpec} request.boostSpec
518
616
  * Boost specification to boost certain documents.
617
+ * For more information on boosting, see
618
+ * [Boosting](https://cloud.google.com/retail/docs/boosting#boost)
519
619
  * @param {number[]} request.params
520
620
  * Additional search parameters.
521
621
  *
@@ -523,9 +623,17 @@ export declare class SearchServiceClient {
523
623
  *
524
624
  * * `user_country_code`: string. Default empty. If set to non-empty, results
525
625
  * are restricted or boosted based on the location provided.
626
+ * Example:
627
+ * user_country_code: "au"
628
+ *
629
+ * For available codes see [Country
630
+ * Codes](https://developers.google.com/custom-search/docs/json_api_reference#countryCodes)
631
+ *
526
632
  * * `search_type`: double. Default empty. Enables non-webpage searching
527
- * depending on the value. The only valid non-default value is 1,
528
- * which enables image searching.
633
+ * depending on the value. The only valid non-default value is 1,
634
+ * which enables image searching.
635
+ * Example:
636
+ * search_type: 1
529
637
  * @param {google.cloud.discoveryengine.v1alpha.SearchRequest.QueryExpansionSpec} request.queryExpansionSpec
530
638
  * The query expansion specification that specifies the conditions under which
531
639
  * query expansion occurs.
@@ -664,6 +772,90 @@ export declare class SearchServiceClient {
664
772
  * ```
665
773
  */
666
774
  listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
775
+ /**
776
+ * Return a fully-qualified engine resource name string.
777
+ *
778
+ * @param {string} project
779
+ * @param {string} location
780
+ * @param {string} collection
781
+ * @param {string} engine
782
+ * @returns {string} Resource name string.
783
+ */
784
+ enginePath(project: string, location: string, collection: string, engine: string): string;
785
+ /**
786
+ * Parse the project from Engine resource.
787
+ *
788
+ * @param {string} engineName
789
+ * A fully-qualified path representing Engine resource.
790
+ * @returns {string} A string representing the project.
791
+ */
792
+ matchProjectFromEngineName(engineName: string): string | number;
793
+ /**
794
+ * Parse the location from Engine resource.
795
+ *
796
+ * @param {string} engineName
797
+ * A fully-qualified path representing Engine resource.
798
+ * @returns {string} A string representing the location.
799
+ */
800
+ matchLocationFromEngineName(engineName: string): string | number;
801
+ /**
802
+ * Parse the collection from Engine resource.
803
+ *
804
+ * @param {string} engineName
805
+ * A fully-qualified path representing Engine resource.
806
+ * @returns {string} A string representing the collection.
807
+ */
808
+ matchCollectionFromEngineName(engineName: string): string | number;
809
+ /**
810
+ * Parse the engine from Engine resource.
811
+ *
812
+ * @param {string} engineName
813
+ * A fully-qualified path representing Engine resource.
814
+ * @returns {string} A string representing the engine.
815
+ */
816
+ matchEngineFromEngineName(engineName: string): string | number;
817
+ /**
818
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
819
+ *
820
+ * @param {string} project
821
+ * @param {string} location
822
+ * @param {string} collection
823
+ * @param {string} data_store
824
+ * @returns {string} Resource name string.
825
+ */
826
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
827
+ /**
828
+ * Parse the project from ProjectLocationCollectionDataStore resource.
829
+ *
830
+ * @param {string} projectLocationCollectionDataStoreName
831
+ * A fully-qualified path representing project_location_collection_data_store resource.
832
+ * @returns {string} A string representing the project.
833
+ */
834
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
835
+ /**
836
+ * Parse the location from ProjectLocationCollectionDataStore resource.
837
+ *
838
+ * @param {string} projectLocationCollectionDataStoreName
839
+ * A fully-qualified path representing project_location_collection_data_store resource.
840
+ * @returns {string} A string representing the location.
841
+ */
842
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
843
+ /**
844
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
845
+ *
846
+ * @param {string} projectLocationCollectionDataStoreName
847
+ * A fully-qualified path representing project_location_collection_data_store resource.
848
+ * @returns {string} A string representing the collection.
849
+ */
850
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
851
+ /**
852
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
853
+ *
854
+ * @param {string} projectLocationCollectionDataStoreName
855
+ * A fully-qualified path representing project_location_collection_data_store resource.
856
+ * @returns {string} A string representing the data_store.
857
+ */
858
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
667
859
  /**
668
860
  * Return a fully-qualified projectLocationCollectionDataStoreBranch resource name string.
669
861
  *
@@ -928,6 +1120,150 @@ export declare class SearchServiceClient {
928
1120
  * @returns {string} A string representing the serving_config.
929
1121
  */
930
1122
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1123
+ /**
1124
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1125
+ *
1126
+ * @param {string} project
1127
+ * @param {string} location
1128
+ * @param {string} collection
1129
+ * @param {string} data_store
1130
+ * @returns {string} Resource name string.
1131
+ */
1132
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
1133
+ /**
1134
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1135
+ *
1136
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1137
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1138
+ * @returns {string} A string representing the project.
1139
+ */
1140
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1141
+ /**
1142
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1143
+ *
1144
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1145
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1146
+ * @returns {string} A string representing the location.
1147
+ */
1148
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1149
+ /**
1150
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1151
+ *
1152
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1153
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1154
+ * @returns {string} A string representing the collection.
1155
+ */
1156
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1157
+ /**
1158
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1159
+ *
1160
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1161
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1162
+ * @returns {string} A string representing the data_store.
1163
+ */
1164
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1165
+ /**
1166
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
1167
+ *
1168
+ * @param {string} project
1169
+ * @param {string} location
1170
+ * @param {string} collection
1171
+ * @param {string} data_store
1172
+ * @param {string} target_site
1173
+ * @returns {string} Resource name string.
1174
+ */
1175
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
1176
+ /**
1177
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1178
+ *
1179
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1180
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1181
+ * @returns {string} A string representing the project.
1182
+ */
1183
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1184
+ /**
1185
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1186
+ *
1187
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1188
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1189
+ * @returns {string} A string representing the location.
1190
+ */
1191
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1192
+ /**
1193
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1194
+ *
1195
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1196
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1197
+ * @returns {string} A string representing the collection.
1198
+ */
1199
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1200
+ /**
1201
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1202
+ *
1203
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1204
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1205
+ * @returns {string} A string representing the data_store.
1206
+ */
1207
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1208
+ /**
1209
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1210
+ *
1211
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1212
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1213
+ * @returns {string} A string representing the target_site.
1214
+ */
1215
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1216
+ /**
1217
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
1218
+ *
1219
+ * @param {string} project
1220
+ * @param {string} location
1221
+ * @param {string} collection
1222
+ * @param {string} engine
1223
+ * @param {string} conversation
1224
+ * @returns {string} Resource name string.
1225
+ */
1226
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
1227
+ /**
1228
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
1229
+ *
1230
+ * @param {string} projectLocationCollectionEngineConversationName
1231
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1232
+ * @returns {string} A string representing the project.
1233
+ */
1234
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1235
+ /**
1236
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
1237
+ *
1238
+ * @param {string} projectLocationCollectionEngineConversationName
1239
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1240
+ * @returns {string} A string representing the location.
1241
+ */
1242
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1243
+ /**
1244
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1245
+ *
1246
+ * @param {string} projectLocationCollectionEngineConversationName
1247
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1248
+ * @returns {string} A string representing the collection.
1249
+ */
1250
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1251
+ /**
1252
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1253
+ *
1254
+ * @param {string} projectLocationCollectionEngineConversationName
1255
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1256
+ * @returns {string} A string representing the engine.
1257
+ */
1258
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1259
+ /**
1260
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1261
+ *
1262
+ * @param {string} projectLocationCollectionEngineConversationName
1263
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1264
+ * @returns {string} A string representing the conversation.
1265
+ */
1266
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
931
1267
  /**
932
1268
  * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
933
1269
  *
@@ -979,6 +1315,39 @@ export declare class SearchServiceClient {
979
1315
  * @returns {string} A string representing the serving_config.
980
1316
  */
981
1317
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1318
+ /**
1319
+ * Return a fully-qualified projectLocationDataStore resource name string.
1320
+ *
1321
+ * @param {string} project
1322
+ * @param {string} location
1323
+ * @param {string} data_store
1324
+ * @returns {string} Resource name string.
1325
+ */
1326
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
1327
+ /**
1328
+ * Parse the project from ProjectLocationDataStore resource.
1329
+ *
1330
+ * @param {string} projectLocationDataStoreName
1331
+ * A fully-qualified path representing project_location_data_store resource.
1332
+ * @returns {string} A string representing the project.
1333
+ */
1334
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1335
+ /**
1336
+ * Parse the location from ProjectLocationDataStore resource.
1337
+ *
1338
+ * @param {string} projectLocationDataStoreName
1339
+ * A fully-qualified path representing project_location_data_store resource.
1340
+ * @returns {string} A string representing the location.
1341
+ */
1342
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1343
+ /**
1344
+ * Parse the data_store from ProjectLocationDataStore resource.
1345
+ *
1346
+ * @param {string} projectLocationDataStoreName
1347
+ * A fully-qualified path representing project_location_data_store resource.
1348
+ * @returns {string} A string representing the data_store.
1349
+ */
1350
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
982
1351
  /**
983
1352
  * Return a fully-qualified projectLocationDataStoreBranch resource name string.
984
1353
  *
@@ -1198,6 +1567,81 @@ export declare class SearchServiceClient {
1198
1567
  * @returns {string} A string representing the serving_config.
1199
1568
  */
1200
1569
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1570
+ /**
1571
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1572
+ *
1573
+ * @param {string} project
1574
+ * @param {string} location
1575
+ * @param {string} data_store
1576
+ * @returns {string} Resource name string.
1577
+ */
1578
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1579
+ /**
1580
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1581
+ *
1582
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1583
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1584
+ * @returns {string} A string representing the project.
1585
+ */
1586
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1587
+ /**
1588
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1589
+ *
1590
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1591
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1592
+ * @returns {string} A string representing the location.
1593
+ */
1594
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1595
+ /**
1596
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1597
+ *
1598
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1599
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1600
+ * @returns {string} A string representing the data_store.
1601
+ */
1602
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1603
+ /**
1604
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1605
+ *
1606
+ * @param {string} project
1607
+ * @param {string} location
1608
+ * @param {string} data_store
1609
+ * @param {string} target_site
1610
+ * @returns {string} Resource name string.
1611
+ */
1612
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1613
+ /**
1614
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1615
+ *
1616
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1617
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1618
+ * @returns {string} A string representing the project.
1619
+ */
1620
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1621
+ /**
1622
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1623
+ *
1624
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1625
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1626
+ * @returns {string} A string representing the location.
1627
+ */
1628
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1629
+ /**
1630
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1631
+ *
1632
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1633
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1634
+ * @returns {string} A string representing the data_store.
1635
+ */
1636
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1637
+ /**
1638
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1639
+ *
1640
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1641
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1642
+ * @returns {string} A string representing the target_site.
1643
+ */
1644
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1201
1645
  /**
1202
1646
  * Terminate the gRPC channel and close the client.
1203
1647
  *