@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
@@ -39,6 +39,14 @@
39
39
  "UpdateDataStore": {
40
40
  "retry_codes_name": "non_idempotent",
41
41
  "retry_params_name": "default"
42
+ },
43
+ "GetDocumentProcessingConfig": {
44
+ "retry_codes_name": "non_idempotent",
45
+ "retry_params_name": "default"
46
+ },
47
+ "UpdateDocumentProcessingConfig": {
48
+ "retry_codes_name": "non_idempotent",
49
+ "retry_params_name": "default"
42
50
  }
43
51
  }
44
52
  }
@@ -217,6 +217,9 @@ export declare class DocumentServiceClient {
217
217
  * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document} is not found, a
218
218
  * new {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document} will be
219
219
  * created.
220
+ * @param {google.protobuf.FieldMask} request.updateMask
221
+ * Indicates which fields in the provided imported 'document' to update. If
222
+ * not set, will by default update all fields.
220
223
  * @param {object} [options]
221
224
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
222
225
  * @returns {Promise} - The promise which resolves to an array.
@@ -265,6 +268,43 @@ export declare class DocumentServiceClient {
265
268
  ]>;
266
269
  deleteDocument(request: protos.google.cloud.discoveryengine.v1alpha.IDeleteDocumentRequest, options: CallOptions, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1alpha.IDeleteDocumentRequest | null | undefined, {} | null | undefined>): void;
267
270
  deleteDocument(request: protos.google.cloud.discoveryengine.v1alpha.IDeleteDocumentRequest, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1alpha.IDeleteDocumentRequest | null | undefined, {} | null | undefined>): void;
