@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.
Files changed (121) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +15 -0
  3. package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config.proto +49 -0
  4. package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config_service.proto +79 -0
  5. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +106 -0
  6. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk_service.proto +137 -0
  7. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +97 -4
  8. package/build/protos/google/cloud/discoveryengine/v1alpha/completion.proto +52 -0
  9. package/build/protos/google/cloud/discoveryengine/v1alpha/completion_service.proto +44 -2
  10. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +6 -1
  11. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +44 -0
  12. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +80 -1
  13. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +102 -0
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +127 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +70 -0
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +13 -8
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +3 -2
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/estimate_billing_service.proto +130 -0
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +376 -21
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/purge_config.proto +66 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +115 -0
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +3 -1
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +3 -0
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +221 -30
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +27 -20
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config.proto +271 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +148 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +9 -3
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +7 -4
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +4 -3
  31. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +5 -0
  32. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +22 -0
  33. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +9 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +94 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +3 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +19 -4
  37. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +151 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +4 -3
  39. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +6 -5
  40. package/build/protos/protos.d.ts +18160 -8292
  41. package/build/protos/protos.js +50325 -25400
  42. package/build/protos/protos.json +4864 -2447
  43. package/build/src/v1/completion_service_client.js +10 -7
  44. package/build/src/v1/conversational_search_service_client.js +10 -7
  45. package/build/src/v1/data_store_service_client.js +10 -7
  46. package/build/src/v1/document_service_client.js +10 -7
  47. package/build/src/v1/engine_service_client.js +10 -7
  48. package/build/src/v1/schema_service_client.js +10 -7
  49. package/build/src/v1/search_service_client.js +10 -7
  50. package/build/src/v1/site_search_engine_service_client.js +10 -7
  51. package/build/src/v1/user_event_service_client.js +10 -7
  52. package/build/src/v1alpha/acl_config_service_client.d.ts +1233 -0
  53. package/build/src/v1alpha/acl_config_service_client.js +1768 -0
  54. package/build/src/v1alpha/acl_config_service_client_config.json +34 -0
  55. package/build/src/v1alpha/chunk_service_client.d.ts +1350 -0
  56. package/build/src/v1alpha/chunk_service_client.js +1889 -0
  57. package/build/src/v1alpha/chunk_service_client_config.json +34 -0
  58. package/build/src/v1alpha/completion_service_client.d.ts +588 -3
  59. package/build/src/v1alpha/completion_service_client.js +844 -9
  60. package/build/src/v1alpha/completion_service_client_config.json +10 -0
  61. package/build/src/v1alpha/conversational_search_service_client.d.ts +233 -1
  62. package/build/src/v1alpha/conversational_search_service_client.js +326 -7
  63. package/build/src/v1alpha/data_store_service_client.d.ts +451 -3
  64. package/build/src/v1alpha/data_store_service_client.js +575 -9
  65. package/build/src/v1alpha/data_store_service_client_config.json +8 -0
  66. package/build/src/v1alpha/document_service_client.d.ts +462 -21
  67. package/build/src/v1alpha/document_service_client.js +549 -7
  68. package/build/src/v1alpha/document_service_client_config.json +5 -0
  69. package/build/src/v1alpha/engine_service_client.d.ts +375 -2
  70. package/build/src/v1alpha/engine_service_client.js +527 -7
  71. package/build/src/v1alpha/estimate_billing_service_client.d.ts +1367 -0
  72. package/build/src/v1alpha/estimate_billing_service_client.js +2034 -0
  73. package/build/src/v1alpha/estimate_billing_service_client_config.json +30 -0
  74. package/build/src/v1alpha/index.d.ts +5 -0
  75. package/build/src/v1alpha/index.js +11 -1
  76. package/build/src/v1alpha/rank_service_client.d.ts +1254 -0
  77. package/build/src/v1alpha/rank_service_client.js +1796 -0
  78. package/build/src/v1alpha/rank_service_client_config.json +30 -0
  79. package/build/src/v1alpha/recommendation_service_client.d.ts +231 -1
  80. package/build/src/v1alpha/recommendation_service_client.js +326 -7
  81. package/build/src/v1alpha/schema_service_client.d.ts +372 -0
  82. package/build/src/v1alpha/schema_service_client.js +527 -7
  83. package/build/src/v1alpha/search_service_client.d.ts +288 -30
  84. package/build/src/v1alpha/search_service_client.js +366 -27
  85. package/build/src/v1alpha/search_tuning_service_client.d.ts +373 -1
  86. package/build/src/v1alpha/search_tuning_service_client.js +527 -7
  87. package/build/src/v1alpha/serving_config_service_client.d.ts +1370 -0
  88. package/build/src/v1alpha/serving_config_service_client.js +1939 -0
  89. package/build/src/v1alpha/serving_config_service_client_config.json +38 -0
  90. package/build/src/v1alpha/site_search_engine_service_client.d.ts +372 -0
  91. package/build/src/v1alpha/site_search_engine_service_client.js +527 -7
  92. package/build/src/v1alpha/user_event_service_client.d.ts +372 -0
  93. package/build/src/v1alpha/user_event_service_client.js +527 -7
  94. package/build/src/v1beta/completion_service_client.d.ts +75 -0
  95. package/build/src/v1beta/completion_service_client.js +114 -7
  96. package/build/src/v1beta/conversational_search_service_client.d.ts +79 -0
  97. package/build/src/v1beta/conversational_search_service_client.js +114 -7
  98. package/build/src/v1beta/data_store_service_client.d.ts +75 -0
  99. package/build/src/v1beta/data_store_service_client.js +114 -7
  100. package/build/src/v1beta/document_service_client.d.ts +75 -0
  101. package/build/src/v1beta/document_service_client.js +114 -7
  102. package/build/src/v1beta/engine_service_client.d.ts +75 -0
  103. package/build/src/v1beta/engine_service_client.js +114 -7
  104. package/build/src/v1beta/index.d.ts +1 -0
  105. package/build/src/v1beta/index.js +3 -1
  106. package/build/src/v1beta/recommendation_service_client.d.ts +75 -0
  107. package/build/src/v1beta/recommendation_service_client.js +114 -7
  108. package/build/src/v1beta/schema_service_client.d.ts +75 -0
  109. package/build/src/v1beta/schema_service_client.js +114 -7
  110. package/build/src/v1beta/search_service_client.d.ts +81 -0
  111. package/build/src/v1beta/search_service_client.js +118 -7
  112. package/build/src/v1beta/search_tuning_service_client.d.ts +1196 -0
  113. package/build/src/v1beta/search_tuning_service_client.js +1784 -0
  114. package/build/src/v1beta/search_tuning_service_client_config.json +30 -0
  115. package/build/src/v1beta/serving_config_service_client.d.ts +123 -8
  116. package/build/src/v1beta/serving_config_service_client.js +176 -12
  117. package/build/src/v1beta/site_search_engine_service_client.d.ts +75 -0
  118. package/build/src/v1beta/site_search_engine_service_client.js +114 -7
  119. package/build/src/v1beta/user_event_service_client.d.ts +75 -0
  120. package/build/src/v1beta/user_event_service_client.js +114 -7
  121. package/package.json +3 -3
