@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
@@ -75,6 +75,11 @@
|
|
75
75
|
"timeout_millis": 30000,
|
76
76
|
"retry_codes_name": "unavailable",
|
77
77
|
"retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
|
78
|
+
},
|
79
|
+
"GetProcessedDocument": {
|
80
|
+
"timeout_millis": 30000,
|
81
|
+
"retry_codes_name": "unavailable",
|
82
|
+
"retry_params_name": "ce5b960a6ed052e690863808e4f0deff3dc7d49f"
|
78
83
|
}
|
79
84
|
}
|
80
85
|
}
|
@@ -182,7 +182,7 @@ export declare class EngineServiceClient {
|
|
182
182
|
getEngine(request: protos.google.cloud.discoveryengine.v1alpha.IGetEngineRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IEngine, protos.google.cloud.discoveryengine.v1alpha.IGetEngineRequest | null | undefined, {} | null | undefined>): void;
|
183
183
|
/**
|
184
184
|
* Pauses the training of an existing engine. Only applicable if
|
185
|
-
* {@link protos
|
185
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SolutionType|SolutionType} is
|
186
186
|
* {@link protos.google.cloud.discoveryengine.v1alpha.SolutionType.SOLUTION_TYPE_RECOMMENDATION|SOLUTION_TYPE_RECOMMENDATION}.
|
187
187
|
*
|
188
188
|
* @param {Object} request
|
@@ -331,7 +331,8 @@ export declare class EngineServiceClient {
|
|
331
331
|
*/
|
332
332
|
checkDeleteEngineProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.discoveryengine.v1alpha.DeleteEngineMetadata>>;
|
333
333
|
/**
|
334
|
-
* Tunes an existing engine. Only applicable if
|
334
|
+
* Tunes an existing engine. Only applicable if
|
335
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SolutionType|SolutionType} is
|
335
336
|
* {@link protos.google.cloud.discoveryengine.v1alpha.SolutionType.SOLUTION_TYPE_RECOMMENDATION|SOLUTION_TYPE_RECOMMENDATION}.
|
336
337
|
*
|
337
338
|
* @param {Object} request
|
@@ -631,6 +632,30 @@ export declare class EngineServiceClient {
|
|
631
632
|
* ```
|
632
633
|
*/
|
633
634
|
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>;
|
635
|
+
/**
|
636
|
+
* Return a fully-qualified aclConfig resource name string.
|
637
|
+
*
|
638
|
+
* @param {string} project
|
639
|
+
* @param {string} location
|
640
|
+
* @returns {string} Resource name string.
|
641
|
+
*/
|
642
|
+
aclConfigPath(project: string, location: string): string;
|
643
|
+
/**
|
644
|
+
* Parse the project from AclConfig resource.
|
645
|
+
*
|
646
|
+
* @param {string} aclConfigName
|
647
|
+
* A fully-qualified path representing AclConfig resource.
|
648
|
+
* @returns {string} A string representing the project.
|
649
|
+
*/
|
650
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
651
|
+
/**
|
652
|
+
* Parse the location from AclConfig resource.
|
653
|
+
*
|
654
|
+
* @param {string} aclConfigName
|
655
|
+
* A fully-qualified path representing AclConfig resource.
|
656
|
+
* @returns {string} A string representing the location.
|
657
|
+
*/
|
658
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
634
659
|
/**
|
635
660
|
* Return a fully-qualified collection resource name string.
|
636
661
|
*
|
@@ -808,6 +833,75 @@ export declare class EngineServiceClient {
|
|
808
833
|
* @returns {string} A string representing the document.
|
809
834
|
*/
|
810
835
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
836
|
+
/**
|
837
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
838
|
+
*
|
839
|
+
* @param {string} project
|
840
|
+
* @param {string} location
|
841
|
+
* @param {string} collection
|
842
|
+
* @param {string} data_store
|
843
|
+
* @param {string} branch
|
844
|
+
* @param {string} document
|
845
|
+
* @param {string} chunk
|
846
|
+
* @returns {string} Resource name string.
|
847
|
+
*/
|
848
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
849
|
+
/**
|
850
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
851
|
+
*
|
852
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
853
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
854
|
+
* @returns {string} A string representing the project.
|
855
|
+
*/
|
856
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
857
|
+
/**
|
858
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
859
|
+
*
|
860
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
861
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
862
|
+
* @returns {string} A string representing the location.
|
863
|
+
*/
|
864
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
865
|
+
/**
|
866
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
867
|
+
*
|
868
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
869
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
870
|
+
* @returns {string} A string representing the collection.
|
871
|
+
*/
|
872
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
873
|
+
/**
|
874
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
875
|
+
*
|
876
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
877
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
878
|
+
* @returns {string} A string representing the data_store.
|
879
|
+
*/
|
880
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
881
|
+
/**
|
882
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
883
|
+
*
|
884
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
885
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
886
|
+
* @returns {string} A string representing the branch.
|
887
|
+
*/
|
888
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
889
|
+
/**
|
890
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
891
|
+
*
|
892
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
893
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
894
|
+
* @returns {string} A string representing the document.
|
895
|
+
*/
|
896
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
897
|
+
/**
|
898
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
899
|
+
*
|
900
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
901
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
902
|
+
* @returns {string} A string representing the chunk.
|
903
|
+
*/
|
904
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
811
905
|
/**
|
812
906
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
813
907
|
*
|
@@ -859,6 +953,48 @@ export declare class EngineServiceClient {
|
|
859
953
|
* @returns {string} A string representing the conversation.
|
860
954
|
*/
|
861
955
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
956
|
+
/**
|
957
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
958
|
+
*
|
959
|
+
* @param {string} project
|
960
|
+
* @param {string} location
|
961
|
+
* @param {string} collection
|
962
|
+
* @param {string} data_store
|
963
|
+
* @returns {string} Resource name string.
|
964
|
+
*/
|
965
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
966
|
+
/**
|
967
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
968
|
+
*
|
969
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
970
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
971
|
+
* @returns {string} A string representing the project.
|
972
|
+
*/
|
973
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
974
|
+
/**
|
975
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
976
|
+
*
|
977
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
978
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
979
|
+
* @returns {string} A string representing the location.
|
980
|
+
*/
|
981
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
982
|
+
/**
|
983
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
984
|
+
*
|
985
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
986
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
987
|
+
* @returns {string} A string representing the collection.
|
988
|
+
*/
|
989
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
990
|
+
/**
|
991
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
992
|
+
*
|
993
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
994
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
995
|
+
* @returns {string} A string representing the data_store.
|
996
|
+
*/
|
997
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
862
998
|
/**
|
863
999
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
864
1000
|
*
|
@@ -910,6 +1046,57 @@ export declare class EngineServiceClient {
|
|
910
1046
|
* @returns {string} A string representing the schema.
|
911
1047
|
*/
|
912
1048
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
1049
|
+
/**
|
1050
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
1051
|
+
*
|
1052
|
+
* @param {string} project
|
1053
|
+
* @param {string} location
|
1054
|
+
* @param {string} collection
|
1055
|
+
* @param {string} data_store
|
1056
|
+
* @param {string} serving_config
|
1057
|
+
* @returns {string} Resource name string.
|
1058
|
+
*/
|
1059
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
1060
|
+
/**
|
1061
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
1062
|
+
*
|
1063
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1064
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1065
|
+
* @returns {string} A string representing the project.
|
1066
|
+
*/
|
1067
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1068
|
+
/**
|
1069
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1070
|
+
*
|
1071
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1072
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1073
|
+
* @returns {string} A string representing the location.
|
1074
|
+
*/
|
1075
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1076
|
+
/**
|
1077
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1078
|
+
*
|
1079
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1080
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1081
|
+
* @returns {string} A string representing the collection.
|
1082
|
+
*/
|
1083
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1084
|
+
/**
|
1085
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1086
|
+
*
|
1087
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1088
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1089
|
+
* @returns {string} A string representing the data_store.
|
1090
|
+
*/
|
1091
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1092
|
+
/**
|
1093
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1094
|
+
*
|
1095
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1096
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1097
|
+
* @returns {string} A string representing the serving_config.
|
1098
|
+
*/
|
1099
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
913
1100
|
/**
|
914
1101
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
|
915
1102
|
*
|
@@ -1054,6 +1241,57 @@ export declare class EngineServiceClient {
|
|
1054
1241
|
* @returns {string} A string representing the conversation.
|
1055
1242
|
*/
|
1056
1243
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1244
|
+
/**
|
1245
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1246
|
+
*
|
1247
|
+
* @param {string} project
|
1248
|
+
* @param {string} location
|
1249
|
+
* @param {string} collection
|
1250
|
+
* @param {string} engine
|
1251
|
+
* @param {string} serving_config
|
1252
|
+
* @returns {string} Resource name string.
|
1253
|
+
*/
|
1254
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1255
|
+
/**
|
1256
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1257
|
+
*
|
1258
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1259
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1260
|
+
* @returns {string} A string representing the project.
|
1261
|
+
*/
|
1262
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1263
|
+
/**
|
1264
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1265
|
+
*
|
1266
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1267
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1268
|
+
* @returns {string} A string representing the location.
|
1269
|
+
*/
|
1270
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1271
|
+
/**
|
1272
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1273
|
+
*
|
1274
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1275
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1276
|
+
* @returns {string} A string representing the collection.
|
1277
|
+
*/
|
1278
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1279
|
+
/**
|
1280
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1281
|
+
*
|
1282
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1283
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1284
|
+
* @returns {string} A string representing the engine.
|
1285
|
+
*/
|
1286
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1287
|
+
/**
|
1288
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1289
|
+
*
|
1290
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1291
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1292
|
+
* @returns {string} A string representing the serving_config.
|
1293
|
+
*/
|
1294
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1057
1295
|
/**
|
1058
1296
|
* Return a fully-qualified projectLocationDataStore resource name string.
|
1059
1297
|
*
|
@@ -1138,6 +1376,66 @@ export declare class EngineServiceClient {
|
|
1138
1376
|
* @returns {string} A string representing the document.
|
1139
1377
|
*/
|
1140
1378
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1379
|
+
/**
|
1380
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1381
|
+
*
|
1382
|
+
* @param {string} project
|
1383
|
+
* @param {string} location
|
1384
|
+
* @param {string} data_store
|
1385
|
+
* @param {string} branch
|
1386
|
+
* @param {string} document
|
1387
|
+
* @param {string} chunk
|
1388
|
+
* @returns {string} Resource name string.
|
1389
|
+
*/
|
1390
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1391
|
+
/**
|
1392
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1393
|
+
*
|
1394
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1395
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1396
|
+
* @returns {string} A string representing the project.
|
1397
|
+
*/
|
1398
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1399
|
+
/**
|
1400
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1401
|
+
*
|
1402
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1403
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1404
|
+
* @returns {string} A string representing the location.
|
1405
|
+
*/
|
1406
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1407
|
+
/**
|
1408
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1409
|
+
*
|
1410
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1411
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1412
|
+
* @returns {string} A string representing the data_store.
|
1413
|
+
*/
|
1414
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1415
|
+
/**
|
1416
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1417
|
+
*
|
1418
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1419
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1420
|
+
* @returns {string} A string representing the branch.
|
1421
|
+
*/
|
1422
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1423
|
+
/**
|
1424
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1425
|
+
*
|
1426
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1427
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1428
|
+
* @returns {string} A string representing the document.
|
1429
|
+
*/
|
1430
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1431
|
+
/**
|
1432
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1433
|
+
*
|
1434
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1435
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1436
|
+
* @returns {string} A string representing the chunk.
|
1437
|
+
*/
|
1438
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1141
1439
|
/**
|
1142
1440
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
1143
1441
|
*
|
@@ -1180,6 +1478,39 @@ export declare class EngineServiceClient {
|
|
1180
1478
|
* @returns {string} A string representing the conversation.
|
1181
1479
|
*/
|
1182
1480
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1481
|
+
/**
|
1482
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1483
|
+
*
|
1484
|
+
* @param {string} project
|
1485
|
+
* @param {string} location
|
1486
|
+
* @param {string} data_store
|
1487
|
+
* @returns {string} Resource name string.
|
1488
|
+
*/
|
1489
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1490
|
+
/**
|
1491
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1492
|
+
*
|
1493
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1494
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1495
|
+
* @returns {string} A string representing the project.
|
1496
|
+
*/
|
1497
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1498
|
+
/**
|
1499
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1500
|
+
*
|
1501
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1502
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1503
|
+
* @returns {string} A string representing the location.
|
1504
|
+
*/
|
1505
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1506
|
+
/**
|
1507
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1508
|
+
*
|
1509
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1510
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1511
|
+
* @returns {string} A string representing the data_store.
|
1512
|
+
*/
|
1513
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1183
1514
|
/**
|
1184
1515
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
1185
1516
|
*
|
@@ -1222,6 +1553,48 @@ export declare class EngineServiceClient {
|
|
1222
1553
|
* @returns {string} A string representing the schema.
|
1223
1554
|
*/
|
1224
1555
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1556
|
+
/**
|
1557
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1558
|
+
*
|
1559
|
+
* @param {string} project
|
1560
|
+
* @param {string} location
|
1561
|
+
* @param {string} data_store
|
1562
|
+
* @param {string} serving_config
|
1563
|
+
* @returns {string} Resource name string.
|
1564
|
+
*/
|
1565
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1566
|
+
/**
|
1567
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1568
|
+
*
|
1569
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1570
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1571
|
+
* @returns {string} A string representing the project.
|
1572
|
+
*/
|
1573
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1574
|
+
/**
|
1575
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1576
|
+
*
|
1577
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1578
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1579
|
+
* @returns {string} A string representing the location.
|
1580
|
+
*/
|
1581
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1582
|
+
/**
|
1583
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1584
|
+
*
|
1585
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1586
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1587
|
+
* @returns {string} A string representing the data_store.
|
1588
|
+
*/
|
1589
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1590
|
+
/**
|
1591
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1592
|
+
*
|
1593
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1594
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1595
|
+
* @returns {string} A string representing the serving_config.
|
1596
|
+
*/
|
1597
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1225
1598
|
/**
|
1226
1599
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
|
1227
1600
|
*
|