@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
@@ -177,7 +177,7 @@ export declare class DocumentServiceClient {
|
|
177
177
|
* Otherwise, an `ALREADY_EXISTS` error is returned.
|
178
178
|
*
|
179
179
|
* This field must conform to [RFC-1034](https://tools.ietf.org/html/rfc1034)
|
180
|
-
* standard with a length limit of
|
180
|
+
* standard with a length limit of 128 characters. Otherwise, an
|
181
181
|
* `INVALID_ARGUMENT` error is returned.
|
182
182
|
* @param {object} [options]
|
183
183
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
@@ -398,6 +398,12 @@ export declare class DocumentServiceClient {
|
|
398
398
|
* * {@link protos.google.cloud.discoveryengine.v1.CloudSqlSource|CloudSqlSource}.
|
399
399
|
* * {@link protos.google.cloud.discoveryengine.v1.FirestoreSource|FirestoreSource}.
|
400
400
|
* * {@link protos.google.cloud.discoveryengine.v1.BigtableSource|BigtableSource}.
|
401
|
+
* @param {boolean} [request.forceRefreshContent]
|
402
|
+
* Optional. Whether to force refresh the unstructured content of the
|
403
|
+
* documents.
|
404
|
+
*
|
405
|
+
* If set to `true`, the content part of the documents will be refreshed
|
406
|
+
* regardless of the update status of the referencing content.
|
401
407
|
* @param {object} [options]
|
402
408
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
403
409
|
* @returns {Promise} - The promise which resolves to an array.
|
@@ -749,7 +755,7 @@ export declare class DocumentServiceClient {
|
|
749
755
|
* // doThingsWith(response)
|
750
756
|
* ```
|
751
757
|
*/
|
752
|
-
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.
|
758
|
+
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.IOperation>;
|
753
759
|
/**
|
754
760
|
* Starts asynchronous cancellation on a long-running operation. The server
|
755
761
|
* makes a best effort to cancel the operation, but success is not
|
@@ -1333,6 +1339,57 @@ export declare class DocumentServiceClient {
|
|
1333
1339
|
* @returns {string} A string representing the schema.
|
1334
1340
|
*/
|
1335
1341
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
1342
|
+
/**
|
1343
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
1344
|
+
*
|
1345
|
+
* @param {string} project
|
1346
|
+
* @param {string} location
|
1347
|
+
* @param {string} collection
|
1348
|
+
* @param {string} data_store
|
1349
|
+
* @param {string} serving_config
|
1350
|
+
* @returns {string} Resource name string.
|
1351
|
+
*/
|
1352
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
1353
|
+
/**
|
1354
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
1355
|
+
*
|
1356
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1357
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1358
|
+
* @returns {string} A string representing the project.
|
1359
|
+
*/
|
1360
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1361
|
+
/**
|
1362
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1363
|
+
*
|
1364
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1365
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1366
|
+
* @returns {string} A string representing the location.
|
1367
|
+
*/
|
1368
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1369
|
+
/**
|
1370
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1371
|
+
*
|
1372
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1373
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1374
|
+
* @returns {string} A string representing the collection.
|
1375
|
+
*/
|
1376
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1377
|
+
/**
|
1378
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1379
|
+
*
|
1380
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1381
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1382
|
+
* @returns {string} A string representing the data_store.
|
1383
|
+
*/
|
1384
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1385
|
+
/**
|
1386
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1387
|
+
*
|
1388
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1389
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1390
|
+
* @returns {string} A string representing the serving_config.
|
1391
|
+
*/
|
1392
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1336
1393
|
/**
|
1337
1394
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
1338
1395
|
*
|
@@ -1486,6 +1543,57 @@ export declare class DocumentServiceClient {
|
|
1486
1543
|
* @returns {string} A string representing the data_store.
|
1487
1544
|
*/
|
1488
1545
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1546
|
+
/**
|
1547
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1548
|
+
*
|
1549
|
+
* @param {string} project
|
1550
|
+
* @param {string} location
|
1551
|
+
* @param {string} collection
|
1552
|
+
* @param {string} data_store
|
1553
|
+
* @param {string} sitemap
|
1554
|
+
* @returns {string} Resource name string.
|
1555
|
+
*/
|
1556
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1557
|
+
/**
|
1558
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1559
|
+
*
|
1560
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1561
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1562
|
+
* @returns {string} A string representing the project.
|
1563
|
+
*/
|
1564
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1565
|
+
/**
|
1566
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1567
|
+
*
|
1568
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1569
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1570
|
+
* @returns {string} A string representing the location.
|
1571
|
+
*/
|
1572
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1573
|
+
/**
|
1574
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1575
|
+
*
|
1576
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1577
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1578
|
+
* @returns {string} A string representing the collection.
|
1579
|
+
*/
|
1580
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1581
|
+
/**
|
1582
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1583
|
+
*
|
1584
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1585
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1586
|
+
* @returns {string} A string representing the data_store.
|
1587
|
+
*/
|
1588
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1589
|
+
/**
|
1590
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1591
|
+
*
|
1592
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1593
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1594
|
+
* @returns {string} A string representing the sitemap.
|
1595
|
+
*/
|
1596
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1489
1597
|
/**
|
1490
1598
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
1491
1599
|
*
|
@@ -1639,6 +1747,57 @@ export declare class DocumentServiceClient {
|
|
1639
1747
|
* @returns {string} A string representing the conversation.
|
1640
1748
|
*/
|
1641
1749
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1750
|
+
/**
|
1751
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1752
|
+
*
|
1753
|
+
* @param {string} project
|
1754
|
+
* @param {string} location
|
1755
|
+
* @param {string} collection
|
1756
|
+
* @param {string} engine
|
1757
|
+
* @param {string} serving_config
|
1758
|
+
* @returns {string} Resource name string.
|
1759
|
+
*/
|
1760
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1761
|
+
/**
|
1762
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1763
|
+
*
|
1764
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1765
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1766
|
+
* @returns {string} A string representing the project.
|
1767
|
+
*/
|
1768
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1769
|
+
/**
|
1770
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1771
|
+
*
|
1772
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1773
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1774
|
+
* @returns {string} A string representing the location.
|
1775
|
+
*/
|
1776
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1777
|
+
/**
|
1778
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1779
|
+
*
|
1780
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1781
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1782
|
+
* @returns {string} A string representing the collection.
|
1783
|
+
*/
|
1784
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1785
|
+
/**
|
1786
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1787
|
+
*
|
1788
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1789
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1790
|
+
* @returns {string} A string representing the engine.
|
1791
|
+
*/
|
1792
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1793
|
+
/**
|
1794
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1795
|
+
*
|
1796
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1797
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1798
|
+
* @returns {string} A string representing the serving_config.
|
1799
|
+
*/
|
1800
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1642
1801
|
/**
|
1643
1802
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1644
1803
|
*
|
@@ -2137,6 +2296,48 @@ export declare class DocumentServiceClient {
|
|
2137
2296
|
* @returns {string} A string representing the schema.
|
2138
2297
|
*/
|
2139
2298
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
2299
|
+
/**
|
2300
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
2301
|
+
*
|
2302
|
+
* @param {string} project
|
2303
|
+
* @param {string} location
|
2304
|
+
* @param {string} data_store
|
2305
|
+
* @param {string} serving_config
|
2306
|
+
* @returns {string} Resource name string.
|
2307
|
+
*/
|
2308
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
2309
|
+
/**
|
2310
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
2311
|
+
*
|
2312
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2313
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2314
|
+
* @returns {string} A string representing the project.
|
2315
|
+
*/
|
2316
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2317
|
+
/**
|
2318
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
2319
|
+
*
|
2320
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2321
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2322
|
+
* @returns {string} A string representing the location.
|
2323
|
+
*/
|
2324
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2325
|
+
/**
|
2326
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
2327
|
+
*
|
2328
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2329
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2330
|
+
* @returns {string} A string representing the data_store.
|
2331
|
+
*/
|
2332
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2333
|
+
/**
|
2334
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
2335
|
+
*
|
2336
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2337
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2338
|
+
* @returns {string} A string representing the serving_config.
|
2339
|
+
*/
|
2340
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2140
2341
|
/**
|
2141
2342
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
2142
2343
|
*
|
@@ -2263,6 +2464,48 @@ export declare class DocumentServiceClient {
|
|
2263
2464
|
* @returns {string} A string representing the data_store.
|
2264
2465
|
*/
|
2265
2466
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
2467
|
+
/**
|
2468
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
2469
|
+
*
|
2470
|
+
* @param {string} project
|
2471
|
+
* @param {string} location
|
2472
|
+
* @param {string} data_store
|
2473
|
+
* @param {string} sitemap
|
2474
|
+
* @returns {string} Resource name string.
|
2475
|
+
*/
|
2476
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
2477
|
+
/**
|
2478
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2479
|
+
*
|
2480
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2481
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2482
|
+
* @returns {string} A string representing the project.
|
2483
|
+
*/
|
2484
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2485
|
+
/**
|
2486
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2487
|
+
*
|
2488
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2489
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2490
|
+
* @returns {string} A string representing the location.
|
2491
|
+
*/
|
2492
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2493
|
+
/**
|
2494
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2495
|
+
*
|
2496
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2497
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2498
|
+
* @returns {string} A string representing the data_store.
|
2499
|
+
*/
|
2500
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2501
|
+
/**
|
2502
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2503
|
+
*
|
2504
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2505
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2506
|
+
* @returns {string} A string representing the sitemap.
|
2507
|
+
*/
|
2508
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2266
2509
|
/**
|
2267
2510
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
2268
2511
|
*
|