@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
@@ -480,6 +480,30 @@ export declare class UserEventServiceClient {
|
|
480
480
|
* ```
|
481
481
|
*/
|
482
482
|
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>;
|
483
|
+
/**
|
484
|
+
* Return a fully-qualified aclConfig resource name string.
|
485
|
+
*
|
486
|
+
* @param {string} project
|
487
|
+
* @param {string} location
|
488
|
+
* @returns {string} Resource name string.
|
489
|
+
*/
|
490
|
+
aclConfigPath(project: string, location: string): string;
|
491
|
+
/**
|
492
|
+
* Parse the project from AclConfig resource.
|
493
|
+
*
|
494
|
+
* @param {string} aclConfigName
|
495
|
+
* A fully-qualified path representing AclConfig resource.
|
496
|
+
* @returns {string} A string representing the project.
|
497
|
+
*/
|
498
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
499
|
+
/**
|
500
|
+
* Parse the location from AclConfig resource.
|
501
|
+
*
|
502
|
+
* @param {string} aclConfigName
|
503
|
+
* A fully-qualified path representing AclConfig resource.
|
504
|
+
* @returns {string} A string representing the location.
|
505
|
+
*/
|
506
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
483
507
|
/**
|
484
508
|
* Return a fully-qualified engine resource name string.
|
485
509
|
*
|
@@ -624,6 +648,75 @@ export declare class UserEventServiceClient {
|
|
624
648
|
* @returns {string} A string representing the document.
|
625
649
|
*/
|
626
650
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
651
|
+
/**
|
652
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
653
|
+
*
|
654
|
+
* @param {string} project
|
655
|
+
* @param {string} location
|
656
|
+
* @param {string} collection
|
657
|
+
* @param {string} data_store
|
658
|
+
* @param {string} branch
|
659
|
+
* @param {string} document
|
660
|
+
* @param {string} chunk
|
661
|
+
* @returns {string} Resource name string.
|
662
|
+
*/
|
663
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
664
|
+
/**
|
665
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
666
|
+
*
|
667
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
668
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
669
|
+
* @returns {string} A string representing the project.
|
670
|
+
*/
|
671
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
672
|
+
/**
|
673
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
674
|
+
*
|
675
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
676
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
677
|
+
* @returns {string} A string representing the location.
|
678
|
+
*/
|
679
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
680
|
+
/**
|
681
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
682
|
+
*
|
683
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
684
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
685
|
+
* @returns {string} A string representing the collection.
|
686
|
+
*/
|
687
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
688
|
+
/**
|
689
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
690
|
+
*
|
691
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
692
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
693
|
+
* @returns {string} A string representing the data_store.
|
694
|
+
*/
|
695
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
696
|
+
/**
|
697
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
698
|
+
*
|
699
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
700
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
701
|
+
* @returns {string} A string representing the branch.
|
702
|
+
*/
|
703
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
704
|
+
/**
|
705
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
706
|
+
*
|
707
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
708
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
709
|
+
* @returns {string} A string representing the document.
|
710
|
+
*/
|
711
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
712
|
+
/**
|
713
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
714
|
+
*
|
715
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
716
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
717
|
+
* @returns {string} A string representing the chunk.
|
718
|
+
*/
|
719
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
627
720
|
/**
|
628
721
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
629
722
|
*
|
@@ -675,6 +768,48 @@ export declare class UserEventServiceClient {
|
|
675
768
|
* @returns {string} A string representing the conversation.
|
676
769
|
*/
|
677
770
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
771
|
+
/**
|
772
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
773
|
+
*
|
774
|
+
* @param {string} project
|
775
|
+
* @param {string} location
|
776
|
+
* @param {string} collection
|
777
|
+
* @param {string} data_store
|
778
|
+
* @returns {string} Resource name string.
|
779
|
+
*/
|
780
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
781
|
+
/**
|
782
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
783
|
+
*
|
784
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
785
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
786
|
+
* @returns {string} A string representing the project.
|
787
|
+
*/
|
788
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
789
|
+
/**
|
790
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
791
|
+
*
|
792
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
793
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
794
|
+
* @returns {string} A string representing the location.
|
795
|
+
*/
|
796
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
797
|
+
/**
|
798
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
799
|
+
*
|
800
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
801
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
802
|
+
* @returns {string} A string representing the collection.
|
803
|
+
*/
|
804
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
805
|
+
/**
|
806
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
807
|
+
*
|
808
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
809
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
810
|
+
* @returns {string} A string representing the data_store.
|
811
|
+
*/
|
812
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
678
813
|
/**
|
679
814
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
680
815
|
*
|
@@ -726,6 +861,57 @@ export declare class UserEventServiceClient {
|
|
726
861
|
* @returns {string} A string representing the schema.
|
727
862
|
*/
|
728
863
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
864
|
+
/**
|
865
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
866
|
+
*
|
867
|
+
* @param {string} project
|
868
|
+
* @param {string} location
|
869
|
+
* @param {string} collection
|
870
|
+
* @param {string} data_store
|
871
|
+
* @param {string} serving_config
|
872
|
+
* @returns {string} Resource name string.
|
873
|
+
*/
|
874
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
875
|
+
/**
|
876
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
877
|
+
*
|
878
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
879
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
880
|
+
* @returns {string} A string representing the project.
|
881
|
+
*/
|
882
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
883
|
+
/**
|
884
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
885
|
+
*
|
886
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
887
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
888
|
+
* @returns {string} A string representing the location.
|
889
|
+
*/
|
890
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
891
|
+
/**
|
892
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
893
|
+
*
|
894
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
895
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
896
|
+
* @returns {string} A string representing the collection.
|
897
|
+
*/
|
898
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
899
|
+
/**
|
900
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
901
|
+
*
|
902
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
903
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
904
|
+
* @returns {string} A string representing the data_store.
|
905
|
+
*/
|
906
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
907
|
+
/**
|
908
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
909
|
+
*
|
910
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
911
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
912
|
+
* @returns {string} A string representing the serving_config.
|
913
|
+
*/
|
914
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
729
915
|
/**
|
730
916
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
|
731
917
|
*
|
@@ -870,6 +1056,57 @@ export declare class UserEventServiceClient {
|
|
870
1056
|
* @returns {string} A string representing the conversation.
|
871
1057
|
*/
|
872
1058
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1059
|
+
/**
|
1060
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1061
|
+
*
|
1062
|
+
* @param {string} project
|
1063
|
+
* @param {string} location
|
1064
|
+
* @param {string} collection
|
1065
|
+
* @param {string} engine
|
1066
|
+
* @param {string} serving_config
|
1067
|
+
* @returns {string} Resource name string.
|
1068
|
+
*/
|
1069
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1070
|
+
/**
|
1071
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1072
|
+
*
|
1073
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1074
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1075
|
+
* @returns {string} A string representing the project.
|
1076
|
+
*/
|
1077
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1078
|
+
/**
|
1079
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1080
|
+
*
|
1081
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1082
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1083
|
+
* @returns {string} A string representing the location.
|
1084
|
+
*/
|
1085
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1086
|
+
/**
|
1087
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1088
|
+
*
|
1089
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1090
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1091
|
+
* @returns {string} A string representing the collection.
|
1092
|
+
*/
|
1093
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1094
|
+
/**
|
1095
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1096
|
+
*
|
1097
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1098
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1099
|
+
* @returns {string} A string representing the engine.
|
1100
|
+
*/
|
1101
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1102
|
+
/**
|
1103
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1104
|
+
*
|
1105
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1106
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1107
|
+
* @returns {string} A string representing the serving_config.
|
1108
|
+
*/
|
1109
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
873
1110
|
/**
|
874
1111
|
* Return a fully-qualified projectLocationDataStore resource name string.
|
875
1112
|
*
|
@@ -954,6 +1191,66 @@ export declare class UserEventServiceClient {
|
|
954
1191
|
* @returns {string} A string representing the document.
|
955
1192
|
*/
|
956
1193
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1194
|
+
/**
|
1195
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1196
|
+
*
|
1197
|
+
* @param {string} project
|
1198
|
+
* @param {string} location
|
1199
|
+
* @param {string} data_store
|
1200
|
+
* @param {string} branch
|
1201
|
+
* @param {string} document
|
1202
|
+
* @param {string} chunk
|
1203
|
+
* @returns {string} Resource name string.
|
1204
|
+
*/
|
1205
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1206
|
+
/**
|
1207
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1208
|
+
*
|
1209
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1210
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1211
|
+
* @returns {string} A string representing the project.
|
1212
|
+
*/
|
1213
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1214
|
+
/**
|
1215
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1216
|
+
*
|
1217
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1218
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1219
|
+
* @returns {string} A string representing the location.
|
1220
|
+
*/
|
1221
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1222
|
+
/**
|
1223
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1224
|
+
*
|
1225
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1226
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1227
|
+
* @returns {string} A string representing the data_store.
|
1228
|
+
*/
|
1229
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1230
|
+
/**
|
1231
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1232
|
+
*
|
1233
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1234
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1235
|
+
* @returns {string} A string representing the branch.
|
1236
|
+
*/
|
1237
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1238
|
+
/**
|
1239
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1240
|
+
*
|
1241
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1242
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1243
|
+
* @returns {string} A string representing the document.
|
1244
|
+
*/
|
1245
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1246
|
+
/**
|
1247
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1248
|
+
*
|
1249
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1250
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1251
|
+
* @returns {string} A string representing the chunk.
|
1252
|
+
*/
|
1253
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
957
1254
|
/**
|
958
1255
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
959
1256
|
*
|
@@ -996,6 +1293,39 @@ export declare class UserEventServiceClient {
|
|
996
1293
|
* @returns {string} A string representing the conversation.
|
997
1294
|
*/
|
998
1295
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1296
|
+
/**
|
1297
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1298
|
+
*
|
1299
|
+
* @param {string} project
|
1300
|
+
* @param {string} location
|
1301
|
+
* @param {string} data_store
|
1302
|
+
* @returns {string} Resource name string.
|
1303
|
+
*/
|
1304
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1305
|
+
/**
|
1306
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1307
|
+
*
|
1308
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1309
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1310
|
+
* @returns {string} A string representing the project.
|
1311
|
+
*/
|
1312
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1313
|
+
/**
|
1314
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1315
|
+
*
|
1316
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1317
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1318
|
+
* @returns {string} A string representing the location.
|
1319
|
+
*/
|
1320
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1321
|
+
/**
|
1322
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1323
|
+
*
|
1324
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1325
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1326
|
+
* @returns {string} A string representing the data_store.
|
1327
|
+
*/
|
1328
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
999
1329
|
/**
|
1000
1330
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
1001
1331
|
*
|
@@ -1038,6 +1368,48 @@ export declare class UserEventServiceClient {
|
|
1038
1368
|
* @returns {string} A string representing the schema.
|
1039
1369
|
*/
|
1040
1370
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1371
|
+
/**
|
1372
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1373
|
+
*
|
1374
|
+
* @param {string} project
|
1375
|
+
* @param {string} location
|
1376
|
+
* @param {string} data_store
|
1377
|
+
* @param {string} serving_config
|
1378
|
+
* @returns {string} Resource name string.
|
1379
|
+
*/
|
1380
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1381
|
+
/**
|
1382
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1383
|
+
*
|
1384
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1385
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1386
|
+
* @returns {string} A string representing the project.
|
1387
|
+
*/
|
1388
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1389
|
+
/**
|
1390
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1391
|
+
*
|
1392
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1393
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1394
|
+
* @returns {string} A string representing the location.
|
1395
|
+
*/
|
1396
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1397
|
+
/**
|
1398
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1399
|
+
*
|
1400
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1401
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1402
|
+
* @returns {string} A string representing the data_store.
|
1403
|
+
*/
|
1404
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1405
|
+
/**
|
1406
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1407
|
+
*
|
1408
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1409
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1410
|
+
* @returns {string} A string representing the serving_config.
|
1411
|
+
*/
|
1412
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1041
1413
|
/**
|
1042
1414
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
|
1043
1415
|
*
|