271
+ /**
272
+ * Gets the parsed layout information for a
273
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}.
274
+ *
275
+ * @param {Object} request
276
+ * The request object that will be sent.
277
+ * @param {string} request.name
278
+ * Required. Full resource name of
279
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}, such as
280
+ * `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}`.
281
+ *
282
+ * If the caller does not have permission to access the
283
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}, regardless of
284
+ * whether or not it exists, a `PERMISSION_DENIED` error is returned.
285
+ *
286
+ * If the requested {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}
287
+ * does not exist, a `NOT_FOUND` error is returned.
288
+ * @param {google.cloud.discoveryengine.v1alpha.GetProcessedDocumentRequest.ProcessedDocumentType} request.processedDocumentType
289
+ * Required. What type of processing to return.
290
+ * @param {google.cloud.discoveryengine.v1alpha.GetProcessedDocumentRequest.ProcessedDocumentFormat} request.processedDocumentFormat
291
+ * What format output should be. If unspecified, defaults to JSON.
292
+ * @param {object} [options]
293
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
294
+ * @returns {Promise} - The promise which resolves to an array.
295
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.ProcessedDocument|ProcessedDocument}.
296
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
297
+ * for more details and examples.
298
+ * @example <caption>include:samples/generated/v1alpha/document_service.get_processed_document.js</caption>
299
+ * region_tag:discoveryengine_v1alpha_generated_DocumentService_GetProcessedDocument_async
300
+ */
301
+ getProcessedDocument(request?: protos.google.cloud.discoveryengine.v1alpha.IGetProcessedDocumentRequest, options?: CallOptions): Promise<[
302
+ protos.google.cloud.discoveryengine.v1alpha.IProcessedDocument,
303
+ (protos.google.cloud.discoveryengine.v1alpha.IGetProcessedDocumentRequest | undefined),
304
+ {} | undefined
305
+ ]>;
306
+ getProcessedDocument(request: protos.google.cloud.discoveryengine.v1alpha.IGetProcessedDocumentRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IProcessedDocument, protos.google.cloud.discoveryengine.v1alpha.IGetProcessedDocumentRequest | null | undefined, {} | null | undefined>): void;
307
+ getProcessedDocument(request: protos.google.cloud.discoveryengine.v1alpha.IGetProcessedDocumentRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IProcessedDocument, protos.google.cloud.discoveryengine.v1alpha.IGetProcessedDocumentRequest | null | undefined, {} | null | undefined>): void;
268
308
  /**
269
309
  * Bulk import of multiple
270
310
  * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s. Request
@@ -282,6 +322,16 @@ export declare class DocumentServiceClient {
282
322
  * Cloud Storage location for the input content.
283
323
  * @param {google.cloud.discoveryengine.v1alpha.BigQuerySource} request.bigquerySource
284
324
  * BigQuery input source.
325
+ * @param {google.cloud.discoveryengine.v1alpha.FhirStoreSource} request.fhirStoreSource
326
+ * FhirStore input source.
327
+ * @param {google.cloud.discoveryengine.v1alpha.SpannerSource} request.spannerSource
328
+ * Spanner input source.
329
+ * @param {google.cloud.discoveryengine.v1alpha.CloudSqlSource} request.cloudSqlSource
330
+ * Cloud SQL input source.
331
+ * @param {google.cloud.discoveryengine.v1alpha.FirestoreSource} request.firestoreSource
332
+ * Firestore input source.
333
+ * @param {google.cloud.discoveryengine.v1alpha.BigtableSource} request.bigtableSource
334
+ * Cloud Bigtable input source.
285
335
  * @param {string} request.parent
286
336
  * Required. The parent branch resource name, such as
287
337
  * `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}`.
@@ -292,6 +342,9 @@ export declare class DocumentServiceClient {
292
342
  * The mode of reconciliation between existing documents and the documents to
293
343
  * be imported. Defaults to
294
344
  * {@link protos.google.cloud.discoveryengine.v1alpha.ImportDocumentsRequest.ReconciliationMode.INCREMENTAL|ReconciliationMode.INCREMENTAL}.
345
+ * @param {google.protobuf.FieldMask} request.updateMask
346
+ * Indicates which fields in the provided imported documents to update. If
347
+ * not set, the default is to update all fields.
295
348
  * @param {boolean} request.autoGenerateIds
296
349
  * Whether to automatically generate IDs for the documents if absent.
297
350
  *
@@ -306,44 +359,53 @@ export declare class DocumentServiceClient {
306
359
  * {@link protos.google.cloud.discoveryengine.v1alpha.ImportDocumentsRequest.id_field|id_field},
307
360
  * otherwise, documents without IDs fail to be imported.
308
361
  *
309
- * Only set this field when using
310
- * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource|GcsSource} or
311
- * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource|BigQuerySource}, and
312
- * when
362
+ * Supported data sources:
363
+ *
364
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource|GcsSource}.
313
365
  * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource.data_schema|GcsSource.data_schema}
314
- * or
366
+ * must be `custom` or `csv`. Otherwise, an INVALID_ARGUMENT error is thrown.
367
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource|BigQuerySource}.
315
368
  * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource.data_schema|BigQuerySource.data_schema}
316
- * is `custom` or `csv`. Otherwise, an INVALID_ARGUMENT error is thrown.
369
+ * must be `custom` or `csv`. Otherwise, an INVALID_ARGUMENT error is thrown.
370
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.SpannerSource|SpannerSource}.
371
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.CloudSqlSource|CloudSqlSource}.
372
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.FirestoreSource|FirestoreSource}.
373
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.BigtableSource|BigtableSource}.
317
374
  * @param {string} request.idField
318
- * The field in the Cloud Storage and BigQuery sources that indicates the
319
- * unique IDs of the documents.
375
+ * The field indicates the ID field or column to be used as unique IDs of
376
+ * the documents.
320
377
  *
321
378
  * For {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource|GcsSource} it is the
322
379
  * key of the JSON field. For instance, `my_id` for JSON `{"my_id":
323
- * "some_uuid"}`. For
324
- * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource|BigQuerySource} it is
325
- * the column name of the BigQuery table where the unique ids are stored.
380
+ * "some_uuid"}`. For others, it may be the column name of the table where the
381
+ * unique ids are stored.
326
382
  *
327
- * The values of the JSON field or the BigQuery column are used as the
383
+ * The values of the JSON field or the table column are used as the
328
384
  * {@link protos.google.cloud.discoveryengine.v1alpha.Document.id|Document.id}s. The JSON
329
- * field or the BigQuery column must be of string type, and the values must be
385
+ * field or the table column must be of string type, and the values must be
330
386
  * set as valid strings conform to
331
387
  * [RFC-1034](https://tools.ietf.org/html/rfc1034) with 1-63 characters.
332
388
  * Otherwise, documents without valid IDs fail to be imported.
333
389
  *
334
- * Only set this field when using
335
- * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource|GcsSource} or
336
- * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource|BigQuerySource}, and
337
- * when
338
- * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource.data_schema|GcsSource.data_schema}
339
- * or
340
- * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource.data_schema|BigQuerySource.data_schema}
341
- * is `custom`. And only set this field when
390
+ * Only set this field when
342
391
  * {@link protos.google.cloud.discoveryengine.v1alpha.ImportDocumentsRequest.auto_generate_ids|auto_generate_ids}
343
392
  * is unset or set as `false`. Otherwise, an INVALID_ARGUMENT error is thrown.
344
393
  *
345
394
  * If it is unset, a default value `_id` is used when importing from the
346
395
  * allowed data sources.
396
+ *
397
+ * Supported data sources:
398
+ *
399
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource|GcsSource}.
400
+ * {@link protos.google.cloud.discoveryengine.v1alpha.GcsSource.data_schema|GcsSource.data_schema}
401
+ * must be `custom` or `csv`. Otherwise, an INVALID_ARGUMENT error is thrown.
402
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource|BigQuerySource}.
403
+ * {@link protos.google.cloud.discoveryengine.v1alpha.BigQuerySource.data_schema|BigQuerySource.data_schema}
404
+ * must be `custom` or `csv`. Otherwise, an INVALID_ARGUMENT error is thrown.
405
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.SpannerSource|SpannerSource}.
406
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.CloudSqlSource|CloudSqlSource}.
407
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.FirestoreSource|FirestoreSource}.
408
+ * * {@link protos.google.cloud.discoveryengine.v1alpha.BigtableSource|BigtableSource}.
347
409
  * @param {object} [options]
348
410
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
349
411
  * @returns {Promise} - The promise which resolves to an array.
@@ -395,6 +457,11 @@ export declare class DocumentServiceClient {
395
457
  *
396
458
  * @param {Object} request
397
459
  * The request object that will be sent.
460
+ * @param {google.cloud.discoveryengine.v1alpha.GcsSource} request.gcsSource
461
+ * Cloud Storage location for the input content.
462
+ * Supported `data_schema`:
463
+ * * `document_id`: One valid
464
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document.id|Document.id} per line.
398
465
  * @param {string} request.parent
399
466
  * Required. The parent resource name, such as
400
467
  * `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}`.
@@ -402,6 +469,8 @@ export declare class DocumentServiceClient {
402
469
  * Required. Filter matching documents to purge. Only currently supported
403
470
  * value is
404
471
  * `*` (all items).
472
+ * @param {google.cloud.discoveryengine.v1alpha.PurgeErrorConfig} request.errorConfig
473
+ * The desired location of errors incurred during the purge.
405
474
  * @param {boolean} request.force
406
475
  * Actually performs the purge. If `force` is set to false, return the
407
476
  * expected purge count without deleting any documents.
@@ -749,6 +818,30 @@ export declare class DocumentServiceClient {
749
818
  * ```
750
819
  */
