@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
@@ -188,6 +188,79 @@ export declare class DataStoreServiceClient {
188
188
  ]>;
189
189
  updateDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest | null | undefined, {} | null | undefined>): void;
190
190
  updateDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest | null | undefined, {} | null | undefined>): void;
191
+ /**
192
+ * Gets a
193
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}.
194
+ *
195
+ * @param {Object} request
196
+ * The request object that will be sent.
197
+ * @param {string} request.name
198
+ * Required. Full DocumentProcessingConfig resource name. Format:
199
+ * `projects/{project_number}/locations/{location_id}/collections/{collection_id}/dataStores/{data_store_id}/documentProcessingConfig`
200
+ * @param {object} [options]
201
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
202
+ * @returns {Promise} - The promise which resolves to an array.
203
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}.
204
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
205
+ * for more details and examples.
206
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.get_document_processing_config.js</caption>
207
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_GetDocumentProcessingConfig_async
208
+ */
209
+ getDocumentProcessingConfig(request?: protos.google.cloud.discoveryengine.v1alpha.IGetDocumentProcessingConfigRequest, options?: CallOptions): Promise<[
210
+ protos.google.cloud.discoveryengine.v1alpha.IDocumentProcessingConfig,
211
+ (protos.google.cloud.discoveryengine.v1alpha.IGetDocumentProcessingConfigRequest | undefined),
212
+ {} | undefined
213
+ ]>;
214
+ getDocumentProcessingConfig(request: protos.google.cloud.discoveryengine.v1alpha.IGetDocumentProcessingConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDocumentProcessingConfig, protos.google.cloud.discoveryengine.v1alpha.IGetDocumentProcessingConfigRequest | null | undefined, {} | null | undefined>): void;
215
+ getDocumentProcessingConfig(request: protos.google.cloud.discoveryengine.v1alpha.IGetDocumentProcessingConfigRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDocumentProcessingConfig, protos.google.cloud.discoveryengine.v1alpha.IGetDocumentProcessingConfigRequest | null | undefined, {} | null | undefined>): void;
216
+ /**
217
+ * Updates the
218
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}.
219
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}
220
+ * is a singleon resource of
221
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}. It's empty
222
+ * when {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} is
223
+ * created. The first call to this method will set up
224
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}.
225
+ *
226
+ * @param {Object} request
227
+ * The request object that will be sent.
228
+ * @param {google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig} request.documentProcessingConfig
229
+ * Required. The
230
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}
231
+ * to update.
232
+ *
233
+ * If the caller does not have permission to update the
234
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig},
235
+ * then a PERMISSION_DENIED error is returned.
236
+ *
237
+ * If the
238
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}
239
+ * to update does not exist, a NOT_FOUND error is returned.
240
+ * @param {google.protobuf.FieldMask} request.updateMask
241
+ * Indicates which fields in the provided
242
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}
243
+ * to update. The following are the only supported fields:
244
+ *
245
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig.ocr_config|DocumentProcessingConfig.ocr_config}
246
+ *
247
+ * If not set, all supported fields are updated.
248
+ * @param {object} [options]
249
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
250
+ * @returns {Promise} - The promise which resolves to an array.
251
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.DocumentProcessingConfig|DocumentProcessingConfig}.
252
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
253
+ * for more details and examples.
254
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.update_document_processing_config.js</caption>
255
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_UpdateDocumentProcessingConfig_async
256
+ */
257
+ updateDocumentProcessingConfig(request?: protos.google.cloud.discoveryengine.v1alpha.IUpdateDocumentProcessingConfigRequest, options?: CallOptions): Promise<[
258
+ protos.google.cloud.discoveryengine.v1alpha.IDocumentProcessingConfig,
259
+ (protos.google.cloud.discoveryengine.v1alpha.IUpdateDocumentProcessingConfigRequest | undefined),
260
+ {} | undefined
261
+ ]>;
262
+ updateDocumentProcessingConfig(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateDocumentProcessingConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDocumentProcessingConfig, protos.google.cloud.discoveryengine.v1alpha.IUpdateDocumentProcessingConfigRequest | null | undefined, {} | null | undefined>): void;
263
+ updateDocumentProcessingConfig(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateDocumentProcessingConfigRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDocumentProcessingConfig, protos.google.cloud.discoveryengine.v1alpha.IUpdateDocumentProcessingConfigRequest | null | undefined, {} | null | undefined>): void;
191
264
  /**
192
265
  * Creates a {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
193
266
  *
@@ -307,7 +380,8 @@ export declare class DataStoreServiceClient {
307
380
  * Required. The parent branch resource name, such as
308
381
  * `projects/{project}/locations/{location}/collections/{collection_id}`.
309
382
  *
310
- * If the caller does not have permission to list {@link protos.|DataStores}s under this
383
+ * If the caller does not have permission to list
384
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s under this
311
385
  * location, regardless of whether or not this data store exists, a
312
386
  * PERMISSION_DENIED error is returned.
313
387
  * @param {number} request.pageSize
@@ -358,7 +432,8 @@ export declare class DataStoreServiceClient {
358
432
  * Required. The parent branch resource name, such as
359
433
  * `projects/{project}/locations/{location}/collections/{collection_id}`.
360
434
  *
361
- * If the caller does not have permission to list {@link protos.|DataStores}s under this
435
+ * If the caller does not have permission to list
436
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s under this
362
437
  * location, regardless of whether or not this data store exists, a
363
438
  * PERMISSION_DENIED error is returned.
364
439
  * @param {number} request.pageSize
@@ -404,7 +479,8 @@ export declare class DataStoreServiceClient {
404
479
  * Required. The parent branch resource name, such as
405
480
  * `projects/{project}/locations/{location}/collections/{collection_id}`.
406
481
  *
407
- * If the caller does not have permission to list {@link protos.|DataStores}s under this
482
+ * If the caller does not have permission to list
483
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s under this
408
484
  * location, regardless of whether or not this data store exists, a
409
485
  * PERMISSION_DENIED error is returned.
410
486
  * @param {number} request.pageSize
@@ -612,6 +688,30 @@ export declare class DataStoreServiceClient {
612
688
  * ```
613
689
  */
