@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",
|
@@ -197,6 +197,11 @@
|
|
197
197
|
"getSession"
|
198
198
|
]
|
199
199
|
},
|
200
|
+
"StreamAnswerQuery": {
|
201
|
+
"methods": [
|
202
|
+
"streamAnswerQuery"
|
203
|
+
]
|
204
|
+
},
|
200
205
|
"ListConversations": {
|
201
206
|
"methods": [
|
202
207
|
"listConversations",
|
@@ -778,6 +783,30 @@
|
|
778
783
|
}
|
779
784
|
}
|
780
785
|
},
|
786
|
+
"ServingConfigService": {
|
787
|
+
"clients": {
|
788
|
+
"grpc": {
|
789
|
+
"libraryClient": "ServingConfigServiceClient",
|
790
|
+
"rpcs": {
|
791
|
+
"UpdateServingConfig": {
|
792
|
+
"methods": [
|
793
|
+
"updateServingConfig"
|
794
|
+
]
|
795
|
+
}
|
796
|
+
}
|
797
|
+
},
|
798
|
+
"grpc-fallback": {
|
799
|
+
"libraryClient": "ServingConfigServiceClient",
|
800
|
+
"rpcs": {
|
801
|
+
"UpdateServingConfig": {
|
802
|
+
"methods": [
|
803
|
+
"updateServingConfig"
|
804
|
+
]
|
805
|
+
}
|
806
|
+
}
|
807
|
+
}
|
808
|
+
}
|
809
|
+
},
|
781
810
|
"SiteSearchEngineService": {
|
782
811
|
"clients": {
|
783
812
|
"grpc": {
|
@@ -793,6 +822,11 @@
|
|
793
822
|
"getTargetSite"
|
794
823
|
]
|
795
824
|
},
|
825
|
+
"FetchSitemaps": {
|
826
|
+
"methods": [
|
827
|
+
"fetchSitemaps"
|
828
|
+
]
|
829
|
+
},
|
796
830
|
"CreateTargetSite": {
|
797
831
|
"methods": [
|
798
832
|
"createTargetSite"
|
@@ -813,6 +847,16 @@
|
|
813
847
|
"deleteTargetSite"
|
814
848
|
]
|
815
849
|
},
|
850
|
+
"CreateSitemap": {
|
851
|
+
"methods": [
|
852
|
+
"createSitemap"
|
853
|
+
]
|
854
|
+
},
|
855
|
+
"DeleteSitemap": {
|
856
|
+
"methods": [
|
857
|
+
"deleteSitemap"
|
858
|
+
]
|
859
|
+
},
|
816
860
|
"EnableAdvancedSiteSearch": {
|
817
861
|
"methods": [
|
818
862
|
"enableAdvancedSiteSearch"
|
@@ -862,6 +906,11 @@
|
|
862
906
|
"getTargetSite"
|
863
907
|
]
|
864
908
|
},
|
909
|
+
"FetchSitemaps": {
|
910
|
+
"methods": [
|
911
|
+
"fetchSitemaps"
|
912
|
+
]
|
913
|
+
},
|
865
914
|
"CreateTargetSite": {
|
866
915
|
"methods": [
|
867
916
|
"createTargetSite"
|
@@ -882,6 +931,16 @@
|
|
882
931
|
"deleteTargetSite"
|
883
932
|
]
|
884
933
|
},
|
934
|
+
"CreateSitemap": {
|
935
|
+
"methods": [
|
936
|
+
"createSitemap"
|
937
|
+
]
|
938
|
+
},
|
939
|
+
"DeleteSitemap": {
|
940
|
+
"methods": [
|
941
|
+
"deleteSitemap"
|
942
|
+
]
|
943
|
+
},
|
885
944
|
"EnableAdvancedSiteSearch": {
|
886
945
|
"methods": [
|
887
946
|
"enableAdvancedSiteSearch"
|
@@ -135,8 +135,6 @@ export declare class GroundedGenerationServiceClient {
|
|
135
135
|
* For single-turn queries, this is a single instance. For multi-turn queries,
|
136
136
|
* this is a repeated field that contains conversation history + latest
|
137
137
|
* request.
|
138
|
-
*
|
139
|
-
* Only a single-turn query is supported currently.
|
140
138
|
* @param {google.cloud.discoveryengine.v1.GenerateGroundedContentRequest.GenerationSpec} request.generationSpec
|
141
139
|
* Content generation specification.
|
142
140
|
* @param {google.cloud.discoveryengine.v1.GenerateGroundedContentRequest.GroundingSpec} request.groundingSpec
|
@@ -170,7 +168,7 @@ export declare class GroundedGenerationServiceClient {
|
|
170
168
|
*/
|
171
169
|
generateGroundedContent(request?: protos.google.cloud.discoveryengine.v1.IGenerateGroundedContentRequest, options?: CallOptions): Promise<[
|
172
170
|
protos.google.cloud.discoveryengine.v1.IGenerateGroundedContentResponse,
|
173
|
-
|
171
|
+
protos.google.cloud.discoveryengine.v1.IGenerateGroundedContentRequest | undefined,
|
174
172
|
{} | undefined
|
175
173
|
]>;
|
176
174
|
generateGroundedContent(request: protos.google.cloud.discoveryengine.v1.IGenerateGroundedContentRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.IGenerateGroundedContentResponse, protos.google.cloud.discoveryengine.v1.IGenerateGroundedContentRequest | null | undefined, {} | null | undefined>): void;
|
@@ -184,7 +182,7 @@ export declare class GroundedGenerationServiceClient {
|
|
184
182
|
* Required. The resource name of the grounding config, such as
|
185
183
|
* `projects/* /locations/global/groundingConfigs/default_grounding_config`.
|
186
184
|
* @param {string} request.answerCandidate
|
187
|
-
* Answer candidate to check.
|
185
|
+
* Answer candidate to check. It can have a maximum length of 4096 tokens.
|
188
186
|
* @param {number[]} request.facts
|
189
187
|
* List of facts for the grounding check.
|
190
188
|
* We support up to 200 facts.
|
@@ -240,55 +238,55 @@ export declare class GroundedGenerationServiceClient {
|
|
240
238
|
*/
|
241
239
|
streamGenerateGroundedContent(options?: CallOptions): gax.CancellableStream;
|
242
240
|
/**
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
241
|
+
* Gets information about a location.
|
242
|
+
*
|
243
|
+
* @param {Object} request
|
244
|
+
* The request object that will be sent.
|
245
|
+
* @param {string} request.name
|
246
|
+
* Resource name for the location.
|
247
|
+
* @param {object} [options]
|
248
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
|
249
|
+
* @returns {Promise} - The promise which resolves to an array.
|
250
|
+
* The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
|
251
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
252
|
+
* for more details and examples.
|
253
|
+
* @example
|
254
|
+
* ```
|
255
|
+
* const [response] = await client.getLocation(request);
|
256
|
+
* ```
|
257
|
+
*/
|
260
258
|
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>;
|
261
259
|
/**
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
260
|
+
* Lists information about the supported locations for this service. Returns an iterable object.
|
261
|
+
*
|
262
|
+
* `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
|
263
|
+
* @param {Object} request
|
264
|
+
* The request object that will be sent.
|
265
|
+
* @param {string} request.name
|
266
|
+
* The resource that owns the locations collection, if applicable.
|
267
|
+
* @param {string} request.filter
|
268
|
+
* The standard list filter.
|
269
|
+
* @param {number} request.pageSize
|
270
|
+
* The standard list page size.
|
271
|
+
* @param {string} request.pageToken
|
272
|
+
* The standard list page token.
|
273
|
+
* @param {object} [options]
|
274
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
275
|
+
* @returns {Object}
|
276
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
277
|
+
* When you iterate the returned iterable, each element will be an object representing
|
278
|
+
* {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
|
279
|
+
* so you can stop the iteration when you don't need more results.
|
280
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
281
|
+
* for more details and examples.
|
282
|
+
* @example
|
283
|
+
* ```
|
284
|
+
* const iterable = client.listLocationsAsync(request);
|
285
|
+
* for await (const response of iterable) {
|
286
|
+
* // process response
|
287
|
+
* }
|
288
|
+
* ```
|
289
|
+
*/
|
292
290
|
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
293
291
|
/**
|
294
292
|
* Return a fully-qualified engine resource name string.
|
@@ -821,6 +819,57 @@ export declare class GroundedGenerationServiceClient {
|
|
821
819
|
* @returns {string} A string representing the schema.
|
822
820
|
*/
|
823
821
|
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
822
|
+
/**
|
823
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
824
|
+
*
|
825
|
+
* @param {string} project
|
826
|
+
* @param {string} location
|
827
|
+
* @param {string} collection
|
828
|
+
* @param {string} data_store
|
829
|
+
* @param {string} serving_config
|
830
|
+
* @returns {string} Resource name string.
|
831
|
+
*/
|
832
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
833
|
+
/**
|
834
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
835
|
+
*
|
836
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
837
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
838
|
+
* @returns {string} A string representing the project.
|
839
|
+
*/
|
840
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
841
|
+
/**
|
842
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
843
|
+
*
|
844
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
845
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
846
|
+
* @returns {string} A string representing the location.
|
847
|
+
*/
|
848
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
849
|
+
/**
|
850
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
851
|
+
*
|
852
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
853
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
854
|
+
* @returns {string} A string representing the collection.
|
855
|
+
*/
|
856
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
857
|
+
/**
|
858
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
859
|
+
*
|
860
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
861
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
862
|
+
* @returns {string} A string representing the data_store.
|
863
|
+
*/
|
864
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
865
|
+
/**
|
866
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
867
|
+
*
|
868
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
869
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
870
|
+
* @returns {string} A string representing the serving_config.
|
871
|
+
*/
|
872
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
824
873
|
/**
|
825
874
|
* Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
|
826
875
|
*
|
@@ -974,6 +1023,57 @@ export declare class GroundedGenerationServiceClient {
|
|
974
1023
|
* @returns {string} A string representing the data_store.
|
975
1024
|
*/
|
976
1025
|
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
1026
|
+
/**
|
1027
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineSitemap resource name string.
|
1028
|
+
*
|
1029
|
+
* @param {string} project
|
1030
|
+
* @param {string} location
|
1031
|
+
* @param {string} collection
|
1032
|
+
* @param {string} data_store
|
1033
|
+
* @param {string} sitemap
|
1034
|
+
* @returns {string} Resource name string.
|
1035
|
+
*/
|
1036
|
+
projectLocationCollectionDataStoreSiteSearchEngineSitemapPath(project: string, location: string, collection: string, dataStore: string, sitemap: string): string;
|
1037
|
+
/**
|
1038
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1039
|
+
*
|
1040
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1041
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1042
|
+
* @returns {string} A string representing the project.
|
1043
|
+
*/
|
1044
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1045
|
+
/**
|
1046
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1047
|
+
*
|
1048
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1049
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1050
|
+
* @returns {string} A string representing the location.
|
1051
|
+
*/
|
1052
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1053
|
+
/**
|
1054
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1055
|
+
*
|
1056
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1057
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1058
|
+
* @returns {string} A string representing the collection.
|
1059
|
+
*/
|
1060
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1061
|
+
/**
|
1062
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1063
|
+
*
|
1064
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1065
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1066
|
+
* @returns {string} A string representing the data_store.
|
1067
|
+
*/
|
1068
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1069
|
+
/**
|
1070
|
+
* Parse the sitemap from ProjectLocationCollectionDataStoreSiteSearchEngineSitemap resource.
|
1071
|
+
*
|
1072
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineSitemapName
|
1073
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_sitemap resource.
|
1074
|
+
* @returns {string} A string representing the sitemap.
|
1075
|
+
*/
|
1076
|
+
matchSitemapFromProjectLocationCollectionDataStoreSiteSearchEngineSitemapName(projectLocationCollectionDataStoreSiteSearchEngineSitemapName: string): string | number;
|
977
1077
|
/**
|
978
1078
|
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
979
1079
|
*
|
@@ -1127,6 +1227,57 @@ export declare class GroundedGenerationServiceClient {
|
|
1127
1227
|
* @returns {string} A string representing the conversation.
|
1128
1228
|
*/
|
1129
1229
|
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
1230
|
+
/**
|
1231
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
1232
|
+
*
|
1233
|
+
* @param {string} project
|
1234
|
+
* @param {string} location
|
1235
|
+
* @param {string} collection
|
1236
|
+
* @param {string} engine
|
1237
|
+
* @param {string} serving_config
|
1238
|
+
* @returns {string} Resource name string.
|
1239
|
+
*/
|
1240
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
1241
|
+
/**
|
1242
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
1243
|
+
*
|
1244
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1245
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1246
|
+
* @returns {string} A string representing the project.
|
1247
|
+
*/
|
1248
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1249
|
+
/**
|
1250
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
1251
|
+
*
|
1252
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1253
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1254
|
+
* @returns {string} A string representing the location.
|
1255
|
+
*/
|
1256
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1257
|
+
/**
|
1258
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
1259
|
+
*
|
1260
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1261
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1262
|
+
* @returns {string} A string representing the collection.
|
1263
|
+
*/
|
1264
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1265
|
+
/**
|
1266
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
1267
|
+
*
|
1268
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1269
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1270
|
+
* @returns {string} A string representing the engine.
|
1271
|
+
*/
|
1272
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1273
|
+
/**
|
1274
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
1275
|
+
*
|
1276
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
1277
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
1278
|
+
* @returns {string} A string representing the serving_config.
|
1279
|
+
*/
|
1280
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
1130
1281
|
/**
|
1131
1282
|
* Return a fully-qualified projectLocationCollectionEngineSession resource name string.
|
1132
1283
|
*
|
@@ -1583,6 +1734,48 @@ export declare class GroundedGenerationServiceClient {
|
|
1583
1734
|
* @returns {string} A string representing the schema.
|
1584
1735
|
*/
|
1585
1736
|
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1737
|
+
/**
|
1738
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1739
|
+
*
|
1740
|
+
* @param {string} project
|
1741
|
+
* @param {string} location
|
1742
|
+
* @param {string} data_store
|
1743
|
+
* @param {string} serving_config
|
1744
|
+
* @returns {string} Resource name string.
|
1745
|
+
*/
|
1746
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1747
|
+
/**
|
1748
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1749
|
+
*
|
1750
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1751
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1752
|
+
* @returns {string} A string representing the project.
|
1753
|
+
*/
|
1754
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1755
|
+
/**
|
1756
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1757
|
+
*
|
1758
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1759
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1760
|
+
* @returns {string} A string representing the location.
|
1761
|
+
*/
|
1762
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1763
|
+
/**
|
1764
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1765
|
+
*
|
1766
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1767
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1768
|
+
* @returns {string} A string representing the data_store.
|
1769
|
+
*/
|
1770
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1771
|
+
/**
|
1772
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1773
|
+
*
|
1774
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1775
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1776
|
+
* @returns {string} A string representing the serving_config.
|
1777
|
+
*/
|
1778
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1586
1779
|
/**
|
1587
1780
|
* Return a fully-qualified projectLocationDataStoreSession resource name string.
|
1588
1781
|
*
|
@@ -1709,6 +1902,48 @@ export declare class GroundedGenerationServiceClient {
|
|
1709
1902
|
* @returns {string} A string representing the data_store.
|
1710
1903
|
*/
|
1711
1904
|
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1905
|
+
/**
|
1906
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineSitemap resource name string.
|
1907
|
+
*
|
1908
|
+
* @param {string} project
|
1909
|
+
* @param {string} location
|
1910
|
+
* @param {string} data_store
|
1911
|
+
* @param {string} sitemap
|
1912
|
+
* @returns {string} Resource name string.
|
1913
|
+
*/
|
1914
|
+
projectLocationDataStoreSiteSearchEngineSitemapPath(project: string, location: string, dataStore: string, sitemap: string): string;
|
1915
|
+
/**
|
1916
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1917
|
+
*
|
1918
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1919
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1920
|
+
* @returns {string} A string representing the project.
|
1921
|
+
*/
|
1922
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1923
|
+
/**
|
1924
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1925
|
+
*
|
1926
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1927
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1928
|
+
* @returns {string} A string representing the location.
|
1929
|
+
*/
|
1930
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1931
|
+
/**
|
1932
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1933
|
+
*
|
1934
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1935
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1936
|
+
* @returns {string} A string representing the data_store.
|
1937
|
+
*/
|
1938
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1939
|
+
/**
|
1940
|
+
* Parse the sitemap from ProjectLocationDataStoreSiteSearchEngineSitemap resource.
|
1941
|
+
*
|
1942
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineSitemapName
|
1943
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_sitemap resource.
|
1944
|
+
* @returns {string} A string representing the sitemap.
|
1945
|
+
*/
|
1946
|
+
matchSitemapFromProjectLocationDataStoreSiteSearchEngineSitemapName(projectLocationDataStoreSiteSearchEngineSitemapName: string): string | number;
|
1712
1947
|
/**
|
1713
1948
|
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1714
1949
|
*
|