@google-cloud/discoveryengine 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +63 -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/v1alpha/common.proto +0 -5
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +3 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +39 -0
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +1 -1
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +1 -1
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +97 -0
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +147 -0
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +164 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +540 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +59 -8
  29. package/build/protos/google/cloud/discoveryengine/v1beta/completion.proto +52 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/completion_service.proto +51 -4
  31. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +3 -0
  32. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +40 -1
  33. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +98 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +306 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +1 -1
  36. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +220 -0
  37. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +244 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +64 -0
  39. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +38 -0
  40. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +26 -3
  41. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +150 -11
  42. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +264 -0
  43. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +147 -0
  44. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +170 -0
  45. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine_service.proto +695 -0
  46. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +4 -3
  47. package/build/protos/protos.d.ts +42822 -21397
  48. package/build/protos/protos.js +110509 -61572
  49. package/build/protos/protos.json +11779 -6752
  50. package/build/src/index.d.ts +10 -1
  51. package/build/src/index.js +11 -2
  52. package/build/src/v1/completion_service_client.d.ts +489 -7
  53. package/build/src/v1/completion_service_client.js +716 -12
  54. package/build/src/v1/completion_service_client_config.json +10 -0
  55. package/build/src/v1/conversational_search_service_client.d.ts +341 -3
  56. package/build/src/v1/conversational_search_service_client.js +467 -10
  57. package/build/src/v1/data_store_service_client.d.ts +1286 -0
  58. package/build/src/v1/data_store_service_client.js +1768 -0
  59. package/build/src/v1/data_store_service_client_config.json +46 -0
  60. package/build/src/v1/document_service_client.d.ts +347 -2
  61. package/build/src/v1/document_service_client.js +507 -10
  62. package/build/src/v1/engine_service_client.d.ts +1211 -0
  63. package/build/src/v1/engine_service_client.js +1731 -0
  64. package/build/src/v1/engine_service_client_config.json +46 -0
  65. package/build/src/v1/index.d.ts +3 -0
  66. package/build/src/v1/index.js +8 -2
  67. package/build/src/v1/schema_service_client.d.ts +272 -2
  68. package/build/src/v1/schema_service_client.js +403 -10
  69. package/build/src/v1/search_service_client.d.ts +515 -11
  70. package/build/src/v1/search_service_client.js +649 -16
  71. package/build/src/v1/site_search_engine_service_client.d.ts +1564 -0
  72. package/build/src/v1/site_search_engine_service_client.js +2075 -0
  73. package/build/src/v1/site_search_engine_service_client_config.json +74 -0
  74. package/build/src/v1/user_event_service_client.d.ts +272 -2
  75. package/build/src/v1/user_event_service_client.js +403 -10
  76. package/build/src/v1alpha/completion_service_client.d.ts +230 -2
  77. package/build/src/v1alpha/completion_service_client.js +339 -10
  78. package/build/src/v1alpha/conversational_search_service_client.d.ts +247 -2
  79. package/build/src/v1alpha/conversational_search_service_client.js +339 -10
  80. package/build/src/v1alpha/data_store_service_client.d.ts +230 -2
  81. package/build/src/v1alpha/data_store_service_client.js +347 -12
  82. package/build/src/v1alpha/document_service_client.d.ts +230 -2
  83. package/build/src/v1alpha/document_service_client.js +347 -12
  84. package/build/src/v1alpha/engine_service_client.d.ts +231 -3
  85. package/build/src/v1alpha/engine_service_client.js +347 -12
  86. package/build/src/v1alpha/index.d.ts +1 -0
  87. package/build/src/v1alpha/index.js +4 -2
  88. package/build/src/v1alpha/recommendation_service_client.d.ts +230 -2
  89. package/build/src/v1alpha/recommendation_service_client.js +339 -10
  90. package/build/src/v1alpha/schema_service_client.d.ts +230 -2
  91. package/build/src/v1alpha/schema_service_client.js +347 -12
  92. package/build/src/v1alpha/search_service_client.d.ts +269 -2
  93. package/build/src/v1alpha/search_service_client.js +365 -10
  94. package/build/src/v1alpha/search_tuning_service_client.d.ts +977 -0
  95. package/build/src/v1alpha/search_tuning_service_client.js +1479 -0
  96. package/build/src/v1alpha/search_tuning_service_client_config.json +30 -0
  97. package/build/src/v1alpha/site_search_engine_service_client.d.ts +750 -3
  98. package/build/src/v1alpha/site_search_engine_service_client.js +838 -14
  99. package/build/src/v1alpha/site_search_engine_service_client_config.json +44 -0
  100. package/build/src/v1alpha/user_event_service_client.d.ts +230 -2
  101. package/build/src/v1alpha/user_event_service_client.js +347 -12
  102. package/build/src/v1beta/completion_service_client.d.ts +633 -7
  103. package/build/src/v1beta/completion_service_client.js +912 -12
  104. package/build/src/v1beta/completion_service_client_config.json +10 -0
  105. package/build/src/v1beta/conversational_search_service_client.d.ts +341 -3
  106. package/build/src/v1beta/conversational_search_service_client.js +467 -10
  107. package/build/src/v1beta/data_store_service_client.d.ts +1433 -0
  108. package/build/src/v1beta/data_store_service_client.js +1966 -0
  109. package/build/src/v1beta/data_store_service_client_config.json +46 -0
  110. package/build/src/v1beta/document_service_client.d.ts +491 -2
  111. package/build/src/v1beta/document_service_client.js +707 -12
  112. package/build/src/v1beta/engine_service_client.d.ts +1357 -0
  113. package/build/src/v1beta/engine_service_client.js +1928 -0
  114. package/build/src/v1beta/engine_service_client_config.json +46 -0
  115. package/build/src/v1beta/index.d.ts +4 -0
  116. package/build/src/v1beta/index.js +10 -2
  117. package/build/src/v1beta/recommendation_service_client.d.ts +420 -5
  118. package/build/src/v1beta/recommendation_service_client.js +571 -10
  119. package/build/src/v1beta/schema_service_client.d.ts +416 -2
  120. package/build/src/v1beta/schema_service_client.js +603 -12
  121. package/build/src/v1beta/search_service_client.d.ts +539 -29
  122. package/build/src/v1beta/search_service_client.js +665 -28
  123. package/build/src/v1beta/serving_config_service_client.d.ts +1102 -0
  124. package/build/src/v1beta/serving_config_service_client.js +1563 -0
  125. package/build/src/v1beta/serving_config_service_client_config.json +38 -0
  126. package/build/src/v1beta/site_search_engine_service_client.d.ts +1712 -0
  127. package/build/src/v1beta/site_search_engine_service_client.js +2271 -0
  128. package/build/src/v1beta/site_search_engine_service_client_config.json +74 -0
  129. package/build/src/v1beta/user_event_service_client.d.ts +416 -2
  130. package/build/src/v1beta/user_event_service_client.js +603 -12
  131. package/package.json +3 -3
