@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
@@ -283,7 +283,7 @@ export declare class ProjectServiceClient {
|
|
283
283
|
* // doThingsWith(response)
|
284
284
|
* ```
|
285
285
|
*/
|
286
|
-
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.
|
286
|
+
listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.IOperation>;
|
287
287
|
/**
|
288
288
|
* Starts asynchronous cancellation on a long-running operation. The server
|
289
289
|
* makes a best effort to cancel the operation, but success is not
|
@@ -816,6 +816,57 @@ export declare class ProjectServiceClient {
|
|
816
816
|
* @returns {string} A string representing the schema.
|
817
817
|
*/
|
818
818
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
819
|
+
/**
|
820
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
821
|
+
*
|
822
|
+
* @param {string} project
|
823
|
+
* @param {string} location
|
824
|
+
* @param {string} collection
|
825
|
+
* @param {string} data_store
|
826
|
+
* @param {string} serving_config
|
827
|
+
* @returns {string} Resource name string.
|
828
|
+
*/
|
829
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
830
|
+
/**
|
831
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
832
|
+
*
|
833
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
834
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
835
|
+
* @returns {string} A string representing the project.
|
836
|
+
*/
|
837
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
838
|
+
/**
|
839
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
840
|
+
*
|
841
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
842
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
843
|
+
* @returns {string} A string representing the location.
|
844
|
+
*/
|
845
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
846
|
+
/**
|
847
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
848
|
+
*
|
849
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
850
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
851
|
+
* @returns {string} A string representing the collection.
|
852
|
+
*/
|
853
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
854
|
+
/**
|
855
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
856
|
+
*
|
857
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
858
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
859
|
+
* @returns {string} A string representing the data_store.
|
860
|
+
*/
|
861
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
862
|
+
/**
|
863
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
864
|
+
*
|
865
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
866
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
867
|
+
* @returns {string} A string representing the serving_config.
|
868
|
+
*/
|
869
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
819
870
|
/**
|
820
871
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
821
872
|
*
|
@@ -969,6 +1020,57 @@ export declare class ProjectServiceClient {
|
|
969
1020
|
* @returns {string} A string representing the data_store.
|
970
1021
|
*/
|
971
1022
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1023
|
+
/**
|
1024
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1025
|
+
*
|
1026
|
+
* @param {string} project
|
1027
|
+
* @param {string} location
|
1028
|
+
* @param {string} collection
|
1029
|
+
* @param {string} data_store
|
1030
|
+
* @param {string} sitemap
|
1031
|
+
* @returns {string} Resource name string.
|
1032
|
+
*/
|
1033
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1034
|
+
/**
|
1035
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1036
|
+
*
|
1037
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1038
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1039
|
+
* @returns {string} A string representing the project.
|
1040
|
+
*/
|
1041
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1042
|
+
/**
|
1043
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1044
|
+
*
|
1045
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1046
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1047
|
+
* @returns {string} A string representing the location.
|
1048
|
+
*/
|
1049
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1050
|
+
/**
|
1051
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1052
|
+
*
|
1053
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1054
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1055
|
+
* @returns {string} A string representing the collection.
|
1056
|
+
*/
|
1057
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1058
|
+
/**
|
1059
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1060
|
+
*
|
1061
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1062
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1063
|
+
* @returns {string} A string representing the data_store.
|
1064
|
+
*/
|
1065
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1066
|
+
/**
|
1067
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1068
|
+
*
|
1069
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1070
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1071
|
+
* @returns {string} A string representing the sitemap.
|
1072
|
+
*/
|
1073
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
972
1074
|
/**
|
973
1075
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
974
1076
|
*
|
@@ -1122,6 +1224,57 @@ export declare class ProjectServiceClient {
|
|
1122
1224
|
* @returns {string} A string representing the conversation.
|
1123
1225
|
*/
|
1124
1226
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1227
|
+
/**
|
1228
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1229
|
+
*
|
1230
|
+
* @param {string} project
|
1231
|
+
* @param {string} location
|
1232
|
+
* @param {string} collection
|
1233
|
+
* @param {string} engine
|
1234
|
+
* @param {string} serving_config
|
1235
|
+
* @returns {string} Resource name string.
|
1236
|
+
*/
|
1237
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1238
|
+
/**
|
1239
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1240
|
+
*
|
1241
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1242
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1243
|
+
* @returns {string} A string representing the project.
|
1244
|
+
*/
|
1245
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1246
|
+
/**
|
1247
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1248
|
+
*
|
1249
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1250
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1251
|
+
* @returns {string} A string representing the location.
|
1252
|
+
*/
|
1253
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1254
|
+
/**
|
1255
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1256
|
+
*
|
1257
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1258
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1259
|
+
* @returns {string} A string representing the collection.
|
1260
|
+
*/
|
1261
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1262
|
+
/**
|
1263
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1264
|
+
*
|
1265
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1266
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1267
|
+
* @returns {string} A string representing the engine.
|
1268
|
+
*/
|
1269
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1270
|
+
/**
|
1271
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1272
|
+
*
|
1273
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1274
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1275
|
+
* @returns {string} A string representing the serving_config.
|
1276
|
+
*/
|
1277
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1125
1278
|
/**
|
1126
1279
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1127
1280
|
*
|
@@ -1578,6 +1731,48 @@ export declare class ProjectServiceClient {
|
|
1578
1731
|
* @returns {string} A string representing the schema.
|
1579
1732
|
*/
|
1580
1733
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1734
|
+
/**
|
1735
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1736
|
+
*
|
1737
|
+
* @param {string} project
|
1738
|
+
* @param {string} location
|
1739
|
+
* @param {string} data_store
|
1740
|
+
* @param {string} serving_config
|
1741
|
+
* @returns {string} Resource name string.
|
1742
|
+
*/
|
1743
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1744
|
+
/**
|
1745
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1746
|
+
*
|
1747
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1748
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1749
|
+
* @returns {string} A string representing the project.
|
1750
|
+
*/
|
1751
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1752
|
+
/**
|
1753
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1754
|
+
*
|
1755
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1756
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1757
|
+
* @returns {string} A string representing the location.
|
1758
|
+
*/
|
1759
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1760
|
+
/**
|
1761
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1762
|
+
*
|
1763
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1764
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1765
|
+
* @returns {string} A string representing the data_store.
|
1766
|
+
*/
|
1767
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1768
|
+
/**
|
1769
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1770
|
+
*
|
1771
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1772
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1773
|
+
* @returns {string} A string representing the serving_config.
|
1774
|
+
*/
|
1775
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1581
1776
|
/**
|
1582
1777
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1583
1778
|
*
|
@@ -1704,6 +1899,48 @@ export declare class ProjectServiceClient {
|
|
1704
1899
|
* @returns {string} A string representing the data_store.
|
1705
1900
|
*/
|
1706
1901
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1902
|
+
/**
|
1903
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
1904
|
+
*
|
1905
|
+
* @param {string} project
|
1906
|
+
* @param {string} location
|
1907
|
+
* @param {string} data_store
|
1908
|
+
* @param {string} sitemap
|
1909
|
+
* @returns {string} Resource name string.
|
1910
|
+
*/
|
1911
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
1912
|
+
/**
|
1913
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1914
|
+
*
|
1915
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1916
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1917
|
+
* @returns {string} A string representing the project.
|
1918
|
+
*/
|
1919
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1920
|
+
/**
|
1921
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1922
|
+
*
|
1923
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1924
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1925
|
+
* @returns {string} A string representing the location.
|
1926
|
+
*/
|
1927
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1928
|
+
/**
|
1929
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1930
|
+
*
|
1931
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1932
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1933
|
+
* @returns {string} A string representing the data_store.
|
1934
|
+
*/
|
1935
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1936
|
+
/**
|
1937
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1938
|
+
*
|
1939
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1940
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1941
|
+
* @returns {string} A string representing the sitemap.
|
1942
|
+
*/
|
1943
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1707
1944
|
/**
|
1708
1945
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1709
1946
|
*
|