614
690
  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>;
691
+ /**
692
+ * Return a fully-qualified aclConfig resource name string.
693
+ *
694
+ * @param {string} project
695
+ * @param {string} location
696
+ * @returns {string} Resource name string.
697
+ */
698
+ aclConfigPath(project: string, location: string): string;
699
+ /**
700
+ * Parse the project from AclConfig resource.
701
+ *
702
+ * @param {string} aclConfigName
703
+ * A fully-qualified path representing AclConfig resource.
704
+ * @returns {string} A string representing the project.
705
+ */
706
+ matchProjectFromAclConfigName(aclConfigName: string): string | number;
707
+ /**
708
+ * Parse the location from AclConfig resource.
709
+ *
710
+ * @param {string} aclConfigName
711
+ * A fully-qualified path representing AclConfig resource.
712
+ * @returns {string} A string representing the location.
713
+ */
714
+ matchLocationFromAclConfigName(aclConfigName: string): string | number;
615
715
  /**
616
716
  * Return a fully-qualified collection resource name string.
617
717
  *
@@ -789,6 +889,75 @@ export declare class DataStoreServiceClient {
789
889
  * @returns {string} A string representing the document.
790
890
  */
791
891
  matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
892
+ /**
893
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
894
+ *
895
+ * @param {string} project
896
+ * @param {string} location
897
+ * @param {string} collection
898
+ * @param {string} data_store
899
+ * @param {string} branch
900
+ * @param {string} document
901
+ * @param {string} chunk
902
+ * @returns {string} Resource name string.
903
+ */
904
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
905
+ /**
906
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
907
+ *
908
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
909
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
910
+ * @returns {string} A string representing the project.
911
+ */
912
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
913
+ /**
914
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
915
+ *
916
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
917
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
918
+ * @returns {string} A string representing the location.
919
+ */
920
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
921
+ /**
922
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
923
+ *
924
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
925
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
926
+ * @returns {string} A string representing the collection.
927
+ */
928
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
929
+ /**
930
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
931
+ *
932
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
933
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
934
+ * @returns {string} A string representing the data_store.
935
+ */
936
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
937
+ /**
938
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
939
+ *
940
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
941
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
942
+ * @returns {string} A string representing the branch.
943
+ */
944
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
945
+ /**
946
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
947
+ *
948
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
949
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
950
+ * @returns {string} A string representing the document.
951
+ */
952
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
953
+ /**
954
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
955
+ *
956
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
957
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
958
+ * @returns {string} A string representing the chunk.
959
+ */
960
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
792
961
  /**
793
962
  * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
794
963
  *
@@ -840,6 +1009,48 @@ export declare class DataStoreServiceClient {
840
1009
  * @returns {string} A string representing the conversation.
841
1010
  */