@@ -20,9 +20,53 @@
20
20
  }
21
21
  },
22
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
+ },
23
59
  "RecrawlUris": {
24
60
  "retry_codes_name": "non_idempotent",
25
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"
26
70
  }
27
71
  }
28
72
  }
@@ -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.
@@ -717,6 +726,150 @@ export declare class UserEventServiceClient {
717
726
  * @returns {string} A string representing the schema.
718
727
  */
719
728
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
729
+ /**
730
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
731
+ *
732
+ * @param {string} project
733
+ * @param {string} location
734
+ * @param {string} collection
735
+ * @param {string} data_store
736
+ * @returns {string} Resource name string.
737
+ */
738
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
739
+ /**
740
+ * Parse the project 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 project.
745
+ */
746
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
747
+ /**
748
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
749
+ *
750
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
751
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
752
+ * @returns {string} A string representing the location.
753
+ */
754
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
755
+ /**
756
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
757
+ *
758
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
759
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
760
+ * @returns {string} A string representing the collection.
761
+ */
762
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
763
+ /**
764
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
765
+ *
766
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
767
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
768
+ * @returns {string} A string representing the data_store.
769
+ */
770
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
771
+ /**
772
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
773
+ *
774
+ * @param {string} project
775
+ * @param {string} location
776
+ * @param {string} collection
777
+ * @param {string} data_store
778
+ * @param {string} target_site
779
+ * @returns {string} Resource name string.
780
+ */
781
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
782
+ /**
783
+ * Parse the project 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 project.
788
+ */
789
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
790
+ /**
791
+ * Parse the location 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 location.
796
+ */
797
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
798
+ /**
799
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
800
+ *
801
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
802
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
803
+ * @returns {string} A string representing the collection.
804
+ */
805
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
806
+ /**
807
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
808
+ *
809
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
810
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
811
+ * @returns {string} A string representing the data_store.
812
+ */
813
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
814
+ /**
815
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
816
+ *
817
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
818
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
819
+ * @returns {string} A string representing the target_site.
820
+ */
821
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
822
+ /**
823
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
824
+ *
825
+ * @param {string} project
826
+ * @param {string} location
827
+ * @param {string} collection
828
+ * @param {string} engine
829
+ * @param {string} conversation
830
+ * @returns {string} Resource name string.
831
+ */
832
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
833
+ /**
834
+ * Parse the project 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 project.
839
+ */
840
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
841
+ /**
842
+ * Parse the location 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 location.
847
+ */
848
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
849
+ /**
850
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
851
+ *
852
+ * @param {string} projectLocationCollectionEngineConversationName
853
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
854
+ * @returns {string} A string representing the collection.
855
+ */
856
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
857
+ /**
858
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
859
+ *
860
+ * @param {string} projectLocationCollectionEngineConversationName
861
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
862
+ * @returns {string} A string representing the engine.
863
+ */
864
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
865
+ /**
866
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
867
+ *
868
+ * @param {string} projectLocationCollectionEngineConversationName
869
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
870
+ * @returns {string} A string representing the conversation.
871
+ */
872
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
720
873
  /**
721
874
  * Return a fully-qualified projectLocationDataStore resource name string.
722
875
  *
@@ -885,6 +1038,81 @@ export declare class UserEventServiceClient {
885
1038
  * @returns {string} A string representing the schema.
886
1039
  */
887
1040
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1041
+ /**
1042
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1043
+ *
1044
+ * @param {string} project
1045
+ * @param {string} location
1046
+ * @param {string} data_store
1047
+ * @returns {string} Resource name string.
1048
+ */
1049
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1050
+ /**
1051
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1052
+ *
1053
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1054
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1055
+ * @returns {string} A string representing the project.
1056
+ */
1057
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1058
+ /**
1059
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1060
+ *
1061
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1062
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1063
+ * @returns {string} A string representing the location.
1064
+ */
1065
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1066
+ /**
1067
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1068
+ *
1069
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1070
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1071
+ * @returns {string} A string representing the data_store.
1072
+ */
1073
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1074
+ /**
1075
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1076
+ *
1077
+ * @param {string} project
1078
+ * @param {string} location
1079
+ * @param {string} data_store
1080
+ * @param {string} target_site
1081
+ * @returns {string} Resource name string.
1082
+ */
1083
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1084
+ /**
1085
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1086
+ *
1087
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1088
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1089
+ * @returns {string} A string representing the project.
1090
+ */
1091
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1092
+ /**
1093
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1094
+ *
1095
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1096
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1097
+ * @returns {string} A string representing the location.
1098
+ */
1099
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1100
+ /**
1101
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1102
+ *
1103
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1104
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1105
+ * @returns {string} A string representing the data_store.
1106
+ */
1107
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1108
+ /**
1109
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1110
+ *
1111
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1112
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1113
+ * @returns {string} A string representing the target_site.
1114
+ */
1115
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
888
1116
  /**
889
1117
  * Terminate the gRPC channel and close the client.
890
1118
  *