@google-cloud/discoveryengine 1.3.1 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +51 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/common.proto +54 -3
  4. package/build/protos/google/cloud/discoveryengine/v1/completion.proto +52 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/completion_service.proto +51 -4
  6. package/build/protos/google/cloud/discoveryengine/v1/conversation.proto +3 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +40 -1
  8. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +98 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/data_store_service.proto +304 -0
  10. package/build/protos/google/cloud/discoveryengine/v1/document.proto +1 -1
  11. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +215 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/engine_service.proto +242 -0
  13. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +64 -0
  14. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +38 -0
  15. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +137 -4
  16. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +170 -0
  17. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto +691 -0
  18. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +3 -3
  19. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +59 -8
  20. package/build/protos/google/cloud/discoveryengine/v1beta/completion.proto +52 -0
  21. package/build/protos/google/cloud/discoveryengine/v1beta/completion_service.proto +51 -4
  22. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +3 -0
  23. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +40 -1
  24. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +98 -0
  25. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +306 -0
  26. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +1 -1
  27. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +220 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +244 -0
  29. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +64 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +38 -0
  31. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +26 -3
  32. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +150 -11
  33. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +264 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +147 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +170 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine_service.proto +695 -0
  37. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +4 -3
  38. package/build/protos/protos.d.ts +41157 -23655
  39. package/build/protos/protos.js +103188 -62466
  40. package/build/protos/protos.json +10400 -6075
  41. package/build/src/index.d.ts +10 -1
  42. package/build/src/index.js +10 -1
  43. package/build/src/v1/completion_service_client.d.ts +489 -7
  44. package/build/src/v1/completion_service_client.js +715 -11
  45. package/build/src/v1/completion_service_client_config.json +10 -0
  46. package/build/src/v1/conversational_search_service_client.d.ts +341 -3
  47. package/build/src/v1/conversational_search_service_client.js +466 -9
  48. package/build/src/v1/data_store_service_client.d.ts +1286 -0
  49. package/build/src/v1/data_store_service_client.js +1768 -0
  50. package/build/src/v1/data_store_service_client_config.json +46 -0
  51. package/build/src/v1/document_service_client.d.ts +347 -2
  52. package/build/src/v1/document_service_client.js +506 -9
  53. package/build/src/v1/engine_service_client.d.ts +1211 -0
  54. package/build/src/v1/engine_service_client.js +1731 -0
  55. package/build/src/v1/engine_service_client_config.json +46 -0
  56. package/build/src/v1/index.d.ts +3 -0
  57. package/build/src/v1/index.js +7 -1
  58. package/build/src/v1/schema_service_client.d.ts +272 -2
  59. package/build/src/v1/schema_service_client.js +402 -9
  60. package/build/src/v1/search_service_client.d.ts +515 -11
  61. package/build/src/v1/search_service_client.js +648 -15
  62. package/build/src/v1/site_search_engine_service_client.d.ts +1564 -0
  63. package/build/src/v1/site_search_engine_service_client.js +2075 -0
  64. package/build/src/v1/site_search_engine_service_client_config.json +74 -0
  65. package/build/src/v1/user_event_service_client.d.ts +272 -2
  66. package/build/src/v1/user_event_service_client.js +402 -9
  67. package/build/src/v1alpha/completion_service_client.d.ts +11 -2
  68. package/build/src/v1alpha/completion_service_client.js +37 -10
  69. package/build/src/v1alpha/conversational_search_service_client.d.ts +11 -2
  70. package/build/src/v1alpha/conversational_search_service_client.js +37 -10
  71. package/build/src/v1alpha/data_store_service_client.d.ts +11 -2
  72. package/build/src/v1alpha/data_store_service_client.js +37 -10
  73. package/build/src/v1alpha/document_service_client.d.ts +11 -2
  74. package/build/src/v1alpha/document_service_client.js +37 -10
  75. package/build/src/v1alpha/engine_service_client.d.ts +11 -2
  76. package/build/src/v1alpha/engine_service_client.js +37 -10
  77. package/build/src/v1alpha/index.js +1 -1
  78. package/build/src/v1alpha/recommendation_service_client.d.ts +11 -2
  79. package/build/src/v1alpha/recommendation_service_client.js +37 -10
  80. package/build/src/v1alpha/schema_service_client.d.ts +11 -2
  81. package/build/src/v1alpha/schema_service_client.js +37 -10
  82. package/build/src/v1alpha/search_service_client.d.ts +11 -2
  83. package/build/src/v1alpha/search_service_client.js +37 -10
  84. package/build/src/v1alpha/search_tuning_service_client.d.ts +11 -2
  85. package/build/src/v1alpha/search_tuning_service_client.js +37 -10
  86. package/build/src/v1alpha/site_search_engine_service_client.d.ts +11 -2
  87. package/build/src/v1alpha/site_search_engine_service_client.js +37 -10
  88. package/build/src/v1alpha/user_event_service_client.d.ts +11 -2
  89. package/build/src/v1alpha/user_event_service_client.js +37 -10
  90. package/build/src/v1beta/completion_service_client.d.ts +633 -7
  91. package/build/src/v1beta/completion_service_client.js +911 -11
  92. package/build/src/v1beta/completion_service_client_config.json +10 -0
  93. package/build/src/v1beta/conversational_search_service_client.d.ts +341 -3
  94. package/build/src/v1beta/conversational_search_service_client.js +466 -9
  95. package/build/src/v1beta/data_store_service_client.d.ts +1433 -0
  96. package/build/src/v1beta/data_store_service_client.js +1966 -0
  97. package/build/src/v1beta/data_store_service_client_config.json +46 -0
  98. package/build/src/v1beta/document_service_client.d.ts +491 -2
  99. package/build/src/v1beta/document_service_client.js +706 -11
  100. package/build/src/v1beta/engine_service_client.d.ts +1357 -0
  101. package/build/src/v1beta/engine_service_client.js +1928 -0
  102. package/build/src/v1beta/engine_service_client_config.json +46 -0
  103. package/build/src/v1beta/index.d.ts +4 -0
  104. package/build/src/v1beta/index.js +9 -1
  105. package/build/src/v1beta/recommendation_service_client.d.ts +420 -5
  106. package/build/src/v1beta/recommendation_service_client.js +570 -9
  107. package/build/src/v1beta/schema_service_client.d.ts +416 -2
  108. package/build/src/v1beta/schema_service_client.js +602 -11
  109. package/build/src/v1beta/search_service_client.d.ts +539 -29
  110. package/build/src/v1beta/search_service_client.js +664 -27
  111. package/build/src/v1beta/serving_config_service_client.d.ts +1102 -0
  112. package/build/src/v1beta/serving_config_service_client.js +1563 -0
  113. package/build/src/v1beta/serving_config_service_client_config.json +38 -0
  114. package/build/src/v1beta/site_search_engine_service_client.d.ts +1712 -0
  115. package/build/src/v1beta/site_search_engine_service_client.js +2271 -0
  116. package/build/src/v1beta/site_search_engine_service_client_config.json +74 -0
  117. package/build/src/v1beta/user_event_service_client.d.ts +416 -2
  118. package/build/src/v1beta/user_event_service_client.js +602 -11
  119. package/package.json +2 -2