842
1011
  matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
1012
+ /**
1013
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
1014
+ *
1015
+ * @param {string} project
1016
+ * @param {string} location
1017
+ * @param {string} collection
1018
+ * @param {string} data_store
1019
+ * @returns {string} Resource name string.
1020
+ */
1021
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
1022
+ /**
1023
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1024
+ *
1025
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1026
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1027
+ * @returns {string} A string representing the project.
1028
+ */
1029
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1030
+ /**
1031
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1032
+ *
1033
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1034
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1035
+ * @returns {string} A string representing the location.
1036
+ */
1037
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1038
+ /**
1039
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1040
+ *
1041
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1042
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1043
+ * @returns {string} A string representing the collection.
1044
+ */
1045
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1046
+ /**
1047
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1048
+ *
1049
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1050
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1051
+ * @returns {string} A string representing the data_store.
1052
+ */
1053
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
843
1054
  /**
844
1055
  * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
845
1056
  *
@@ -891,6 +1102,57 @@ export declare class DataStoreServiceClient {
891
1102
  * @returns {string} A string representing the schema.
892
1103
  */
893
1104
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
1105
+ /**
1106
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
1107
+ *
1108
+ * @param {string} project
1109
+ * @param {string} location
1110
+ * @param {string} collection
1111
+ * @param {string} data_store
1112
+ * @param {string} serving_config
1113
+ * @returns {string} Resource name string.
1114
+ */
1115
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
1116
+ /**
1117
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
1118
+ *
1119
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1120
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1121
+ * @returns {string} A string representing the project.
1122
+ */
1123
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1124
+ /**
1125
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
1126
+ *
1127
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1128
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1129
+ * @returns {string} A string representing the location.
1130
+ */
1131
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1132
+ /**
1133
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
1134
+ *
1135
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1136
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1137
+ * @returns {string} A string representing the collection.
1138
+ */
1139
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1140
+ /**
1141
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
1142
+ *
1143
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1144
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1145
+ * @returns {string} A string representing the data_store.
1146
+ */
1147
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1148
+ /**
1149
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
1150
+ *
1151
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1152
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1153
+ * @returns {string} A string representing the serving_config.
1154
+ */
1155
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
894
1156
  /**
895
1157
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
896
1158
  *
@@ -1035,6 +1297,57 @@ export declare class DataStoreServiceClient {
1035
1297
  * @returns {string} A string representing the conversation.
1036
1298
  */
1037
1299
  matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1300
+ /**
1301
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
1302
+ *
1303
+ * @param {string} project
1304
+ * @param {string} location
1305
+ * @param {string} collection
1306
+ * @param {string} engine
1307
+ * @param {string} serving_config
1308
+ * @returns {string} Resource name string.
1309
+ */
1310
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
1311
+ /**
1312
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
1313
+ *
1314
+ * @param {string} projectLocationCollectionEngineServingConfigName
1315
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1316
+ * @returns {string} A string representing the project.
1317
+ */
1318
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1319
+ /**
1320
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
1321
+ *
1322
+ * @param {string} projectLocationCollectionEngineServingConfigName
1323
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1324
+ * @returns {string} A string representing the location.
1325
+ */
1326
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1327
+ /**
1328
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
1329
+ *
1330
+ * @param {string} projectLocationCollectionEngineServingConfigName
1331
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1332
+ * @returns {string} A string representing the collection.
1333
+ */
1334
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1335
+ /**
1336
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
1337
+ *
1338
+ * @param {string} projectLocationCollectionEngineServingConfigName
1339
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1340
+ * @returns {string} A string representing the engine.
1341
+ */
1342
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1343
+ /**
1344
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
1345
+ *
1346
+ * @param {string} projectLocationCollectionEngineServingConfigName
1347
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1348
+ * @returns {string} A string representing the serving_config.
1349
+ */
1350
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1038
1351
  /**
1039
1352
  * Return a fully-qualified projectLocationDataStore resource name string.
1040
1353
  *
@@ -1119,6 +1432,66 @@ export declare class DataStoreServiceClient {
1119
1432
  * @returns {string} A string representing the document.
1120
1433
  */