751
820
  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>;
821
+ /**
822
+ * Return a fully-qualified aclConfig resource name string.
823
+ *
824
+ * @param {string} project
825
+ * @param {string} location
826
+ * @returns {string} Resource name string.
827
+ */
828
+ aclConfigPath(project: string, location: string): string;
829
+ /**
830
+ * Parse the project from AclConfig resource.
831
+ *
832
+ * @param {string} aclConfigName
833
+ * A fully-qualified path representing AclConfig resource.
834
+ * @returns {string} A string representing the project.
835
+ */
836
+ matchProjectFromAclConfigName(aclConfigName: string): string | number;
837
+ /**
838
+ * Parse the location from AclConfig resource.
839
+ *
840
+ * @param {string} aclConfigName
841
+ * A fully-qualified path representing AclConfig resource.
842
+ * @returns {string} A string representing the location.
843
+ */
844
+ matchLocationFromAclConfigName(aclConfigName: string): string | number;
752
845
  /**
753
846
  * Return a fully-qualified engine resource name string.
754
847
  *
@@ -944,6 +1037,75 @@ export declare class DocumentServiceClient {
944
1037
  * @returns {string} A string representing the document.
945
1038
  */
946
1039
  matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
1040
+ /**
1041
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
1042
+ *
1043
+ * @param {string} project
1044
+ * @param {string} location
1045
+ * @param {string} collection
1046
+ * @param {string} data_store
1047
+ * @param {string} branch
1048
+ * @param {string} document
1049
+ * @param {string} chunk
1050
+ * @returns {string} Resource name string.
1051
+ */
1052
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
1053
+ /**
1054
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1055
+ *
1056
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1057
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1058
+ * @returns {string} A string representing the project.
1059
+ */
1060
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
1061
+ /**
1062
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1063
+ *
1064
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1065
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1066
+ * @returns {string} A string representing the location.
1067
+ */
1068
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
1069
+ /**
1070
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1071
+ *
1072
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1073
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1074
+ * @returns {string} A string representing the collection.
1075
+ */
1076
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
1077
+ /**
1078
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1079
+ *
1080
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1081
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1082
+ * @returns {string} A string representing the data_store.
1083
+ */
1084
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
1085
+ /**
1086
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1087
+ *
1088
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1089
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1090
+ * @returns {string} A string representing the branch.
1091
+ */
1092
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
1093
+ /**
1094
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1095
+ *
1096
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1097
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1098
+ * @returns {string} A string representing the document.
1099
+ */
1100
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
1101
+ /**
1102
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
1103
+ *
1104
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
1105
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
1106
+ * @returns {string} A string representing the chunk.
1107
+ */
1108
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
947
1109
  /**
948
1110
  * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
949
1111
  *
@@ -995,6 +1157,48 @@ export declare class DocumentServiceClient {
995
1157
  * @returns {string} A string representing the conversation.
996
1158
  */
