@google-cloud/discoveryengine 1.4.0 → 1.5.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 +15 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config.proto +49 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config_service.proto +79 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +106 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/chunk_service.proto +137 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +97 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/completion.proto +52 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/completion_service.proto +44 -2
- package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +6 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +44 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +80 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +102 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +127 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +70 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +13 -8
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +3 -2
- package/build/protos/google/cloud/discoveryengine/v1alpha/estimate_billing_service.proto +130 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +376 -21
- package/build/protos/google/cloud/discoveryengine/v1alpha/purge_config.proto +66 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +115 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +3 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +3 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +221 -30
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +27 -20
- package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config.proto +271 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +148 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +9 -3
- package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +7 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +4 -3
- package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +5 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +22 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +9 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +94 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +3 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +19 -4
- package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +151 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +4 -3
- package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +6 -5
- package/build/protos/protos.d.ts +18160 -8292
- package/build/protos/protos.js +50325 -25400
- package/build/protos/protos.json +4864 -2447
- package/build/src/v1/completion_service_client.js +10 -7
- package/build/src/v1/conversational_search_service_client.js +10 -7
- package/build/src/v1/data_store_service_client.js +10 -7
- package/build/src/v1/document_service_client.js +10 -7
- package/build/src/v1/engine_service_client.js +10 -7
- package/build/src/v1/schema_service_client.js +10 -7
- package/build/src/v1/search_service_client.js +10 -7
- package/build/src/v1/site_search_engine_service_client.js +10 -7
- package/build/src/v1/user_event_service_client.js +10 -7
- package/build/src/v1alpha/acl_config_service_client.d.ts +1233 -0
- package/build/src/v1alpha/acl_config_service_client.js +1768 -0
- package/build/src/v1alpha/acl_config_service_client_config.json +34 -0
- package/build/src/v1alpha/chunk_service_client.d.ts +1350 -0
- package/build/src/v1alpha/chunk_service_client.js +1889 -0
- package/build/src/v1alpha/chunk_service_client_config.json +34 -0
- package/build/src/v1alpha/completion_service_client.d.ts +588 -3
- package/build/src/v1alpha/completion_service_client.js +844 -9
- package/build/src/v1alpha/completion_service_client_config.json +10 -0
- package/build/src/v1alpha/conversational_search_service_client.d.ts +233 -1
- package/build/src/v1alpha/conversational_search_service_client.js +326 -7
- package/build/src/v1alpha/data_store_service_client.d.ts +451 -3
- package/build/src/v1alpha/data_store_service_client.js +575 -9
- package/build/src/v1alpha/data_store_service_client_config.json +8 -0
- package/build/src/v1alpha/document_service_client.d.ts +462 -21
- package/build/src/v1alpha/document_service_client.js +549 -7
- package/build/src/v1alpha/document_service_client_config.json +5 -0
- package/build/src/v1alpha/engine_service_client.d.ts +375 -2
- package/build/src/v1alpha/engine_service_client.js +527 -7
- package/build/src/v1alpha/estimate_billing_service_client.d.ts +1367 -0
- package/build/src/v1alpha/estimate_billing_service_client.js +2034 -0
- package/build/src/v1alpha/estimate_billing_service_client_config.json +30 -0
- package/build/src/v1alpha/index.d.ts +5 -0
- package/build/src/v1alpha/index.js +11 -1
- package/build/src/v1alpha/rank_service_client.d.ts +1254 -0
- package/build/src/v1alpha/rank_service_client.js +1796 -0
- package/build/src/v1alpha/rank_service_client_config.json +30 -0
- package/build/src/v1alpha/recommendation_service_client.d.ts +231 -1
- package/build/src/v1alpha/recommendation_service_client.js +326 -7
- package/build/src/v1alpha/schema_service_client.d.ts +372 -0
- package/build/src/v1alpha/schema_service_client.js +527 -7
- package/build/src/v1alpha/search_service_client.d.ts +288 -30
- package/build/src/v1alpha/search_service_client.js +366 -27
- package/build/src/v1alpha/search_tuning_service_client.d.ts +373 -1
- package/build/src/v1alpha/search_tuning_service_client.js +527 -7
- package/build/src/v1alpha/serving_config_service_client.d.ts +1370 -0
- package/build/src/v1alpha/serving_config_service_client.js +1939 -0
- package/build/src/v1alpha/serving_config_service_client_config.json +38 -0
- package/build/src/v1alpha/site_search_engine_service_client.d.ts +372 -0
- package/build/src/v1alpha/site_search_engine_service_client.js +527 -7
- package/build/src/v1alpha/user_event_service_client.d.ts +372 -0
- package/build/src/v1alpha/user_event_service_client.js +527 -7
- package/build/src/v1beta/completion_service_client.d.ts +75 -0
- package/build/src/v1beta/completion_service_client.js +114 -7
- package/build/src/v1beta/conversational_search_service_client.d.ts +79 -0
- package/build/src/v1beta/conversational_search_service_client.js +114 -7
- package/build/src/v1beta/data_store_service_client.d.ts +75 -0
- package/build/src/v1beta/data_store_service_client.js +114 -7
- package/build/src/v1beta/document_service_client.d.ts +75 -0
- package/build/src/v1beta/document_service_client.js +114 -7
- package/build/src/v1beta/engine_service_client.d.ts +75 -0
- package/build/src/v1beta/engine_service_client.js +114 -7
- package/build/src/v1beta/index.d.ts +1 -0
- package/build/src/v1beta/index.js +3 -1
- package/build/src/v1beta/recommendation_service_client.d.ts +75 -0
- package/build/src/v1beta/recommendation_service_client.js +114 -7
- package/build/src/v1beta/schema_service_client.d.ts +75 -0
- package/build/src/v1beta/schema_service_client.js +114 -7
- package/build/src/v1beta/search_service_client.d.ts +81 -0
- package/build/src/v1beta/search_service_client.js +118 -7
- package/build/src/v1beta/search_tuning_service_client.d.ts +1196 -0
- package/build/src/v1beta/search_tuning_service_client.js +1784 -0
- package/build/src/v1beta/search_tuning_service_client_config.json +30 -0
- package/build/src/v1beta/serving_config_service_client.d.ts +123 -8
- package/build/src/v1beta/serving_config_service_client.js +176 -12
- package/build/src/v1beta/site_search_engine_service_client.d.ts +75 -0
- package/build/src/v1beta/site_search_engine_service_client.js +114 -7
- package/build/src/v1beta/user_event_service_client.d.ts +75 -0
- package/build/src/v1beta/user_event_service_client.js +114 -7
- package/package.json +3 -3
@@ -0,0 +1,38 @@
|
|
1
|
+
{
|
2
|
+
"interfaces": {
|
3
|
+
"google.cloud.discoveryengine.v1alpha.ServingConfigService": {
|
4
|
+
"retry_codes": {
|
5
|
+
"non_idempotent": [],
|
6
|
+
"idempotent": [
|
7
|
+
"DEADLINE_EXCEEDED",
|
8
|
+
"UNAVAILABLE"
|
9
|
+
]
|
10
|
+
},
|
11
|
+
"retry_params": {
|
12
|
+
"default": {
|
13
|
+
"initial_retry_delay_millis": 100,
|
14
|
+
"retry_delay_multiplier": 1.3,
|
15
|
+
"max_retry_delay_millis": 60000,
|
16
|
+
"initial_rpc_timeout_millis": 60000,
|
17
|
+
"rpc_timeout_multiplier": 1,
|
18
|
+
"max_rpc_timeout_millis": 60000,
|
19
|
+
"total_timeout_millis": 600000
|
20
|
+
}
|
21
|
+
},
|
22
|
+
"methods": {
|
23
|
+
"UpdateServingConfig": {
|
24
|
+
"retry_codes_name": "non_idempotent",
|
25
|
+
"retry_params_name": "default"
|
26
|
+
},
|
27
|
+
"GetServingConfig": {
|
28
|
+
"retry_codes_name": "non_idempotent",
|
29
|
+
"retry_params_name": "default"
|
30
|
+
},
|
31
|
+
"ListServingConfigs": {
|
32
|
+
"retry_codes_name": "non_idempotent",
|
33
|
+
"retry_params_name": "default"
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
@@ -925,6 +925,30 @@ export declare class SiteSearchEngineServiceClient {
|
|
925
925
|
* ```
|
926
926
|
*/
|
927
927
|
deleteOperation(request: protos.google.longrunning.DeleteOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>): Promise<protos.google.protobuf.Empty>;
|
928
|
+
/**
|
929
|
+
* Return a fully-qualified aclConfig resource name string.
|
930
|
+
*
|
931
|
+
* @param {string} project
|
932
|
+
* @param {string} location
|
933
|
+
* @returns {string} Resource name string.
|
934
|
+
*/
|
935
|
+
aclConfigPath(project: string, location: string): string;
|
936
|
+
/**
|
937
|
+
* Parse the project from AclConfig resource.
|
938
|
+
*
|
939
|
+
* @param {string} aclConfigName
|
940
|
+
* A fully-qualified path representing AclConfig resource.
|
941
|
+
* @returns {string} A string representing the project.
|
942
|
+
*/
|
943
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
944
|
+
/**
|
945
|
+
* Parse the location from AclConfig resource.
|
946
|
+
*
|
947
|
+
* @param {string} aclConfigName
|
948
|
+
* A fully-qualified path representing AclConfig resource.
|
949
|
+
* @returns {string} A string representing the location.
|
950
|
+
*/
|
951
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
928
952
|
/**
|
929
953
|
* Return a fully-qualified engine resource name string.
|
930
954
|
*
|
@@ -1069,6 +1093,75 @@ export declare class SiteSearchEngineServiceClient {
|
|
1069
1093
|
* @returns {string} A string representing the document.
|
1070
1094
|
*/
|
1071
1095
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
1096
|
+
/**
|
1097
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
1098
|
+
*
|
1099
|
+
* @param {string} project
|
1100
|
+
* @param {string} location
|
1101
|
+
* @param {string} collection
|
1102
|
+
* @param {string} data_store
|
1103
|
+
* @param {string} branch
|
1104
|
+
* @param {string} document
|
1105
|
+
* @param {string} chunk
|
1106
|
+
* @returns {string} Resource name string.
|
1107
|
+
*/
|
1108
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1109
|
+
/**
|
1110
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1111
|
+
*
|
1112
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1113
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1114
|
+
* @returns {string} A string representing the project.
|
1115
|
+
*/
|
1116
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1117
|
+
/**
|
1118
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1119
|
+
*
|
1120
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1121
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1122
|
+
* @returns {string} A string representing the location.
|
1123
|
+
*/
|
1124
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1125
|
+
/**
|
1126
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1127
|
+
*
|
1128
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1129
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1130
|
+
* @returns {string} A string representing the collection.
|
1131
|
+
*/
|
1132
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1133
|
+
/**
|
1134
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1135
|
+
*
|
1136
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1137
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1138
|
+
* @returns {string} A string representing the data_store.
|
1139
|
+
*/
|
1140
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1141
|
+
/**
|
1142
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1143
|
+
*
|
1144
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1145
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1146
|
+
* @returns {string} A string representing the branch.
|
1147
|
+
*/
|
1148
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1149
|
+
/**
|
1150
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1151
|
+
*
|
1152
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1153
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1154
|
+
* @returns {string} A string representing the document.
|
1155
|
+
*/
|
1156
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1157
|
+
/**
|
1158
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1159
|
+
*
|
1160
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1161
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1162
|
+
* @returns {string} A string representing the chunk.
|
1163
|
+
*/
|
1164
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1072
1165
|
/**
|
1073
1166
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
1074
1167
|
*
|
@@ -1120,6 +1213,48 @@ export declare class SiteSearchEngineServiceClient {
|
|
1120
1213
|
* @returns {string} A string representing the conversation.
|
1121
1214
|
*/
|
1122
1215
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
1216
|
+
/**
|
1217
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
1218
|
+
*
|
1219
|
+
* @param {string} project
|
1220
|
+
* @param {string} location
|
1221
|
+
* @param {string} collection
|
1222
|
+
* @param {string} data_store
|
1223
|
+
* @returns {string} Resource name string.
|
1224
|
+
*/
|
1225
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
1226
|
+
/**
|
1227
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1228
|
+
*
|
1229
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1230
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1231
|
+
* @returns {string} A string representing the project.
|
1232
|
+
*/
|
1233
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1234
|
+
/**
|
1235
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1236
|
+
*
|
1237
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1238
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1239
|
+
* @returns {string} A string representing the location.
|
1240
|
+
*/
|
1241
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1242
|
+
/**
|
1243
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1244
|
+
*
|
1245
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1246
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1247
|
+
* @returns {string} A string representing the collection.
|
1248
|
+
*/
|
1249
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1250
|
+
/**
|
1251
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1252
|
+
*
|
1253
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1254
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1255
|
+
* @returns {string} A string representing the data_store.
|
1256
|
+
*/
|
1257
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1123
1258
|
/**
|
1124
1259
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
1125
1260
|
*
|
@@ -1171,6 +1306,57 @@ export declare class SiteSearchEngineServiceClient {
|
|
1171
1306
|
* @returns {string} A string representing the schema.
|
1172
1307
|
*/
|
1173
1308
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
1309
|
+
/**
|
1310
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
1311
|
+
*
|
1312
|
+
* @param {string} project
|
1313
|
+
* @param {string} location
|
1314
|
+
* @param {string} collection
|
1315
|
+
* @param {string} data_store
|
1316
|
+
* @param {string} serving_config
|
1317
|
+
* @returns {string} Resource name string.
|
1318
|
+
*/
|
1319
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
1320
|
+
/**
|
1321
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
1322
|
+
*
|
1323
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1324
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1325
|
+
* @returns {string} A string representing the project.
|
1326
|
+
*/
|
1327
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1328
|
+
/**
|
1329
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1330
|
+
*
|
1331
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1332
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1333
|
+
* @returns {string} A string representing the location.
|
1334
|
+
*/
|
1335
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1336
|
+
/**
|
1337
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1338
|
+
*
|
1339
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1340
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1341
|
+
* @returns {string} A string representing the collection.
|
1342
|
+
*/
|
1343
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1344
|
+
/**
|
1345
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1346
|
+
*
|
1347
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1348
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1349
|
+
* @returns {string} A string representing the data_store.
|
1350
|
+
*/
|
1351
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1352
|
+
/**
|
1353
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1354
|
+
*
|
1355
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1356
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1357
|
+
* @returns {string} A string representing the serving_config.
|
1358
|
+
*/
|
1359
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1174
1360
|
/**
|
1175
1361
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
|
1176
1362
|
*
|
@@ -1315,6 +1501,57 @@ export declare class SiteSearchEngineServiceClient {
|
|
1315
1501
|
* @returns {string} A string representing the conversation.
|
1316
1502
|
*/
|
1317
1503
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1504
|
+
/**
|
1505
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1506
|
+
*
|
1507
|
+
* @param {string} project
|
1508
|
+
* @param {string} location
|
1509
|
+
* @param {string} collection
|
1510
|
+
* @param {string} engine
|
1511
|
+
* @param {string} serving_config
|
1512
|
+
* @returns {string} Resource name string.
|
1513
|
+
*/
|
1514
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1515
|
+
/**
|
1516
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1517
|
+
*
|
1518
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1519
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1520
|
+
* @returns {string} A string representing the project.
|
1521
|
+
*/
|
1522
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1523
|
+
/**
|
1524
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1525
|
+
*
|
1526
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1527
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1528
|
+
* @returns {string} A string representing the location.
|
1529
|
+
*/
|
1530
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1531
|
+
/**
|
1532
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1533
|
+
*
|
1534
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1535
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1536
|
+
* @returns {string} A string representing the collection.
|
1537
|
+
*/
|
1538
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1539
|
+
/**
|
1540
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1541
|
+
*
|
1542
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1543
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1544
|
+
* @returns {string} A string representing the engine.
|
1545
|
+
*/
|
1546
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1547
|
+
/**
|
1548
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1549
|
+
*
|
1550
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1551
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1552
|
+
* @returns {string} A string representing the serving_config.
|
1553
|
+
*/
|
1554
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1318
1555
|
/**
|
1319
1556
|
* Return a fully-qualified projectLocationDataStore resource name string.
|
1320
1557
|
*
|
@@ -1399,6 +1636,66 @@ export declare class SiteSearchEngineServiceClient {
|
|
1399
1636
|
* @returns {string} A string representing the document.
|
1400
1637
|
*/
|
1401
1638
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1639
|
+
/**
|
1640
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1641
|
+
*
|
1642
|
+
* @param {string} project
|
1643
|
+
* @param {string} location
|
1644
|
+
* @param {string} data_store
|
1645
|
+
* @param {string} branch
|
1646
|
+
* @param {string} document
|
1647
|
+
* @param {string} chunk
|
1648
|
+
* @returns {string} Resource name string.
|
1649
|
+
*/
|
1650
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1651
|
+
/**
|
1652
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1653
|
+
*
|
1654
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1655
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1656
|
+
* @returns {string} A string representing the project.
|
1657
|
+
*/
|
1658
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1659
|
+
/**
|
1660
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1661
|
+
*
|
1662
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1663
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1664
|
+
* @returns {string} A string representing the location.
|
1665
|
+
*/
|
1666
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1667
|
+
/**
|
1668
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1669
|
+
*
|
1670
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1671
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1672
|
+
* @returns {string} A string representing the data_store.
|
1673
|
+
*/
|
1674
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1675
|
+
/**
|
1676
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1677
|
+
*
|
1678
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1679
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1680
|
+
* @returns {string} A string representing the branch.
|
1681
|
+
*/
|
1682
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1683
|
+
/**
|
1684
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1685
|
+
*
|
1686
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1687
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1688
|
+
* @returns {string} A string representing the document.
|
1689
|
+
*/
|
1690
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1691
|
+
/**
|
1692
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1693
|
+
*
|
1694
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1695
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1696
|
+
* @returns {string} A string representing the chunk.
|
1697
|
+
*/
|
1698
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1402
1699
|
/**
|
1403
1700
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
1404
1701
|
*
|
@@ -1441,6 +1738,39 @@ export declare class SiteSearchEngineServiceClient {
|
|
1441
1738
|
* @returns {string} A string representing the conversation.
|
1442
1739
|
*/
|
1443
1740
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1741
|
+
/**
|
1742
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1743
|
+
*
|
1744
|
+
* @param {string} project
|
1745
|
+
* @param {string} location
|
1746
|
+
* @param {string} data_store
|
1747
|
+
* @returns {string} Resource name string.
|
1748
|
+
*/
|
1749
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1750
|
+
/**
|
1751
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1752
|
+
*
|
1753
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1754
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1755
|
+
* @returns {string} A string representing the project.
|
1756
|
+
*/
|
1757
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1758
|
+
/**
|
1759
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1760
|
+
*
|
1761
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1762
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1763
|
+
* @returns {string} A string representing the location.
|
1764
|
+
*/
|
1765
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1766
|
+
/**
|
1767
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1768
|
+
*
|
1769
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1770
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1771
|
+
* @returns {string} A string representing the data_store.
|
1772
|
+
*/
|
1773
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1444
1774
|
/**
|
1445
1775
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
1446
1776
|
*
|
@@ -1483,6 +1813,48 @@ export declare class SiteSearchEngineServiceClient {
|
|
1483
1813
|
* @returns {string} A string representing the schema.
|
1484
1814
|
*/
|
1485
1815
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1816
|
+
/**
|
1817
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1818
|
+
*
|
1819
|
+
* @param {string} project
|
1820
|
+
* @param {string} location
|
1821
|
+
* @param {string} data_store
|
1822
|
+
* @param {string} serving_config
|
1823
|
+
* @returns {string} Resource name string.
|
1824
|
+
*/
|
1825
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1826
|
+
/**
|
1827
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1828
|
+
*
|
1829
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1830
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1831
|
+
* @returns {string} A string representing the project.
|
1832
|
+
*/
|
1833
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1834
|
+
/**
|
1835
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1836
|
+
*
|
1837
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1838
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1839
|
+
* @returns {string} A string representing the location.
|
1840
|
+
*/
|
1841
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1842
|
+
/**
|
1843
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1844
|
+
*
|
1845
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1846
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1847
|
+
* @returns {string} A string representing the data_store.
|
1848
|
+
*/
|
1849
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1850
|
+
/**
|
1851
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1852
|
+
*
|
1853
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1854
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1855
|
+
* @returns {string} A string representing the serving_config.
|
1856
|
+
*/
|
1857
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1486
1858
|
/**
|
1487
1859
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
|
1488
1860
|
*
|