@@ -562,6 +562,30 @@ export declare class SchemaServiceClient {
562
562
  * ```
563
563
  */
564
564
  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>;
565
+ /**
566
+ * Return a fully-qualified aclConfig resource name string.
567
+ *
568
+ * @param {string} project
569
+ * @param {string} location
570
+ * @returns {string} Resource name string.
571
+ */
572
+ aclConfigPath(project: string, location: string): string;
573
+ /**
574
+ * Parse the project from AclConfig resource.
575
+ *
576
+ * @param {string} aclConfigName
577
+ * A fully-qualified path representing AclConfig resource.
578
+ * @returns {string} A string representing the project.
579
+ */
580
+ matchProjectFromAclConfigName(aclConfigName: string): string | number;
581
+ /**
582
+ * Parse the location from AclConfig resource.
583
+ *
584
+ * @param {string} aclConfigName
585
+ * A fully-qualified path representing AclConfig resource.
586
+ * @returns {string} A string representing the location.
587
+ */
588
+ matchLocationFromAclConfigName(aclConfigName: string): string | number;
565
589
  /**
566
590
  * Return a fully-qualified engine resource name string.
567
591
  *
@@ -706,6 +730,75 @@ export declare class SchemaServiceClient {
706
730
  * @returns {string} A string representing the document.
707
731
  */
708
732
  matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
733
+ /**
734
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
735
+ *
736
+ * @param {string} project
737
+ * @param {string} location
738
+ * @param {string} collection
739
+ * @param {string} data_store
740
+ * @param {string} branch
741
+ * @param {string} document
742
+ * @param {string} chunk
743
+ * @returns {string} Resource name string.
744
+ */
745
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
746
+ /**
747
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
748
+ *
749
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
750
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
751
+ * @returns {string} A string representing the project.
752
+ */
753
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
754
+ /**
755
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
756
+ *
757
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
758
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
759
+ * @returns {string} A string representing the location.
760
+ */
761
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
762
+ /**
763
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
764
+ *
765
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
766
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
767
+ * @returns {string} A string representing the collection.
768
+ */
769
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
770
+ /**
771
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
772
+ *
773
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
774
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
775
+ * @returns {string} A string representing the data_store.
776
+ */
777
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
778
+ /**
779
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
780
+ *
781
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
782
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
783
+ * @returns {string} A string representing the branch.
784
+ */
785
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
786
+ /**
787
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
788
+ *
789
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
790
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
791
+ * @returns {string} A string representing the document.
792
+ */
793
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
794
+ /**
795
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
796
+ *
797
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
798
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
799
+ * @returns {string} A string representing the chunk.
800
+ */
801
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
709
802
  /**
710
803
  * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
711
804
  *
@@ -757,6 +850,48 @@ export declare class SchemaServiceClient {
757
850
  * @returns {string} A string representing the conversation.
758
851
  */
759
852
  matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
853
+ /**
854
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
855
+ *
856
+ * @param {string} project
857
+ * @param {string} location
858
+ * @param {string} collection
859
+ * @param {string} data_store
860
+ * @returns {string} Resource name string.
861
+ */
862
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
863
+ /**
864
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
865
+ *
866
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
867
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
868
+ * @returns {string} A string representing the project.
869
+ */
870
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
871
+ /**
872
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
873
+ *
874
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
875
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
876
+ * @returns {string} A string representing the location.
877
+ */
878
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
879
+ /**
880
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
881
+ *
882
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
883
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
884
+ * @returns {string} A string representing the collection.
885
+ */
886
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
887
+ /**
888
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
889
+ *
890
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
891
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
892
+ * @returns {string} A string representing the data_store.
893
+ */
894
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
760
895
  /**
761
896
  * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
762
897
  *
@@ -808,6 +943,57 @@ export declare class SchemaServiceClient {
808
943
  * @returns {string} A string representing the schema.
809
944
  */
810
945
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
946
+ /**
947
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
948
+ *
949
+ * @param {string} project
950
+ * @param {string} location
951
+ * @param {string} collection
952
+ * @param {string} data_store
953
+ * @param {string} serving_config
954
+ * @returns {string} Resource name string.
955
+ */
956
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
957
+ /**
958
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
959
+ *
960
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
961
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
962
+ * @returns {string} A string representing the project.
963
+ */
964
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
965
+ /**
966
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
967
+ *
968
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
969
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
970
+ * @returns {string} A string representing the location.
971
+ */
972
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
973
+ /**
974
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
975
+ *
976
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
977
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
978
+ * @returns {string} A string representing the collection.
979
+ */
980
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
981
+ /**
982
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
983
+ *
984
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
985
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
986
+ * @returns {string} A string representing the data_store.
987
+ */
988
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
989
+ /**
990
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
991
+ *
992
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
993
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
994
+ * @returns {string} A string representing the serving_config.
995
+ */
996
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
811
997
  /**
812
998
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
813
999
  *
@@ -952,6 +1138,57 @@ export declare class SchemaServiceClient {
952
1138
  * @returns {string} A string representing the conversation.
953
1139
  */
954
1140
  matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1141
+ /**
1142
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
1143
+ *
1144
+ * @param {string} project
1145
+ * @param {string} location
1146
+ * @param {string} collection
1147
+ * @param {string} engine
1148
+ * @param {string} serving_config
1149
+ * @returns {string} Resource name string.
1150
+ */
1151
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
1152
+ /**
1153
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
1154
+ *
1155
+ * @param {string} projectLocationCollectionEngineServingConfigName
1156
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1157
+ * @returns {string} A string representing the project.
1158
+ */
1159
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1160
+ /**
1161
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
1162
+ *
1163
+ * @param {string} projectLocationCollectionEngineServingConfigName
1164
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1165
+ * @returns {string} A string representing the location.
1166
+ */
1167
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1168
+ /**
1169
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
1170
+ *
1171
+ * @param {string} projectLocationCollectionEngineServingConfigName
1172
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1173
+ * @returns {string} A string representing the collection.
1174
+ */
1175
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1176
+ /**
1177
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
1178
+ *
1179
+ * @param {string} projectLocationCollectionEngineServingConfigName
1180
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1181
+ * @returns {string} A string representing the engine.
1182
+ */
1183
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1184
+ /**
1185
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
1186
+ *
1187
+ * @param {string} projectLocationCollectionEngineServingConfigName
1188
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1189
+ * @returns {string} A string representing the serving_config.
1190
+ */
1191
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
955
1192
  /**
956
1193
  * Return a fully-qualified projectLocationDataStore resource name string.
957
1194
  *
@@ -1036,6 +1273,66 @@ export declare class SchemaServiceClient {
1036
1273
  * @returns {string} A string representing the document.
1037
1274
  */
1038
1275
  matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1276
+ /**
1277
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
1278
+ *
1279
+ * @param {string} project
1280
+ * @param {string} location
1281
+ * @param {string} data_store
1282
+ * @param {string} branch
1283
+ * @param {string} document
1284
+ * @param {string} chunk
1285
+ * @returns {string} Resource name string.
1286
+ */
1287
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
1288
+ /**
1289
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
1290
+ *
1291
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1292
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1293
+ * @returns {string} A string representing the project.
1294
+ */
1295
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1296
+ /**
1297
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
1298
+ *
1299
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1300
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1301
+ * @returns {string} A string representing the location.
1302
+ */
1303
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1304
+ /**
1305
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
1306
+ *
1307
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1308
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1309
+ * @returns {string} A string representing the data_store.
1310
+ */
1311
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1312
+ /**
1313
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
1314
+ *
1315
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1316
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1317
+ * @returns {string} A string representing the branch.
1318
+ */
1319
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1320
+ /**
1321
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
1322
+ *
1323
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1324
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1325
+ * @returns {string} A string representing the document.
1326
+ */
1327
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1328
+ /**
1329
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
1330
+ *
1331
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1332
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1333
+ * @returns {string} A string representing the chunk.
1334
+ */
1335
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1039
1336
  /**
1040
1337
  * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1041
1338
  *
@@ -1078,6 +1375,39 @@ export declare class SchemaServiceClient {
1078
1375
  * @returns {string} A string representing the conversation.
1079
1376
  */
1080
1377
  matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1378
+ /**
1379
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1380
+ *
1381
+ * @param {string} project
1382
+ * @param {string} location
1383
+ * @param {string} data_store
1384
+ * @returns {string} Resource name string.
1385
+ */
1386
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1387
+ /**
1388
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1389
+ *
1390
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1391
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1392
+ * @returns {string} A string representing the project.
1393
+ */
1394
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1395
+ /**
1396
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1397
+ *
1398
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1399
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1400
+ * @returns {string} A string representing the location.
1401
+ */
1402
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1403
+ /**
1404
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1405
+ *
1406
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1407
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1408
+ * @returns {string} A string representing the data_store.
1409
+ */
1410
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1081
1411
  /**
1082
1412
  * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1083
1413
  *
@@ -1120,6 +1450,48 @@ export declare class SchemaServiceClient {
1120
1450
  * @returns {string} A string representing the schema.
1121
1451
  */
1122
1452
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1453
+ /**
1454
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1455
+ *
1456
+ * @param {string} project
1457
+ * @param {string} location
1458
+ * @param {string} data_store
1459
+ * @param {string} serving_config
1460
+ * @returns {string} Resource name string.
1461
+ */
1462
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1463
+ /**
1464
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1465
+ *
1466
+ * @param {string} projectLocationDataStoreServingConfigName
1467
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1468
+ * @returns {string} A string representing the project.
1469
+ */
1470
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1471
+ /**
1472
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1473
+ *
1474
+ * @param {string} projectLocationDataStoreServingConfigName
1475
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1476
+ * @returns {string} A string representing the location.
1477
+ */
1478
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1479
+ /**
1480
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1481
+ *
1482
+ * @param {string} projectLocationDataStoreServingConfigName
1483
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1484
+ * @returns {string} A string representing the data_store.
1485
+ */
1486
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1487
+ /**
1488
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1489
+ *
1490
+ * @param {string} projectLocationDataStoreServingConfigName
1491
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1492
+ * @returns {string} A string representing the serving_config.
1493
+ */
1494
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1123
1495
  /**
1124
1496
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1125
1497
  *