@google-cloud/discoveryengine 2.0.0 → 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 +14 -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 +238 -1
- package/build/src/v1/completion_service_client.js +341 -5
- 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 +347 -7
- 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 +316 -22
- 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 +238 -1
- package/build/src/v1/data_store_service_client.js +347 -7
- package/build/src/v1/data_store_service_proto_list.json +3 -0
- package/build/src/v1/document_service_client.d.ts +245 -2
- package/build/src/v1/document_service_client.js +356 -10
- package/build/src/v1/document_service_proto_list.json +3 -0
- package/build/src/v1/engine_service_client.d.ts +238 -1
- package/build/src/v1/engine_service_client.js +347 -7
- 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 +335 -3
- 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 +238 -1
- package/build/src/v1/project_service_client.js +329 -1
- 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 +329 -1
- 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 +131 -1
- package/build/src/v1/recommendation_service_proto_list.json +3 -0
- package/build/src/v1/schema_service_client.d.ts +238 -1
- package/build/src/v1/schema_service_client.js +347 -7
- 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 +230 -26
- package/build/src/v1/search_service_proto_list.json +3 -0
- package/build/src/v1/search_tuning_service_client.d.ts +238 -1
- package/build/src/v1/search_tuning_service_client.js +332 -2
- 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 +357 -4
- package/build/src/v1/site_search_engine_service_client.js +521 -16
- 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 +259 -10
- package/build/src/v1/user_event_service_client.js +338 -4
- package/build/src/v1/user_event_service_proto_list.json +3 -0
- package/build/src/v1alpha/acl_config_service_client.js +6 -2
- package/build/src/v1alpha/chunk_service_client.js +12 -4
- package/build/src/v1alpha/completion_service_client.d.ts +1 -1
- package/build/src/v1alpha/completion_service_client.js +15 -5
- package/build/src/v1alpha/control_service_client.js +21 -7
- package/build/src/v1alpha/conversational_search_service_client.js +51 -17
- package/build/src/v1alpha/data_store_service_client.d.ts +1 -1
- package/build/src/v1alpha/data_store_service_client.js +27 -9
- package/build/src/v1alpha/document_service_client.d.ts +1 -1
- package/build/src/v1alpha/document_service_client.js +33 -11
- package/build/src/v1alpha/engine_service_client.d.ts +1 -1
- package/build/src/v1alpha/engine_service_client.js +30 -10
- package/build/src/v1alpha/estimate_billing_service_client.d.ts +1 -1
- package/build/src/v1alpha/estimate_billing_service_client.js +3 -1
- package/build/src/v1alpha/evaluation_service_client.d.ts +1 -1
- package/build/src/v1alpha/evaluation_service_client.js +24 -8
- package/build/src/v1alpha/grounded_generation_service_client.js +3 -1
- package/build/src/v1alpha/project_service_client.d.ts +1 -1
- package/build/src/v1alpha/project_service_client.js +9 -3
- package/build/src/v1alpha/rank_service_client.js +3 -1
- package/build/src/v1alpha/recommendation_service_client.js +3 -1
- package/build/src/v1alpha/sample_query_service_client.d.ts +1 -1
- package/build/src/v1alpha/sample_query_service_client.js +24 -8
- package/build/src/v1alpha/sample_query_set_service_client.js +21 -7
- package/build/src/v1alpha/schema_service_client.d.ts +1 -1
- package/build/src/v1alpha/schema_service_client.js +21 -7
- package/build/src/v1alpha/search_service_client.js +9 -3
- package/build/src/v1alpha/search_tuning_service_client.d.ts +1 -1
- package/build/src/v1alpha/search_tuning_service_client.js +6 -2
- package/build/src/v1alpha/serving_config_service_client.js +15 -5
- package/build/src/v1alpha/site_search_engine_service_client.d.ts +1 -1
- package/build/src/v1alpha/site_search_engine_service_client.js +54 -18
- package/build/src/v1alpha/user_event_service_client.d.ts +1 -1
- package/build/src/v1alpha/user_event_service_client.js +12 -4
- package/build/src/v1beta/completion_service_client.d.ts +1 -1
- package/build/src/v1beta/completion_service_client.js +18 -6
- package/build/src/v1beta/control_service_client.js +21 -7
- package/build/src/v1beta/conversational_search_service_client.js +51 -17
- package/build/src/v1beta/data_store_service_client.d.ts +1 -1
- package/build/src/v1beta/data_store_service_client.js +21 -7
- package/build/src/v1beta/document_service_client.d.ts +1 -1
- package/build/src/v1beta/document_service_client.js +30 -10
- package/build/src/v1beta/engine_service_client.d.ts +1 -1
- package/build/src/v1beta/engine_service_client.js +30 -10
- package/build/src/v1beta/evaluation_service_client.d.ts +1 -1
- package/build/src/v1beta/evaluation_service_client.js +24 -8
- package/build/src/v1beta/grounded_generation_service_client.js +9 -3
- package/build/src/v1beta/project_service_client.d.ts +1 -1
- package/build/src/v1beta/project_service_client.js +3 -1
- package/build/src/v1beta/rank_service_client.js +3 -1
- package/build/src/v1beta/recommendation_service_client.js +3 -1
- package/build/src/v1beta/sample_query_service_client.d.ts +1 -1
- package/build/src/v1beta/sample_query_service_client.js +24 -8
- package/build/src/v1beta/sample_query_set_service_client.js +21 -7
- package/build/src/v1beta/schema_service_client.d.ts +1 -1
- package/build/src/v1beta/schema_service_client.js +21 -7
- package/build/src/v1beta/search_service_client.js +18 -6
- package/build/src/v1beta/search_tuning_service_client.d.ts +1 -1
- package/build/src/v1beta/search_tuning_service_client.js +6 -2
- package/build/src/v1beta/serving_config_service_client.js +15 -5
- package/build/src/v1beta/site_search_engine_service_client.d.ts +1 -1
- package/build/src/v1beta/site_search_engine_service_client.js +57 -19
- package/build/src/v1beta/user_event_service_client.d.ts +1 -1
- package/build/src/v1beta/user_event_service_client.js +12 -4
- package/package.json +5 -5
@@ -560,7 +560,7 @@ export declare class DataStoreServiceClient {
|
|
560
560
|
* // doThingsWith(response)
|
561
561
|
* ```
|
562
562
|
*/
|
563
|
-
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.
|
563
|
+
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.IOperation>;
|
564
564
|
/**
|
565
565
|
* Starts asynchronous cancellation on a long-running operation. The server
|
566
566
|
* makes a best effort to cancel the operation, but success is not
|
@@ -1126,6 +1126,57 @@ export declare class DataStoreServiceClient {
|
|
1126
1126
|
* @returns {string} A string representing the schema.
|
1127
1127
|
*/
|
1128
1128
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
1129
|
+
/**
|
1130
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
1131
|
+
*
|
1132
|
+
* @param {string} project
|
1133
|
+
* @param {string} location
|
1134
|
+
* @param {string} collection
|
1135
|
+
* @param {string} data_store
|
1136
|
+
* @param {string} serving_config
|
1137
|
+
* @returns {string} Resource name string.
|
1138
|
+
*/
|
1139
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
1140
|
+
/**
|
1141
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
1142
|
+
*
|
1143
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1144
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1145
|
+
* @returns {string} A string representing the project.
|
1146
|
+
*/
|
1147
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1148
|
+
/**
|
1149
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1150
|
+
*
|
1151
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1152
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1153
|
+
* @returns {string} A string representing the location.
|
1154
|
+
*/
|
1155
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1156
|
+
/**
|
1157
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1158
|
+
*
|
1159
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1160
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1161
|
+
* @returns {string} A string representing the collection.
|
1162
|
+
*/
|
1163
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1164
|
+
/**
|
1165
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1166
|
+
*
|
1167
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1168
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1169
|
+
* @returns {string} A string representing the data_store.
|
1170
|
+
*/
|
1171
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1172
|
+
/**
|
1173
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1174
|
+
*
|
1175
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1176
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1177
|
+
* @returns {string} A string representing the serving_config.
|
1178
|
+
*/
|
1179
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1129
1180
|
/**
|
1130
1181
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
1131
1182
|
*
|
@@ -1279,6 +1330,57 @@ export declare class DataStoreServiceClient {
|
|
1279
1330
|
* @returns {string} A string representing the data_store.
|
1280
1331
|
*/
|
1281
1332
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1333
|
+
/**
|
1334
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1335
|
+
*
|
1336
|
+
* @param {string} project
|
1337
|
+
* @param {string} location
|
1338
|
+
* @param {string} collection
|
1339
|
+
* @param {string} data_store
|
1340
|
+
* @param {string} sitemap
|
1341
|
+
* @returns {string} Resource name string.
|
1342
|
+
*/
|
1343
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1344
|
+
/**
|
1345
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1346
|
+
*
|
1347
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1348
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1349
|
+
* @returns {string} A string representing the project.
|
1350
|
+
*/
|
1351
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1352
|
+
/**
|
1353
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1354
|
+
*
|
1355
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1356
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1357
|
+
* @returns {string} A string representing the location.
|
1358
|
+
*/
|
1359
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1360
|
+
/**
|
1361
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1362
|
+
*
|
1363
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1364
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1365
|
+
* @returns {string} A string representing the collection.
|
1366
|
+
*/
|
1367
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1368
|
+
/**
|
1369
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1370
|
+
*
|
1371
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1372
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1373
|
+
* @returns {string} A string representing the data_store.
|
1374
|
+
*/
|
1375
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1376
|
+
/**
|
1377
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1378
|
+
*
|
1379
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1380
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1381
|
+
* @returns {string} A string representing the sitemap.
|
1382
|
+
*/
|
1383
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1282
1384
|
/**
|
1283
1385
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
1284
1386
|
*
|
@@ -1432,6 +1534,57 @@ export declare class DataStoreServiceClient {
|
|
1432
1534
|
* @returns {string} A string representing the conversation.
|
1433
1535
|
*/
|
1434
1536
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1537
|
+
/**
|
1538
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1539
|
+
*
|
1540
|
+
* @param {string} project
|
1541
|
+
* @param {string} location
|
1542
|
+
* @param {string} collection
|
1543
|
+
* @param {string} engine
|
1544
|
+
* @param {string} serving_config
|
1545
|
+
* @returns {string} Resource name string.
|
1546
|
+
*/
|
1547
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1548
|
+
/**
|
1549
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1550
|
+
*
|
1551
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1552
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1553
|
+
* @returns {string} A string representing the project.
|
1554
|
+
*/
|
1555
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1556
|
+
/**
|
1557
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1558
|
+
*
|
1559
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1560
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1561
|
+
* @returns {string} A string representing the location.
|
1562
|
+
*/
|
1563
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1564
|
+
/**
|
1565
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1566
|
+
*
|
1567
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1568
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1569
|
+
* @returns {string} A string representing the collection.
|
1570
|
+
*/
|
1571
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1572
|
+
/**
|
1573
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1574
|
+
*
|
1575
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1576
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1577
|
+
* @returns {string} A string representing the engine.
|
1578
|
+
*/
|
1579
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1580
|
+
/**
|
1581
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1582
|
+
*
|
1583
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1584
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1585
|
+
* @returns {string} A string representing the serving_config.
|
1586
|
+
*/
|
1587
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1435
1588
|
/**
|
1436
1589
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1437
1590
|
*
|
@@ -1888,6 +2041,48 @@ export declare class DataStoreServiceClient {
|
|
1888
2041
|
* @returns {string} A string representing the schema.
|
1889
2042
|
*/
|
1890
2043
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
2044
|
+
/**
|
2045
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
2046
|
+
*
|
2047
|
+
* @param {string} project
|
2048
|
+
* @param {string} location
|
2049
|
+
* @param {string} data_store
|
2050
|
+
* @param {string} serving_config
|
2051
|
+
* @returns {string} Resource name string.
|
2052
|
+
*/
|
2053
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
2054
|
+
/**
|
2055
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
2056
|
+
*
|
2057
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2058
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2059
|
+
* @returns {string} A string representing the project.
|
2060
|
+
*/
|
2061
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2062
|
+
/**
|
2063
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
2064
|
+
*
|
2065
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2066
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2067
|
+
* @returns {string} A string representing the location.
|
2068
|
+
*/
|
2069
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2070
|
+
/**
|
2071
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
2072
|
+
*
|
2073
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2074
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2075
|
+
* @returns {string} A string representing the data_store.
|
2076
|
+
*/
|
2077
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2078
|
+
/**
|
2079
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
2080
|
+
*
|
2081
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2082
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2083
|
+
* @returns {string} A string representing the serving_config.
|
2084
|
+
*/
|
2085
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1891
2086
|
/**
|
1892
2087
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1893
2088
|
*
|
@@ -2014,6 +2209,48 @@ export declare class DataStoreServiceClient {
|
|
2014
2209
|
* @returns {string} A string representing the data_store.
|
2015
2210
|
*/
|
2016
2211
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
2212
|
+
/**
|
2213
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
2214
|
+
*
|
2215
|
+
* @param {string} project
|
2216
|
+
* @param {string} location
|
2217
|
+
* @param {string} data_store
|
2218
|
+
* @param {string} sitemap
|
2219
|
+
* @returns {string} Resource name string.
|
2220
|
+
*/
|
2221
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
2222
|
+
/**
|
2223
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2224
|
+
*
|
2225
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2226
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2227
|
+
* @returns {string} A string representing the project.
|
2228
|
+
*/
|
2229
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2230
|
+
/**
|
2231
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2232
|
+
*
|
2233
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2234
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2235
|
+
* @returns {string} A string representing the location.
|
2236
|
+
*/
|
2237
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2238
|
+
/**
|
2239
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2240
|
+
*
|
2241
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2242
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2243
|
+
* @returns {string} A string representing the data_store.
|
2244
|
+
*/
|
2245
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2246
|
+
/**
|
2247
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2248
|
+
*
|
2249
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2250
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2251
|
+
* @returns {string} A string representing the sitemap.
|
2252
|
+
*/
|
2253
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2017
2254
|
/**
|
2018
2255
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
2019
2256
|
*
|