@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
@@ -16,6 +16,8 @@ export declare class SearchServiceClient {
16
16
  private _gaxGrpc;
17
17
  private _protos;
18
18
  private _defaults;
19
+ private _universeDomain;
20
+ private _servicePath;
19
21
  auth: gax.GoogleAuth;
20
22
  descriptors: Descriptors;
21
23
  warn: (code: string, message: string, warnType?: string) => void;
@@ -85,15 +87,22 @@ export declare class SearchServiceClient {
85
87
  }>;
86
88
  /**
87
89
  * The DNS address for this API service.
90
+ * @deprecated Use the apiEndpoint method of the client instance.
88
91
  * @returns {string} The DNS address for this service.
89
92
  */
90
93
  static get servicePath(): string;
91
94
  /**
92
- * The DNS address for this API service - same as servicePath(),
93
- * exists for compatibility reasons.
95
+ * The DNS address for this API service - same as servicePath.
96
+ * @deprecated Use the apiEndpoint method of the client instance.
94
97
  * @returns {string} The DNS address for this service.
95
98
  */
96
99
  static get apiEndpoint(): string;
100
+ /**
101
+ * The DNS address for this API service.
102
+ * @returns {string} The DNS address for this service.
103
+ */
104
+ get apiEndpoint(): string;
105
+ get universeDomain(): string;
97
106
  /**
98
107
  * The port for this API service.
99
108
  * @returns {number} The default port for this service.
@@ -170,6 +179,19 @@ export declare class SearchServiceClient {
170
179
  * For more information about filtering including syntax and filter
171
180
  * operators, see
172
181
  * [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
182
+ * @param {string} request.canonicalFilter
183
+ * The default filter that is applied when a user performs a search without
184
+ * checking any filters on the search page.
185
+ *
186
+ * The filter applied to every search request when quality improvement such as
187
+ * query expansion is needed. In the case a query does not have a sufficient
188
+ * amount of results this filter will be used to determine whether or not to
189
+ * enable the query expansion flow. The original filter will still be used for
190
+ * the query expanded search.
191
+ * This field is strongly recommended to achieve high search quality.
192
+ *
193
+ * For more information about filter syntax, see
194
+ * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.filter|SearchRequest.filter}.
173
195
  * @param {string} request.orderBy
174
196
  * The order in which documents are returned. Documents can be ordered by
175
197
  * a field in an {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
@@ -365,6 +387,19 @@ export declare class SearchServiceClient {
365
387
  * For more information about filtering including syntax and filter
366
388
  * operators, see
367
389
  * [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
390
+ * @param {string} request.canonicalFilter
391
+ * The default filter that is applied when a user performs a search without
392
+ * checking any filters on the search page.
393
+ *
394
+ * The filter applied to every search request when quality improvement such as
395
+ * query expansion is needed. In the case a query does not have a sufficient
396
+ * amount of results this filter will be used to determine whether or not to
397
+ * enable the query expansion flow. The original filter will still be used for
398
+ * the query expanded search.
399
+ * This field is strongly recommended to achieve high search quality.
400
+ *
401
+ * For more information about filter syntax, see
402
+ * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.filter|SearchRequest.filter}.
368
403
  * @param {string} request.orderBy
369
404
  * The order in which documents are returned. Documents can be ordered by
370
405
  * a field in an {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
@@ -555,6 +590,19 @@ export declare class SearchServiceClient {
555
590
  * For more information about filtering including syntax and filter
556
591
  * operators, see
557
592
  * [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
593
+ * @param {string} request.canonicalFilter
594
+ * The default filter that is applied when a user performs a search without
595
+ * checking any filters on the search page.
596
+ *
597
+ * The filter applied to every search request when quality improvement such as
598
+ * query expansion is needed. In the case a query does not have a sufficient
599
+ * amount of results this filter will be used to determine whether or not to
600
+ * enable the query expansion flow. The original filter will still be used for
601
+ * the query expanded search.
602
+ * This field is strongly recommended to achieve high search quality.
603
+ *
604
+ * For more information about filter syntax, see
605
+ * {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.filter|SearchRequest.filter}.
558
606
  * @param {string} request.orderBy
559
607
  * The order in which documents are returned. Documents can be ordered by
560
608
  * a field in an {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
@@ -1081,6 +1129,150 @@ export declare class SearchServiceClient {
1081
1129
  * @returns {string} A string representing the serving_config.
1082
1130
  */
1083
1131
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1132
+ /**
1133
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1134
+ *
1135
+ * @param {string} project
1136
+ * @param {string} location
1137
+ * @param {string} collection
1138
+ * @param {string} data_store
1139
+ * @returns {string} Resource name string.
1140
+ */
1141
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
1142
+ /**
1143
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1144
+ *
1145
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1146
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1147
+ * @returns {string} A string representing the project.
1148
+ */
1149
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1150
+ /**
1151
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1152
+ *
1153
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1154
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1155
+ * @returns {string} A string representing the location.
1156
+ */
1157
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1158
+ /**
1159
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1160
+ *
1161
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1162
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1163
+ * @returns {string} A string representing the collection.
1164
+ */
1165
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1166
+ /**
1167
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1168
+ *
1169
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1170
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1171
+ * @returns {string} A string representing the data_store.
1172
+ */
1173
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1174
+ /**
1175
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
1176
+ *
1177
+ * @param {string} project
1178
+ * @param {string} location
1179
+ * @param {string} collection
1180
+ * @param {string} data_store
1181
+ * @param {string} target_site
1182
+ * @returns {string} Resource name string.
1183
+ */
1184
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
1185
+ /**
1186
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1187
+ *
1188
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1189
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1190
+ * @returns {string} A string representing the project.
1191
+ */
1192
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1193
+ /**
1194
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1195
+ *
1196
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1197
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1198
+ * @returns {string} A string representing the location.
1199
+ */
1200
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1201
+ /**
1202
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1203
+ *
1204
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1205
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1206
+ * @returns {string} A string representing the collection.
1207
+ */
1208
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1209
+ /**
1210
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1211
+ *
1212
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1213
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1214
+ * @returns {string} A string representing the data_store.
1215
+ */
1216
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1217
+ /**
1218
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1219
+ *
1220
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1221
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1222
+ * @returns {string} A string representing the target_site.
1223
+ */
1224
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1225
+ /**
1226
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
1227
+ *
1228
+ * @param {string} project
1229
+ * @param {string} location
1230
+ * @param {string} collection
1231
+ * @param {string} engine
1232
+ * @param {string} conversation
1233
+ * @returns {string} Resource name string.
1234
+ */
1235
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
1236
+ /**
1237
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
1238
+ *
1239
+ * @param {string} projectLocationCollectionEngineConversationName
1240
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1241
+ * @returns {string} A string representing the project.
1242
+ */
1243
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1244
+ /**
1245
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
1246
+ *
1247
+ * @param {string} projectLocationCollectionEngineConversationName
1248
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1249
+ * @returns {string} A string representing the location.
1250
+ */
1251
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1252
+ /**
1253
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1254
+ *
1255
+ * @param {string} projectLocationCollectionEngineConversationName
1256
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1257
+ * @returns {string} A string representing the collection.
1258
+ */
1259
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1260
+ /**
1261
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1262
+ *
1263
+ * @param {string} projectLocationCollectionEngineConversationName
1264
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1265
+ * @returns {string} A string representing the engine.
1266
+ */
1267
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1268
+ /**
1269
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1270
+ *
1271
+ * @param {string} projectLocationCollectionEngineConversationName
1272
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1273
+ * @returns {string} A string representing the conversation.
1274
+ */
1275
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1084
1276
  /**
1085
1277
  * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
1086
1278
  *
@@ -1384,6 +1576,81 @@ export declare class SearchServiceClient {
1384
1576
  * @returns {string} A string representing the serving_config.
1385
1577
  */
1386
1578
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1579
+ /**
1580
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1581
+ *
1582
+ * @param {string} project
1583
+ * @param {string} location
1584
+ * @param {string} data_store
1585
+ * @returns {string} Resource name string.
1586
+ */
1587
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1588
+ /**
1589
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1590
+ *
1591
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1592
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1593
+ * @returns {string} A string representing the project.
1594
+ */
1595
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1596
+ /**
1597
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1598
+ *
1599
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1600
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1601
+ * @returns {string} A string representing the location.
1602
+ */
1603
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1604
+ /**
1605
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1606
+ *
1607
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1608
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1609
+ * @returns {string} A string representing the data_store.
1610
+ */
1611
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1612
+ /**
1613
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1614
+ *
1615
+ * @param {string} project
1616
+ * @param {string} location
1617
+ * @param {string} data_store
1618
+ * @param {string} target_site
1619
+ * @returns {string} Resource name string.
1620
+ */
1621
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1622
+ /**
1623
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1624
+ *
1625
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1626
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1627
+ * @returns {string} A string representing the project.
1628
+ */
1629
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1630
+ /**
1631
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1632
+ *
1633
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1634
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1635
+ * @returns {string} A string representing the location.
1636
+ */
1637
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1638
+ /**
1639
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1640
+ *
1641
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1642
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1643
+ * @returns {string} A string representing the data_store.
1644
+ */
1645
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1646
+ /**
1647
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1648
+ *
1649
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1650
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1651
+ * @returns {string} A string representing the target_site.
1652
+ */
1653
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1387
1654
  /**
1388
1655
  * Terminate the gRPC channel and close the client.
1389
1656
  *