997
1159
  matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
1160
+ /**
1161
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
1162
+ *
1163
+ * @param {string} project
1164
+ * @param {string} location
1165
+ * @param {string} collection
1166
+ * @param {string} data_store
1167
+ * @returns {string} Resource name string.
1168
+ */
1169
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
1170
+ /**
1171
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1172
+ *
1173
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1174
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1175
+ * @returns {string} A string representing the project.
1176
+ */
1177
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1178
+ /**
1179
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1180
+ *
1181
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1182
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1183
+ * @returns {string} A string representing the location.
1184
+ */
1185
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1186
+ /**
1187
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1188
+ *
1189
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1190
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1191
+ * @returns {string} A string representing the collection.
1192
+ */
1193
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1194
+ /**
1195
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1196
+ *
1197
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1198
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1199
+ * @returns {string} A string representing the data_store.
1200
+ */
1201
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
998
1202
  /**
999
1203
  * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
1000
1204
  *
@@ -1046,6 +1250,57 @@ export declare class DocumentServiceClient {
1046
1250
  * @returns {string} A string representing the schema.
1047
1251
  */
1048
1252
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
1253
+ /**
1254
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
1255
+ *
1256
+ * @param {string} project
1257
+ * @param {string} location
1258
+ * @param {string} collection
1259
+ * @param {string} data_store
1260
+ * @param {string} serving_config
1261
+ * @returns {string} Resource name string.
1262
+ */
1263
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
1264
+ /**
1265
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
1266
+ *
1267
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1268
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1269
+ * @returns {string} A string representing the project.
1270
+ */
1271
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1272
+ /**
1273
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
1274
+ *
1275
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1276
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1277
+ * @returns {string} A string representing the location.
1278
+ */
1279
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1280
+ /**
1281
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
1282
+ *
1283
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1284
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1285
+ * @returns {string} A string representing the collection.
1286
+ */
1287
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1288
+ /**
1289
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
1290
+ *
1291
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1292
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1293
+ * @returns {string} A string representing the data_store.
1294
+ */
1295
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1296
+ /**
1297
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
1298
+ *
1299
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1300
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1301
+ * @returns {string} A string representing the serving_config.
1302
+ */
1303
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1049
1304
  /**
1050
1305
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1051
1306
  *
@@ -1190,6 +1445,57 @@ export declare class DocumentServiceClient {
1190
1445
  * @returns {string} A string representing the conversation.
1191
1446
  */
1192
1447
  matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1448
+ /**
1449
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
1450
+ *
1451
+ * @param {string} project
1452
+ * @param {string} location
1453
+ * @param {string} collection
1454
+ * @param {string} engine
1455
+ * @param {string} serving_config
1456
+ * @returns {string} Resource name string.
1457
+ */
1458
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
1459
+ /**
1460
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
1461
+ *
1462
+ * @param {string} projectLocationCollectionEngineServingConfigName
1463
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1464
+ * @returns {string} A string representing the project.
1465
+ */
1466
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1467
+ /**
1468
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
1469
+ *
1470
+ * @param {string} projectLocationCollectionEngineServingConfigName
1471
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1472
+ * @returns {string} A string representing the location.
1473
+ */
1474
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1475
+ /**
1476
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
1477
+ *
1478
+ * @param {string} projectLocationCollectionEngineServingConfigName
1479
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1480
+ * @returns {string} A string representing the collection.
1481
+ */
1482
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1483
+ /**
1484
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
1485
+ *
1486
+ * @param {string} projectLocationCollectionEngineServingConfigName
1487
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1488
+ * @returns {string} A string representing the engine.
1489
+ */
1490
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1491
+ /**
1492
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
1493
+ *
1494
+ * @param {string} projectLocationCollectionEngineServingConfigName
1495
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1496
+ * @returns {string} A string representing the serving_config.
1497
+ */
1498
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1193
1499
  /**
1194
1500
  * Return a fully-qualified projectLocationDataStore resource name string.
1195
1501
  *
@@ -1316,6 +1622,66 @@ export declare class DocumentServiceClient {
1316
1622
  * @returns {string} A string representing the document.
1317
1623
  */
