@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
@@ -36,6 +36,16 @@
|
|
36
36
|
"timeout_millis": 5000,
|
37
37
|
"retry_codes_name": "unavailable",
|
38
38
|
"retry_params_name": "319f27672a8be83550d842a373549dd84649a57e"
|
39
|
+
},
|
40
|
+
"ImportSuggestionDenyListEntries": {
|
41
|
+
"timeout_millis": 5000,
|
42
|
+
"retry_codes_name": "unavailable",
|
43
|
+
"retry_params_name": "319f27672a8be83550d842a373549dd84649a57e"
|
44
|
+
},
|
45
|
+
"PurgeSuggestionDenyListEntries": {
|
46
|
+
"timeout_millis": 5000,
|
47
|
+
"retry_codes_name": "unavailable",
|
48
|
+
"retry_params_name": "319f27672a8be83550d842a373549dd84649a57e"
|
39
49
|
}
|
40
50
|
}
|
41
51
|
}
|
@@ -177,6 +177,10 @@ export declare class ConversationalSearchServiceClient {
|
|
177
177
|
* For more information about filtering including syntax and filter
|
178
178
|
* operators, see
|
179
179
|
* [Filter](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata)
|
180
|
+
* @param {google.cloud.discoveryengine.v1alpha.SearchRequest.BoostSpec} request.boostSpec
|
181
|
+
* Boost specification to boost certain documents in search results which may
|
182
|
+
* affect the converse response. For more information on boosting, see
|
183
|
+
* [Boosting](https://cloud.google.com/retail/docs/boosting#boost)
|
180
184
|
* @param {object} [options]
|
181
185
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
182
186
|
* @returns {Promise} - The promise which resolves to an array.
|
@@ -266,7 +270,7 @@ export declare class ConversationalSearchServiceClient {
|
|
266
270
|
* {@link protos.google.cloud.discoveryengine.v1alpha.Conversation|Conversation} to
|
267
271
|
* update. The following are NOT supported:
|
268
272
|
*
|
269
|
-
* * {@link protos
|
273
|
+
* * {@link protos.google.cloud.discoveryengine.v1alpha.Conversation.name|Conversation.name}
|
270
274
|
*
|
271
275
|
* If not set or empty, all supported fields are updated.
|
272
276
|
* @param {object} [options]
|
@@ -498,6 +502,30 @@ export declare class ConversationalSearchServiceClient {
|
|
498
502
|
* ```
|
499
503
|
*/
|
500
504
|
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
505
|
+
/**
|
506
|
+
* Return a fully-qualified aclConfig resource name string.
|
507
|
+
*
|
508
|
+
* @param {string} project
|
509
|
+
* @param {string} location
|
510
|
+
* @returns {string} Resource name string.
|
511
|
+
*/
|
512
|
+
aclConfigPath(project: string, location: string): string;
|
513
|
+
/**
|
514
|
+
* Parse the project from AclConfig resource.
|
515
|
+
*
|
516
|
+
* @param {string} aclConfigName
|
517
|
+
* A fully-qualified path representing AclConfig resource.
|
518
|
+
* @returns {string} A string representing the project.
|
519
|
+
*/
|
520
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
521
|
+
/**
|
522
|
+
* Parse the location from AclConfig resource.
|
523
|
+
*
|
524
|
+
* @param {string} aclConfigName
|
525
|
+
* A fully-qualified path representing AclConfig resource.
|
526
|
+
* @returns {string} A string representing the location.
|
527
|
+
*/
|
528
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
501
529
|
/**
|
502
530
|
* Return a fully-qualified engine resource name string.
|
503
531
|
*
|
@@ -642,6 +670,75 @@ export declare class ConversationalSearchServiceClient {
|
|
642
670
|
* @returns {string} A string representing the document.
|
643
671
|
*/
|
644
672
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
673
|
+
/**
|
674
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
675
|
+
*
|
676
|
+
* @param {string} project
|
677
|
+
* @param {string} location
|
678
|
+
* @param {string} collection
|
679
|
+
* @param {string} data_store
|
680
|
+
* @param {string} branch
|
681
|
+
* @param {string} document
|
682
|
+
* @param {string} chunk
|
683
|
+
* @returns {string} Resource name string.
|
684
|
+
*/
|
685
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
686
|
+
/**
|
687
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
688
|
+
*
|
689
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
690
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
691
|
+
* @returns {string} A string representing the project.
|
692
|
+
*/
|
693
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
694
|
+
/**
|
695
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
696
|
+
*
|
697
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
698
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
699
|
+
* @returns {string} A string representing the location.
|
700
|
+
*/
|
701
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
702
|
+
/**
|
703
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
704
|
+
*
|
705
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
706
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
707
|
+
* @returns {string} A string representing the collection.
|
708
|
+
*/
|
709
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
710
|
+
/**
|
711
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
712
|
+
*
|
713
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
714
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
715
|
+
* @returns {string} A string representing the data_store.
|
716
|
+
*/
|
717
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
718
|
+
/**
|
719
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
720
|
+
*
|
721
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
722
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
723
|
+
* @returns {string} A string representing the branch.
|
724
|
+
*/
|
725
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
726
|
+
/**
|
727
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
728
|
+
*
|
729
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
730
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
731
|
+
* @returns {string} A string representing the document.
|
732
|
+
*/
|
733
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
734
|
+
/**
|
735
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
736
|
+
*
|
737
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
738
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
739
|
+
* @returns {string} A string representing the chunk.
|
740
|
+
*/
|
741
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
645
742
|
/**
|
646
743
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
647
744
|
*
|
@@ -693,6 +790,48 @@ export declare class ConversationalSearchServiceClient {
|
|
693
790
|
* @returns {string} A string representing the conversation.
|
694
791
|
*/
|
695
792
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
793
|
+
/**
|
794
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
795
|
+
*
|
796
|
+
* @param {string} project
|
797
|
+
* @param {string} location
|
798
|
+
* @param {string} collection
|
799
|
+
* @param {string} data_store
|
800
|
+
* @returns {string} Resource name string.
|
801
|
+
*/
|
802
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
803
|
+
/**
|
804
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
805
|
+
*
|
806
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
807
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
808
|
+
* @returns {string} A string representing the project.
|
809
|
+
*/
|
810
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
811
|
+
/**
|
812
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
813
|
+
*
|
814
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
815
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
816
|
+
* @returns {string} A string representing the location.
|
817
|
+
*/
|
818
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
819
|
+
/**
|
820
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
821
|
+
*
|
822
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
823
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
824
|
+
* @returns {string} A string representing the collection.
|
825
|
+
*/
|
826
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
827
|
+
/**
|
828
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
829
|
+
*
|
830
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
831
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
832
|
+
* @returns {string} A string representing the data_store.
|
833
|
+
*/
|
834
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
696
835
|
/**
|
697
836
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
698
837
|
*
|
@@ -1074,6 +1213,66 @@ export declare class ConversationalSearchServiceClient {
|
|
1074
1213
|
* @returns {string} A string representing the document.
|
1075
1214
|
*/
|
1076
1215
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1216
|
+
/**
|
1217
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1218
|
+
*
|
1219
|
+
* @param {string} project
|
1220
|
+
* @param {string} location
|
1221
|
+
* @param {string} data_store
|
1222
|
+
* @param {string} branch
|
1223
|
+
* @param {string} document
|
1224
|
+
* @param {string} chunk
|
1225
|
+
* @returns {string} Resource name string.
|
1226
|
+
*/
|
1227
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1228
|
+
/**
|
1229
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1230
|
+
*
|
1231
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1232
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1233
|
+
* @returns {string} A string representing the project.
|
1234
|
+
*/
|
1235
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1236
|
+
/**
|
1237
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1238
|
+
*
|
1239
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1240
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1241
|
+
* @returns {string} A string representing the location.
|
1242
|
+
*/
|
1243
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1244
|
+
/**
|
1245
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1246
|
+
*
|
1247
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1248
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1249
|
+
* @returns {string} A string representing the data_store.
|
1250
|
+
*/
|
1251
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1252
|
+
/**
|
1253
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1254
|
+
*
|
1255
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1256
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1257
|
+
* @returns {string} A string representing the branch.
|
1258
|
+
*/
|
1259
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1260
|
+
/**
|
1261
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1262
|
+
*
|
1263
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1264
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1265
|
+
* @returns {string} A string representing the document.
|
1266
|
+
*/
|
1267
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1268
|
+
/**
|
1269
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1270
|
+
*
|
1271
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1272
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1273
|
+
* @returns {string} A string representing the chunk.
|
1274
|
+
*/
|
1275
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1077
1276
|
/**
|
1078
1277
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
1079
1278
|
*
|
@@ -1116,6 +1315,39 @@ export declare class ConversationalSearchServiceClient {
|
|
1116
1315
|
* @returns {string} A string representing the conversation.
|
1117
1316
|
*/
|
1118
1317
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1318
|
+
/**
|
1319
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1320
|
+
*
|
1321
|
+
* @param {string} project
|
1322
|
+
* @param {string} location
|
1323
|
+
* @param {string} data_store
|
1324
|
+
* @returns {string} Resource name string.
|
1325
|
+
*/
|
1326
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1327
|
+
/**
|
1328
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1329
|
+
*
|
1330
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1331
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1332
|
+
* @returns {string} A string representing the project.
|
1333
|
+
*/
|
1334
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1335
|
+
/**
|
1336
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1337
|
+
*
|
1338
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1339
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1340
|
+
* @returns {string} A string representing the location.
|
1341
|
+
*/
|
1342
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1343
|
+
/**
|
1344
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1345
|
+
*
|
1346
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1347
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1348
|
+
* @returns {string} A string representing the data_store.
|
1349
|
+
*/
|
1350
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1119
1351
|
/**
|
1120
1352
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
1121
1353
|
*
|