@google-cloud/discoveryengine 2.0.1 → 2.1.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.
- package/CHANGELOG.md +7 -0
- package/README.md +7 -2
- package/build/protos/google/cloud/discoveryengine/v1/answer.proto +54 -2
- package/build/protos/google/cloud/discoveryengine/v1/chunk.proto +2 -1
- package/build/protos/google/cloud/discoveryengine/v1/common.proto +35 -6
- package/build/protos/google/cloud/discoveryengine/v1/control.proto +113 -2
- package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +168 -2
- package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +23 -4
- package/build/protos/google/cloud/discoveryengine/v1/document.proto +7 -2
- package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +1 -1
- package/build/protos/google/cloud/discoveryengine/v1/engine.proto +16 -3
- package/build/protos/google/cloud/discoveryengine/v1/grounded_generation_service.proto +70 -9
- package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +20 -1
- package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +9 -5
- package/build/protos/google/cloud/discoveryengine/v1/rank_service.proto +3 -1
- package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +2 -2
- package/build/protos/google/cloud/discoveryengine/v1/safety.proto +107 -0
- package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +96 -8
- package/build/protos/google/cloud/discoveryengine/v1/serving_config.proto +271 -0
- package/build/protos/google/cloud/discoveryengine/v1/serving_config_service.proto +75 -0
- package/build/protos/google/cloud/discoveryengine/v1/session.proto +19 -0
- package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +27 -3
- package/build/protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto +184 -5
- package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +34 -0
- package/build/protos/google/cloud/discoveryengine/v1/user_event_service.proto +16 -4
- package/build/protos/protos.d.ts +5356 -981
- package/build/protos/protos.js +32266 -20956
- package/build/protos/protos.json +1391 -74
- package/build/src/index.d.ts +4 -1
- package/build/src/index.js +4 -1
- package/build/src/v1/completion_service_client.d.ts +237 -0
- package/build/src/v1/completion_service_client.js +326 -0
- package/build/src/v1/completion_service_proto_list.json +3 -0
- package/build/src/v1/control_service_client.d.ts +237 -0
- package/build/src/v1/control_service_client.js +326 -0
- package/build/src/v1/control_service_proto_list.json +3 -0
- package/build/src/v1/conversational_search_service_client.d.ts +213 -6
- package/build/src/v1/conversational_search_service_client.js +265 -5
- package/build/src/v1/conversational_search_service_client_config.json +5 -0
- package/build/src/v1/conversational_search_service_proto_list.json +3 -0
- package/build/src/v1/data_store_service_client.d.ts +237 -0
- package/build/src/v1/data_store_service_client.js +326 -0
- package/build/src/v1/data_store_service_proto_list.json +3 -0
- package/build/src/v1/document_service_client.d.ts +244 -1
- package/build/src/v1/document_service_client.js +326 -0
- package/build/src/v1/document_service_proto_list.json +3 -0
- package/build/src/v1/engine_service_client.d.ts +237 -0
- package/build/src/v1/engine_service_client.js +326 -0
- package/build/src/v1/engine_service_proto_list.json +3 -0
- package/build/src/v1/gapic_metadata.json +59 -0
- package/build/src/v1/grounded_generation_service_client.d.ts +238 -3
- package/build/src/v1/grounded_generation_service_client.js +326 -0
- package/build/src/v1/grounded_generation_service_proto_list.json +3 -0
- package/build/src/v1/index.d.ts +1 -0
- package/build/src/v1/index.js +3 -1
- package/build/src/v1/project_service_client.d.ts +237 -0
- package/build/src/v1/project_service_client.js +326 -0
- package/build/src/v1/project_service_proto_list.json +3 -0
- package/build/src/v1/rank_service_client.d.ts +238 -1
- package/build/src/v1/rank_service_client.js +326 -0
- package/build/src/v1/rank_service_proto_list.json +3 -0
- package/build/src/v1/recommendation_service_client.d.ts +95 -2
- package/build/src/v1/recommendation_service_client.js +128 -0
- package/build/src/v1/recommendation_service_proto_list.json +3 -0
- package/build/src/v1/schema_service_client.d.ts +237 -0
- package/build/src/v1/schema_service_client.js +326 -0
- package/build/src/v1/schema_service_proto_list.json +3 -0
- package/build/src/v1/search_service_client.d.ts +219 -30
- package/build/src/v1/search_service_client.js +212 -20
- package/build/src/v1/search_service_proto_list.json +3 -0
- package/build/src/v1/search_tuning_service_client.d.ts +237 -0
- package/build/src/v1/search_tuning_service_client.js +326 -0
- package/build/src/v1/search_tuning_service_proto_list.json +3 -0
- package/build/src/v1/serving_config_service_client.d.ts +1851 -0
- package/build/src/v1/serving_config_service_client.js +2653 -0
- package/build/src/v1/serving_config_service_client_config.json +30 -0
- package/build/src/v1/serving_config_service_proto_list.json +39 -0
- package/build/src/v1/site_search_engine_service_client.d.ts +356 -3
- package/build/src/v1/site_search_engine_service_client.js +473 -0
- package/build/src/v1/site_search_engine_service_client_config.json +12 -0
- package/build/src/v1/site_search_engine_service_proto_list.json +3 -0
- package/build/src/v1/user_event_service_client.d.ts +258 -9
- package/build/src/v1/user_event_service_client.js +326 -0
- package/build/src/v1/user_event_service_proto_list.json +3 -0
- package/package.json +4 -4
@@ -127,9 +127,9 @@ export declare class UserEventServiceClient {
|
|
127
127
|
* {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore} level, the format
|
128
128
|
* is:
|
129
129
|
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}`.
|
130
|
-
* If the write user event action is applied in
|
131
|
-
* example, the event
|
132
|
-
* {@link protos.google.cloud.discoveryengine.v1.Document|Document} across multiple
|
130
|
+
* If the write user event action is applied in
|
131
|
+
* {@link protos.google.cloud.location.Location|Location} level, for example, the event
|
132
|
+
* with {@link protos.google.cloud.discoveryengine.v1.Document|Document} across multiple
|
133
133
|
* {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore}, the format is:
|
134
134
|
* `projects/{project}/locations/{location}`.
|
135
135
|
* @param {google.cloud.discoveryengine.v1.UserEvent} request.userEvent
|
@@ -163,8 +163,16 @@ export declare class UserEventServiceClient {
|
|
163
163
|
* @param {Object} request
|
164
164
|
* The request object that will be sent.
|
165
165
|
* @param {string} request.parent
|
166
|
-
* Required. The parent
|
166
|
+
* Required. The parent resource name.
|
167
|
+
* If the collect user event action is applied in
|
168
|
+
* {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore} level, the format
|
169
|
+
* is:
|
167
170
|
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}`.
|
171
|
+
* If the collect user event action is applied in
|
172
|
+
* {@link protos.google.cloud.location.Location|Location} level, for example, the event
|
173
|
+
* with {@link protos.google.cloud.discoveryengine.v1.Document|Document} across multiple
|
174
|
+
* {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore}, the format is:
|
175
|
+
* `projects/{project}/locations/{location}`.
|
168
176
|
* @param {string} request.userEvent
|
169
177
|
* Required. URL encoded UserEvent proto with a length limit of 2,000,000
|
170
178
|
* characters.
|
@@ -218,16 +226,20 @@ export declare class UserEventServiceClient {
|
|
218
226
|
* * `userId`: Double quoted string. Specifying this will delete all events
|
219
227
|
* associated with a user.
|
220
228
|
*
|
229
|
+
* Note: This API only supports purging a max range of 30 days.
|
230
|
+
*
|
221
231
|
* Examples:
|
222
232
|
*
|
223
233
|
* * Deleting all events in a time range:
|
224
234
|
* `eventTime > "2012-04-23T18:25:43.511Z"
|
225
235
|
* eventTime < "2012-04-23T18:30:43.511Z"`
|
226
|
-
* * Deleting specific eventType:
|
227
|
-
* `
|
228
|
-
*
|
229
|
-
*
|
230
|
-
*
|
236
|
+
* * Deleting specific eventType in a time range:
|
237
|
+
* `eventTime > "2012-04-23T18:25:43.511Z"
|
238
|
+
* eventTime < "2012-04-23T18:30:43.511Z" eventType = "search"`
|
239
|
+
* * Deleting all events for a specific visitor in a time range:
|
240
|
+
* `eventTime > "2012-04-23T18:25:43.511Z"
|
241
|
+
* eventTime < "2012-04-23T18:30:43.511Z" userPseudoId = "visitor1024"`
|
242
|
+
* * Deleting the past 30 days of events inside a DataStore:
|
231
243
|
* `*`
|
232
244
|
*
|
233
245
|
* The filtering fields are assumed to have an implicit AND.
|
@@ -966,6 +978,57 @@ export declare class UserEventServiceClient {
|
|
966
978
|
* @returns {string} A string representing the schema.
|
967
979
|
*/
|
968
980
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
981
|
+
/**
|
982
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
983
|
+
*
|
984
|
+
* @param {string} project
|
985
|
+
* @param {string} location
|
986
|
+
* @param {string} collection
|
987
|
+
* @param {string} data_store
|
988
|
+
* @param {string} serving_config
|
989
|
+
* @returns {string} Resource name string.
|
990
|
+
*/
|
991
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
992
|
+
/**
|
993
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
994
|
+
*
|
995
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
996
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
997
|
+
* @returns {string} A string representing the project.
|
998
|
+
*/
|
999
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1000
|
+
/**
|
1001
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1002
|
+
*
|
1003
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1004
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1005
|
+
* @returns {string} A string representing the location.
|
1006
|
+
*/
|
1007
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1008
|
+
/**
|
1009
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1010
|
+
*
|
1011
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1012
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1013
|
+
* @returns {string} A string representing the collection.
|
1014
|
+
*/
|
1015
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1016
|
+
/**
|
1017
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1018
|
+
*
|
1019
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1020
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1021
|
+
* @returns {string} A string representing the data_store.
|
1022
|
+
*/
|
1023
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1024
|
+
/**
|
1025
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1026
|
+
*
|
1027
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1028
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1029
|
+
* @returns {string} A string representing the serving_config.
|
1030
|
+
*/
|
1031
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
969
1032
|
/**
|
970
1033
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
971
1034
|
*
|
@@ -1119,6 +1182,57 @@ export declare class UserEventServiceClient {
|
|
1119
1182
|
* @returns {string} A string representing the data_store.
|
1120
1183
|
*/
|
1121
1184
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1185
|
+
/**
|
1186
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1187
|
+
*
|
1188
|
+
* @param {string} project
|
1189
|
+
* @param {string} location
|
1190
|
+
* @param {string} collection
|
1191
|
+
* @param {string} data_store
|
1192
|
+
* @param {string} sitemap
|
1193
|
+
* @returns {string} Resource name string.
|
1194
|
+
*/
|
1195
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1196
|
+
/**
|
1197
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1198
|
+
*
|
1199
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1200
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1201
|
+
* @returns {string} A string representing the project.
|
1202
|
+
*/
|
1203
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1204
|
+
/**
|
1205
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1206
|
+
*
|
1207
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1208
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1209
|
+
* @returns {string} A string representing the location.
|
1210
|
+
*/
|
1211
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1212
|
+
/**
|
1213
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1214
|
+
*
|
1215
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1216
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1217
|
+
* @returns {string} A string representing the collection.
|
1218
|
+
*/
|
1219
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1220
|
+
/**
|
1221
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1222
|
+
*
|
1223
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1224
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1225
|
+
* @returns {string} A string representing the data_store.
|
1226
|
+
*/
|
1227
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1228
|
+
/**
|
1229
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1230
|
+
*
|
1231
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1232
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1233
|
+
* @returns {string} A string representing the sitemap.
|
1234
|
+
*/
|
1235
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1122
1236
|
/**
|
1123
1237
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
1124
1238
|
*
|
@@ -1272,6 +1386,57 @@ export declare class UserEventServiceClient {
|
|
1272
1386
|
* @returns {string} A string representing the conversation.
|
1273
1387
|
*/
|
1274
1388
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1389
|
+
/**
|
1390
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1391
|
+
*
|
1392
|
+
* @param {string} project
|
1393
|
+
* @param {string} location
|
1394
|
+
* @param {string} collection
|
1395
|
+
* @param {string} engine
|
1396
|
+
* @param {string} serving_config
|
1397
|
+
* @returns {string} Resource name string.
|
1398
|
+
*/
|
1399
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1400
|
+
/**
|
1401
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1402
|
+
*
|
1403
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1404
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1405
|
+
* @returns {string} A string representing the project.
|
1406
|
+
*/
|
1407
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1408
|
+
/**
|
1409
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1410
|
+
*
|
1411
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1412
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1413
|
+
* @returns {string} A string representing the location.
|
1414
|
+
*/
|
1415
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1416
|
+
/**
|
1417
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1418
|
+
*
|
1419
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1420
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1421
|
+
* @returns {string} A string representing the collection.
|
1422
|
+
*/
|
1423
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1424
|
+
/**
|
1425
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1426
|
+
*
|
1427
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1428
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1429
|
+
* @returns {string} A string representing the engine.
|
1430
|
+
*/
|
1431
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1432
|
+
/**
|
1433
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1434
|
+
*
|
1435
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1436
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1437
|
+
* @returns {string} A string representing the serving_config.
|
1438
|
+
*/
|
1439
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1275
1440
|
/**
|
1276
1441
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1277
1442
|
*
|
@@ -1728,6 +1893,48 @@ export declare class UserEventServiceClient {
|
|
1728
1893
|
* @returns {string} A string representing the schema.
|
1729
1894
|
*/
|
1730
1895
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1896
|
+
/**
|
1897
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1898
|
+
*
|
1899
|
+
* @param {string} project
|
1900
|
+
* @param {string} location
|
1901
|
+
* @param {string} data_store
|
1902
|
+
* @param {string} serving_config
|
1903
|
+
* @returns {string} Resource name string.
|
1904
|
+
*/
|
1905
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1906
|
+
/**
|
1907
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1908
|
+
*
|
1909
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1910
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1911
|
+
* @returns {string} A string representing the project.
|
1912
|
+
*/
|
1913
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1914
|
+
/**
|
1915
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1916
|
+
*
|
1917
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1918
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1919
|
+
* @returns {string} A string representing the location.
|
1920
|
+
*/
|
1921
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1922
|
+
/**
|
1923
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1924
|
+
*
|
1925
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1926
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1927
|
+
* @returns {string} A string representing the data_store.
|
1928
|
+
*/
|
1929
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1930
|
+
/**
|
1931
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1932
|
+
*
|
1933
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1934
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1935
|
+
* @returns {string} A string representing the serving_config.
|
1936
|
+
*/
|
1937
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1731
1938
|
/**
|
1732
1939
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1733
1940
|
*
|
@@ -1854,6 +2061,48 @@ export declare class UserEventServiceClient {
|
|
1854
2061
|
* @returns {string} A string representing the data_store.
|
1855
2062
|
*/
|
1856
2063
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
2064
|
+
/**
|
2065
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
2066
|
+
*
|
2067
|
+
* @param {string} project
|
2068
|
+
* @param {string} location
|
2069
|
+
* @param {string} data_store
|
2070
|
+
* @param {string} sitemap
|
2071
|
+
* @returns {string} Resource name string.
|
2072
|
+
*/
|
2073
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
2074
|
+
/**
|
2075
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2076
|
+
*
|
2077
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2078
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2079
|
+
* @returns {string} A string representing the project.
|
2080
|
+
*/
|
2081
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2082
|
+
/**
|
2083
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2084
|
+
*
|
2085
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2086
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2087
|
+
* @returns {string} A string representing the location.
|
2088
|
+
*/
|
2089
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2090
|
+
/**
|
2091
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2092
|
+
*
|
2093
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2094
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2095
|
+
* @returns {string} A string representing the data_store.
|
2096
|
+
*/
|
2097
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2098
|
+
/**
|
2099
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2100
|
+
*
|
2101
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2102
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2103
|
+
* @returns {string} A string representing the sitemap.
|
2104
|
+
*/
|
2105
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1857
2106
|
/**
|
1858
2107
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1859
2108
|
*
|