1318
1624
  matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1625
+ /**
1626
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
1627
+ *
1628
+ * @param {string} project
1629
+ * @param {string} location
1630
+ * @param {string} data_store
1631
+ * @param {string} branch
1632
+ * @param {string} document
1633
+ * @param {string} chunk
1634
+ * @returns {string} Resource name string.
1635
+ */
1636
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
1637
+ /**
1638
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
1639
+ *
1640
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1641
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1642
+ * @returns {string} A string representing the project.
1643
+ */
1644
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1645
+ /**
1646
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
1647
+ *
1648
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1649
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1650
+ * @returns {string} A string representing the location.
1651
+ */
1652
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1653
+ /**
1654
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
1655
+ *
1656
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1657
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1658
+ * @returns {string} A string representing the data_store.
1659
+ */
1660
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1661
+ /**
1662
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
1663
+ *
1664
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1665
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1666
+ * @returns {string} A string representing the branch.
1667
+ */
1668
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1669
+ /**
1670
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
1671
+ *
1672
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1673
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1674
+ * @returns {string} A string representing the document.
1675
+ */
1676
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1677
+ /**
1678
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
1679
+ *
1680
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1681
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1682
+ * @returns {string} A string representing the chunk.
1683
+ */
1684
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1319
1685
  /**
1320
1686
  * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1321
1687
  *
@@ -1358,6 +1724,39 @@ export declare class DocumentServiceClient {
1358
1724
  * @returns {string} A string representing the conversation.
1359
1725
  */
1360
1726
  matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1727
+ /**
1728
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1729
+ *
1730
+ * @param {string} project
1731
+ * @param {string} location
1732
+ * @param {string} data_store
1733
+ * @returns {string} Resource name string.
1734
+ */
1735
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1736
+ /**
1737
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1738
+ *
1739
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1740
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1741
+ * @returns {string} A string representing the project.
1742
+ */
1743
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1744
+ /**
1745
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1746
+ *
1747
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1748
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1749
+ * @returns {string} A string representing the location.
1750
+ */
1751
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1752
+ /**
1753
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1754
+ *
1755
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1756
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1757
+ * @returns {string} A string representing the data_store.
1758
+ */
1759
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1361
1760
  /**
1362
1761
  * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1363
1762
  *
@@ -1400,6 +1799,48 @@ export declare class DocumentServiceClient {
1400
1799
  * @returns {string} A string representing the schema.
1401
1800
  */
1402
1801
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1802
+ /**
1803
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1804
+ *
1805
+ * @param {string} project
1806
+ * @param {string} location
1807
+ * @param {string} data_store
1808
+ * @param {string} serving_config
1809
+ * @returns {string} Resource name string.
1810
+ */
1811
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1812
+ /**
1813
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1814
+ *
1815
+ * @param {string} projectLocationDataStoreServingConfigName
1816
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1817
+ * @returns {string} A string representing the project.
1818
+ */
1819
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1820
+ /**
1821
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1822
+ *
1823
+ * @param {string} projectLocationDataStoreServingConfigName
1824
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1825
+ * @returns {string} A string representing the location.
1826
+ */
1827
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1828
+ /**
1829
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1830
+ *
1831
+ * @param {string} projectLocationDataStoreServingConfigName
1832
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1833
+ * @returns {string} A string representing the data_store.
1834
+ */
1835
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1836
+ /**
1837
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1838
+ *
1839
+ * @param {string} projectLocationDataStoreServingConfigName
1840
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1841
+ * @returns {string} A string representing the serving_config.
1842
+ */
1843
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1403
1844
  /**
1404
1845
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1405
1846
  *