@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
@@ -24,10 +24,13 @@
|
|
24
24
|
"../../protos/google/cloud/discoveryengine/v1/purge_config.proto",
|
25
25
|
"../../protos/google/cloud/discoveryengine/v1/rank_service.proto",
|
26
26
|
"../../protos/google/cloud/discoveryengine/v1/recommendation_service.proto",
|
27
|
+
"../../protos/google/cloud/discoveryengine/v1/safety.proto",
|
27
28
|
"../../protos/google/cloud/discoveryengine/v1/schema.proto",
|
28
29
|
"../../protos/google/cloud/discoveryengine/v1/schema_service.proto",
|
29
30
|
"../../protos/google/cloud/discoveryengine/v1/search_service.proto",
|
30
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",
|
31
34
|
"../../protos/google/cloud/discoveryengine/v1/session.proto",
|
32
35
|
"../../protos/google/cloud/discoveryengine/v1/site_search_engine.proto",
|
33
36
|
"../../protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto",
|
@@ -137,7 +137,7 @@ export declare class SearchTuningServiceClient {
|
|
137
137
|
*/
|
138
138
|
listCustomModels(request?: protos.google.cloud.discoveryengine.v1.IListCustomModelsRequest, options?: CallOptions): Promise<[
|
139
139
|
protos.google.cloud.discoveryengine.v1.IListCustomModelsResponse,
|
140
|
-
|
140
|
+
protos.google.cloud.discoveryengine.v1.IListCustomModelsRequest | undefined,
|
141
141
|
{} | undefined
|
142
142
|
]>;
|
143
143
|
listCustomModels(request: protos.google.cloud.discoveryengine.v1.IListCustomModelsRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.IListCustomModelsResponse, protos.google.cloud.discoveryengine.v1.IListCustomModelsRequest | null | undefined, {} | null | undefined>): void;
|
@@ -193,86 +193,86 @@ export declare class SearchTuningServiceClient {
|
|
193
193
|
*/
|
194
194
|
checkTrainCustomModelProgress(name: string): Promise<LROperation<protos.google.cloud.discoveryengine.v1.TrainCustomModelResponse, protos.google.cloud.discoveryengine.v1.TrainCustomModelMetadata>>;
|
195
195
|
/**
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
196
|
+
* Gets information about a location.
|
197
|
+
*
|
198
|
+
* @param {Object} request
|
199
|
+
* The request object that will be sent.
|
200
|
+
* @param {string} request.name
|
201
|
+
* Resource name for the location.
|
202
|
+
* @param {object} [options]
|
203
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
|
204
|
+
* @returns {Promise} - The promise which resolves to an array.
|
205
|
+
* The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
|
206
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
207
|
+
* for more details and examples.
|
208
|
+
* @example
|
209
|
+
* ```
|
210
|
+
* const [response] = await client.getLocation(request);
|
211
|
+
* ```
|
212
|
+
*/
|
213
213
|
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>;
|
214
214
|
/**
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
215
|
+
* Lists information about the supported locations for this service. Returns an iterable object.
|
216
|
+
*
|
217
|
+
* `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
|
218
|
+
* @param {Object} request
|
219
|
+
* The request object that will be sent.
|
220
|
+
* @param {string} request.name
|
221
|
+
* The resource that owns the locations collection, if applicable.
|
222
|
+
* @param {string} request.filter
|
223
|
+
* The standard list filter.
|
224
|
+
* @param {number} request.pageSize
|
225
|
+
* The standard list page size.
|
226
|
+
* @param {string} request.pageToken
|
227
|
+
* The standard list page token.
|
228
|
+
* @param {object} [options]
|
229
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
230
|
+
* @returns {Object}
|
231
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
232
|
+
* When you iterate the returned iterable, each element will be an object representing
|
233
|
+
* {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
|
234
|
+
* so you can stop the iteration when you don't need more results.
|
235
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
236
|
+
* for more details and examples.
|
237
|
+
* @example
|
238
|
+
* ```
|
239
|
+
* const iterable = client.listLocationsAsync(request);
|
240
|
+
* for await (const response of iterable) {
|
241
|
+
* // process response
|
242
|
+
* }
|
243
|
+
* ```
|
244
|
+
*/
|
245
245
|
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
246
246
|
/**
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
247
|
+
* Gets the latest state of a long-running operation. Clients can use this
|
248
|
+
* method to poll the operation result at intervals as recommended by the API
|
249
|
+
* service.
|
250
|
+
*
|
251
|
+
* @param {Object} request - The request object that will be sent.
|
252
|
+
* @param {string} request.name - The name of the operation resource.
|
253
|
+
* @param {Object=} options
|
254
|
+
* Optional parameters. You can override the default settings for this call,
|
255
|
+
* e.g, timeout, retries, paginations, etc. See {@link
|
256
|
+
* https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
|
257
|
+
* for the details.
|
258
|
+
* @param {function(?Error, ?Object)=} callback
|
259
|
+
* The function which will be called with the result of the API call.
|
260
|
+
*
|
261
|
+
* The second parameter to the callback is an object representing
|
262
|
+
* {@link google.longrunning.Operation | google.longrunning.Operation}.
|
263
|
+
* @return {Promise} - The promise which resolves to an array.
|
264
|
+
* The first element of the array is an object representing
|
265
|
+
* {@link google.longrunning.Operation | google.longrunning.Operation}.
|
266
|
+
* The promise has a method named "cancel" which cancels the ongoing API call.
|
267
|
+
*
|
268
|
+
* @example
|
269
|
+
* ```
|
270
|
+
* const client = longrunning.operationsClient();
|
271
|
+
* const name = '';
|
272
|
+
* const [response] = await client.getOperation({name});
|
273
|
+
* // doThingsWith(response)
|
274
|
+
* ```
|
275
|
+
*/
|
276
276
|
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]>;
|
277
277
|
/**
|
278
278
|
* Lists operations that match the specified filter in the request. If the
|
@@ -837,6 +837,57 @@ export declare class SearchTuningServiceClient {
|
|
837
837
|
* @returns {string} A string representing the schema.
|
838
838
|
*/
|
839
839
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
840
|
+
/**
|
841
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
842
|
+
*
|
843
|
+
* @param {string} project
|
844
|
+
* @param {string} location
|
845
|
+
* @param {string} collection
|
846
|
+
* @param {string} data_store
|
847
|
+
* @param {string} serving_config
|
848
|
+
* @returns {string} Resource name string.
|
849
|
+
*/
|
850
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
851
|
+
/**
|
852
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
853
|
+
*
|
854
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
855
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
856
|
+
* @returns {string} A string representing the project.
|
857
|
+
*/
|
858
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
859
|
+
/**
|
860
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
861
|
+
*
|
862
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
863
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
864
|
+
* @returns {string} A string representing the location.
|
865
|
+
*/
|
866
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
867
|
+
/**
|
868
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
869
|
+
*
|
870
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
871
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
872
|
+
* @returns {string} A string representing the collection.
|
873
|
+
*/
|
874
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
875
|
+
/**
|
876
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
877
|
+
*
|
878
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
879
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
880
|
+
* @returns {string} A string representing the data_store.
|
881
|
+
*/
|
882
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
883
|
+
/**
|
884
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
885
|
+
*
|
886
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
887
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
888
|
+
* @returns {string} A string representing the serving_config.
|
889
|
+
*/
|
890
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
840
891
|
/**
|
841
892
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
842
893
|
*
|
@@ -990,6 +1041,57 @@ export declare class SearchTuningServiceClient {
|
|
990
1041
|
* @returns {string} A string representing the data_store.
|
991
1042
|
*/
|
992
1043
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1044
|
+
/**
|
1045
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1046
|
+
*
|
1047
|
+
* @param {string} project
|
1048
|
+
* @param {string} location
|
1049
|
+
* @param {string} collection
|
1050
|
+
* @param {string} data_store
|
1051
|
+
* @param {string} sitemap
|
1052
|
+
* @returns {string} Resource name string.
|
1053
|
+
*/
|
1054
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1055
|
+
/**
|
1056
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1057
|
+
*
|
1058
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1059
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1060
|
+
* @returns {string} A string representing the project.
|
1061
|
+
*/
|
1062
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1063
|
+
/**
|
1064
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1065
|
+
*
|
1066
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1067
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1068
|
+
* @returns {string} A string representing the location.
|
1069
|
+
*/
|
1070
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1071
|
+
/**
|
1072
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1073
|
+
*
|
1074
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1075
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1076
|
+
* @returns {string} A string representing the collection.
|
1077
|
+
*/
|
1078
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1079
|
+
/**
|
1080
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1081
|
+
*
|
1082
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1083
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1084
|
+
* @returns {string} A string representing the data_store.
|
1085
|
+
*/
|
1086
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1087
|
+
/**
|
1088
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1089
|
+
*
|
1090
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1091
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1092
|
+
* @returns {string} A string representing the sitemap.
|
1093
|
+
*/
|
1094
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
993
1095
|
/**
|
994
1096
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
995
1097
|
*
|
@@ -1143,6 +1245,57 @@ export declare class SearchTuningServiceClient {
|
|
1143
1245
|
* @returns {string} A string representing the conversation.
|
1144
1246
|
*/
|
1145
1247
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1248
|
+
/**
|
1249
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1250
|
+
*
|
1251
|
+
* @param {string} project
|
1252
|
+
* @param {string} location
|
1253
|
+
* @param {string} collection
|
1254
|
+
* @param {string} engine
|
1255
|
+
* @param {string} serving_config
|
1256
|
+
* @returns {string} Resource name string.
|
1257
|
+
*/
|
1258
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1259
|
+
/**
|
1260
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1261
|
+
*
|
1262
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1263
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1264
|
+
* @returns {string} A string representing the project.
|
1265
|
+
*/
|
1266
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1267
|
+
/**
|
1268
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1269
|
+
*
|
1270
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1271
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1272
|
+
* @returns {string} A string representing the location.
|
1273
|
+
*/
|
1274
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1275
|
+
/**
|
1276
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1277
|
+
*
|
1278
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1279
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1280
|
+
* @returns {string} A string representing the collection.
|
1281
|
+
*/
|
1282
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1283
|
+
/**
|
1284
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1285
|
+
*
|
1286
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1287
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1288
|
+
* @returns {string} A string representing the engine.
|
1289
|
+
*/
|
1290
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1291
|
+
/**
|
1292
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1293
|
+
*
|
1294
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1295
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1296
|
+
* @returns {string} A string representing the serving_config.
|
1297
|
+
*/
|
1298
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1146
1299
|
/**
|
1147
1300
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1148
1301
|
*
|
@@ -1599,6 +1752,48 @@ export declare class SearchTuningServiceClient {
|
|
1599
1752
|
* @returns {string} A string representing the schema.
|
1600
1753
|
*/
|
1601
1754
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1755
|
+
/**
|
1756
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1757
|
+
*
|
1758
|
+
* @param {string} project
|
1759
|
+
* @param {string} location
|
1760
|
+
* @param {string} data_store
|
1761
|
+
* @param {string} serving_config
|
1762
|
+
* @returns {string} Resource name string.
|
1763
|
+
*/
|
1764
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1765
|
+
/**
|
1766
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1767
|
+
*
|
1768
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1769
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1770
|
+
* @returns {string} A string representing the project.
|
1771
|
+
*/
|
1772
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1773
|
+
/**
|
1774
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1775
|
+
*
|
1776
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1777
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1778
|
+
* @returns {string} A string representing the location.
|
1779
|
+
*/
|
1780
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1781
|
+
/**
|
1782
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1783
|
+
*
|
1784
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1785
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1786
|
+
* @returns {string} A string representing the data_store.
|
1787
|
+
*/
|
1788
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1789
|
+
/**
|
1790
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1791
|
+
*
|
1792
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1793
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1794
|
+
* @returns {string} A string representing the serving_config.
|
1795
|
+
*/
|
1796
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1602
1797
|
/**
|
1603
1798
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1604
1799
|
*
|
@@ -1725,6 +1920,48 @@ export declare class SearchTuningServiceClient {
|
|
1725
1920
|
* @returns {string} A string representing the data_store.
|
1726
1921
|
*/
|
1727
1922
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1923
|
+
/**
|
1924
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
1925
|
+
*
|
1926
|
+
* @param {string} project
|
1927
|
+
* @param {string} location
|
1928
|
+
* @param {string} data_store
|
1929
|
+
* @param {string} sitemap
|
1930
|
+
* @returns {string} Resource name string.
|
1931
|
+
*/
|
1932
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
1933
|
+
/**
|
1934
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1935
|
+
*
|
1936
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1937
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1938
|
+
* @returns {string} A string representing the project.
|
1939
|
+
*/
|
1940
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1941
|
+
/**
|
1942
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1943
|
+
*
|
1944
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1945
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1946
|
+
* @returns {string} A string representing the location.
|
1947
|
+
*/
|
1948
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1949
|
+
/**
|
1950
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1951
|
+
*
|
1952
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1953
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1954
|
+
* @returns {string} A string representing the data_store.
|
1955
|
+
*/
|
1956
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1957
|
+
/**
|
1958
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1959
|
+
*
|
1960
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1961
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1962
|
+
* @returns {string} A string representing the sitemap.
|
1963
|
+
*/
|
1964
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1728
1965
|
/**
|
1729
1966
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1730
1967
|
*
|