@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
@@ -121,7 +121,7 @@ export declare class SearchTuningServiceClient {
|
|
121
121
|
* @param {Object} request
|
122
122
|
* The request object that will be sent.
|
123
123
|
* @param {google.cloud.discoveryengine.v1alpha.TrainCustomModelRequest.GcsTrainingInput} request.gcsTrainingInput
|
124
|
-
*
|
124
|
+
* Cloud Storage training input.
|
125
125
|
* @param {string} request.dataStore
|
126
126
|
* Required. The resource name of the Data Store, such as
|
127
127
|
* `projects/* /locations/global/collections/default_collection/dataStores/default_data_store`.
|
@@ -334,6 +334,30 @@ export declare class SearchTuningServiceClient {
|
|
334
334
|
* ```
|
335
335
|
*/
|
336
336
|
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>;
|
337
|
+
/**
|
338
|
+
* Return a fully-qualified aclConfig resource name string.
|
339
|
+
*
|
340
|
+
* @param {string} project
|
341
|
+
* @param {string} location
|
342
|
+
* @returns {string} Resource name string.
|
343
|
+
*/
|
344
|
+
aclConfigPath(project: string, location: string): string;
|
345
|
+
/**
|
346
|
+
* Parse the project from AclConfig resource.
|
347
|
+
*
|
348
|
+
* @param {string} aclConfigName
|
349
|
+
* A fully-qualified path representing AclConfig resource.
|
350
|
+
* @returns {string} A string representing the project.
|
351
|
+
*/
|
352
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
353
|
+
/**
|
354
|
+
* Parse the location from AclConfig resource.
|
355
|
+
*
|
356
|
+
* @param {string} aclConfigName
|
357
|
+
* A fully-qualified path representing AclConfig resource.
|
358
|
+
* @returns {string} A string representing the location.
|
359
|
+
*/
|
360
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
337
361
|
/**
|
338
362
|
* Return a fully-qualified engine resource name string.
|
339
363
|
*
|
@@ -478,6 +502,75 @@ export declare class SearchTuningServiceClient {
|
|
478
502
|
* @returns {string} A string representing the document.
|
479
503
|
*/
|
480
504
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
505
|
+
/**
|
506
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
507
|
+
*
|
508
|
+
* @param {string} project
|
509
|
+
* @param {string} location
|
510
|
+
* @param {string} collection
|
511
|
+
* @param {string} data_store
|
512
|
+
* @param {string} branch
|
513
|
+
* @param {string} document
|
514
|
+
* @param {string} chunk
|
515
|
+
* @returns {string} Resource name string.
|
516
|
+
*/
|
517
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
518
|
+
/**
|
519
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
520
|
+
*
|
521
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
522
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
523
|
+
* @returns {string} A string representing the project.
|
524
|
+
*/
|
525
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
526
|
+
/**
|
527
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
528
|
+
*
|
529
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
530
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
531
|
+
* @returns {string} A string representing the location.
|
532
|
+
*/
|
533
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
534
|
+
/**
|
535
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
536
|
+
*
|
537
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
538
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
539
|
+
* @returns {string} A string representing the collection.
|
540
|
+
*/
|
541
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
542
|
+
/**
|
543
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
544
|
+
*
|
545
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
546
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
547
|
+
* @returns {string} A string representing the data_store.
|
548
|
+
*/
|
549
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
550
|
+
/**
|
551
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
552
|
+
*
|
553
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
554
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
555
|
+
* @returns {string} A string representing the branch.
|
556
|
+
*/
|
557
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
558
|
+
/**
|
559
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
560
|
+
*
|
561
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
562
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
563
|
+
* @returns {string} A string representing the document.
|
564
|
+
*/
|
565
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
566
|
+
/**
|
567
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
568
|
+
*
|
569
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
570
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
571
|
+
* @returns {string} A string representing the chunk.
|
572
|
+
*/
|
573
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
481
574
|
/**
|
482
575
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
483
576
|
*
|
@@ -529,6 +622,48 @@ export declare class SearchTuningServiceClient {
|
|
529
622
|
* @returns {string} A string representing the conversation.
|
530
623
|
*/
|
531
624
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
625
|
+
/**
|
626
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
627
|
+
*
|
628
|
+
* @param {string} project
|
629
|
+
* @param {string} location
|
630
|
+
* @param {string} collection
|
631
|
+
* @param {string} data_store
|
632
|
+
* @returns {string} Resource name string.
|
633
|
+
*/
|
634
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
635
|
+
/**
|
636
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
637
|
+
*
|
638
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
639
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
640
|
+
* @returns {string} A string representing the project.
|
641
|
+
*/
|
642
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
643
|
+
/**
|
644
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
645
|
+
*
|
646
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
647
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
648
|
+
* @returns {string} A string representing the location.
|
649
|
+
*/
|
650
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
651
|
+
/**
|
652
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
653
|
+
*
|
654
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
655
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
656
|
+
* @returns {string} A string representing the collection.
|
657
|
+
*/
|
658
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
659
|
+
/**
|
660
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
661
|
+
*
|
662
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
663
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
664
|
+
* @returns {string} A string representing the data_store.
|
665
|
+
*/
|
666
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
532
667
|
/**
|
533
668
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
534
669
|
*
|
@@ -580,6 +715,57 @@ export declare class SearchTuningServiceClient {
|
|
580
715
|
* @returns {string} A string representing the schema.
|
581
716
|
*/
|
582
717
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
718
|
+
/**
|
719
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
720
|
+
*
|
721
|
+
* @param {string} project
|
722
|
+
* @param {string} location
|
723
|
+
* @param {string} collection
|
724
|
+
* @param {string} data_store
|
725
|
+
* @param {string} serving_config
|
726
|
+
* @returns {string} Resource name string.
|
727
|
+
*/
|
728
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
729
|
+
/**
|
730
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
731
|
+
*
|
732
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
733
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
734
|
+
* @returns {string} A string representing the project.
|
735
|
+
*/
|
736
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
737
|
+
/**
|
738
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
739
|
+
*
|
740
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
741
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
742
|
+
* @returns {string} A string representing the location.
|
743
|
+
*/
|
744
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
745
|
+
/**
|
746
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
747
|
+
*
|
748
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
749
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
750
|
+
* @returns {string} A string representing the collection.
|
751
|
+
*/
|
752
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
753
|
+
/**
|
754
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
755
|
+
*
|
756
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
757
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
758
|
+
* @returns {string} A string representing the data_store.
|
759
|
+
*/
|
760
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
761
|
+
/**
|
762
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
763
|
+
*
|
764
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
765
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
766
|
+
* @returns {string} A string representing the serving_config.
|
767
|
+
*/
|
768
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
583
769
|
/**
|
584
770
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
|
585
771
|
*
|
@@ -724,6 +910,57 @@ export declare class SearchTuningServiceClient {
|
|
724
910
|
* @returns {string} A string representing the conversation.
|
725
911
|
*/
|
726
912
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
913
|
+
/**
|
914
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
915
|
+
*
|
916
|
+
* @param {string} project
|
917
|
+
* @param {string} location
|
918
|
+
* @param {string} collection
|
919
|
+
* @param {string} engine
|
920
|
+
* @param {string} serving_config
|
921
|
+
* @returns {string} Resource name string.
|
922
|
+
*/
|
923
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
924
|
+
/**
|
925
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
926
|
+
*
|
927
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
928
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
929
|
+
* @returns {string} A string representing the project.
|
930
|
+
*/
|
931
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
932
|
+
/**
|
933
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
934
|
+
*
|
935
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
936
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
937
|
+
* @returns {string} A string representing the location.
|
938
|
+
*/
|
939
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
940
|
+
/**
|
941
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
942
|
+
*
|
943
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
944
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
945
|
+
* @returns {string} A string representing the collection.
|
946
|
+
*/
|
947
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
948
|
+
/**
|
949
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
950
|
+
*
|
951
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
952
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
953
|
+
* @returns {string} A string representing the engine.
|
954
|
+
*/
|
955
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
956
|
+
/**
|
957
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
958
|
+
*
|
959
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
960
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
961
|
+
* @returns {string} A string representing the serving_config.
|
962
|
+
*/
|
963
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
727
964
|
/**
|
728
965
|
* Return a fully-qualified projectLocationDataStore resource name string.
|
729
966
|
*
|
@@ -808,6 +1045,66 @@ export declare class SearchTuningServiceClient {
|
|
808
1045
|
* @returns {string} A string representing the document.
|
809
1046
|
*/
|
810
1047
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1048
|
+
/**
|
1049
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1050
|
+
*
|
1051
|
+
* @param {string} project
|
1052
|
+
* @param {string} location
|
1053
|
+
* @param {string} data_store
|
1054
|
+
* @param {string} branch
|
1055
|
+
* @param {string} document
|
1056
|
+
* @param {string} chunk
|
1057
|
+
* @returns {string} Resource name string.
|
1058
|
+
*/
|
1059
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1060
|
+
/**
|
1061
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1062
|
+
*
|
1063
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1064
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1065
|
+
* @returns {string} A string representing the project.
|
1066
|
+
*/
|
1067
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1068
|
+
/**
|
1069
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1070
|
+
*
|
1071
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1072
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1073
|
+
* @returns {string} A string representing the location.
|
1074
|
+
*/
|
1075
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1076
|
+
/**
|
1077
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1078
|
+
*
|
1079
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1080
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1081
|
+
* @returns {string} A string representing the data_store.
|
1082
|
+
*/
|
1083
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1084
|
+
/**
|
1085
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1086
|
+
*
|
1087
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1088
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1089
|
+
* @returns {string} A string representing the branch.
|
1090
|
+
*/
|
1091
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1092
|
+
/**
|
1093
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1094
|
+
*
|
1095
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1096
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1097
|
+
* @returns {string} A string representing the document.
|
1098
|
+
*/
|
1099
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1100
|
+
/**
|
1101
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1102
|
+
*
|
1103
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1104
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1105
|
+
* @returns {string} A string representing the chunk.
|
1106
|
+
*/
|
1107
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
811
1108
|
/**
|
812
1109
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
813
1110
|
*
|
@@ -850,6 +1147,39 @@ export declare class SearchTuningServiceClient {
|
|
850
1147
|
* @returns {string} A string representing the conversation.
|
851
1148
|
*/
|
852
1149
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1150
|
+
/**
|
1151
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1152
|
+
*
|
1153
|
+
* @param {string} project
|
1154
|
+
* @param {string} location
|
1155
|
+
* @param {string} data_store
|
1156
|
+
* @returns {string} Resource name string.
|
1157
|
+
*/
|
1158
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1159
|
+
/**
|
1160
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1161
|
+
*
|
1162
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1163
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1164
|
+
* @returns {string} A string representing the project.
|
1165
|
+
*/
|
1166
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1167
|
+
/**
|
1168
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1169
|
+
*
|
1170
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1171
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1172
|
+
* @returns {string} A string representing the location.
|
1173
|
+
*/
|
1174
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1175
|
+
/**
|
1176
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1177
|
+
*
|
1178
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1179
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1180
|
+
* @returns {string} A string representing the data_store.
|
1181
|
+
*/
|
1182
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
853
1183
|
/**
|
854
1184
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
855
1185
|
*
|
@@ -892,6 +1222,48 @@ export declare class SearchTuningServiceClient {
|
|
892
1222
|
* @returns {string} A string representing the schema.
|
893
1223
|
*/
|
894
1224
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1225
|
+
/**
|
1226
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1227
|
+
*
|
1228
|
+
* @param {string} project
|
1229
|
+
* @param {string} location
|
1230
|
+
* @param {string} data_store
|
1231
|
+
* @param {string} serving_config
|
1232
|
+
* @returns {string} Resource name string.
|
1233
|
+
*/
|
1234
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1235
|
+
/**
|
1236
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1237
|
+
*
|
1238
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1239
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1240
|
+
* @returns {string} A string representing the project.
|
1241
|
+
*/
|
1242
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1243
|
+
/**
|
1244
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1245
|
+
*
|
1246
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1247
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1248
|
+
* @returns {string} A string representing the location.
|
1249
|
+
*/
|
1250
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1251
|
+
/**
|
1252
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1253
|
+
*
|
1254
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1255
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1256
|
+
* @returns {string} A string representing the data_store.
|
1257
|
+
*/
|
1258
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1259
|
+
/**
|
1260
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1261
|
+
*
|
1262
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1263
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1264
|
+
* @returns {string} A string representing the serving_config.
|
1265
|
+
*/
|
1266
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
895
1267
|
/**
|
896
1268
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
|
897
1269
|
*
|