@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
@@ -17,6 +17,8 @@ export declare class DataStoreServiceClient {
17
17
  private _gaxGrpc;
18
18
  private _protos;
19
19
  private _defaults;
20
+ private _universeDomain;
21
+ private _servicePath;
20
22
  auth: gax.GoogleAuth;
21
23
  descriptors: Descriptors;
22
24
  warn: (code: string, message: string, warnType?: string) => void;
@@ -87,15 +89,22 @@ export declare class DataStoreServiceClient {
87
89
  }>;
88
90
  /**
89
91
  * The DNS address for this API service.
92
+ * @deprecated Use the apiEndpoint method of the client instance.
90
93
  * @returns {string} The DNS address for this service.
91
94
  */
92
95
  static get servicePath(): string;
93
96
  /**
94
- * The DNS address for this API service - same as servicePath(),
95
- * exists for compatibility reasons.
97
+ * The DNS address for this API service - same as servicePath.
98
+ * @deprecated Use the apiEndpoint method of the client instance.
96
99
  * @returns {string} The DNS address for this service.
97
100
  */
98
101
  static get apiEndpoint(): string;
102
+ /**
103
+ * The DNS address for this API service.
104
+ * @returns {string} The DNS address for this service.
105
+ */
106
+ get apiEndpoint(): string;
107
+ get universeDomain(): string;
99
108
  /**
100
109
  * The port for this API service.
101
110
  * @returns {number} The default port for this service.
@@ -882,6 +891,150 @@ export declare class DataStoreServiceClient {
882
891
  * @returns {string} A string representing the schema.
883
892
  */
884
893
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
894
+ /**
895
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
896
+ *
897
+ * @param {string} project
898
+ * @param {string} location
899
+ * @param {string} collection
900
+ * @param {string} data_store
901
+ * @returns {string} Resource name string.
902
+ */
903
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
904
+ /**
905
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
906
+ *
907
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
908
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
909
+ * @returns {string} A string representing the project.
910
+ */
911
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
912
+ /**
913
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
914
+ *
915
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
916
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
917
+ * @returns {string} A string representing the location.
918
+ */
919
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
920
+ /**
921
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
922
+ *
923
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
924
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
925
+ * @returns {string} A string representing the collection.
926
+ */
927
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
928
+ /**
929
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
930
+ *
931
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
932
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
933
+ * @returns {string} A string representing the data_store.
934
+ */
935
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
936
+ /**
937
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
938
+ *
939
+ * @param {string} project
940
+ * @param {string} location
941
+ * @param {string} collection
942
+ * @param {string} data_store
943
+ * @param {string} target_site
944
+ * @returns {string} Resource name string.
945
+ */
946
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
947
+ /**
948
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
949
+ *
950
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
951
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
952
+ * @returns {string} A string representing the project.
953
+ */
954
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
955
+ /**
956
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
957
+ *
958
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
959
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
960
+ * @returns {string} A string representing the location.
961
+ */
962
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
963
+ /**
964
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
965
+ *
966
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
967
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
968
+ * @returns {string} A string representing the collection.
969
+ */
970
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
971
+ /**
972
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
973
+ *
974
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
975
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
976
+ * @returns {string} A string representing the data_store.
977
+ */
978
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
979
+ /**
980
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
981
+ *
982
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
983
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
984
+ * @returns {string} A string representing the target_site.
985
+ */
986
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
987
+ /**
988
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
989
+ *
990
+ * @param {string} project
991
+ * @param {string} location
992
+ * @param {string} collection
993
+ * @param {string} engine
994
+ * @param {string} conversation
995
+ * @returns {string} Resource name string.
996
+ */
997
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
998
+ /**
999
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
1000
+ *
1001
+ * @param {string} projectLocationCollectionEngineConversationName
1002
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1003
+ * @returns {string} A string representing the project.
1004
+ */
1005
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1006
+ /**
1007
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
1008
+ *
1009
+ * @param {string} projectLocationCollectionEngineConversationName
1010
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1011
+ * @returns {string} A string representing the location.
1012
+ */
1013
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1014
+ /**
1015
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1016
+ *
1017
+ * @param {string} projectLocationCollectionEngineConversationName
1018
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1019
+ * @returns {string} A string representing the collection.
1020
+ */
1021
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1022
+ /**
1023
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1024
+ *
1025
+ * @param {string} projectLocationCollectionEngineConversationName
1026
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1027
+ * @returns {string} A string representing the engine.
1028
+ */
1029
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1030
+ /**
1031
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1032
+ *
1033
+ * @param {string} projectLocationCollectionEngineConversationName
1034
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1035
+ * @returns {string} A string representing the conversation.
1036
+ */
1037
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
885
1038
  /**
886
1039
  * Return a fully-qualified projectLocationDataStore resource name string.
887
1040
  *
@@ -1050,6 +1203,81 @@ export declare class DataStoreServiceClient {
1050
1203
  * @returns {string} A string representing the schema.
1051
1204
  */
1052
1205
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1206
+ /**
1207
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1208
+ *
1209
+ * @param {string} project
1210
+ * @param {string} location
1211
+ * @param {string} data_store
1212
+ * @returns {string} Resource name string.
1213
+ */
1214
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1215
+ /**
1216
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1217
+ *
1218
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1219
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1220
+ * @returns {string} A string representing the project.
1221
+ */
1222
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1223
+ /**
1224
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1225
+ *
1226
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1227
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1228
+ * @returns {string} A string representing the location.
1229
+ */
1230
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1231
+ /**
1232
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1233
+ *
1234
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1235
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1236
+ * @returns {string} A string representing the data_store.
1237
+ */
1238
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1239
+ /**
1240
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1241
+ *
1242
+ * @param {string} project
1243
+ * @param {string} location
1244
+ * @param {string} data_store
1245
+ * @param {string} target_site
1246
+ * @returns {string} Resource name string.
1247
+ */
1248
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1249
+ /**
1250
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1251
+ *
1252
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1253
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1254
+ * @returns {string} A string representing the project.
1255
+ */
1256
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1257
+ /**
1258
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1259
+ *
1260
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1261
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1262
+ * @returns {string} A string representing the location.
1263
+ */
1264
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1265
+ /**
1266
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1267
+ *
1268
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1269
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1270
+ * @returns {string} A string representing the data_store.
1271
+ */
1272
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1273
+ /**
1274
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1275
+ *
1276
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1277
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1278
+ * @returns {string} A string representing the target_site.
1279
+ */
1280
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1053
1281
  /**
1054
1282
  * Terminate the gRPC channel and close the client.
1055
1283
  *