@google-cloud/discoveryengine 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +15 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config.proto +49 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config_service.proto +79 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +106 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/chunk_service.proto +137 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +97 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/completion.proto +52 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/completion_service.proto +44 -2
- package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +6 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +44 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +80 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +102 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +127 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +70 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +13 -8
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +3 -2
- package/build/protos/google/cloud/discoveryengine/v1alpha/estimate_billing_service.proto +130 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +376 -21
- package/build/protos/google/cloud/discoveryengine/v1alpha/purge_config.proto +66 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +115 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +3 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +3 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +221 -30
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +27 -20
- package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config.proto +271 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +148 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +9 -3
- package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +7 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +4 -3
- package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +5 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +22 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +9 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +94 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +3 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +19 -4
- package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +151 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +4 -3
- package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +6 -5
- package/build/protos/protos.d.ts +18160 -8292
- package/build/protos/protos.js +50325 -25400
- package/build/protos/protos.json +4864 -2447
- package/build/src/v1/completion_service_client.js +10 -7
- package/build/src/v1/conversational_search_service_client.js +10 -7
- package/build/src/v1/data_store_service_client.js +10 -7
- package/build/src/v1/document_service_client.js +10 -7
- package/build/src/v1/engine_service_client.js +10 -7
- package/build/src/v1/schema_service_client.js +10 -7
- package/build/src/v1/search_service_client.js +10 -7
- package/build/src/v1/site_search_engine_service_client.js +10 -7
- package/build/src/v1/user_event_service_client.js +10 -7
- package/build/src/v1alpha/acl_config_service_client.d.ts +1233 -0
- package/build/src/v1alpha/acl_config_service_client.js +1768 -0
- package/build/src/v1alpha/acl_config_service_client_config.json +34 -0
- package/build/src/v1alpha/chunk_service_client.d.ts +1350 -0
- package/build/src/v1alpha/chunk_service_client.js +1889 -0
- package/build/src/v1alpha/chunk_service_client_config.json +34 -0
- package/build/src/v1alpha/completion_service_client.d.ts +588 -3
- package/build/src/v1alpha/completion_service_client.js +844 -9
- package/build/src/v1alpha/completion_service_client_config.json +10 -0
- package/build/src/v1alpha/conversational_search_service_client.d.ts +233 -1
- package/build/src/v1alpha/conversational_search_service_client.js +326 -7
- package/build/src/v1alpha/data_store_service_client.d.ts +451 -3
- package/build/src/v1alpha/data_store_service_client.js +575 -9
- package/build/src/v1alpha/data_store_service_client_config.json +8 -0
- package/build/src/v1alpha/document_service_client.d.ts +462 -21
- package/build/src/v1alpha/document_service_client.js +549 -7
- package/build/src/v1alpha/document_service_client_config.json +5 -0
- package/build/src/v1alpha/engine_service_client.d.ts +375 -2
- package/build/src/v1alpha/engine_service_client.js +527 -7
- package/build/src/v1alpha/estimate_billing_service_client.d.ts +1367 -0
- package/build/src/v1alpha/estimate_billing_service_client.js +2034 -0
- package/build/src/v1alpha/estimate_billing_service_client_config.json +30 -0
- package/build/src/v1alpha/index.d.ts +5 -0
- package/build/src/v1alpha/index.js +11 -1
- package/build/src/v1alpha/rank_service_client.d.ts +1254 -0
- package/build/src/v1alpha/rank_service_client.js +1796 -0
- package/build/src/v1alpha/rank_service_client_config.json +30 -0
- package/build/src/v1alpha/recommendation_service_client.d.ts +231 -1
- package/build/src/v1alpha/recommendation_service_client.js +326 -7
- package/build/src/v1alpha/schema_service_client.d.ts +372 -0
- package/build/src/v1alpha/schema_service_client.js +527 -7
- package/build/src/v1alpha/search_service_client.d.ts +288 -30
- package/build/src/v1alpha/search_service_client.js +366 -27
- package/build/src/v1alpha/search_tuning_service_client.d.ts +373 -1
- package/build/src/v1alpha/search_tuning_service_client.js +527 -7
- package/build/src/v1alpha/serving_config_service_client.d.ts +1370 -0
- package/build/src/v1alpha/serving_config_service_client.js +1939 -0
- package/build/src/v1alpha/serving_config_service_client_config.json +38 -0
- package/build/src/v1alpha/site_search_engine_service_client.d.ts +372 -0
- package/build/src/v1alpha/site_search_engine_service_client.js +527 -7
- package/build/src/v1alpha/user_event_service_client.d.ts +372 -0
- package/build/src/v1alpha/user_event_service_client.js +527 -7
- package/build/src/v1beta/completion_service_client.d.ts +75 -0
- package/build/src/v1beta/completion_service_client.js +114 -7
- package/build/src/v1beta/conversational_search_service_client.d.ts +79 -0
- package/build/src/v1beta/conversational_search_service_client.js +114 -7
- package/build/src/v1beta/data_store_service_client.d.ts +75 -0
- package/build/src/v1beta/data_store_service_client.js +114 -7
- package/build/src/v1beta/document_service_client.d.ts +75 -0
- package/build/src/v1beta/document_service_client.js +114 -7
- package/build/src/v1beta/engine_service_client.d.ts +75 -0
- package/build/src/v1beta/engine_service_client.js +114 -7
- package/build/src/v1beta/index.d.ts +1 -0
- package/build/src/v1beta/index.js +3 -1
- package/build/src/v1beta/recommendation_service_client.d.ts +75 -0
- package/build/src/v1beta/recommendation_service_client.js +114 -7
- package/build/src/v1beta/schema_service_client.d.ts +75 -0
- package/build/src/v1beta/schema_service_client.js +114 -7
- package/build/src/v1beta/search_service_client.d.ts +81 -0
- package/build/src/v1beta/search_service_client.js +118 -7
- package/build/src/v1beta/search_tuning_service_client.d.ts +1196 -0
- package/build/src/v1beta/search_tuning_service_client.js +1784 -0
- package/build/src/v1beta/search_tuning_service_client_config.json +30 -0
- package/build/src/v1beta/serving_config_service_client.d.ts +123 -8
- package/build/src/v1beta/serving_config_service_client.js +176 -12
- package/build/src/v1beta/site_search_engine_service_client.d.ts +75 -0
- package/build/src/v1beta/site_search_engine_service_client.js +114 -7
- package/build/src/v1beta/user_event_service_client.d.ts +75 -0
- package/build/src/v1beta/user_event_service_client.js +114 -7
- package/package.json +3 -3
@@ -140,11 +140,15 @@ export declare class SearchServiceClient {
|
|
140
140
|
* Raw image query.
|
141
141
|
* @param {number} request.pageSize
|
142
142
|
* Maximum number of
|
143
|
-
* {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return.
|
144
|
-
*
|
145
|
-
*
|
143
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. The
|
144
|
+
* maximum allowed value depends on the data type. Values above the maximum
|
145
|
+
* value are coerced to the maximum value.
|
146
146
|
*
|
147
|
-
*
|
147
|
+
* * Websites with basic indexing: Default `10`, Maximum `25`.
|
148
|
+
* * Websites with advanced indexing: Default `25`, Maximum `50`.
|
149
|
+
* * Other: Default `50`, Maximum `100`.
|
150
|
+
*
|
151
|
+
* If this field is negative, an `INVALID_ARGUMENT` is returned.
|
148
152
|
* @param {string} request.pageToken
|
149
153
|
* A page token received from a previous
|
150
154
|
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchService.Search|SearchService.Search}
|
@@ -163,6 +167,8 @@ export declare class SearchServiceClient {
|
|
163
167
|
* is unset.
|
164
168
|
*
|
165
169
|
* If this field is negative, an `INVALID_ARGUMENT` is returned.
|
170
|
+
* @param {number[]} request.dataStoreSpecs
|
171
|
+
* A list of data store specs to apply on a search call.
|
166
172
|
* @param {string} request.filter
|
167
173
|
* The filter syntax consists of an expression language for constructing a
|
168
174
|
* predicate from one or more fields of the documents being filtered. Filter
|
@@ -258,12 +264,14 @@ export declare class SearchServiceClient {
|
|
258
264
|
* @param {google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec} request.embeddingSpec
|
259
265
|
* Uses the provided embedding to do additional semantic document retrieval.
|
260
266
|
* The retrieval is based on the dot product of
|
261
|
-
* {@link protos
|
262
|
-
* embedding that is provided in
|
263
|
-
* {@link protos
|
264
|
-
*
|
265
|
-
* If
|
266
|
-
*
|
267
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.vector|SearchRequest.EmbeddingSpec.EmbeddingVector.vector}
|
268
|
+
* and the document embedding that is provided in
|
269
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}.
|
270
|
+
*
|
271
|
+
* If
|
272
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
|
273
|
+
* is not provided, it will use
|
274
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
|
267
275
|
* @param {string} request.rankingExpression
|
268
276
|
* The ranking expression controls the customized ranking on retrieval
|
269
277
|
* documents. This overrides
|
@@ -306,6 +314,8 @@ export declare class SearchServiceClient {
|
|
306
314
|
* See [Google Cloud
|
307
315
|
* Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements)
|
308
316
|
* for more details.
|
317
|
+
* @param {google.cloud.discoveryengine.v1alpha.CustomFineTuningSpec} request.customFineTuningSpec
|
318
|
+
* Custom fine tuning configs.
|
309
319
|
* @param {object} [options]
|
310
320
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
311
321
|
* @returns {Promise} - The promise which resolves to an array.
|
@@ -348,11 +358,15 @@ export declare class SearchServiceClient {
|
|
348
358
|
* Raw image query.
|
349
359
|
* @param {number} request.pageSize
|
350
360
|
* Maximum number of
|
351
|
-
* {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return.
|
352
|
-
*
|
353
|
-
*
|
361
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. The
|
362
|
+
* maximum allowed value depends on the data type. Values above the maximum
|
363
|
+
* value are coerced to the maximum value.
|
354
364
|
*
|
355
|
-
*
|
365
|
+
* * Websites with basic indexing: Default `10`, Maximum `25`.
|
366
|
+
* * Websites with advanced indexing: Default `25`, Maximum `50`.
|
367
|
+
* * Other: Default `50`, Maximum `100`.
|
368
|
+
*
|
369
|
+
* If this field is negative, an `INVALID_ARGUMENT` is returned.
|
356
370
|
* @param {string} request.pageToken
|
357
371
|
* A page token received from a previous
|
358
372
|
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchService.Search|SearchService.Search}
|
@@ -371,6 +385,8 @@ export declare class SearchServiceClient {
|
|
371
385
|
* is unset.
|
372
386
|
*
|
373
387
|
* If this field is negative, an `INVALID_ARGUMENT` is returned.
|
388
|
+
* @param {number[]} request.dataStoreSpecs
|
389
|
+
* A list of data store specs to apply on a search call.
|
374
390
|
* @param {string} request.filter
|
375
391
|
* The filter syntax consists of an expression language for constructing a
|
376
392
|
* predicate from one or more fields of the documents being filtered. Filter
|
@@ -466,12 +482,14 @@ export declare class SearchServiceClient {
|
|
466
482
|
* @param {google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec} request.embeddingSpec
|
467
483
|
* Uses the provided embedding to do additional semantic document retrieval.
|
468
484
|
* The retrieval is based on the dot product of
|
469
|
-
* {@link protos
|
470
|
-
* embedding that is provided in
|
471
|
-
* {@link protos
|
472
|
-
*
|
473
|
-
* If
|
474
|
-
*
|
485
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.vector|SearchRequest.EmbeddingSpec.EmbeddingVector.vector}
|
486
|
+
* and the document embedding that is provided in
|
487
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}.
|
488
|
+
*
|
489
|
+
* If
|
490
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
|
491
|
+
* is not provided, it will use
|
492
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
|
475
493
|
* @param {string} request.rankingExpression
|
476
494
|
* The ranking expression controls the customized ranking on retrieval
|
477
495
|
* documents. This overrides
|
@@ -514,6 +532,8 @@ export declare class SearchServiceClient {
|
|
514
532
|
* See [Google Cloud
|
515
533
|
* Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements)
|
516
534
|
* for more details.
|
535
|
+
* @param {google.cloud.discoveryengine.v1alpha.CustomFineTuningSpec} request.customFineTuningSpec
|
536
|
+
* Custom fine tuning configs.
|
517
537
|
* @param {object} [options]
|
518
538
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
519
539
|
* @returns {Stream}
|
@@ -551,11 +571,15 @@ export declare class SearchServiceClient {
|
|
551
571
|
* Raw image query.
|
552
572
|
* @param {number} request.pageSize
|
553
573
|
* Maximum number of
|
554
|
-
* {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return.
|
555
|
-
*
|
556
|
-
*
|
574
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}s to return. The
|
575
|
+
* maximum allowed value depends on the data type. Values above the maximum
|
576
|
+
* value are coerced to the maximum value.
|
557
577
|
*
|
558
|
-
*
|
578
|
+
* * Websites with basic indexing: Default `10`, Maximum `25`.
|
579
|
+
* * Websites with advanced indexing: Default `25`, Maximum `50`.
|
580
|
+
* * Other: Default `50`, Maximum `100`.
|
581
|
+
*
|
582
|
+
* If this field is negative, an `INVALID_ARGUMENT` is returned.
|
559
583
|
* @param {string} request.pageToken
|
560
584
|
* A page token received from a previous
|
561
585
|
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchService.Search|SearchService.Search}
|
@@ -574,6 +598,8 @@ export declare class SearchServiceClient {
|
|
574
598
|
* is unset.
|
575
599
|
*
|
576
600
|
* If this field is negative, an `INVALID_ARGUMENT` is returned.
|
601
|
+
* @param {number[]} request.dataStoreSpecs
|
602
|
+
* A list of data store specs to apply on a search call.
|
577
603
|
* @param {string} request.filter
|
578
604
|
* The filter syntax consists of an expression language for constructing a
|
579
605
|
* predicate from one or more fields of the documents being filtered. Filter
|
@@ -669,12 +695,14 @@ export declare class SearchServiceClient {
|
|
669
695
|
* @param {google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec} request.embeddingSpec
|
670
696
|
* Uses the provided embedding to do additional semantic document retrieval.
|
671
697
|
* The retrieval is based on the dot product of
|
672
|
-
* {@link protos
|
673
|
-
* embedding that is provided in
|
674
|
-
* {@link protos
|
675
|
-
*
|
676
|
-
* If
|
677
|
-
*
|
698
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.vector|SearchRequest.EmbeddingSpec.EmbeddingVector.vector}
|
699
|
+
* and the document embedding that is provided in
|
700
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}.
|
701
|
+
*
|
702
|
+
* If
|
703
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.SearchRequest.EmbeddingSpec.EmbeddingVector.field_path|SearchRequest.EmbeddingSpec.EmbeddingVector.field_path}
|
704
|
+
* is not provided, it will use
|
705
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ServingConfig.embedding_config|ServingConfig.EmbeddingConfig.field_path}.
|
678
706
|
* @param {string} request.rankingExpression
|
679
707
|
* The ranking expression controls the customized ranking on retrieval
|
680
708
|
* documents. This overrides
|
@@ -717,6 +745,8 @@ export declare class SearchServiceClient {
|
|
717
745
|
* See [Google Cloud
|
718
746
|
* Document](https://cloud.google.com/resource-manager/docs/creating-managing-labels#requirements)
|
719
747
|
* for more details.
|
748
|
+
* @param {google.cloud.discoveryengine.v1alpha.CustomFineTuningSpec} request.customFineTuningSpec
|
749
|
+
* Custom fine tuning configs.
|
720
750
|
* @param {object} [options]
|
721
751
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
722
752
|
* @returns {Object}
|
@@ -781,6 +811,30 @@ export declare class SearchServiceClient {
|
|
781
811
|
* ```
|
782
812
|
*/
|
783
813
|
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
814
|
+
/**
|
815
|
+
* Return a fully-qualified aclConfig resource name string.
|
816
|
+
*
|
817
|
+
* @param {string} project
|
818
|
+
* @param {string} location
|
819
|
+
* @returns {string} Resource name string.
|
820
|
+
*/
|
821
|
+
aclConfigPath(project: string, location: string): string;
|
822
|
+
/**
|
823
|
+
* Parse the project from AclConfig resource.
|
824
|
+
*
|
825
|
+
* @param {string} aclConfigName
|
826
|
+
* A fully-qualified path representing AclConfig resource.
|
827
|
+
* @returns {string} A string representing the project.
|
828
|
+
*/
|
829
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
830
|
+
/**
|
831
|
+
* Parse the location from AclConfig resource.
|
832
|
+
*
|
833
|
+
* @param {string} aclConfigName
|
834
|
+
* A fully-qualified path representing AclConfig resource.
|
835
|
+
* @returns {string} A string representing the location.
|
836
|
+
*/
|
837
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
784
838
|
/**
|
785
839
|
* Return a fully-qualified engine resource name string.
|
786
840
|
*
|
@@ -976,6 +1030,75 @@ export declare class SearchServiceClient {
|
|
976
1030
|
* @returns {string} A string representing the document.
|
977
1031
|
*/
|
978
1032
|
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
1033
|
+
/**
|
1034
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
1035
|
+
*
|
1036
|
+
* @param {string} project
|
1037
|
+
* @param {string} location
|
1038
|
+
* @param {string} collection
|
1039
|
+
* @param {string} data_store
|
1040
|
+
* @param {string} branch
|
1041
|
+
* @param {string} document
|
1042
|
+
* @param {string} chunk
|
1043
|
+
* @returns {string} Resource name string.
|
1044
|
+
*/
|
1045
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1046
|
+
/**
|
1047
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1048
|
+
*
|
1049
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1050
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1051
|
+
* @returns {string} A string representing the project.
|
1052
|
+
*/
|
1053
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1054
|
+
/**
|
1055
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1056
|
+
*
|
1057
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1058
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1059
|
+
* @returns {string} A string representing the location.
|
1060
|
+
*/
|
1061
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1062
|
+
/**
|
1063
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1064
|
+
*
|
1065
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1066
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1067
|
+
* @returns {string} A string representing the collection.
|
1068
|
+
*/
|
1069
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1070
|
+
/**
|
1071
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1072
|
+
*
|
1073
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1074
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1075
|
+
* @returns {string} A string representing the data_store.
|
1076
|
+
*/
|
1077
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1078
|
+
/**
|
1079
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1080
|
+
*
|
1081
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1082
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1083
|
+
* @returns {string} A string representing the branch.
|
1084
|
+
*/
|
1085
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1086
|
+
/**
|
1087
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1088
|
+
*
|
1089
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1090
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1091
|
+
* @returns {string} A string representing the document.
|
1092
|
+
*/
|
1093
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
1094
|
+
/**
|
1095
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
1096
|
+
*
|
1097
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
1098
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
1099
|
+
* @returns {string} A string representing the chunk.
|
1100
|
+
*/
|
1101
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
979
1102
|
/**
|
980
1103
|
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
981
1104
|
*
|
@@ -1027,6 +1150,48 @@ export declare class SearchServiceClient {
|
|
1027
1150
|
* @returns {string} A string representing the conversation.
|
1028
1151
|
*/
|
1029
1152
|
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
1153
|
+
/**
|
1154
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
1155
|
+
*
|
1156
|
+
* @param {string} project
|
1157
|
+
* @param {string} location
|
1158
|
+
* @param {string} collection
|
1159
|
+
* @param {string} data_store
|
1160
|
+
* @returns {string} Resource name string.
|
1161
|
+
*/
|
1162
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
1163
|
+
/**
|
1164
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1165
|
+
*
|
1166
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1167
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1168
|
+
* @returns {string} A string representing the project.
|
1169
|
+
*/
|
1170
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1171
|
+
/**
|
1172
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1173
|
+
*
|
1174
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1175
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1176
|
+
* @returns {string} A string representing the location.
|
1177
|
+
*/
|
1178
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1179
|
+
/**
|
1180
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1181
|
+
*
|
1182
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1183
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1184
|
+
* @returns {string} A string representing the collection.
|
1185
|
+
*/
|
1186
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1187
|
+
/**
|
1188
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
1189
|
+
*
|
1190
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
1191
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
1192
|
+
* @returns {string} A string representing the data_store.
|
1193
|
+
*/
|
1194
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
1030
1195
|
/**
|
1031
1196
|
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
1032
1197
|
*
|
@@ -1450,6 +1615,66 @@ export declare class SearchServiceClient {
|
|
1450
1615
|
* @returns {string} A string representing the document.
|
1451
1616
|
*/
|
1452
1617
|
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1618
|
+
/**
|
1619
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1620
|
+
*
|
1621
|
+
* @param {string} project
|
1622
|
+
* @param {string} location
|
1623
|
+
* @param {string} data_store
|
1624
|
+
* @param {string} branch
|
1625
|
+
* @param {string} document
|
1626
|
+
* @param {string} chunk
|
1627
|
+
* @returns {string} Resource name string.
|
1628
|
+
*/
|
1629
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1630
|
+
/**
|
1631
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1632
|
+
*
|
1633
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1634
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1635
|
+
* @returns {string} A string representing the project.
|
1636
|
+
*/
|
1637
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1638
|
+
/**
|
1639
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1640
|
+
*
|
1641
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1642
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1643
|
+
* @returns {string} A string representing the location.
|
1644
|
+
*/
|
1645
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1646
|
+
/**
|
1647
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1648
|
+
*
|
1649
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1650
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1651
|
+
* @returns {string} A string representing the data_store.
|
1652
|
+
*/
|
1653
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1654
|
+
/**
|
1655
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1656
|
+
*
|
1657
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1658
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1659
|
+
* @returns {string} A string representing the branch.
|
1660
|
+
*/
|
1661
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1662
|
+
/**
|
1663
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1664
|
+
*
|
1665
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1666
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1667
|
+
* @returns {string} A string representing the document.
|
1668
|
+
*/
|
1669
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1670
|
+
/**
|
1671
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1672
|
+
*
|
1673
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1674
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1675
|
+
* @returns {string} A string representing the chunk.
|
1676
|
+
*/
|
1677
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1453
1678
|
/**
|
1454
1679
|
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
1455
1680
|
*
|
@@ -1492,6 +1717,39 @@ export declare class SearchServiceClient {
|
|
1492
1717
|
* @returns {string} A string representing the conversation.
|
1493
1718
|
*/
|
1494
1719
|
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1720
|
+
/**
|
1721
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1722
|
+
*
|
1723
|
+
* @param {string} project
|
1724
|
+
* @param {string} location
|
1725
|
+
* @param {string} data_store
|
1726
|
+
* @returns {string} Resource name string.
|
1727
|
+
*/
|
1728
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1729
|
+
/**
|
1730
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1731
|
+
*
|
1732
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1733
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1734
|
+
* @returns {string} A string representing the project.
|
1735
|
+
*/
|
1736
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1737
|
+
/**
|
1738
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1739
|
+
*
|
1740
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1741
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1742
|
+
* @returns {string} A string representing the location.
|
1743
|
+
*/
|
1744
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1745
|
+
/**
|
1746
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1747
|
+
*
|
1748
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1749
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1750
|
+
* @returns {string} A string representing the data_store.
|
1751
|
+
*/
|
1752
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1495
1753
|
/**
|
1496
1754
|
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
1497
1755
|
*
|