@google-cloud/discoveryengine 2.0.1 → 2.1.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 +7 -0
- package/README.md +7 -2
- package/build/protos/google/cloud/discoveryengine/v1/answer.proto +54 -2
- package/build/protos/google/cloud/discoveryengine/v1/chunk.proto +2 -1
- package/build/protos/google/cloud/discoveryengine/v1/common.proto +35 -6
- package/build/protos/google/cloud/discoveryengine/v1/control.proto +113 -2
- package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +168 -2
- package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +23 -4
- package/build/protos/google/cloud/discoveryengine/v1/document.proto +7 -2
- package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +1 -1
- package/build/protos/google/cloud/discoveryengine/v1/engine.proto +16 -3
- package/build/protos/google/cloud/discoveryengine/v1/grounded_generation_service.proto +70 -9
- package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +20 -1
- package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +9 -5
- package/build/protos/google/cloud/discoveryengine/v1/rank_service.proto +3 -1
- package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +2 -2
- package/build/protos/google/cloud/discoveryengine/v1/safety.proto +107 -0
- package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +96 -8
- package/build/protos/google/cloud/discoveryengine/v1/serving_config.proto +271 -0
- package/build/protos/google/cloud/discoveryengine/v1/serving_config_service.proto +75 -0
- package/build/protos/google/cloud/discoveryengine/v1/session.proto +19 -0
- package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +27 -3
- package/build/protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto +184 -5
- package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +34 -0
- package/build/protos/google/cloud/discoveryengine/v1/user_event_service.proto +16 -4
- package/build/protos/protos.d.ts +5356 -981
- package/build/protos/protos.js +32266 -20956
- package/build/protos/protos.json +1391 -74
- package/build/src/index.d.ts +4 -1
- package/build/src/index.js +4 -1
- package/build/src/v1/completion_service_client.d.ts +237 -0
- package/build/src/v1/completion_service_client.js +326 -0
- package/build/src/v1/completion_service_proto_list.json +3 -0
- package/build/src/v1/control_service_client.d.ts +237 -0
- package/build/src/v1/control_service_client.js +326 -0
- package/build/src/v1/control_service_proto_list.json +3 -0
- package/build/src/v1/conversational_search_service_client.d.ts +213 -6
- package/build/src/v1/conversational_search_service_client.js +265 -5
- package/build/src/v1/conversational_search_service_client_config.json +5 -0
- package/build/src/v1/conversational_search_service_proto_list.json +3 -0
- package/build/src/v1/data_store_service_client.d.ts +237 -0
- package/build/src/v1/data_store_service_client.js +326 -0
- package/build/src/v1/data_store_service_proto_list.json +3 -0
- package/build/src/v1/document_service_client.d.ts +244 -1
- package/build/src/v1/document_service_client.js +326 -0
- package/build/src/v1/document_service_proto_list.json +3 -0
- package/build/src/v1/engine_service_client.d.ts +237 -0
- package/build/src/v1/engine_service_client.js +326 -0
- package/build/src/v1/engine_service_proto_list.json +3 -0
- package/build/src/v1/gapic_metadata.json +59 -0
- package/build/src/v1/grounded_generation_service_client.d.ts +238 -3
- package/build/src/v1/grounded_generation_service_client.js +326 -0
- package/build/src/v1/grounded_generation_service_proto_list.json +3 -0
- package/build/src/v1/index.d.ts +1 -0
- package/build/src/v1/index.js +3 -1
- package/build/src/v1/project_service_client.d.ts +237 -0
- package/build/src/v1/project_service_client.js +326 -0
- package/build/src/v1/project_service_proto_list.json +3 -0
- package/build/src/v1/rank_service_client.d.ts +238 -1
- package/build/src/v1/rank_service_client.js +326 -0
- package/build/src/v1/rank_service_proto_list.json +3 -0
- package/build/src/v1/recommendation_service_client.d.ts +95 -2
- package/build/src/v1/recommendation_service_client.js +128 -0
- package/build/src/v1/recommendation_service_proto_list.json +3 -0
- package/build/src/v1/schema_service_client.d.ts +237 -0
- package/build/src/v1/schema_service_client.js +326 -0
- package/build/src/v1/schema_service_proto_list.json +3 -0
- package/build/src/v1/search_service_client.d.ts +219 -30
- package/build/src/v1/search_service_client.js +212 -20
- package/build/src/v1/search_service_proto_list.json +3 -0
- package/build/src/v1/search_tuning_service_client.d.ts +237 -0
- package/build/src/v1/search_tuning_service_client.js +326 -0
- package/build/src/v1/search_tuning_service_proto_list.json +3 -0
- package/build/src/v1/serving_config_service_client.d.ts +1851 -0
- package/build/src/v1/serving_config_service_client.js +2653 -0
- package/build/src/v1/serving_config_service_client_config.json +30 -0
- package/build/src/v1/serving_config_service_proto_list.json +39 -0
- package/build/src/v1/site_search_engine_service_client.d.ts +356 -3
- package/build/src/v1/site_search_engine_service_client.js +473 -0
- package/build/src/v1/site_search_engine_service_client_config.json +12 -0
- package/build/src/v1/site_search_engine_service_proto_list.json +3 -0
- package/build/src/v1/user_event_service_client.d.ts +258 -9
- package/build/src/v1/user_event_service_client.js +326 -0
- package/build/src/v1/user_event_service_proto_list.json +3 -0
- package/package.json +4 -4
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"interfaces": {
|
3
|
+
"google.cloud.discoveryengine.v1.ServingConfigService": {
|
4
|
+
"retry_codes": {
|
5
|
+
"non_idempotent": [],
|
6
|
+
"idempotent": [
|
7
|
+
"DEADLINE_EXCEEDED",
|
8
|
+
"UNAVAILABLE"
|
9
|
+
]
|
10
|
+
},
|
11
|
+
"retry_params": {
|
12
|
+
"default": {
|
13
|
+
"initial_retry_delay_millis": 100,
|
14
|
+
"retry_delay_multiplier": 1.3,
|
15
|
+
"max_retry_delay_millis": 60000,
|
16
|
+
"initial_rpc_timeout_millis": 60000,
|
17
|
+
"rpc_timeout_multiplier": 1,
|
18
|
+
"max_rpc_timeout_millis": 60000,
|
19
|
+
"total_timeout_millis": 600000
|
20
|
+
}
|
21
|
+
},
|
22
|
+
"methods": {
|
23
|
+
"UpdateServingConfig": {
|
24
|
+
"retry_codes_name": "non_idempotent",
|
25
|
+
"retry_params_name": "default"
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
[
|
2
|
+
"../../protos/google/cloud/discoveryengine/v1/answer.proto",
|
3
|
+
"../../protos/google/cloud/discoveryengine/v1/chunk.proto",
|
4
|
+
"../../protos/google/cloud/discoveryengine/v1/common.proto",
|
5
|
+
"../../protos/google/cloud/discoveryengine/v1/completion.proto",
|
6
|
+
"../../protos/google/cloud/discoveryengine/v1/completion_service.proto",
|
7
|
+
"../../protos/google/cloud/discoveryengine/v1/control.proto",
|
8
|
+
"../../protos/google/cloud/discoveryengine/v1/control_service.proto",
|
9
|
+
"../../protos/google/cloud/discoveryengine/v1/conversation.proto",
|
10
|
+
"../../protos/google/cloud/discoveryengine/v1/conversational_search_service.proto",
|
11
|
+
"../../protos/google/cloud/discoveryengine/v1/custom_tuning_model.proto",
|
12
|
+
"../../protos/google/cloud/discoveryengine/v1/data_store.proto",
|
13
|
+
"../../protos/google/cloud/discoveryengine/v1/data_store_service.proto",
|
14
|
+
"../../protos/google/cloud/discoveryengine/v1/document.proto",
|
15
|
+
"../../protos/google/cloud/discoveryengine/v1/document_processing_config.proto",
|
16
|
+
"../../protos/google/cloud/discoveryengine/v1/document_service.proto",
|
17
|
+
"../../protos/google/cloud/discoveryengine/v1/engine.proto",
|
18
|
+
"../../protos/google/cloud/discoveryengine/v1/engine_service.proto",
|
19
|
+
"../../protos/google/cloud/discoveryengine/v1/grounded_generation_service.proto",
|
20
|
+
"../../protos/google/cloud/discoveryengine/v1/grounding.proto",
|
21
|
+
"../../protos/google/cloud/discoveryengine/v1/import_config.proto",
|
22
|
+
"../../protos/google/cloud/discoveryengine/v1/project.proto",
|
23
|
+
"../../protos/google/cloud/discoveryengine/v1/project_service.proto",
|
24
|
+
"../../protos/google/cloud/discoveryengine/v1/purge_config.proto",
|
25
|
+
"../../protos/google/cloud/discoveryengine/v1/rank_service.proto",
|
26
|
+
"../../protos/google/cloud/discoveryengine/v1/recommendation_service.proto",
|
27
|
+
"../../protos/google/cloud/discoveryengine/v1/safety.proto",
|
28
|
+
"../../protos/google/cloud/discoveryengine/v1/schema.proto",
|
29
|
+
"../../protos/google/cloud/discoveryengine/v1/schema_service.proto",
|
30
|
+
"../../protos/google/cloud/discoveryengine/v1/search_service.proto",
|
31
|
+
"../../protos/google/cloud/discoveryengine/v1/search_tuning_service.proto",
|
32
|
+
"../../protos/google/cloud/discoveryengine/v1/serving_config.proto",
|
33
|
+
"../../protos/google/cloud/discoveryengine/v1/serving_config_service.proto",
|
34
|
+
"../../protos/google/cloud/discoveryengine/v1/session.proto",
|
35
|
+
"../../protos/google/cloud/discoveryengine/v1/site_search_engine.proto",
|
36
|
+
"../../protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto",
|
37
|
+
"../../protos/google/cloud/discoveryengine/v1/user_event.proto",
|
38
|
+
"../../protos/google/cloud/discoveryengine/v1/user_event_service.proto"
|
39
|
+
]
|
@@ -180,6 +180,37 @@ export declare class SiteSearchEngineServiceClient {
|
|
180
180
|
]>;
|
181
181
|
getTargetSite(request: protos.google.cloud.discoveryengine.v1.IGetTargetSiteRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.ITargetSite, protos.google.cloud.discoveryengine.v1.IGetTargetSiteRequest | null | undefined, {} | null | undefined>): void;
|
182
182
|
getTargetSite(request: protos.google.cloud.discoveryengine.v1.IGetTargetSiteRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.ITargetSite, protos.google.cloud.discoveryengine.v1.IGetTargetSiteRequest | null | undefined, {} | null | undefined>): void;
|
183
|
+
/**
|
184
|
+
* Fetch {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}s in a
|
185
|
+
* {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore}.
|
186
|
+
*
|
187
|
+
* @param {Object} request
|
188
|
+
* The request object that will be sent.
|
189
|
+
* @param {string} request.parent
|
190
|
+
* Required. Parent resource name of the
|
191
|
+
* {@link protos.google.cloud.discoveryengine.v1.SiteSearchEngine|SiteSearchEngine}, such
|
192
|
+
* as `projects/* /locations/* /collections/* /dataStores/* /siteSearchEngine`.
|
193
|
+
* @param {google.cloud.discoveryengine.v1.FetchSitemapsRequest.Matcher} [request.matcher]
|
194
|
+
* Optional. If specified, fetches the matching
|
195
|
+
* {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}s. If not specified,
|
196
|
+
* fetches all {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}s in the
|
197
|
+
* {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore}.
|
198
|
+
* @param {object} [options]
|
199
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
200
|
+
* @returns {Promise} - The promise which resolves to an array.
|
201
|
+
* The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1.FetchSitemapsResponse|FetchSitemapsResponse}.
|
202
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
203
|
+
* for more details and examples.
|
204
|
+
* @example <caption>include:samples/generated/v1/site_search_engine_service.fetch_sitemaps.js</caption>
|
205
|
+
* region_tag:discoveryengine_v1_generated_SiteSearchEngineService_FetchSitemaps_async
|
206
|
+
*/
|
207
|
+
fetchSitemaps(request?: protos.google.cloud.discoveryengine.v1.IFetchSitemapsRequest, options?: CallOptions): Promise<[
|
208
|
+
protos.google.cloud.discoveryengine.v1.IFetchSitemapsResponse,
|
209
|
+
protos.google.cloud.discoveryengine.v1.IFetchSitemapsRequest | undefined,
|
210
|
+
{} | undefined
|
211
|
+
]>;
|
212
|
+
fetchSitemaps(request: protos.google.cloud.discoveryengine.v1.IFetchSitemapsRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.IFetchSitemapsResponse, protos.google.cloud.discoveryengine.v1.IFetchSitemapsRequest | null | undefined, {} | null | undefined>): void;
|
213
|
+
fetchSitemaps(request: protos.google.cloud.discoveryengine.v1.IFetchSitemapsRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.IFetchSitemapsResponse, protos.google.cloud.discoveryengine.v1.IFetchSitemapsRequest | null | undefined, {} | null | undefined>): void;
|
183
214
|
/**
|
184
215
|
* Creates a {@link protos.google.cloud.discoveryengine.v1.TargetSite|TargetSite}.
|
185
216
|
*
|
@@ -355,6 +386,93 @@ export declare class SiteSearchEngineServiceClient {
|
|
355
386
|
* region_tag:discoveryengine_v1_generated_SiteSearchEngineService_DeleteTargetSite_async
|
356
387
|
*/
|
357
388
|
checkDeleteTargetSiteProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.discoveryengine.v1.DeleteTargetSiteMetadata>>;
|
389
|
+
/**
|
390
|
+
* Creates a {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}.
|
391
|
+
*
|
392
|
+
* @param {Object} request
|
393
|
+
* The request object that will be sent.
|
394
|
+
* @param {string} request.parent
|
395
|
+
* Required. Parent resource name of the
|
396
|
+
* {@link protos.google.cloud.discoveryengine.v1.SiteSearchEngine|SiteSearchEngine}, such
|
397
|
+
* as `projects/* /locations/* /collections/* /dataStores/* /siteSearchEngine`.
|
398
|
+
* @param {google.cloud.discoveryengine.v1.Sitemap} request.sitemap
|
399
|
+
* Required. The {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap} to create.
|
400
|
+
* @param {object} [options]
|
401
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
402
|
+
* @returns {Promise} - The promise which resolves to an array.
|
403
|
+
* The first element of the array is an object representing
|
404
|
+
* a long running operation. Its `promise()` method returns a promise
|
405
|
+
* you can `await` for.
|
406
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
407
|
+
* for more details and examples.
|
408
|
+
* @example <caption>include:samples/generated/v1/site_search_engine_service.create_sitemap.js</caption>
|
409
|
+
* region_tag:discoveryengine_v1_generated_SiteSearchEngineService_CreateSitemap_async
|
410
|
+
*/
|
411
|
+
createSitemap(request?: protos.google.cloud.discoveryengine.v1.ICreateSitemapRequest, options?: CallOptions): Promise<[
|
412
|
+
LROperation<protos.google.cloud.discoveryengine.v1.ISitemap, protos.google.cloud.discoveryengine.v1.ICreateSitemapMetadata>,
|
413
|
+
protos.google.longrunning.IOperation | undefined,
|
414
|
+
{} | undefined
|
415
|
+
]>;
|
416
|
+
createSitemap(request: protos.google.cloud.discoveryengine.v1.ICreateSitemapRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1.ISitemap, protos.google.cloud.discoveryengine.v1.ICreateSitemapMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
|
417
|
+
createSitemap(request: protos.google.cloud.discoveryengine.v1.ICreateSitemapRequest, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1.ISitemap, protos.google.cloud.discoveryengine.v1.ICreateSitemapMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
|
418
|
+
/**
|
419
|
+
* Check the status of the long running operation returned by `createSitemap()`.
|
420
|
+
* @param {String} name
|
421
|
+
* The operation name that will be passed.
|
422
|
+
* @returns {Promise} - The promise which resolves to an object.
|
423
|
+
* The decoded operation object has result and metadata field to get information from.
|
424
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
425
|
+
* for more details and examples.
|
426
|
+
* @example <caption>include:samples/generated/v1/site_search_engine_service.create_sitemap.js</caption>
|
427
|
+
* region_tag:discoveryengine_v1_generated_SiteSearchEngineService_CreateSitemap_async
|
428
|
+
*/
|
429
|
+
checkCreateSitemapProgress(name: string): Promise<LROperation<protos.google.cloud.discoveryengine.v1.Sitemap, protos.google.cloud.discoveryengine.v1.CreateSitemapMetadata>>;
|
430
|
+
/**
|
431
|
+
* Deletes a {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}.
|
432
|
+
*
|
433
|
+
* @param {Object} request
|
434
|
+
* The request object that will be sent.
|
435
|
+
* @param {string} request.name
|
436
|
+
* Required. Full resource name of
|
437
|
+
* {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}, such as
|
438
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine/sitemaps/{sitemap}`.
|
439
|
+
*
|
440
|
+
* If the caller does not have permission to access the
|
441
|
+
* {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap}, regardless of whether
|
442
|
+
* or not it exists, a PERMISSION_DENIED error is returned.
|
443
|
+
*
|
444
|
+
* If the requested {@link protos.google.cloud.discoveryengine.v1.Sitemap|Sitemap} does
|
445
|
+
* not exist, a NOT_FOUND error is returned.
|
446
|
+
* @param {object} [options]
|
447
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
448
|
+
* @returns {Promise} - The promise which resolves to an array.
|
449
|
+
* The first element of the array is an object representing
|
450
|
+
* a long running operation. Its `promise()` method returns a promise
|
451
|
+
* you can `await` for.
|
452
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
453
|
+
* for more details and examples.
|
454
|
+
* @example <caption>include:samples/generated/v1/site_search_engine_service.delete_sitemap.js</caption>
|
455
|
+
* region_tag:discoveryengine_v1_generated_SiteSearchEngineService_DeleteSitemap_async
|
456
|
+
*/
|
457
|
+
deleteSitemap(request?: protos.google.cloud.discoveryengine.v1.IDeleteSitemapRequest, options?: CallOptions): Promise<[
|
458
|
+
LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1.IDeleteSitemapMetadata>,
|
459
|
+
protos.google.longrunning.IOperation | undefined,
|
460
|
+
{} | undefined
|
461
|
+
]>;
|
462
|
+
deleteSitemap(request: protos.google.cloud.discoveryengine.v1.IDeleteSitemapRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1.IDeleteSitemapMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
|
463
|
+
deleteSitemap(request: protos.google.cloud.discoveryengine.v1.IDeleteSitemapRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1.IDeleteSitemapMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
|
464
|
+
/**
|
465
|
+
* Check the status of the long running operation returned by `deleteSitemap()`.
|
466
|
+
* @param {String} name
|
467
|
+
* The operation name that will be passed.
|
468
|
+
* @returns {Promise} - The promise which resolves to an object.
|
469
|
+
* The decoded operation object has result and metadata field to get information from.
|
470
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
|
471
|
+
* for more details and examples.
|
472
|
+
* @example <caption>include:samples/generated/v1/site_search_engine_service.delete_sitemap.js</caption>
|
473
|
+
* region_tag:discoveryengine_v1_generated_SiteSearchEngineService_DeleteSitemap_async
|
474
|
+
*/
|
475
|
+
checkDeleteSitemapProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.discoveryengine.v1.DeleteSitemapMetadata>>;
|
358
476
|
/**
|
359
477
|
* Upgrade from basic site search to advanced site search.
|
360
478
|
*
|
@@ -450,9 +568,7 @@ export declare class SiteSearchEngineServiceClient {
|
|
450
568
|
* {@link protos.google.cloud.discoveryengine.v1.TargetSite|TargetSite} in
|
451
569
|
* `site_search_engine`.
|
452
570
|
* @param {string} [request.siteCredential]
|
453
|
-
* Optional.
|
454
|
-
* `projects/* /locations/* /collections/* /dataStores/* /siteSearchEngine/siteCredentials/*`.
|
455
|
-
* Only set to crawl private URIs.
|
571
|
+
* Optional. Credential id to use for crawling.
|
456
572
|
* @param {object} [options]
|
457
573
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
458
574
|
* @returns {Promise} - The promise which resolves to an array.
|
@@ -1399,6 +1515,57 @@ export declare class SiteSearchEngineServiceClient {
|
|
1399
1515
|
* @returns {string} A string representing the schema.
|
1400
1516
|
*/
|
1401
1517
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
1518
|
+
/**
|
1519
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
1520
|
+
*
|
1521
|
+
* @param {string} project
|
1522
|
+
* @param {string} location
|
1523
|
+
* @param {string} collection
|
1524
|
+
* @param {string} data_store
|
1525
|
+
* @param {string} serving_config
|
1526
|
+
* @returns {string} Resource name string.
|
1527
|
+
*/
|
1528
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
1529
|
+
/**
|
1530
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
1531
|
+
*
|
1532
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1533
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1534
|
+
* @returns {string} A string representing the project.
|
1535
|
+
*/
|
1536
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1537
|
+
/**
|
1538
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
1539
|
+
*
|
1540
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1541
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1542
|
+
* @returns {string} A string representing the location.
|
1543
|
+
*/
|
1544
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1545
|
+
/**
|
1546
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
1547
|
+
*
|
1548
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1549
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1550
|
+
* @returns {string} A string representing the collection.
|
1551
|
+
*/
|
1552
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1553
|
+
/**
|
1554
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
1555
|
+
*
|
1556
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1557
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1558
|
+
* @returns {string} A string representing the data_store.
|
1559
|
+
*/
|
1560
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1561
|
+
/**
|
1562
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
1563
|
+
*
|
1564
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
1565
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
1566
|
+
* @returns {string} A string representing the serving_config.
|
1567
|
+
*/
|
1568
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
1402
1569
|
/**
|
1403
1570
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
1404
1571
|
*
|
@@ -1552,6 +1719,57 @@ export declare class SiteSearchEngineServiceClient {
|
|
1552
1719
|
* @returns {string} A string representing the data_store.
|
1553
1720
|
*/
|
1554
1721
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1722
|
+
/**
|
1723
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1724
|
+
*
|
1725
|
+
* @param {string} project
|
1726
|
+
* @param {string} location
|
1727
|
+
* @param {string} collection
|
1728
|
+
* @param {string} data_store
|
1729
|
+
* @param {string} sitemap
|
1730
|
+
* @returns {string} Resource name string.
|
1731
|
+
*/
|
1732
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1733
|
+
/**
|
1734
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1735
|
+
*
|
1736
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1737
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1738
|
+
* @returns {string} A string representing the project.
|
1739
|
+
*/
|
1740
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1741
|
+
/**
|
1742
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1743
|
+
*
|
1744
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1745
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1746
|
+
* @returns {string} A string representing the location.
|
1747
|
+
*/
|
1748
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1749
|
+
/**
|
1750
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1751
|
+
*
|
1752
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1753
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1754
|
+
* @returns {string} A string representing the collection.
|
1755
|
+
*/
|
1756
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1757
|
+
/**
|
1758
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1759
|
+
*
|
1760
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1761
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1762
|
+
* @returns {string} A string representing the data_store.
|
1763
|
+
*/
|
1764
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1765
|
+
/**
|
1766
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1767
|
+
*
|
1768
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1769
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1770
|
+
* @returns {string} A string representing the sitemap.
|
1771
|
+
*/
|
1772
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1555
1773
|
/**
|
1556
1774
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
1557
1775
|
*
|
@@ -1705,6 +1923,57 @@ export declare class SiteSearchEngineServiceClient {
|
|
1705
1923
|
* @returns {string} A string representing the conversation.
|
1706
1924
|
*/
|
1707
1925
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1926
|
+
/**
|
1927
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1928
|
+
*
|
1929
|
+
* @param {string} project
|
1930
|
+
* @param {string} location
|
1931
|
+
* @param {string} collection
|
1932
|
+
* @param {string} engine
|
1933
|
+
* @param {string} serving_config
|
1934
|
+
* @returns {string} Resource name string.
|
1935
|
+
*/
|
1936
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1937
|
+
/**
|
1938
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1939
|
+
*
|
1940
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1941
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1942
|
+
* @returns {string} A string representing the project.
|
1943
|
+
*/
|
1944
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1945
|
+
/**
|
1946
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1947
|
+
*
|
1948
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1949
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1950
|
+
* @returns {string} A string representing the location.
|
1951
|
+
*/
|
1952
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1953
|
+
/**
|
1954
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1955
|
+
*
|
1956
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1957
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1958
|
+
* @returns {string} A string representing the collection.
|
1959
|
+
*/
|
1960
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1961
|
+
/**
|
1962
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1963
|
+
*
|
1964
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1965
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1966
|
+
* @returns {string} A string representing the engine.
|
1967
|
+
*/
|
1968
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1969
|
+
/**
|
1970
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1971
|
+
*
|
1972
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1973
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1974
|
+
* @returns {string} A string representing the serving_config.
|
1975
|
+
*/
|
1976
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1708
1977
|
/**
|
1709
1978
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1710
1979
|
*
|
@@ -2161,6 +2430,48 @@ export declare class SiteSearchEngineServiceClient {
|
|
2161
2430
|
* @returns {string} A string representing the schema.
|
2162
2431
|
*/
|
2163
2432
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
2433
|
+
/**
|
2434
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
2435
|
+
*
|
2436
|
+
* @param {string} project
|
2437
|
+
* @param {string} location
|
2438
|
+
* @param {string} data_store
|
2439
|
+
* @param {string} serving_config
|
2440
|
+
* @returns {string} Resource name string.
|
2441
|
+
*/
|
2442
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
2443
|
+
/**
|
2444
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
2445
|
+
*
|
2446
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2447
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2448
|
+
* @returns {string} A string representing the project.
|
2449
|
+
*/
|
2450
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2451
|
+
/**
|
2452
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
2453
|
+
*
|
2454
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2455
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2456
|
+
* @returns {string} A string representing the location.
|
2457
|
+
*/
|
2458
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2459
|
+
/**
|
2460
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
2461
|
+
*
|
2462
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2463
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2464
|
+
* @returns {string} A string representing the data_store.
|
2465
|
+
*/
|
2466
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2467
|
+
/**
|
2468
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
2469
|
+
*
|
2470
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
2471
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
2472
|
+
* @returns {string} A string representing the serving_config.
|
2473
|
+
*/
|
2474
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
2164
2475
|
/**
|
2165
2476
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
2166
2477
|
*
|
@@ -2287,6 +2598,48 @@ export declare class SiteSearchEngineServiceClient {
|
|
2287
2598
|
* @returns {string} A string representing the data_store.
|
2288
2599
|
*/
|
2289
2600
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
2601
|
+
/**
|
2602
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
2603
|
+
*
|
2604
|
+
* @param {string} project
|
2605
|
+
* @param {string} location
|
2606
|
+
* @param {string} data_store
|
2607
|
+
* @param {string} sitemap
|
2608
|
+
* @returns {string} Resource name string.
|
2609
|
+
*/
|
2610
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
2611
|
+
/**
|
2612
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2613
|
+
*
|
2614
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2615
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2616
|
+
* @returns {string} A string representing the project.
|
2617
|
+
*/
|
2618
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2619
|
+
/**
|
2620
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2621
|
+
*
|
2622
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2623
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2624
|
+
* @returns {string} A string representing the location.
|
2625
|
+
*/
|
2626
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2627
|
+
/**
|
2628
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2629
|
+
*
|
2630
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2631
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2632
|
+
* @returns {string} A string representing the data_store.
|
2633
|
+
*/
|
2634
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2635
|
+
/**
|
2636
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
2637
|
+
*
|
2638
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
2639
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
2640
|
+
* @returns {string} A string representing the sitemap.
|
2641
|
+
*/
|
2642
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
2290
2643
|
/**
|
2291
2644
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
2292
2645
|
*
|