@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,30 @@
|
|
1
|
+
{
|
2
|
+
"interfaces": {
|
3
|
+
"google.cloud.discoveryengine.v1alpha.RankService": {
|
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
|
+
"Rank": {
|
24
|
+
"retry_codes_name": "non_idempotent",
|
25
|
+
"retry_params_name": "default"
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|
@@ -130,7 +130,9 @@ export declare class RecommendationServiceClient {
|
|
130
130
|
* config. For example, for Engine
|
131
131
|
* `projects/* /locations/global/collections/* /engines/my-engine`, you can use
|
132
132
|
* `projects/* /locations/global/collections/* /engines/my-engine/servingConfigs/my-engine`
|
133
|
-
* for your
|
133
|
+
* for your
|
134
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.RecommendationService.Recommend|RecommendationService.Recommend}
|
135
|
+
* requests.
|
134
136
|
* @param {google.cloud.discoveryengine.v1alpha.UserEvent} request.userEvent
|
135
137
|
* Required. Context about the user, what they are looking at and what action
|
136
138
|
* they took to trigger the Recommend request. Note that this user event
|
@@ -299,6 +301,30 @@ export declare class RecommendationServiceClient {
|
|
299
301
|
* ```
|
300
302
|
*/
|
301
303
|
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
304
|
+
/**
|
305
|
+
* Return a fully-qualified aclConfig resource name string.
|
306
|
+
*
|
307
|
+
* @param {string} project
|
308
|
+
* @param {string} location
|
309
|
+
* @returns {string} Resource name string.
|
310
|
+
*/
|
311
|
+
aclConfigPath(project: string, location: string): string;
|
312
|
+
/**
|
313
|
+
* Parse the project from AclConfig resource.
|
314
|
+
*
|
315
|
+
* @param {string} aclConfigName
|
316
|
+
* A fully-qualified path representing AclConfig resource.
|
317
|
+
* @returns {string} A string representing the project.
|
318
|
+
*/
|
319
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
320
|
+
/**
|
321
|
+
* Parse the location from AclConfig resource.
|
322
|
+
*
|
323
|
+
* @param {string} aclConfigName
|
324
|
+
* A fully-qualified path representing AclConfig resource.
|
325
|
+
* @returns {string} A string representing the location.
|
326
|
+
*/
|
327
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
302
328
|
/**
|
303
329
|
* Return a fully-qualified engine resource name string.
|
304
330
|
*
|
@@ -443,6 +469,75 @@ export declare class RecommendationServiceClient {
|
|
443
469
|
* @returns {string} A string representing the document.
|
444
470
|
*/
|
445
471
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
472
|
+
/**
|
473
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
474
|
+
*
|
475
|
+
* @param {string} project
|
476
|
+
* @param {string} location
|
477
|
+
* @param {string} collection
|
478
|
+
* @param {string} data_store
|
479
|
+
* @param {string} branch
|
480
|
+
* @param {string} document
|
481
|
+
* @param {string} chunk
|
482
|
+
* @returns {string} Resource name string.
|
483
|
+
*/
|
484
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
485
|
+
/**
|
486
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
487
|
+
*
|
488
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
489
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
490
|
+
* @returns {string} A string representing the project.
|
491
|
+
*/
|
492
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
493
|
+
/**
|
494
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
495
|
+
*
|
496
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
497
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
498
|
+
* @returns {string} A string representing the location.
|
499
|
+
*/
|
500
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
501
|
+
/**
|
502
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
503
|
+
*
|
504
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
505
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
506
|
+
* @returns {string} A string representing the collection.
|
507
|
+
*/
|
508
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
509
|
+
/**
|
510
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
511
|
+
*
|
512
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
513
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
514
|
+
* @returns {string} A string representing the data_store.
|
515
|
+
*/
|
516
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
517
|
+
/**
|
518
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
519
|
+
*
|
520
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
521
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
522
|
+
* @returns {string} A string representing the branch.
|
523
|
+
*/
|
524
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
525
|
+
/**
|
526
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
527
|
+
*
|
528
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
529
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
530
|
+
* @returns {string} A string representing the document.
|
531
|
+
*/
|
532
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
533
|
+
/**
|
534
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
535
|
+
*
|
536
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
537
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
538
|
+
* @returns {string} A string representing the chunk.
|
539
|
+
*/
|
540
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
446
541
|
/**
|
447
542
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
448
543
|
*
|
@@ -494,6 +589,48 @@ export declare class RecommendationServiceClient {
|
|
494
589
|
* @returns {string} A string representing the conversation.
|
495
590
|
*/
|
496
591
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
592
|
+
/**
|
593
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
594
|
+
*
|
595
|
+
* @param {string} project
|
596
|
+
* @param {string} location
|
597
|
+
* @param {string} collection
|
598
|
+
* @param {string} data_store
|
599
|
+
* @returns {string} Resource name string.
|
600
|
+
*/
|
601
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
602
|
+
/**
|
603
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
604
|
+
*
|
605
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
606
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
607
|
+
* @returns {string} A string representing the project.
|
608
|
+
*/
|
609
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
610
|
+
/**
|
611
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
612
|
+
*
|
613
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
614
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
615
|
+
* @returns {string} A string representing the location.
|
616
|
+
*/
|
617
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
618
|
+
/**
|
619
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
620
|
+
*
|
621
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
622
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
623
|
+
* @returns {string} A string representing the collection.
|
624
|
+
*/
|
625
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
626
|
+
/**
|
627
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
628
|
+
*
|
629
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
630
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
631
|
+
* @returns {string} A string representing the data_store.
|
632
|
+
*/
|
633
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
497
634
|
/**
|
498
635
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
499
636
|
*
|
@@ -875,6 +1012,66 @@ export declare class RecommendationServiceClient {
|
|
875
1012
|
* @returns {string} A string representing the document.
|
876
1013
|
*/
|
877
1014
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1015
|
+
/**
|
1016
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1017
|
+
*
|
1018
|
+
* @param {string} project
|
1019
|
+
* @param {string} location
|
1020
|
+
* @param {string} data_store
|
1021
|
+
* @param {string} branch
|
1022
|
+
* @param {string} document
|
1023
|
+
* @param {string} chunk
|
1024
|
+
* @returns {string} Resource name string.
|
1025
|
+
*/
|
1026
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1027
|
+
/**
|
1028
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1029
|
+
*
|
1030
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1031
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1032
|
+
* @returns {string} A string representing the project.
|
1033
|
+
*/
|
1034
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1035
|
+
/**
|
1036
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1037
|
+
*
|
1038
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1039
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1040
|
+
* @returns {string} A string representing the location.
|
1041
|
+
*/
|
1042
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1043
|
+
/**
|
1044
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1045
|
+
*
|
1046
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1047
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1048
|
+
* @returns {string} A string representing the data_store.
|
1049
|
+
*/
|
1050
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1051
|
+
/**
|
1052
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1053
|
+
*
|
1054
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1055
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1056
|
+
* @returns {string} A string representing the branch.
|
1057
|
+
*/
|
1058
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1059
|
+
/**
|
1060
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1061
|
+
*
|
1062
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1063
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1064
|
+
* @returns {string} A string representing the document.
|
1065
|
+
*/
|
1066
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1067
|
+
/**
|
1068
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1069
|
+
*
|
1070
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1071
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1072
|
+
* @returns {string} A string representing the chunk.
|
1073
|
+
*/
|
1074
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
878
1075
|
/**
|
879
1076
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
880
1077
|
*
|
@@ -917,6 +1114,39 @@ export declare class RecommendationServiceClient {
|
|
917
1114
|
* @returns {string} A string representing the conversation.
|
918
1115
|
*/
|
919
1116
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1117
|
+
/**
|
1118
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1119
|
+
*
|
1120
|
+
* @param {string} project
|
1121
|
+
* @param {string} location
|
1122
|
+
* @param {string} data_store
|
1123
|
+
* @returns {string} Resource name string.
|
1124
|
+
*/
|
1125
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1126
|
+
/**
|
1127
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1128
|
+
*
|
1129
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1130
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1131
|
+
* @returns {string} A string representing the project.
|
1132
|
+
*/
|
1133
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1134
|
+
/**
|
1135
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1136
|
+
*
|
1137
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1138
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1139
|
+
* @returns {string} A string representing the location.
|
1140
|
+
*/
|
1141
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1142
|
+
/**
|
1143
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1144
|
+
*
|
1145
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1146
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1147
|
+
* @returns {string} A string representing the data_store.
|
1148
|
+
*/
|
1149
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
920
1150
|
/**
|
921
1151
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
922
1152
|
*
|