@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.v1.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,150 @@ 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 projectLocationCollectionDataStoreSiteSearchEngine resource name string.
656
+ *
657
+ * @param {string} project
658
+ * @param {string} location
659
+ * @param {string} collection
660
+ * @param {string} data_store
661
+ * @returns {string} Resource name string.
662
+ */
663
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
664
+ /**
665
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
666
+ *
667
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
668
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
669
+ * @returns {string} A string representing the project.
670
+ */
671
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
672
+ /**
673
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
674
+ *
675
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
676
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
677
+ * @returns {string} A string representing the location.
678
+ */
679
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
680
+ /**
681
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
682
+ *
683
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
684
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
685
+ * @returns {string} A string representing the collection.
686
+ */
687
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
688
+ /**
689
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
690
+ *
691
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
692
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
693
+ * @returns {string} A string representing the data_store.
694
+ */
695
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
696
+ /**
697
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
698
+ *
699
+ * @param {string} project
700
+ * @param {string} location
701
+ * @param {string} collection
702
+ * @param {string} data_store
703
+ * @param {string} target_site
704
+ * @returns {string} Resource name string.
705
+ */
706
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
707
+ /**
708
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
709
+ *
710
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
711
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
712
+ * @returns {string} A string representing the project.
713
+ */
714
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
715
+ /**
716
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
717
+ *
718
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
719
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
720
+ * @returns {string} A string representing the location.
721
+ */
722
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
723
+ /**
724
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
725
+ *
726
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
727
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
728
+ * @returns {string} A string representing the collection.
729
+ */
730
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
731
+ /**
732
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
733
+ *
734
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
735
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
736
+ * @returns {string} A string representing the data_store.
737
+ */
738
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
739
+ /**
740
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
741
+ *
742
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
743
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
744
+ * @returns {string} A string representing the target_site.
745
+ */
746
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
747
+ /**
748
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
749
+ *
750
+ * @param {string} project
751
+ * @param {string} location
752
+ * @param {string} collection
753
+ * @param {string} engine
754
+ * @param {string} conversation
755
+ * @returns {string} Resource name string.
756
+ */
757
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
758
+ /**
759
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
760
+ *
761
+ * @param {string} projectLocationCollectionEngineConversationName
762
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
763
+ * @returns {string} A string representing the project.
764
+ */
765
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
766
+ /**
767
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
768
+ *
769
+ * @param {string} projectLocationCollectionEngineConversationName
770
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
771
+ * @returns {string} A string representing the location.
772
+ */
773
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
774
+ /**
775
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
776
+ *
777
+ * @param {string} projectLocationCollectionEngineConversationName
778
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
779
+ * @returns {string} A string representing the collection.
780
+ */
781
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
782
+ /**
783
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
784
+ *
785
+ * @param {string} projectLocationCollectionEngineConversationName
786
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
787
+ * @returns {string} A string representing the engine.
788
+ */
789
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
790
+ /**
791
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
792
+ *
793
+ * @param {string} projectLocationCollectionEngineConversationName
794
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
795
+ * @returns {string} A string representing the conversation.
796
+ */
797
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
603
798
  /**
604
799
  * Return a fully-qualified projectLocationDataStore resource name string.
605
800
  *
@@ -768,6 +963,81 @@ export declare class UserEventServiceClient {
768
963
  * @returns {string} A string representing the schema.
769
964
  */
770
965
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
966
+ /**
967
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
968
+ *
969
+ * @param {string} project
970
+ * @param {string} location
971
+ * @param {string} data_store
972
+ * @returns {string} Resource name string.
973
+ */
974
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
975
+ /**
976
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
977
+ *
978
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
979
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
980
+ * @returns {string} A string representing the project.
981
+ */
982
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
983
+ /**
984
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
985
+ *
986
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
987
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
988
+ * @returns {string} A string representing the location.
989
+ */
990
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
991
+ /**
992
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
993
+ *
994
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
995
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
996
+ * @returns {string} A string representing the data_store.
997
+ */
998
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
999
+ /**
1000
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1001
+ *
1002
+ * @param {string} project
1003
+ * @param {string} location
1004
+ * @param {string} data_store
1005
+ * @param {string} target_site
1006
+ * @returns {string} Resource name string.
1007
+ */
1008
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1009
+ /**
1010
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1011
+ *
1012
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1013
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1014
+ * @returns {string} A string representing the project.
1015
+ */
1016
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1017
+ /**
1018
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1019
+ *
1020
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1021
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1022
+ * @returns {string} A string representing the location.
1023
+ */
1024
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1025
+ /**
1026
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1027
+ *
1028
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1029
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1030
+ * @returns {string} A string representing the data_store.
1031
+ */
1032
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1033
+ /**
1034
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1035
+ *
1036
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1037
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1038
+ * @returns {string} A string representing the target_site.
1039
+ */
1040
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
771
1041
  /**
772
1042
  * Terminate the gRPC channel and close the client.
773
1043
  *