@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
@@ -304,7 +304,7 @@ export declare class SearchTuningServiceClient {
|
|
304
304
|
* // doThingsWith(response)
|
305
305
|
* ```
|
306
306
|
*/
|
307
|
-
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.
|
307
|
+
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.IOperation>;
|
308
308
|
/**
|
309
309
|
* Starts asynchronous cancellation on a long-running operation. The server
|
310
310
|
* makes a best effort to cancel the operation, but success is not
|
@@ -837,6 +837,57 @@ export declare class SearchTuningServiceClient {
|
|
837
837
|
* @returns {string} A string representing the schema.
|
838
838
|
*/
|
839
839
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
840
|
+
/**
|
841
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
842
|
+
*
|
843
|
+
* @param {string} project
|
844
|
+
* @param {string} location
|
845
|
+
* @param {string} collection
|
846
|
+
* @param {string} data_store
|
847
|
+
* @param {string} serving_config
|
848
|
+
* @returns {string} Resource name string.
|
849
|
+
*/
|
850
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
851
|
+
/**
|
852
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
853
|
+
*
|
854
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
855
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
856
|
+
* @returns {string} A string representing the project.
|
857
|
+
*/
|
858
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
859
|
+
/**
|
860
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
861
|
+
*
|
862
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
863
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
864
|
+
* @returns {string} A string representing the location.
|
865
|
+
*/
|
866
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
867
|
+
/**
|
868
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
869
|
+
*
|
870
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
871
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
872
|
+
* @returns {string} A string representing the collection.
|
873
|
+
*/
|
874
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
875
|
+
/**
|
876
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
877
|
+
*
|
878
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
879
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
880
|
+
* @returns {string} A string representing the data_store.
|
881
|
+
*/
|
882
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
883
|
+
/**
|
884
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
885
|
+
*
|
886
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
887
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
888
|
+
* @returns {string} A string representing the serving_config.
|
889
|
+
*/
|
890
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
840
891
|
/**
|
841
892
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
842
893
|
*
|
@@ -990,6 +1041,57 @@ export declare class SearchTuningServiceClient {
|
|
990
1041
|
* @returns {string} A string representing the data_store.
|
991
1042
|
*/
|
992
1043
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1044
|
+
/**
|
1045
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1046
|
+
*
|
1047
|
+
* @param {string} project
|
1048
|
+
* @param {string} location
|
1049
|
+
* @param {string} collection
|
1050
|
+
* @param {string} data_store
|
1051
|
+
* @param {string} sitemap
|
1052
|
+
* @returns {string} Resource name string.
|
1053
|
+
*/
|
1054
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1055
|
+
/**
|
1056
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1057
|
+
*
|
1058
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1059
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1060
|
+
* @returns {string} A string representing the project.
|
1061
|
+
*/
|
1062
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1063
|
+
/**
|
1064
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1065
|
+
*
|
1066
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1067
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1068
|
+
* @returns {string} A string representing the location.
|
1069
|
+
*/
|
1070
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1071
|
+
/**
|
1072
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1073
|
+
*
|
1074
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1075
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1076
|
+
* @returns {string} A string representing the collection.
|
1077
|
+
*/
|
1078
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1079
|
+
/**
|
1080
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1081
|
+
*
|
1082
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1083
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1084
|
+
* @returns {string} A string representing the data_store.
|
1085
|
+
*/
|
1086
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1087
|
+
/**
|
1088
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1089
|
+
*
|
1090
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1091
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1092
|
+
* @returns {string} A string representing the sitemap.
|
1093
|
+
*/
|
1094
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
993
1095
|
/**
|
994
1096
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
995
1097
|
*
|
@@ -1143,6 +1245,57 @@ export declare class SearchTuningServiceClient {
|
|
1143
1245
|
* @returns {string} A string representing the conversation.
|
1144
1246
|
*/
|
1145
1247
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1248
|
+
/**
|
1249
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1250
|
+
*
|
1251
|
+
* @param {string} project
|
1252
|
+
* @param {string} location
|
1253
|
+
* @param {string} collection
|
1254
|
+
* @param {string} engine
|
1255
|
+
* @param {string} serving_config
|
1256
|
+
* @returns {string} Resource name string.
|
1257
|
+
*/
|
1258
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1259
|
+
/**
|
1260
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1261
|
+
*
|
1262
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1263
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1264
|
+
* @returns {string} A string representing the project.
|
1265
|
+
*/
|
1266
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1267
|
+
/**
|
1268
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1269
|
+
*
|
1270
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1271
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1272
|
+
* @returns {string} A string representing the location.
|
1273
|
+
*/
|
1274
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1275
|
+
/**
|
1276
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1277
|
+
*
|
1278
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1279
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1280
|
+
* @returns {string} A string representing the collection.
|
1281
|
+
*/
|
1282
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1283
|
+
/**
|
1284
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1285
|
+
*
|
1286
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1287
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1288
|
+
* @returns {string} A string representing the engine.
|
1289
|
+
*/
|
1290
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1291
|
+
/**
|
1292
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1293
|
+
*
|
1294
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1295
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1296
|
+
* @returns {string} A string representing the serving_config.
|
1297
|
+
*/
|
1298
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1146
1299
|
/**
|
1147
1300
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1148
1301
|
*
|
@@ -1599,6 +1752,48 @@ export declare class SearchTuningServiceClient {
|
|
1599
1752
|
* @returns {string} A string representing the schema.
|
1600
1753
|
*/
|
1601
1754
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1755
|
+
/**
|
1756
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1757
|
+
*
|
1758
|
+
* @param {string} project
|
1759
|
+
* @param {string} location
|
1760
|
+
* @param {string} data_store
|
1761
|
+
* @param {string} serving_config
|
1762
|
+
* @returns {string} Resource name string.
|
1763
|
+
*/
|
1764
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1765
|
+
/**
|
1766
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1767
|
+
*
|
1768
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1769
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1770
|
+
* @returns {string} A string representing the project.
|
1771
|
+
*/
|
1772
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1773
|
+
/**
|
1774
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1775
|
+
*
|
1776
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1777
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1778
|
+
* @returns {string} A string representing the location.
|
1779
|
+
*/
|
1780
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1781
|
+
/**
|
1782
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1783
|
+
*
|
1784
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1785
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1786
|
+
* @returns {string} A string representing the data_store.
|
1787
|
+
*/
|
1788
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1789
|
+
/**
|
1790
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1791
|
+
*
|
1792
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1793
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1794
|
+
* @returns {string} A string representing the serving_config.
|
1795
|
+
*/
|
1796
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1602
1797
|
/**
|
1603
1798
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1604
1799
|
*
|
@@ -1725,6 +1920,48 @@ export declare class SearchTuningServiceClient {
|
|
1725
1920
|
* @returns {string} A string representing the data_store.
|
1726
1921
|
*/
|
1727
1922
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1923
|
+
/**
|
1924
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
1925
|
+
*
|
1926
|
+
* @param {string} project
|
1927
|
+
* @param {string} location
|
1928
|
+
* @param {string} data_store
|
1929
|
+
* @param {string} sitemap
|
1930
|
+
* @returns {string} Resource name string.
|
1931
|
+
*/
|
1932
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
1933
|
+
/**
|
1934
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1935
|
+
*
|
1936
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1937
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1938
|
+
* @returns {string} A string representing the project.
|
1939
|
+
*/
|
1940
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1941
|
+
/**
|
1942
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1943
|
+
*
|
1944
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1945
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1946
|
+
* @returns {string} A string representing the location.
|
1947
|
+
*/
|
1948
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1949
|
+
/**
|
1950
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1951
|
+
*
|
1952
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1953
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1954
|
+
* @returns {string} A string representing the data_store.
|
1955
|
+
*/
|
1956
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1957
|
+
/**
|
1958
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1959
|
+
*
|
1960
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1961
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1962
|
+
* @returns {string} A string representing the sitemap.
|
1963
|
+
*/
|
1964
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1728
1965
|
/**
|
1729
1966
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1730
1967
|
*
|