1121
1434
  matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1435
+ /**
1436
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
1437
+ *
1438
+ * @param {string} project
1439
+ * @param {string} location
1440
+ * @param {string} data_store
1441
+ * @param {string} branch
1442
+ * @param {string} document
1443
+ * @param {string} chunk
1444
+ * @returns {string} Resource name string.
1445
+ */
1446
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
1447
+ /**
1448
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
1449
+ *
1450
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1451
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1452
+ * @returns {string} A string representing the project.
1453
+ */
1454
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1455
+ /**
1456
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
1457
+ *
1458
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1459
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1460
+ * @returns {string} A string representing the location.
1461
+ */
1462
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1463
+ /**
1464
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
1465
+ *
1466
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1467
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1468
+ * @returns {string} A string representing the data_store.
1469
+ */
1470
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1471
+ /**
1472
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
1473
+ *
1474
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1475
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1476
+ * @returns {string} A string representing the branch.
1477
+ */
1478
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1479
+ /**
1480
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
1481
+ *
1482
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1483
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1484
+ * @returns {string} A string representing the document.
1485
+ */
1486
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1487
+ /**
1488
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
1489
+ *
1490
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1491
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1492
+ * @returns {string} A string representing the chunk.
1493
+ */
1494
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1122
1495
  /**
1123
1496
  * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1124
1497
  *
@@ -1161,6 +1534,39 @@ export declare class DataStoreServiceClient {
1161
1534
  * @returns {string} A string representing the conversation.
1162
1535
  */
1163
1536
  matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1537
+ /**
1538
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1539
+ *
1540
+ * @param {string} project
1541
+ * @param {string} location
1542
+ * @param {string} data_store
1543
+ * @returns {string} Resource name string.
1544
+ */
1545
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1546
+ /**
1547
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1548
+ *
1549
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1550
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1551
+ * @returns {string} A string representing the project.
1552
+ */
1553
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1554
+ /**
1555
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1556
+ *
1557
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1558
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1559
+ * @returns {string} A string representing the location.
1560
+ */
1561
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1562
+ /**
1563
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1564
+ *
1565
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1566
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1567
+ * @returns {string} A string representing the data_store.
1568
+ */
1569
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1164
1570
  /**
1165
1571
  * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1166
1572
  *
@@ -1203,6 +1609,48 @@ export declare class DataStoreServiceClient {
1203
1609
  * @returns {string} A string representing the schema.
1204
1610
  */
1205
1611
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1612
+ /**
1613
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1614
+ *
1615
+ * @param {string} project
1616
+ * @param {string} location
1617
+ * @param {string} data_store
1618
+ * @param {string} serving_config
1619
+ * @returns {string} Resource name string.
1620
+ */
1621
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1622
+ /**
1623
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1624
+ *
1625
+ * @param {string} projectLocationDataStoreServingConfigName
1626
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1627
+ * @returns {string} A string representing the project.
1628
+ */
1629
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1630
+ /**
1631
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1632
+ *
1633
+ * @param {string} projectLocationDataStoreServingConfigName
1634
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1635
+ * @returns {string} A string representing the location.
1636
+ */
1637
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1638
+ /**
1639
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1640
+ *
1641
+ * @param {string} projectLocationDataStoreServingConfigName
1642
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1643
+ * @returns {string} A string representing the data_store.
1644
+ */
1645
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1646
+ /**
1647
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1648
+ *
1649
+ * @param {string} projectLocationDataStoreServingConfigName
1650
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1651
+ * @returns {string} A string representing the serving_config.
1652
+ */
1653
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1206
1654
  /**
1207
1655
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1208
1656
  *