@@ -0,0 +1,74 @@
1
+ {
2
+ "interfaces": {
3
+ "google.cloud.discoveryengine.v1beta.SiteSearchEngineService": {
4
+ "retry_codes": {
5
+ "non_idempotent": [],
6
+ "idempotent": [
7
+ "DEADLINE_EXCEEDED",
8
+ "UNAVAILABLE"
9
+ ]
10
+ },
11
+ "retry_params": {
12
+ "default": {
13
+ "initial_retry_delay_millis": 100,
14
+ "retry_delay_multiplier": 1.3,
15
+ "max_retry_delay_millis": 60000,
16
+ "initial_rpc_timeout_millis": 60000,
17
+ "rpc_timeout_multiplier": 1,
18
+ "max_rpc_timeout_millis": 60000,
19
+ "total_timeout_millis": 600000
20
+ }
21
+ },
22
+ "methods": {
23
+ "GetSiteSearchEngine": {
24
+ "retry_codes_name": "non_idempotent",
25
+ "retry_params_name": "default"
26
+ },
27
+ "CreateTargetSite": {
28
+ "retry_codes_name": "non_idempotent",
29
+ "retry_params_name": "default"
30
+ },
31
+ "BatchCreateTargetSites": {
32
+ "retry_codes_name": "non_idempotent",
33
+ "retry_params_name": "default"
34
+ },
35
+ "GetTargetSite": {
36
+ "retry_codes_name": "non_idempotent",
37
+ "retry_params_name": "default"
38
+ },
39
+ "UpdateTargetSite": {
40
+ "retry_codes_name": "non_idempotent",
41
+ "retry_params_name": "default"
42
+ },
43
+ "DeleteTargetSite": {
44
+ "retry_codes_name": "non_idempotent",
45
+ "retry_params_name": "default"
46
+ },
47
+ "ListTargetSites": {
48
+ "retry_codes_name": "non_idempotent",
49
+ "retry_params_name": "default"
50
+ },
51
+ "EnableAdvancedSiteSearch": {
52
+ "retry_codes_name": "non_idempotent",
53
+ "retry_params_name": "default"
54
+ },
55
+ "DisableAdvancedSiteSearch": {
56
+ "retry_codes_name": "non_idempotent",
57
+ "retry_params_name": "default"
58
+ },
59
+ "RecrawlUris": {
60
+ "retry_codes_name": "non_idempotent",
61
+ "retry_params_name": "default"
62
+ },
63
+ "BatchVerifyTargetSites": {
64
+ "retry_codes_name": "non_idempotent",
65
+ "retry_params_name": "default"
66
+ },
67
+ "FetchDomainVerificationStatus": {
68
+ "retry_codes_name": "non_idempotent",
69
+ "retry_params_name": "default"
70
+ }
71
+ }
72
+ }
73
+ }
74
+ }
@@ -14,6 +14,8 @@ export declare class UserEventServiceClient {
14
14
  private _gaxGrpc;
15
15
  private _protos;
16
16
  private _defaults;
17
+ private _universeDomain;
18
+ private _servicePath;
17
19
  auth: gax.GoogleAuth;
18
20
  descriptors: Descriptors;
19
21
  warn: (code: string, message: string, warnType?: string) => void;
@@ -84,15 +86,22 @@ export declare class UserEventServiceClient {
84
86
  }>;
85
87
  /**
86
88
  * The DNS address for this API service.
89
+ * @deprecated Use the apiEndpoint method of the client instance.
87
90
  * @returns {string} The DNS address for this service.
88
91
  */
89
92
  static get servicePath(): string;
90
93
  /**
91
- * The DNS address for this API service - same as servicePath(),
92
- * exists for compatibility reasons.
94
+ * The DNS address for this API service - same as servicePath.
95
+ * @deprecated Use the apiEndpoint method of the client instance.
93
96
  * @returns {string} The DNS address for this service.
94
97
  */
95
98
  static get apiEndpoint(): string;
99
+ /**
100
+ * The DNS address for this API service.
101
+ * @returns {string} The DNS address for this service.
102
+ */
103
+ get apiEndpoint(): string;
104
+ get universeDomain(): string;
96
105
  /**
97
106
  * The port for this API service.
98
107
  * @returns {number} The default port for this service.
@@ -396,6 +405,48 @@ export declare class UserEventServiceClient {
396
405
  * ```
397
406
  */
398
407
  deleteOperation(request: protos.google.longrunning.DeleteOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>): Promise<protos.google.protobuf.Empty>;
408
+ /**
409
+ * Return a fully-qualified engine resource name string.
410
+ *
411
+ * @param {string} project
412
+ * @param {string} location
413
+ * @param {string} collection
414
+ * @param {string} engine
415
+ * @returns {string} Resource name string.
416
+ */
417
+ enginePath(project: string, location: string, collection: string, engine: string): string;
418
+ /**
419
+ * Parse the project from Engine resource.
420
+ *
421
+ * @param {string} engineName
422
+ * A fully-qualified path representing Engine resource.
423
+ * @returns {string} A string representing the project.
424
+ */
425
+ matchProjectFromEngineName(engineName: string): string | number;
426
+ /**
427
+ * Parse the location from Engine resource.
428
+ *
429
+ * @param {string} engineName
430
+ * A fully-qualified path representing Engine resource.
431
+ * @returns {string} A string representing the location.
432
+ */
433
+ matchLocationFromEngineName(engineName: string): string | number;
434
+ /**
435
+ * Parse the collection from Engine resource.
436
+ *
437
+ * @param {string} engineName
438
+ * A fully-qualified path representing Engine resource.
439
+ * @returns {string} A string representing the collection.
440
+ */
441
+ matchCollectionFromEngineName(engineName: string): string | number;
442
+ /**
443
+ * Parse the engine from Engine resource.
444
+ *
445
+ * @param {string} engineName
446
+ * A fully-qualified path representing Engine resource.
447
+ * @returns {string} A string representing the engine.
448
+ */
449
+ matchEngineFromEngineName(engineName: string): string | number;
399
450
  /**
400
451
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
401
452
  *
@@ -600,6 +651,252 @@ export declare class UserEventServiceClient {
600
651
  * @returns {string} A string representing the schema.
601
652
  */
602
653
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
654
+ /**
655
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
656
+ *
657
+ * @param {string} project
658
+ * @param {string} location
659
+ * @param {string} collection
660
+ * @param {string} data_store
661
+ * @param {string} serving_config
662
+ * @returns {string} Resource name string.
663
+ */
664
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
665
+ /**
666
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
667
+ *
668
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
669
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
670
+ * @returns {string} A string representing the project.
671
+ */
672
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
673
+ /**
674
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
675
+ *
676
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
677
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
678
+ * @returns {string} A string representing the location.
679
+ */
680
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
681
+ /**
682
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
683
+ *
684
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
685
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
686
+ * @returns {string} A string representing the collection.
687
+ */
688
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
689
+ /**
690
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
691
+ *
692
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
693
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
694
+ * @returns {string} A string representing the data_store.
695
+ */
696
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
697
+ /**
698
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
699
+ *
700
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
701
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
702
+ * @returns {string} A string representing the serving_config.
703
+ */
704
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
705
+ /**
706
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
707
+ *
708
+ * @param {string} project
709
+ * @param {string} location
710
+ * @param {string} collection
711
+ * @param {string} data_store
712
+ * @returns {string} Resource name string.
713
+ */
714
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
715
+ /**
716
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
717
+ *
718
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
719
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
720
+ * @returns {string} A string representing the project.
721
+ */
722
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
723
+ /**
724
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
725
+ *
726
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
727
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
728
+ * @returns {string} A string representing the location.
729
+ */
730
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
731
+ /**
732
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
733
+ *
734
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
735
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
736
+ * @returns {string} A string representing the collection.
737
+ */
738
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
739
+ /**
740
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
741
+ *
742
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
743
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
744
+ * @returns {string} A string representing the data_store.
745
+ */
746
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
747
+ /**
748
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
749
+ *
750
+ * @param {string} project
751
+ * @param {string} location
752
+ * @param {string} collection
753
+ * @param {string} data_store
754
+ * @param {string} target_site
755
+ * @returns {string} Resource name string.
756
+ */
757
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
758
+ /**
759
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
760
+ *
761
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
762
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
763
+ * @returns {string} A string representing the project.
764
+ */
765
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
766
+ /**
767
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
768
+ *
769
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
770
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
771
+ * @returns {string} A string representing the location.
772
+ */
773
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
774
+ /**
775
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
776
+ *
777
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
778
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
779
+ * @returns {string} A string representing the collection.
780
+ */
781
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
782
+ /**
783
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
784
+ *
785
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
786
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
787
+ * @returns {string} A string representing the data_store.
788
+ */
789
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
790
+ /**
791
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
792
+ *
793
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
794
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
795
+ * @returns {string} A string representing the target_site.
796
+ */
797
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
798
+ /**
799
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
800
+ *
801
+ * @param {string} project
802
+ * @param {string} location
803
+ * @param {string} collection
804
+ * @param {string} engine
805
+ * @param {string} conversation
806
+ * @returns {string} Resource name string.
807
+ */
808
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
809
+ /**
810
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
811
+ *
812
+ * @param {string} projectLocationCollectionEngineConversationName
813
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
814
+ * @returns {string} A string representing the project.
815
+ */
816
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
817
+ /**
818
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
819
+ *
820
+ * @param {string} projectLocationCollectionEngineConversationName
821
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
822
+ * @returns {string} A string representing the location.
823
+ */
824
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
825
+ /**
826
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
827
+ *
828
+ * @param {string} projectLocationCollectionEngineConversationName
829
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
830
+ * @returns {string} A string representing the collection.
831
+ */
832
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
833
+ /**
834
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
835
+ *
836
+ * @param {string} projectLocationCollectionEngineConversationName
837
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
838
+ * @returns {string} A string representing the engine.
839
+ */
840
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
841
+ /**
842
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
843
+ *
844
+ * @param {string} projectLocationCollectionEngineConversationName
845
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
846
+ * @returns {string} A string representing the conversation.
847
+ */
848
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
849
+ /**
850
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
851
+ *
852
+ * @param {string} project
853
+ * @param {string} location
854
+ * @param {string} collection
855
+ * @param {string} engine
856
+ * @param {string} serving_config
857
+ * @returns {string} Resource name string.
858
+ */
859
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
860
+ /**
861
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
862
+ *
863
+ * @param {string} projectLocationCollectionEngineServingConfigName
864
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
865
+ * @returns {string} A string representing the project.
866
+ */
867
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
868
+ /**
869
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
870
+ *
871
+ * @param {string} projectLocationCollectionEngineServingConfigName
872
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
873
+ * @returns {string} A string representing the location.
874
+ */
875
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
876
+ /**
877
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
878
+ *
879
+ * @param {string} projectLocationCollectionEngineServingConfigName
880
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
881
+ * @returns {string} A string representing the collection.
882
+ */
883
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
884
+ /**
885
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
886
+ *
887
+ * @param {string} projectLocationCollectionEngineServingConfigName
888
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
889
+ * @returns {string} A string representing the engine.
890
+ */
891
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
892
+ /**
893
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
894
+ *
895
+ * @param {string} projectLocationCollectionEngineServingConfigName
896
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
897
+ * @returns {string} A string representing the serving_config.
898
+ */
899
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
603
900
  /**
604
901
  * Return a fully-qualified projectLocationDataStore resource name string.
605
902
  *
@@ -768,6 +1065,123 @@ export declare class UserEventServiceClient {
768
1065
  * @returns {string} A string representing the schema.
769
1066
  */
770
1067
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1068
+ /**
1069
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1070
+ *
1071
+ * @param {string} project
1072
+ * @param {string} location
1073
+ * @param {string} data_store
1074
+ * @param {string} serving_config
1075
+ * @returns {string} Resource name string.
1076
+ */
1077
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1078
+ /**
1079
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1080
+ *
1081
+ * @param {string} projectLocationDataStoreServingConfigName
1082
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1083
+ * @returns {string} A string representing the project.
1084
+ */
1085
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1086
+ /**
1087
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1088
+ *
1089
+ * @param {string} projectLocationDataStoreServingConfigName
1090
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1091
+ * @returns {string} A string representing the location.
1092
+ */
1093
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1094
+ /**
1095
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1096
+ *
1097
+ * @param {string} projectLocationDataStoreServingConfigName
1098
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1099
+ * @returns {string} A string representing the data_store.
1100
+ */
1101
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1102
+ /**
1103
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1104
+ *
1105
+ * @param {string} projectLocationDataStoreServingConfigName
1106
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1107
+ * @returns {string} A string representing the serving_config.
1108
+ */
1109
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1110
+ /**
1111
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1112
+ *
1113
+ * @param {string} project
1114
+ * @param {string} location
1115
+ * @param {string} data_store
1116
+ * @returns {string} Resource name string.
1117
+ */
1118
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1119
+ /**
1120
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1121
+ *
1122
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1123
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1124
+ * @returns {string} A string representing the project.
1125
+ */
1126
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1127
+ /**
1128
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1129
+ *
1130
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1131
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1132
+ * @returns {string} A string representing the location.
1133
+ */
1134
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1135
+ /**
1136
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1137
+ *
1138
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1139
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1140
+ * @returns {string} A string representing the data_store.
1141
+ */
1142
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1143
+ /**
1144
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1145
+ *
1146
+ * @param {string} project
1147
+ * @param {string} location
1148
+ * @param {string} data_store
1149
+ * @param {string} target_site
1150
+ * @returns {string} Resource name string.
1151
+ */
1152
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1153
+ /**
1154
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1155
+ *
1156
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1157
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1158
+ * @returns {string} A string representing the project.
1159
+ */
1160
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1161
+ /**
1162
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1163
+ *
1164
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1165
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1166
+ * @returns {string} A string representing the location.
1167
+ */
1168
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1169
+ /**
1170
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1171
+ *
1172
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1173
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1174
+ * @returns {string} A string representing the data_store.
1175
+ */
1176
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1177
+ /**
1178
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1179
+ *
1180
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1181
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1182
+ * @returns {string} A string representing the target_site.
1183
+ */
1184
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
771
1185
  /**
772
1186
  * Terminate the gRPC channel and close the client.
773
1187
  *