@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
@@ -183,6 +183,7 @@ class RecommendationServiceClient {
|
|
183
183
|
projectLocationCollectionDataStoreSessionPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/sessions/{session}'),
|
184
184
|
projectLocationCollectionDataStoreSessionAnswerPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/sessions/{session}/answers/{answer}'),
|
185
185
|
projectLocationCollectionDataStoreSiteSearchEnginePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine'),
|
186
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine/sitemaps/{sitemap}'),
|
186
187
|
projectLocationCollectionDataStoreSiteSearchEngineTargetSitePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine/targetSites/{target_site}'),
|
187
188
|
projectLocationCollectionEngineControlPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/controls/{control}'),
|
188
189
|
projectLocationCollectionEngineConversationPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/conversations/{conversation}'),
|
@@ -201,6 +202,7 @@ class RecommendationServiceClient {
|
|
201
202
|
projectLocationDataStoreSessionPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/sessions/{session}'),
|
202
203
|
projectLocationDataStoreSessionAnswerPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/sessions/{session}/answers/{answer}'),
|
203
204
|
projectLocationDataStoreSiteSearchEnginePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/siteSearchEngine'),
|
205
|
+
projectLocationDataStoreSiteSearchEngineSitemapPathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/siteSearchEngine/sitemaps/{sitemap}'),
|
204
206
|
projectLocationDataStoreSiteSearchEngineTargetSitePathTemplate: new this._gaxModule.PathTemplate('projects/{project}/locations/{location}/dataStores/{data_store}/siteSearchEngine/targetSites/{target_site}'),
|
205
207
|
};
|
206
208
|
// Put together the default options sent with requests.
|
@@ -1324,6 +1326,75 @@ class RecommendationServiceClient {
|
|
1324
1326
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName) {
|
1325
1327
|
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEnginePathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineName).data_store;
|
1326
1328
|
}
|
1329
|
+
/**
|
1330
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1331
|
+
*
|
1332
|
+
* @param {string} project
|
1333
|
+
* @param {string} location
|
1334
|
+
* @param {string} collection
|
1335
|
+
* @param {string} data_store
|
1336
|
+
* @param {string} sitemap
|
1337
|
+
* @returns {string} Resource name string.
|
1338
|
+
*/
|
1339
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project, location, collection, dataStore, sitemap) {
|
1340
|
+
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate.render({
|
1341
|
+
project: project,
|
1342
|
+
location: location,
|
1343
|
+
collection: collection,
|
1344
|
+
data_store: dataStore,
|
1345
|
+
sitemap: sitemap,
|
1346
|
+
});
|
1347
|
+
}
|
1348
|
+
/**
|
1349
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1350
|
+
*
|
1351
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1352
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1353
|
+
* @returns {string} A string representing the project.
|
1354
|
+
*/
|
1355
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName) {
|
1356
|
+
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineSitemapName).project;
|
1357
|
+
}
|
1358
|
+
/**
|
1359
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1360
|
+
*
|
1361
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1362
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1363
|
+
* @returns {string} A string representing the location.
|
1364
|
+
*/
|
1365
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName) {
|
1366
|
+
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineSitemapName).location;
|
1367
|
+
}
|
1368
|
+
/**
|
1369
|
+
* Parse the collection 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 collection.
|
1374
|
+
*/
|
1375
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName) {
|
1376
|
+
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineSitemapName).collection;
|
1377
|
+
}
|
1378
|
+
/**
|
1379
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1380
|
+
*
|
1381
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1382
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1383
|
+
* @returns {string} A string representing the data_store.
|
1384
|
+
*/
|
1385
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName) {
|
1386
|
+
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineSitemapName).data_store;
|
1387
|
+
}
|
1388
|
+
/**
|
1389
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1390
|
+
*
|
1391
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1392
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1393
|
+
* @returns {string} A string representing the sitemap.
|
1394
|
+
*/
|
1395
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName) {
|
1396
|
+
return this.pathTemplates.projectLocationCollectionDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationCollectionDataStoreSiteSearchEngineSitemapName).sitemap;
|
1397
|
+
}
|
1327
1398
|
/**
|
1328
1399
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
1329
1400
|
*
|
@@ -2446,6 +2517,63 @@ class RecommendationServiceClient {
|
|
2446
2517
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName) {
|
2447
2518
|
return this.pathTemplates.projectLocationDataStoreSiteSearchEnginePathTemplate.match(projectLocationDataStoreSiteSearchEngineName).data_store;
|
2448
2519
|
}
|
2520
|
+
/**
|
2521
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
2522
|
+
*
|
2523
|
+
* @param {string} project
|
2524
|
+
* @param {string} location
|
2525
|
+
* @param {string} data_store
|
2526
|
+
* @param {string} sitemap
|
2527
|
+
* @returns {string} Resource name string.
|
2528
|
+
*/
|
2529
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project, location, dataStore, sitemap) {
|
2530
|
+
return this.pathTemplates.projectLocationDataStoreSiteSearchEngineSitemapPathTemplate.render({
|
2531
|
+
project: project,
|
2532
|
+
location: location,
|
2533
|
+
data_store: dataStore,
|
2534
|
+
sitemap: sitemap,
|
2535
|
+
});
|
2536
|
+
}
|
2537
|
+
/**
|
2538
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2539
|
+
*
|
2540
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2541
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2542
|
+
* @returns {string} A string representing the project.
|
2543
|
+
*/
|
2544
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName) {
|
2545
|
+
return this.pathTemplates.projectLocationDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationDataStoreSiteSearchEngineSitemapName).project;
|
2546
|
+
}
|
2547
|
+
/**
|
2548
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2549
|
+
*
|
2550
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2551
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2552
|
+
* @returns {string} A string representing the location.
|
2553
|
+
*/
|
2554
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName) {
|
2555
|
+
return this.pathTemplates.projectLocationDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationDataStoreSiteSearchEngineSitemapName).location;
|
2556
|
+
}
|
2557
|
+
/**
|
2558
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2559
|
+
*
|
2560
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2561
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2562
|
+
* @returns {string} A string representing the data_store.
|
2563
|
+
*/
|
2564
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName) {
|
2565
|
+
return this.pathTemplates.projectLocationDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationDataStoreSiteSearchEngineSitemapName).data_store;
|
2566
|
+
}
|
2567
|
+
/**
|
2568
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2569
|
+
*
|
2570
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2571
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2572
|
+
* @returns {string} A string representing the sitemap.
|
2573
|
+
*/
|
2574
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName) {
|
2575
|
+
return this.pathTemplates.projectLocationDataStoreSiteSearchEngineSitemapPathTemplate.match(projectLocationDataStoreSiteSearchEngineSitemapName).sitemap;
|
2576
|
+
}
|
2449
2577
|
/**
|
2450
2578
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
2451
2579
|
*
|
@@ -24,10 +24,13 @@
|
|
24
24
|
"../../protos/google/cloud/discoveryengine/v1/purge_config.proto",
|
25
25
|
"../../protos/google/cloud/discoveryengine/v1/rank_service.proto",
|
26
26
|
"../../protos/google/cloud/discoveryengine/v1/recommendation_service.proto",
|
27
|
+
"../../protos/google/cloud/discoveryengine/v1/safety.proto",
|
27
28
|
"../../protos/google/cloud/discoveryengine/v1/schema.proto",
|
28
29
|
"../../protos/google/cloud/discoveryengine/v1/schema_service.proto",
|
29
30
|
"../../protos/google/cloud/discoveryengine/v1/search_service.proto",
|
30
31
|
"../../protos/google/cloud/discoveryengine/v1/search_tuning_service.proto",
|
32
|
+
"../../protos/google/cloud/discoveryengine/v1/serving_config.proto",
|
33
|
+
"../../protos/google/cloud/discoveryengine/v1/serving_config_service.proto",
|
31
34
|
"../../protos/google/cloud/discoveryengine/v1/session.proto",
|
32
35
|
"../../protos/google/cloud/discoveryengine/v1/site_search_engine.proto",
|
33
36
|
"../../protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto",
|
@@ -1030,6 +1030,57 @@ export declare class SchemaServiceClient {
|
|
1030
1030
|
* @returns {string} A string representing the schema.
|
1031
1031
|
*/
|
1032
1032
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
1033
|
+
/**
|
1034
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
1035
|
+
*
|
1036
|
+
* @param {string} project
|
1037
|
+
* @param {string} location
|
1038
|
+
* @param {string} collection
|
1039
|
+
* @param {string} data_store
|
1040
|
+
* @param {string} serving_config
|
1041
|
+
* @returns {string} Resource name string.
|
1042
|
+
*/
|
1043
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
1044
|
+
/**
|
1045
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
1046
|
+
*
|
1047
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1048
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1049
|
+
* @returns {string} A string representing the project.
|
1050
|
+
*/
|
1051
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1052
|
+
/**
|
1053
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1054
|
+
*
|
1055
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1056
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1057
|
+
* @returns {string} A string representing the location.
|
1058
|
+
*/
|
1059
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1060
|
+
/**
|
1061
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1062
|
+
*
|
1063
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1064
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1065
|
+
* @returns {string} A string representing the collection.
|
1066
|
+
*/
|
1067
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1068
|
+
/**
|
1069
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1070
|
+
*
|
1071
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1072
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1073
|
+
* @returns {string} A string representing the data_store.
|
1074
|
+
*/
|
1075
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1076
|
+
/**
|
1077
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1078
|
+
*
|
1079
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1080
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1081
|
+
* @returns {string} A string representing the serving_config.
|
1082
|
+
*/
|
1083
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1033
1084
|
/**
|
1034
1085
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
1035
1086
|
*
|
@@ -1183,6 +1234,57 @@ export declare class SchemaServiceClient {
|
|
1183
1234
|
* @returns {string} A string representing the data_store.
|
1184
1235
|
*/
|
1185
1236
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1237
|
+
/**
|
1238
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1239
|
+
*
|
1240
|
+
* @param {string} project
|
1241
|
+
* @param {string} location
|
1242
|
+
* @param {string} collection
|
1243
|
+
* @param {string} data_store
|
1244
|
+
* @param {string} sitemap
|
1245
|
+
* @returns {string} Resource name string.
|
1246
|
+
*/
|
1247
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1248
|
+
/**
|
1249
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1250
|
+
*
|
1251
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1252
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1253
|
+
* @returns {string} A string representing the project.
|
1254
|
+
*/
|
1255
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1256
|
+
/**
|
1257
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1258
|
+
*
|
1259
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1260
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1261
|
+
* @returns {string} A string representing the location.
|
1262
|
+
*/
|
1263
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1264
|
+
/**
|
1265
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1266
|
+
*
|
1267
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1268
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1269
|
+
* @returns {string} A string representing the collection.
|
1270
|
+
*/
|
1271
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1272
|
+
/**
|
1273
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1274
|
+
*
|
1275
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1276
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1277
|
+
* @returns {string} A string representing the data_store.
|
1278
|
+
*/
|
1279
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1280
|
+
/**
|
1281
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1282
|
+
*
|
1283
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1284
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1285
|
+
* @returns {string} A string representing the sitemap.
|
1286
|
+
*/
|
1287
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1186
1288
|
/**
|
1187
1289
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
1188
1290
|
*
|
@@ -1336,6 +1438,57 @@ export declare class SchemaServiceClient {
|
|
1336
1438
|
* @returns {string} A string representing the conversation.
|
1337
1439
|
*/
|
1338
1440
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1441
|
+
/**
|
1442
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1443
|
+
*
|
1444
|
+
* @param {string} project
|
1445
|
+
* @param {string} location
|
1446
|
+
* @param {string} collection
|
1447
|
+
* @param {string} engine
|
1448
|
+
* @param {string} serving_config
|
1449
|
+
* @returns {string} Resource name string.
|
1450
|
+
*/
|
1451
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1452
|
+
/**
|
1453
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1454
|
+
*
|
1455
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1456
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1457
|
+
* @returns {string} A string representing the project.
|
1458
|
+
*/
|
1459
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1460
|
+
/**
|
1461
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1462
|
+
*
|
1463
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1464
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1465
|
+
* @returns {string} A string representing the location.
|
1466
|
+
*/
|
1467
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1468
|
+
/**
|
1469
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1470
|
+
*
|
1471
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1472
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1473
|
+
* @returns {string} A string representing the collection.
|
1474
|
+
*/
|
1475
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1476
|
+
/**
|
1477
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1478
|
+
*
|
1479
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1480
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1481
|
+
* @returns {string} A string representing the engine.
|
1482
|
+
*/
|
1483
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1484
|
+
/**
|
1485
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1486
|
+
*
|
1487
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1488
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1489
|
+
* @returns {string} A string representing the serving_config.
|
1490
|
+
*/
|
1491
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1339
1492
|
/**
|
1340
1493
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1341
1494
|
*
|
@@ -1792,6 +1945,48 @@ export declare class SchemaServiceClient {
|
|
1792
1945
|
* @returns {string} A string representing the schema.
|
1793
1946
|
*/
|
1794
1947
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1948
|
+
/**
|
1949
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1950
|
+
*
|
1951
|
+
* @param {string} project
|
1952
|
+
* @param {string} location
|
1953
|
+
* @param {string} data_store
|
1954
|
+
* @param {string} serving_config
|
1955
|
+
* @returns {string} Resource name string.
|
1956
|
+
*/
|
1957
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1958
|
+
/**
|
1959
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1960
|
+
*
|
1961
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1962
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1963
|
+
* @returns {string} A string representing the project.
|
1964
|
+
*/
|
1965
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1966
|
+
/**
|
1967
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1968
|
+
*
|
1969
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1970
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1971
|
+
* @returns {string} A string representing the location.
|
1972
|
+
*/
|
1973
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1974
|
+
/**
|
1975
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1976
|
+
*
|
1977
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1978
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1979
|
+
* @returns {string} A string representing the data_store.
|
1980
|
+
*/
|
1981
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1982
|
+
/**
|
1983
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1984
|
+
*
|
1985
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1986
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1987
|
+
* @returns {string} A string representing the serving_config.
|
1988
|
+
*/
|
1989
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1795
1990
|
/**
|
1796
1991
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1797
1992
|
*
|
@@ -1918,6 +2113,48 @@ export declare class SchemaServiceClient {
|
|
1918
2113
|
* @returns {string} A string representing the data_store.
|
1919
2114
|
*/
|
1920
2115
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
2116
|
+
/**
|
2117
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
2118
|
+
*
|
2119
|
+
* @param {string} project
|
2120
|
+
* @param {string} location
|
2121
|
+
* @param {string} data_store
|
2122
|
+
* @param {string} sitemap
|
2123
|
+
* @returns {string} Resource name string.
|
2124
|
+
*/
|
2125
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
2126
|
+
/**
|
2127
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2128
|
+
*
|
2129
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2130
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2131
|
+
* @returns {string} A string representing the project.
|
2132
|
+
*/
|
2133
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2134
|
+
/**
|
2135
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2136
|
+
*
|
2137
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2138
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2139
|
+
* @returns {string} A string representing the location.
|
2140
|
+
*/
|
2141
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2142
|
+
/**
|
2143
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2144
|
+
*
|
2145
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2146
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2147
|
+
* @returns {string} A string representing the data_store.
|
2148
|
+
*/
|
2149
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2150
|
+
/**
|
2151
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2152
|
+
*
|
2153
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2154
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2155
|
+
* @returns {string} A string representing the sitemap.
|
2156
|
+
*/
|
2157
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1921
2158
|
/**
|
1922
2159
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1923
2160
|
*
|