@google-cloud/discoveryengine 2.0.1 → 2.2.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 +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 +4390 -300
- package/build/protos/protos.js +13785 -2922
- package/build/protos/protos.json +1355 -14
- package/build/src/index.d.ts +4 -1
- package/build/src/index.js +4 -21
- package/build/src/v1/completion_service_client.d.ts +313 -76
- package/build/src/v1/completion_service_client.js +451 -262
- package/build/src/v1/completion_service_proto_list.json +3 -0
- package/build/src/v1/control_service_client.d.ts +318 -81
- package/build/src/v1/control_service_client.js +422 -132
- package/build/src/v1/control_service_proto_list.json +3 -0
- package/build/src/v1/conversational_search_service_client.d.ts +341 -134
- package/build/src/v1/conversational_search_service_client.js +395 -223
- 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 +359 -122
- package/build/src/v1/data_store_service_client.js +460 -280
- package/build/src/v1/data_store_service_proto_list.json +3 -0
- package/build/src/v1/document_service_client.d.ts +364 -121
- package/build/src/v1/document_service_client.js +469 -300
- package/build/src/v1/document_service_proto_list.json +3 -0
- package/build/src/v1/engine_service_client.d.ts +340 -103
- package/build/src/v1/engine_service_client.js +460 -279
- 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 +286 -51
- package/build/src/v1/grounded_generation_service_client.js +405 -100
- 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 +313 -76
- package/build/src/v1/project_service_client.js +434 -222
- package/build/src/v1/project_service_proto_list.json +3 -0
- package/build/src/v1/rank_service_client.d.ts +285 -48
- package/build/src/v1/rank_service_client.js +398 -85
- package/build/src/v1/rank_service_proto_list.json +3 -0
- package/build/src/v1/recommendation_service_client.d.ts +142 -49
- package/build/src/v1/recommendation_service_client.js +198 -82
- package/build/src/v1/recommendation_service_proto_list.json +3 -0
- package/build/src/v1/schema_service_client.d.ts +348 -111
- package/build/src/v1/schema_service_client.js +457 -273
- package/build/src/v1/schema_service_proto_list.json +3 -0
- package/build/src/v1/search_service_client.d.ts +748 -559
- package/build/src/v1/search_service_client.js +302 -133
- package/build/src/v1/search_service_proto_list.json +3 -0
- package/build/src/v1/search_tuning_service_client.d.ts +314 -77
- package/build/src/v1/search_tuning_service_client.js +439 -235
- 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 +2642 -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 +504 -151
- package/build/src/v1/site_search_engine_service_client.js +625 -351
- 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 +335 -86
- package/build/src/v1/user_event_service_client.js +447 -253
- package/build/src/v1/user_event_service_proto_list.json +3 -0
- package/build/src/v1alpha/acl_config_service_client.d.ts +49 -49
- package/build/src/v1alpha/acl_config_service_client.js +82 -106
- package/build/src/v1alpha/chunk_service_client.d.ts +88 -88
- package/build/src/v1alpha/chunk_service_client.js +92 -120
- package/build/src/v1alpha/completion_service_client.d.ts +77 -77
- package/build/src/v1alpha/completion_service_client.js +134 -280
- package/build/src/v1alpha/control_service_client.d.ts +85 -85
- package/build/src/v1alpha/control_service_client.js +105 -151
- package/build/src/v1alpha/conversational_search_service_client.d.ts +143 -143
- package/build/src/v1alpha/conversational_search_service_client.js +145 -237
- package/build/src/v1alpha/data_store_service_client.d.ts +126 -126
- package/build/src/v1alpha/data_store_service_client.js +151 -316
- package/build/src/v1alpha/document_service_client.d.ts +126 -126
- package/build/src/v1alpha/document_service_client.js +156 -328
- package/build/src/v1alpha/engine_service_client.d.ts +106 -106
- package/build/src/v1alpha/engine_service_client.js +155 -325
- package/build/src/v1alpha/estimate_billing_service_client.d.ts +76 -76
- package/build/src/v1alpha/estimate_billing_service_client.js +118 -243
- package/build/src/v1alpha/evaluation_service_client.d.ts +161 -161
- package/build/src/v1alpha/evaluation_service_client.js +143 -295
- package/build/src/v1alpha/grounded_generation_service_client.d.ts +48 -48
- package/build/src/v1alpha/grounded_generation_service_client.js +79 -100
- package/build/src/v1alpha/project_service_client.d.ts +78 -78
- package/build/src/v1alpha/project_service_client.js +126 -262
- package/build/src/v1alpha/rank_service_client.d.ts +47 -47
- package/build/src/v1alpha/rank_service_client.js +81 -104
- package/build/src/v1alpha/recommendation_service_client.d.ts +47 -47
- package/build/src/v1alpha/recommendation_service_client.js +79 -100
- package/build/src/v1alpha/sample_query_service_client.d.ts +123 -123
- package/build/src/v1alpha/sample_query_service_client.js +144 -301
- package/build/src/v1alpha/sample_query_set_service_client.d.ts +94 -94
- package/build/src/v1alpha/sample_query_set_service_client.js +106 -153
- package/build/src/v1alpha/schema_service_client.d.ts +112 -112
- package/build/src/v1alpha/schema_service_client.js +140 -292
- package/build/src/v1alpha/search_service_client.d.ts +327 -327
- package/build/src/v1alpha/search_service_client.js +88 -112
- package/build/src/v1alpha/search_tuning_service_client.d.ts +77 -77
- package/build/src/v1alpha/search_tuning_service_client.js +122 -253
- package/build/src/v1alpha/serving_config_service_client.d.ts +75 -75
- package/build/src/v1alpha/serving_config_service_client.js +97 -133
- package/build/src/v1alpha/site_search_engine_service_client.d.ts +151 -151
- package/build/src/v1alpha/site_search_engine_service_client.js +184 -387
- package/build/src/v1alpha/user_event_service_client.d.ts +78 -78
- package/build/src/v1alpha/user_event_service_client.js +130 -271
- package/build/src/v1beta/completion_service_client.d.ts +78 -78
- package/build/src/v1beta/completion_service_client.js +136 -279
- package/build/src/v1beta/control_service_client.d.ts +84 -84
- package/build/src/v1beta/control_service_client.js +103 -147
- package/build/src/v1beta/conversational_search_service_client.d.ts +142 -142
- package/build/src/v1beta/conversational_search_service_client.js +143 -233
- package/build/src/v1beta/data_store_service_client.d.ts +124 -124
- package/build/src/v1beta/data_store_service_client.js +141 -288
- package/build/src/v1beta/document_service_client.d.ts +124 -124
- package/build/src/v1beta/document_service_client.js +150 -309
- package/build/src/v1beta/engine_service_client.d.ts +106 -106
- package/build/src/v1beta/engine_service_client.js +153 -315
- package/build/src/v1beta/evaluation_service_client.d.ts +161 -161
- package/build/src/v1beta/evaluation_service_client.js +141 -285
- package/build/src/v1beta/grounded_generation_service_client.d.ts +49 -49
- package/build/src/v1beta/grounded_generation_service_client.js +86 -114
- package/build/src/v1beta/project_service_client.d.ts +76 -76
- package/build/src/v1beta/project_service_client.js +115 -231
- package/build/src/v1beta/rank_service_client.d.ts +47 -47
- package/build/src/v1beta/rank_service_client.js +79 -99
- package/build/src/v1beta/recommendation_service_client.d.ts +47 -47
- package/build/src/v1beta/recommendation_service_client.js +77 -96
- package/build/src/v1beta/sample_query_service_client.d.ts +123 -123
- package/build/src/v1beta/sample_query_service_client.js +142 -291
- package/build/src/v1beta/sample_query_set_service_client.d.ts +94 -94
- package/build/src/v1beta/sample_query_set_service_client.js +104 -149
- package/build/src/v1beta/schema_service_client.d.ts +111 -111
- package/build/src/v1beta/schema_service_client.js +138 -282
- package/build/src/v1beta/search_service_client.d.ts +665 -665
- package/build/src/v1beta/search_service_client.js +97 -128
- package/build/src/v1beta/search_tuning_service_client.d.ts +77 -77
- package/build/src/v1beta/search_tuning_service_client.js +120 -243
- package/build/src/v1beta/serving_config_service_client.d.ts +75 -75
- package/build/src/v1beta/serving_config_service_client.js +95 -129
- package/build/src/v1beta/site_search_engine_service_client.d.ts +151 -151
- package/build/src/v1beta/site_search_engine_service_client.js +186 -386
- package/build/src/v1beta/user_event_service_client.d.ts +78 -78
- package/build/src/v1beta/user_event_service_client.js +128 -261
- package/package.json +4 -4
@@ -143,7 +143,7 @@ export declare class SiteSearchEngineServiceClient {
|
|
143
143
|
*/
|
144
144
|
getSiteSearchEngine(request?: protos.google.cloud.discoveryengine.v1.IGetSiteSearchEngineRequest, options?: CallOptions): Promise<[
|
145
145
|
protos.google.cloud.discoveryengine.v1.ISiteSearchEngine,
|
146
|
-
|
146
|
+
protos.google.cloud.discoveryengine.v1.IGetSiteSearchEngineRequest | undefined,
|
147
147
|
{} | undefined
|
148
148
|
]>;
|
149
149
|
getSiteSearchEngine(request: protos.google.cloud.discoveryengine.v1.IGetSiteSearchEngineRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.ISiteSearchEngine, protos.google.cloud.discoveryengine.v1.IGetSiteSearchEngineRequest | null | undefined, {} | null | undefined>): void;
|
@@ -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.
|
@@ -524,42 +640,42 @@ export declare class SiteSearchEngineServiceClient {
|
|
524
640
|
*/
|
525
641
|
checkBatchVerifyTargetSitesProgress(name: string): Promise<LROperation<protos.google.cloud.discoveryengine.v1.BatchVerifyTargetSitesResponse, protos.google.cloud.discoveryengine.v1.BatchVerifyTargetSitesMetadata>>;
|
526
642
|
/**
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
643
|
+
* Gets a list of {@link protos.google.cloud.discoveryengine.v1.TargetSite|TargetSite}s.
|
644
|
+
*
|
645
|
+
* @param {Object} request
|
646
|
+
* The request object that will be sent.
|
647
|
+
* @param {string} request.parent
|
648
|
+
* Required. The parent site search engine resource name, such as
|
649
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine`.
|
650
|
+
*
|
651
|
+
* If the caller does not have permission to list
|
652
|
+
* {@link protos.google.cloud.discoveryengine.v1.TargetSite|TargetSite}s under this site
|
653
|
+
* search engine, regardless of whether or not this branch exists, a
|
654
|
+
* PERMISSION_DENIED error is returned.
|
655
|
+
* @param {number} request.pageSize
|
656
|
+
* Requested page size. Server may return fewer items than requested. If
|
657
|
+
* unspecified, server will pick an appropriate default. The maximum value is
|
658
|
+
* 1000; values above 1000 will be coerced to 1000.
|
659
|
+
*
|
660
|
+
* If this field is negative, an INVALID_ARGUMENT error is returned.
|
661
|
+
* @param {string} request.pageToken
|
662
|
+
* A page token, received from a previous `ListTargetSites` call.
|
663
|
+
* Provide this to retrieve the subsequent page.
|
664
|
+
*
|
665
|
+
* When paginating, all other parameters provided to `ListTargetSites`
|
666
|
+
* must match the call that provided the page token.
|
667
|
+
* @param {object} [options]
|
668
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
669
|
+
* @returns {Promise} - The promise which resolves to an array.
|
670
|
+
* The first element of the array is Array of {@link protos.google.cloud.discoveryengine.v1.TargetSite|TargetSite}.
|
671
|
+
* The client library will perform auto-pagination by default: it will call the API as many
|
672
|
+
* times as needed and will merge results from all the pages into this array.
|
673
|
+
* Note that it can affect your quota.
|
674
|
+
* We recommend using `listTargetSitesAsync()`
|
675
|
+
* method described below for async iteration which you can stop as needed.
|
676
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
677
|
+
* for more details and examples.
|
678
|
+
*/
|
563
679
|
listTargetSites(request?: protos.google.cloud.discoveryengine.v1.IListTargetSitesRequest, options?: CallOptions): Promise<[
|
564
680
|
protos.google.cloud.discoveryengine.v1.ITargetSite[],
|
565
681
|
protos.google.cloud.discoveryengine.v1.IListTargetSitesRequest | null,
|
@@ -643,41 +759,41 @@ export declare class SiteSearchEngineServiceClient {
|
|
643
759
|
*/
|
644
760
|
listTargetSitesAsync(request?: protos.google.cloud.discoveryengine.v1.IListTargetSitesRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.discoveryengine.v1.ITargetSite>;
|
645
761
|
/**
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
762
|
+
* Returns list of target sites with its domain verification status.
|
763
|
+
* This method can only be called under data store with BASIC_SITE_SEARCH
|
764
|
+
* state at the moment.
|
765
|
+
*
|
766
|
+
* @param {Object} request
|
767
|
+
* The request object that will be sent.
|
768
|
+
* @param {string} request.siteSearchEngine
|
769
|
+
* Required. The site search engine resource under which we fetch all the
|
770
|
+
* domain verification status.
|
771
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine`.
|
772
|
+
* @param {number} request.pageSize
|
773
|
+
* Requested page size. Server may return fewer items than requested. If
|
774
|
+
* unspecified, server will pick an appropriate default. The maximum value is
|
775
|
+
* 1000; values above 1000 will be coerced to 1000.
|
776
|
+
*
|
777
|
+
* If this field is negative, an INVALID_ARGUMENT error is returned.
|
778
|
+
* @param {string} request.pageToken
|
779
|
+
* A page token, received from a previous `FetchDomainVerificationStatus`
|
780
|
+
* call. Provide this to retrieve the subsequent page.
|
781
|
+
*
|
782
|
+
* When paginating, all other parameters provided to
|
783
|
+
* `FetchDomainVerificationStatus` must match the call that provided the page
|
784
|
+
* token.
|
785
|
+
* @param {object} [options]
|
786
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
787
|
+
* @returns {Promise} - The promise which resolves to an array.
|
788
|
+
* The first element of the array is Array of {@link protos.google.cloud.discoveryengine.v1.TargetSite|TargetSite}.
|
789
|
+
* The client library will perform auto-pagination by default: it will call the API as many
|
790
|
+
* times as needed and will merge results from all the pages into this array.
|
791
|
+
* Note that it can affect your quota.
|
792
|
+
* We recommend using `fetchDomainVerificationStatusAsync()`
|
793
|
+
* method described below for async iteration which you can stop as needed.
|
794
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
795
|
+
* for more details and examples.
|
796
|
+
*/
|
681
797
|
fetchDomainVerificationStatus(request?: protos.google.cloud.discoveryengine.v1.IFetchDomainVerificationStatusRequest, options?: CallOptions): Promise<[
|
682
798
|
protos.google.cloud.discoveryengine.v1.ITargetSite[],
|
683
799
|
protos.google.cloud.discoveryengine.v1.IFetchDomainVerificationStatusRequest | null,
|
@@ -755,86 +871,86 @@ export declare class SiteSearchEngineServiceClient {
|
|
755
871
|
*/
|
756
872
|
fetchDomainVerificationStatusAsync(request?: protos.google.cloud.discoveryengine.v1.IFetchDomainVerificationStatusRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.discoveryengine.v1.ITargetSite>;
|
757
873
|
/**
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
874
|
+
* Gets information about a location.
|
875
|
+
*
|
876
|
+
* @param {Object} request
|
877
|
+
* The request object that will be sent.
|
878
|
+
* @param {string} request.name
|
879
|
+
* Resource name for the location.
|
880
|
+
* @param {object} [options]
|
881
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
|
882
|
+
* @returns {Promise} - The promise which resolves to an array.
|
883
|
+
* The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
|
884
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
885
|
+
* for more details and examples.
|
886
|
+
* @example
|
887
|
+
* ```
|
888
|
+
* const [response] = await client.getLocation(request);
|
889
|
+
* ```
|
890
|
+
*/
|
775
891
|
getLocation(request: LocationProtos.google.cloud.location.IGetLocationRequest, options?: gax.CallOptions | Callback<LocationProtos.google.cloud.location.ILocation, LocationProtos.google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>, callback?: Callback<LocationProtos.google.cloud.location.ILocation, LocationProtos.google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>): Promise<LocationProtos.google.cloud.location.ILocation>;
|
776
892
|
/**
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
893
|
+
* Lists information about the supported locations for this service. Returns an iterable object.
|
894
|
+
*
|
895
|
+
* `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
|
896
|
+
* @param {Object} request
|
897
|
+
* The request object that will be sent.
|
898
|
+
* @param {string} request.name
|
899
|
+
* The resource that owns the locations collection, if applicable.
|
900
|
+
* @param {string} request.filter
|
901
|
+
* The standard list filter.
|
902
|
+
* @param {number} request.pageSize
|
903
|
+
* The standard list page size.
|
904
|
+
* @param {string} request.pageToken
|
905
|
+
* The standard list page token.
|
906
|
+
* @param {object} [options]
|
907
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
908
|
+
* @returns {Object}
|
909
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
910
|
+
* When you iterate the returned iterable, each element will be an object representing
|
911
|
+
* {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
|
912
|
+
* so you can stop the iteration when you don't need more results.
|
913
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
914
|
+
* for more details and examples.
|
915
|
+
* @example
|
916
|
+
* ```
|
917
|
+
* const iterable = client.listLocationsAsync(request);
|
918
|
+
* for await (const response of iterable) {
|
919
|
+
* // process response
|
920
|
+
* }
|
921
|
+
* ```
|
922
|
+
*/
|
807
923
|
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
808
924
|
/**
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
925
|
+
* Gets the latest state of a long-running operation. Clients can use this
|
926
|
+
* method to poll the operation result at intervals as recommended by the API
|
927
|
+
* service.
|
928
|
+
*
|
929
|
+
* @param {Object} request - The request object that will be sent.
|
930
|
+
* @param {string} request.name - The name of the operation resource.
|
931
|
+
* @param {Object=} options
|
932
|
+
* Optional parameters. You can override the default settings for this call,
|
933
|
+
* e.g, timeout, retries, paginations, etc. See {@link
|
934
|
+
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
|
935
|
+
* for the details.
|
936
|
+
* @param {function(?Error, ?Object)=} callback
|
937
|
+
* The function which will be called with the result of the API call.
|
938
|
+
*
|
939
|
+
* The second parameter to the callback is an object representing
|
940
|
+
* {@link google.longrunning.Operation | google.longrunning.Operation}.
|
941
|
+
* @return {Promise} - The promise which resolves to an array.
|
942
|
+
* The first element of the array is an object representing
|
943
|
+
* {@link google.longrunning.Operation | google.longrunning.Operation}.
|
944
|
+
* The promise has a method named "cancel" which cancels the ongoing API call.
|
945
|
+
*
|
946
|
+
* @example
|
947
|
+
* ```
|
948
|
+
* const client = longrunning.operationsClient();
|
949
|
+
* const name = '';
|
950
|
+
* const [response] = await client.getOperation({name});
|
951
|
+
* // doThingsWith(response)
|
952
|
+
* ```
|
953
|
+
*/
|
838
954
|
getOperation(request: protos.google.longrunning.GetOperationRequest, optionsOrCallback?: gax.CallOptions | Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>): Promise<[protos.google.longrunning.Operation]>;
|
839
955
|
/**
|
840
956
|
* Lists operations that match the specified filter in the request. If the
|
@@ -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
|
*
|