@google-cloud/discoveryengine 1.2.0 → 1.3.1

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.
Files changed (63) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +25 -0
  3. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +38 -8
  4. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +3 -0
  5. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +39 -0
  6. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +98 -0
  7. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +307 -0
  8. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +1 -1
  9. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +370 -0
  10. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +336 -0
  11. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +9 -3
  12. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +123 -3
  13. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +147 -0
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +164 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +540 -0
  16. package/build/protos/protos.d.ts +10923 -3222
  17. package/build/protos/protos.js +29891 -12914
  18. package/build/protos/protos.json +2367 -668
  19. package/build/src/index.js +1 -1
  20. package/build/src/v1/completion_service_client.js +1 -1
  21. package/build/src/v1/conversational_search_service_client.js +1 -1
  22. package/build/src/v1/document_service_client.js +1 -1
  23. package/build/src/v1/index.js +1 -1
  24. package/build/src/v1/schema_service_client.js +1 -1
  25. package/build/src/v1/search_service_client.js +1 -1
  26. package/build/src/v1/user_event_service_client.js +1 -1
  27. package/build/src/v1alpha/completion_service_client.d.ts +261 -0
  28. package/build/src/v1alpha/completion_service_client.js +360 -0
  29. package/build/src/v1alpha/conversational_search_service_client.d.ts +278 -0
  30. package/build/src/v1alpha/conversational_search_service_client.js +360 -0
  31. package/build/src/v1alpha/data_store_service_client.d.ts +1279 -0
  32. package/build/src/v1alpha/data_store_service_client.js +1739 -0
  33. package/build/src/v1alpha/data_store_service_client_config.json +46 -0
  34. package/build/src/v1alpha/document_service_client.d.ts +336 -0
  35. package/build/src/v1alpha/document_service_client.js +472 -2
  36. package/build/src/v1alpha/engine_service_client.d.ts +1298 -0
  37. package/build/src/v1alpha/engine_service_client.js +1789 -0
  38. package/build/src/v1alpha/engine_service_client_config.json +58 -0
  39. package/build/src/v1alpha/index.d.ts +3 -0
  40. package/build/src/v1alpha/index.js +7 -1
  41. package/build/src/v1alpha/recommendation_service_client.d.ts +345 -3
  42. package/build/src/v1alpha/recommendation_service_client.js +464 -0
  43. package/build/src/v1alpha/schema_service_client.d.ts +261 -0
  44. package/build/src/v1alpha/schema_service_client.js +368 -2
  45. package/build/src/v1alpha/search_service_client.d.ts +453 -9
  46. package/build/src/v1alpha/search_service_client.js +542 -6
  47. package/build/src/v1alpha/search_tuning_service_client.d.ts +968 -0
  48. package/build/src/v1alpha/search_tuning_service_client.js +1452 -0
  49. package/build/src/v1alpha/search_tuning_service_client_config.json +30 -0
  50. package/build/src/v1alpha/site_search_engine_service_client.d.ts +856 -1
  51. package/build/src/v1alpha/site_search_engine_service_client.js +993 -34
  52. package/build/src/v1alpha/site_search_engine_service_client_config.json +44 -0
  53. package/build/src/v1alpha/user_event_service_client.d.ts +261 -0
  54. package/build/src/v1alpha/user_event_service_client.js +368 -2
  55. package/build/src/v1beta/completion_service_client.js +1 -1
  56. package/build/src/v1beta/conversational_search_service_client.js +1 -1
  57. package/build/src/v1beta/document_service_client.js +1 -1
  58. package/build/src/v1beta/index.js +1 -1
  59. package/build/src/v1beta/recommendation_service_client.js +1 -1
  60. package/build/src/v1beta/schema_service_client.js +1 -1
  61. package/build/src/v1beta/search_service_client.js +1 -1
  62. package/build/src/v1beta/user_event_service_client.js +1 -1
  63. package/package.json +4 -4
@@ -0,0 +1,1279 @@
1
+ /// <reference types="node" />
2
+ import type * as gax from 'google-gax';
3
+ import type { Callback, CallOptions, Descriptors, ClientOptions, LROperation, PaginationCallback, LocationsClient, LocationProtos } from 'google-gax';
4
+ import { Transform } from 'stream';
5
+ import * as protos from '../../protos/protos';
6
+ /**
7
+ * Service for managing
8
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} configuration.
9
+ * @class
10
+ * @memberof v1alpha
11
+ */
12
+ export declare class DataStoreServiceClient {
13
+ private _terminated;
14
+ private _opts;
15
+ private _providedCustomServicePath;
16
+ private _gaxModule;
17
+ private _gaxGrpc;
18
+ private _protos;
19
+ private _defaults;
20
+ auth: gax.GoogleAuth;
21
+ descriptors: Descriptors;
22
+ warn: (code: string, message: string, warnType?: string) => void;
23
+ innerApiCalls: {
24
+ [name: string]: Function;
25
+ };
26
+ locationsClient: LocationsClient;
27
+ pathTemplates: {
28
+ [name: string]: gax.PathTemplate;
29
+ };
30
+ operationsClient: gax.OperationsClient;
31
+ dataStoreServiceStub?: Promise<{
32
+ [name: string]: Function;
33
+ }>;
34
+ /**
35
+ * Construct an instance of DataStoreServiceClient.
36
+ *
37
+ * @param {object} [options] - The configuration object.
38
+ * The options accepted by the constructor are described in detail
39
+ * in [this document](https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#creating-the-client-instance).
40
+ * The common options are:
41
+ * @param {object} [options.credentials] - Credentials object.
42
+ * @param {string} [options.credentials.client_email]
43
+ * @param {string} [options.credentials.private_key]
44
+ * @param {string} [options.email] - Account email address. Required when
45
+ * using a .pem or .p12 keyFilename.
46
+ * @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
47
+ * .p12 key downloaded from the Google Developers Console. If you provide
48
+ * a path to a JSON file, the projectId option below is not necessary.
49
+ * NOTE: .pem and .p12 require you to specify options.email as well.
50
+ * @param {number} [options.port] - The port on which to connect to
51
+ * the remote host.
52
+ * @param {string} [options.projectId] - The project ID from the Google
53
+ * Developer's Console, e.g. 'grape-spaceship-123'. We will also check
54
+ * the environment variable GCLOUD_PROJECT for your project ID. If your
55
+ * app is running in an environment which supports
56
+ * {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials},
57
+ * your project ID will be detected automatically.
58
+ * @param {string} [options.apiEndpoint] - The domain name of the
59
+ * API remote host.
60
+ * @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
61
+ * Follows the structure of {@link gapicConfig}.
62
+ * @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
63
+ * For more information, please check the
64
+ * {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
65
+ * @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
66
+ * need to avoid loading the default gRPC version and want to use the fallback
67
+ * HTTP implementation. Load only fallback version and pass it to the constructor:
68
+ * ```
69
+ * const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
70
+ * const client = new DataStoreServiceClient({fallback: true}, gax);
71
+ * ```
72
+ */
73
+ constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
74
+ /**
75
+ * Initialize the client.
76
+ * Performs asynchronous operations (such as authentication) and prepares the client.
77
+ * This function will be called automatically when any class method is called for the
78
+ * first time, but if you need to initialize it before calling an actual method,
79
+ * feel free to call initialize() directly.
80
+ *
81
+ * You can await on this method if you want to make sure the client is initialized.
82
+ *
83
+ * @returns {Promise} A promise that resolves to an authenticated service stub.
84
+ */
85
+ initialize(): Promise<{
86
+ [name: string]: Function;
87
+ }>;
88
+ /**
89
+ * The DNS address for this API service.
90
+ * @returns {string} The DNS address for this service.
91
+ */
92
+ static get servicePath(): string;
93
+ /**
94
+ * The DNS address for this API service - same as servicePath(),
95
+ * exists for compatibility reasons.
96
+ * @returns {string} The DNS address for this service.
97
+ */
98
+ static get apiEndpoint(): string;
99
+ /**
100
+ * The port for this API service.
101
+ * @returns {number} The default port for this service.
102
+ */
103
+ static get port(): number;
104
+ /**
105
+ * The scopes needed to make gRPC calls for every method defined
106
+ * in this service.
107
+ * @returns {string[]} List of default scopes.
108
+ */
109
+ static get scopes(): string[];
110
+ getProjectId(): Promise<string>;
111
+ getProjectId(callback: Callback<string, undefined, undefined>): void;
112
+ /**
113
+ * Gets a {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
114
+ *
115
+ * @param {Object} request
116
+ * The request object that will be sent.
117
+ * @param {string} request.name
118
+ * Required. Full resource name of
119
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}, such as
120
+ * `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`.
121
+ *
122
+ * If the caller does not have permission to access the
123
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}, regardless of
124
+ * whether or not it exists, a PERMISSION_DENIED error is returned.
125
+ *
126
+ * If the requested
127
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} does not exist,
128
+ * a NOT_FOUND error is returned.
129
+ * @param {object} [options]
130
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
131
+ * @returns {Promise} - The promise which resolves to an array.
132
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
133
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
134
+ * for more details and examples.
135
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.get_data_store.js</caption>
136
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_GetDataStore_async
137
+ */
138
+ getDataStore(request?: protos.google.cloud.discoveryengine.v1alpha.IGetDataStoreRequest, options?: CallOptions): Promise<[
139
+ protos.google.cloud.discoveryengine.v1alpha.IDataStore,
140
+ (protos.google.cloud.discoveryengine.v1alpha.IGetDataStoreRequest | undefined),
141
+ {} | undefined
142
+ ]>;
143
+ getDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IGetDataStoreRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.IGetDataStoreRequest | null | undefined, {} | null | undefined>): void;
144
+ getDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IGetDataStoreRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.IGetDataStoreRequest | null | undefined, {} | null | undefined>): void;
145
+ /**
146
+ * Updates a {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}
147
+ *
148
+ * @param {Object} request
149
+ * The request object that will be sent.
150
+ * @param {google.cloud.discoveryengine.v1alpha.DataStore} request.dataStore
151
+ * Required. The {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}
152
+ * to update.
153
+ *
154
+ * If the caller does not have permission to update the
155
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}, regardless of
156
+ * whether or not it exists, a PERMISSION_DENIED error is returned.
157
+ *
158
+ * If the {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} to
159
+ * update does not exist, a NOT_FOUND error is returned.
160
+ * @param {google.protobuf.FieldMask} request.updateMask
161
+ * Indicates which fields in the provided
162
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} to update.
163
+ *
164
+ * If an unsupported or unknown field is provided, an INVALID_ARGUMENT error
165
+ * is returned.
166
+ * @param {object} [options]
167
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
168
+ * @returns {Promise} - The promise which resolves to an array.
169
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
170
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
171
+ * for more details and examples.
172
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.update_data_store.js</caption>
173
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_UpdateDataStore_async
174
+ */
175
+ updateDataStore(request?: protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest, options?: CallOptions): Promise<[
176
+ protos.google.cloud.discoveryengine.v1alpha.IDataStore,
177
+ (protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest | undefined),
178
+ {} | undefined
179
+ ]>;
180
+ updateDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest | null | undefined, {} | null | undefined>): void;
181
+ updateDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.IUpdateDataStoreRequest | null | undefined, {} | null | undefined>): void;
182
+ /**
183
+ * Creates a {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
184
+ *
185
+ * DataStore is for storing
186
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Document|Documents}. To serve these
187
+ * documents for Search, or Recommendation use case, an
188
+ * {@link protos.google.cloud.discoveryengine.v1alpha.Engine|Engine} needs to be created
189
+ * separately.
190
+ *
191
+ * @param {Object} request
192
+ * The request object that will be sent.
193
+ * @param {string} request.parent
194
+ * Required. The parent resource name, such as
195
+ * `projects/{project}/locations/{location}/collections/{collection}`.
196
+ * @param {google.cloud.discoveryengine.v1alpha.DataStore} request.dataStore
197
+ * Required. The {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}
198
+ * to create.
199
+ * @param {string} request.dataStoreId
200
+ * Required. The ID to use for the
201
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}, which will
202
+ * become the final component of the
203
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}'s resource
204
+ * name.
205
+ *
206
+ * This field must conform to [RFC-1034](https://tools.ietf.org/html/rfc1034)
207
+ * standard with a length limit of 63 characters. Otherwise, an
208
+ * INVALID_ARGUMENT error is returned.
209
+ * @param {boolean} request.createAdvancedSiteSearch
210
+ * A boolean flag indicating whether user want to directly create an advanced
211
+ * data store for site search.
212
+ * If the data store is not configured as site
213
+ * search (GENERIC vertical and PUBLIC_WEBSITE content_config), this flag will
214
+ * be ignored.
215
+ * @param {object} [options]
216
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
217
+ * @returns {Promise} - The promise which resolves to an array.
218
+ * The first element of the array is an object representing
219
+ * a long running operation. Its `promise()` method returns a promise
220
+ * you can `await` for.
221
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
222
+ * for more details and examples.
223
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.create_data_store.js</caption>
224
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_CreateDataStore_async
225
+ */
226
+ createDataStore(request?: protos.google.cloud.discoveryengine.v1alpha.ICreateDataStoreRequest, options?: CallOptions): Promise<[
227
+ LROperation<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.ICreateDataStoreMetadata>,
228
+ protos.google.longrunning.IOperation | undefined,
229
+ {} | undefined
230
+ ]>;
231
+ createDataStore(request: protos.google.cloud.discoveryengine.v1alpha.ICreateDataStoreRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.ICreateDataStoreMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
232
+ createDataStore(request: protos.google.cloud.discoveryengine.v1alpha.ICreateDataStoreRequest, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1alpha.IDataStore, protos.google.cloud.discoveryengine.v1alpha.ICreateDataStoreMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
233
+ /**
234
+ * Check the status of the long running operation returned by `createDataStore()`.
235
+ * @param {String} name
236
+ * The operation name that will be passed.
237
+ * @returns {Promise} - The promise which resolves to an object.
238
+ * The decoded operation object has result and metadata field to get information from.
239
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
240
+ * for more details and examples.
241
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.create_data_store.js</caption>
242
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_CreateDataStore_async
243
+ */
244
+ checkCreateDataStoreProgress(name: string): Promise<LROperation<protos.google.cloud.discoveryengine.v1alpha.DataStore, protos.google.cloud.discoveryengine.v1alpha.CreateDataStoreMetadata>>;
245
+ /**
246
+ * Deletes a {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
247
+ *
248
+ * @param {Object} request
249
+ * The request object that will be sent.
250
+ * @param {string} request.name
251
+ * Required. Full resource name of
252
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}, such as
253
+ * `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`.
254
+ *
255
+ * If the caller does not have permission to delete the
256
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}, regardless of
257
+ * whether or not it exists, a PERMISSION_DENIED error is returned.
258
+ *
259
+ * If the {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} to
260
+ * delete does not exist, a NOT_FOUND error is returned.
261
+ * @param {object} [options]
262
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
263
+ * @returns {Promise} - The promise which resolves to an array.
264
+ * The first element of the array is an object representing
265
+ * a long running operation. Its `promise()` method returns a promise
266
+ * you can `await` for.
267
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
268
+ * for more details and examples.
269
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.delete_data_store.js</caption>
270
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_DeleteDataStore_async
271
+ */
272
+ deleteDataStore(request?: protos.google.cloud.discoveryengine.v1alpha.IDeleteDataStoreRequest, options?: CallOptions): Promise<[
273
+ LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1alpha.IDeleteDataStoreMetadata>,
274
+ protos.google.longrunning.IOperation | undefined,
275
+ {} | undefined
276
+ ]>;
277
+ deleteDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IDeleteDataStoreRequest, options: CallOptions, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1alpha.IDeleteDataStoreMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
278
+ deleteDataStore(request: protos.google.cloud.discoveryengine.v1alpha.IDeleteDataStoreRequest, callback: Callback<LROperation<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1alpha.IDeleteDataStoreMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
279
+ /**
280
+ * Check the status of the long running operation returned by `deleteDataStore()`.
281
+ * @param {String} name
282
+ * The operation name that will be passed.
283
+ * @returns {Promise} - The promise which resolves to an object.
284
+ * The decoded operation object has result and metadata field to get information from.
285
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
286
+ * for more details and examples.
287
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.delete_data_store.js</caption>
288
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_DeleteDataStore_async
289
+ */
290
+ checkDeleteDataStoreProgress(name: string): Promise<LROperation<protos.google.protobuf.Empty, protos.google.cloud.discoveryengine.v1alpha.DeleteDataStoreMetadata>>;
291
+ /**
292
+ * Lists all the {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s
293
+ * associated with the project.
294
+ *
295
+ * @param {Object} request
296
+ * The request object that will be sent.
297
+ * @param {string} request.parent
298
+ * Required. The parent branch resource name, such as
299
+ * `projects/{project}/locations/{location}/collections/{collection_id}`.
300
+ *
301
+ * If the caller does not have permission to list {@link protos.|DataStores}s under this
302
+ * location, regardless of whether or not this data store exists, a
303
+ * PERMISSION_DENIED error is returned.
304
+ * @param {number} request.pageSize
305
+ * Maximum number of
306
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s to return. If
307
+ * unspecified, defaults to 10. The maximum allowed value is 50. Values above
308
+ * 50 will be coerced to 50.
309
+ *
310
+ * If this field is negative, an INVALID_ARGUMENT is returned.
311
+ * @param {string} request.pageToken
312
+ * A page token
313
+ * {@link protos.google.cloud.discoveryengine.v1alpha.ListDataStoresResponse.next_page_token|ListDataStoresResponse.next_page_token},
314
+ * received from a previous
315
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStoreService.ListDataStores|DataStoreService.ListDataStores}
316
+ * call. Provide this to retrieve the subsequent page.
317
+ *
318
+ * When paginating, all other parameters provided to
319
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStoreService.ListDataStores|DataStoreService.ListDataStores}
320
+ * must match the call that provided the page token. Otherwise, an
321
+ * INVALID_ARGUMENT error is returned.
322
+ * @param {string} request.filter
323
+ * Filter by solution type. For example: filter =
324
+ * 'solution_type:SOLUTION_TYPE_SEARCH'
325
+ * @param {object} [options]
326
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
327
+ * @returns {Promise} - The promise which resolves to an array.
328
+ * The first element of the array is Array of {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}.
329
+ * The client library will perform auto-pagination by default: it will call the API as many
330
+ * times as needed and will merge results from all the pages into this array.
331
+ * Note that it can affect your quota.
332
+ * We recommend using `listDataStoresAsync()`
333
+ * method described below for async iteration which you can stop as needed.
334
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
335
+ * for more details and examples.
336
+ */
337
+ listDataStores(request?: protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, options?: CallOptions): Promise<[
338
+ protos.google.cloud.discoveryengine.v1alpha.IDataStore[],
339
+ protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest | null,
340
+ protos.google.cloud.discoveryengine.v1alpha.IListDataStoresResponse
341
+ ]>;
342
+ listDataStores(request: protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, protos.google.cloud.discoveryengine.v1alpha.IListDataStoresResponse | null | undefined, protos.google.cloud.discoveryengine.v1alpha.IDataStore>): void;
343
+ listDataStores(request: protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, callback: PaginationCallback<protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, protos.google.cloud.discoveryengine.v1alpha.IListDataStoresResponse | null | undefined, protos.google.cloud.discoveryengine.v1alpha.IDataStore>): void;
344
+ /**
345
+ * Equivalent to `method.name.toCamelCase()`, but returns a NodeJS Stream object.
346
+ * @param {Object} request
347
+ * The request object that will be sent.
348
+ * @param {string} request.parent
349
+ * Required. The parent branch resource name, such as
350
+ * `projects/{project}/locations/{location}/collections/{collection_id}`.
351
+ *
352
+ * If the caller does not have permission to list {@link protos.|DataStores}s under this
353
+ * location, regardless of whether or not this data store exists, a
354
+ * PERMISSION_DENIED error is returned.
355
+ * @param {number} request.pageSize
356
+ * Maximum number of
357
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s to return. If
358
+ * unspecified, defaults to 10. The maximum allowed value is 50. Values above
359
+ * 50 will be coerced to 50.
360
+ *
361
+ * If this field is negative, an INVALID_ARGUMENT is returned.
362
+ * @param {string} request.pageToken
363
+ * A page token
364
+ * {@link protos.google.cloud.discoveryengine.v1alpha.ListDataStoresResponse.next_page_token|ListDataStoresResponse.next_page_token},
365
+ * received from a previous
366
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStoreService.ListDataStores|DataStoreService.ListDataStores}
367
+ * call. Provide this to retrieve the subsequent page.
368
+ *
369
+ * When paginating, all other parameters provided to
370
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStoreService.ListDataStores|DataStoreService.ListDataStores}
371
+ * must match the call that provided the page token. Otherwise, an
372
+ * INVALID_ARGUMENT error is returned.
373
+ * @param {string} request.filter
374
+ * Filter by solution type. For example: filter =
375
+ * 'solution_type:SOLUTION_TYPE_SEARCH'
376
+ * @param {object} [options]
377
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
378
+ * @returns {Stream}
379
+ * An object stream which emits an object representing {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore} on 'data' event.
380
+ * The client library will perform auto-pagination by default: it will call the API as many
381
+ * times as needed. Note that it can affect your quota.
382
+ * We recommend using `listDataStoresAsync()`
383
+ * method described below for async iteration which you can stop as needed.
384
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
385
+ * for more details and examples.
386
+ */
387
+ listDataStoresStream(request?: protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, options?: CallOptions): Transform;
388
+ /**
389
+ * Equivalent to `listDataStores`, but returns an iterable object.
390
+ *
391
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
392
+ * @param {Object} request
393
+ * The request object that will be sent.
394
+ * @param {string} request.parent
395
+ * Required. The parent branch resource name, such as
396
+ * `projects/{project}/locations/{location}/collections/{collection_id}`.
397
+ *
398
+ * If the caller does not have permission to list {@link protos.|DataStores}s under this
399
+ * location, regardless of whether or not this data store exists, a
400
+ * PERMISSION_DENIED error is returned.
401
+ * @param {number} request.pageSize
402
+ * Maximum number of
403
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}s to return. If
404
+ * unspecified, defaults to 10. The maximum allowed value is 50. Values above
405
+ * 50 will be coerced to 50.
406
+ *
407
+ * If this field is negative, an INVALID_ARGUMENT is returned.
408
+ * @param {string} request.pageToken
409
+ * A page token
410
+ * {@link protos.google.cloud.discoveryengine.v1alpha.ListDataStoresResponse.next_page_token|ListDataStoresResponse.next_page_token},
411
+ * received from a previous
412
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStoreService.ListDataStores|DataStoreService.ListDataStores}
413
+ * call. Provide this to retrieve the subsequent page.
414
+ *
415
+ * When paginating, all other parameters provided to
416
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStoreService.ListDataStores|DataStoreService.ListDataStores}
417
+ * must match the call that provided the page token. Otherwise, an
418
+ * INVALID_ARGUMENT error is returned.
419
+ * @param {string} request.filter
420
+ * Filter by solution type. For example: filter =
421
+ * 'solution_type:SOLUTION_TYPE_SEARCH'
422
+ * @param {object} [options]
423
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
424
+ * @returns {Object}
425
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
426
+ * When you iterate the returned iterable, each element will be an object representing
427
+ * {@link protos.google.cloud.discoveryengine.v1alpha.DataStore|DataStore}. The API will be called under the hood as needed, once per the page,
428
+ * so you can stop the iteration when you don't need more results.
429
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
430
+ * for more details and examples.
431
+ * @example <caption>include:samples/generated/v1alpha/data_store_service.list_data_stores.js</caption>
432
+ * region_tag:discoveryengine_v1alpha_generated_DataStoreService_ListDataStores_async
433
+ */
434
+ listDataStoresAsync(request?: protos.google.cloud.discoveryengine.v1alpha.IListDataStoresRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.discoveryengine.v1alpha.IDataStore>;
435
+ /**
436
+ * Gets information about a location.
437
+ *
438
+ * @param {Object} request
439
+ * The request object that will be sent.
440
+ * @param {string} request.name
441
+ * Resource name for the location.
442
+ * @param {object} [options]
443
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
444
+ * @returns {Promise} - The promise which resolves to an array.
445
+ * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
446
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
447
+ * for more details and examples.
448
+ * @example
449
+ * ```
450
+ * const [response] = await client.getLocation(request);
451
+ * ```
452
+ */
453
+ 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>;
454
+ /**
455
+ * Lists information about the supported locations for this service. Returns an iterable object.
456
+ *
457
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
458
+ * @param {Object} request
459
+ * The request object that will be sent.
460
+ * @param {string} request.name
461
+ * The resource that owns the locations collection, if applicable.
462
+ * @param {string} request.filter
463
+ * The standard list filter.
464
+ * @param {number} request.pageSize
465
+ * The standard list page size.
466
+ * @param {string} request.pageToken
467
+ * The standard list page token.
468
+ * @param {object} [options]
469
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
470
+ * @returns {Object}
471
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
472
+ * When you iterate the returned iterable, each element will be an object representing
473
+ * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
474
+ * so you can stop the iteration when you don't need more results.
475
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
476
+ * for more details and examples.
477
+ * @example
478
+ * ```
479
+ * const iterable = client.listLocationsAsync(request);
480
+ * for await (const response of iterable) {
481
+ * // process response
482
+ * }
483
+ * ```
484
+ */
485
+ listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
486
+ /**
487
+ * Gets the latest state of a long-running operation. Clients can use this
488
+ * method to poll the operation result at intervals as recommended by the API
489
+ * service.
490
+ *
491
+ * @param {Object} request - The request object that will be sent.
492
+ * @param {string} request.name - The name of the operation resource.
493
+ * @param {Object=} options
494
+ * Optional parameters. You can override the default settings for this call,
495
+ * e.g, timeout, retries, paginations, etc. See {@link
496
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
497
+ * for the details.
498
+ * @param {function(?Error, ?Object)=} callback
499
+ * The function which will be called with the result of the API call.
500
+ *
501
+ * The second parameter to the callback is an object representing
502
+ * {@link google.longrunning.Operation | google.longrunning.Operation}.
503
+ * @return {Promise} - The promise which resolves to an array.
504
+ * The first element of the array is an object representing
505
+ * {@link google.longrunning.Operation | google.longrunning.Operation}.
506
+ * The promise has a method named "cancel" which cancels the ongoing API call.
507
+ *
508
+ * @example
509
+ * ```
510
+ * const client = longrunning.operationsClient();
511
+ * const name = '';
512
+ * const [response] = await client.getOperation({name});
513
+ * // doThingsWith(response)
514
+ * ```
515
+ */
516
+ getOperation(request: protos.google.longrunning.GetOperationRequest, options?: 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]>;
517
+ /**
518
+ * Lists operations that match the specified filter in the request. If the
519
+ * server doesn't support this method, it returns `UNIMPLEMENTED`. Returns an iterable object.
520
+ *
521
+ * For-await-of syntax is used with the iterable to recursively get response element on-demand.
522
+ *
523
+ * @param {Object} request - The request object that will be sent.
524
+ * @param {string} request.name - The name of the operation collection.
525
+ * @param {string} request.filter - The standard list filter.
526
+ * @param {number=} request.pageSize -
527
+ * The maximum number of resources contained in the underlying API
528
+ * response. If page streaming is performed per-resource, this
529
+ * parameter does not affect the return value. If page streaming is
530
+ * performed per-page, this determines the maximum number of
531
+ * resources in a page.
532
+ * @param {Object=} options
533
+ * Optional parameters. You can override the default settings for this call,
534
+ * e.g, timeout, retries, paginations, etc. See {@link
535
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
536
+ * details.
537
+ * @returns {Object}
538
+ * An iterable Object that conforms to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | iteration protocols}.
539
+ *
540
+ * @example
541
+ * ```
542
+ * const client = longrunning.operationsClient();
543
+ * for await (const response of client.listOperationsAsync(request));
544
+ * // doThingsWith(response)
545
+ * ```
546
+ */
547
+ listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.ListOperationsResponse>;
548
+ /**
549
+ * Starts asynchronous cancellation on a long-running operation. The server
550
+ * makes a best effort to cancel the operation, but success is not
551
+ * guaranteed. If the server doesn't support this method, it returns
552
+ * `google.rpc.Code.UNIMPLEMENTED`. Clients can use
553
+ * {@link Operations.GetOperation} or
554
+ * other methods to check whether the cancellation succeeded or whether the
555
+ * operation completed despite cancellation. On successful cancellation,
556
+ * the operation is not deleted; instead, it becomes an operation with
557
+ * an {@link Operation.error} value with a {@link google.rpc.Status.code} of
558
+ * 1, corresponding to `Code.CANCELLED`.
559
+ *
560
+ * @param {Object} request - The request object that will be sent.
561
+ * @param {string} request.name - The name of the operation resource to be cancelled.
562
+ * @param {Object=} options
563
+ * Optional parameters. You can override the default settings for this call,
564
+ * e.g, timeout, retries, paginations, etc. See {@link
565
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
566
+ * details.
567
+ * @param {function(?Error)=} callback
568
+ * The function which will be called with the result of the API call.
569
+ * @return {Promise} - The promise which resolves when API call finishes.
570
+ * The promise has a method named "cancel" which cancels the ongoing API
571
+ * call.
572
+ *
573
+ * @example
574
+ * ```
575
+ * const client = longrunning.operationsClient();
576
+ * await client.cancelOperation({name: ''});
577
+ * ```
578
+ */
579
+ cancelOperation(request: protos.google.longrunning.CancelOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.CancelOperationRequest, {} | undefined | null>, callback?: Callback<protos.google.longrunning.CancelOperationRequest, protos.google.protobuf.Empty, {} | undefined | null>): Promise<protos.google.protobuf.Empty>;
580
+ /**
581
+ * Deletes a long-running operation. This method indicates that the client is
582
+ * no longer interested in the operation result. It does not cancel the
583
+ * operation. If the server doesn't support this method, it returns
584
+ * `google.rpc.Code.UNIMPLEMENTED`.
585
+ *
586
+ * @param {Object} request - The request object that will be sent.
587
+ * @param {string} request.name - The name of the operation resource to be deleted.
588
+ * @param {Object=} options
589
+ * Optional parameters. You can override the default settings for this call,
590
+ * e.g, timeout, retries, paginations, etc. See {@link
591
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
592
+ * for the details.
593
+ * @param {function(?Error)=} callback
594
+ * The function which will be called with the result of the API call.
595
+ * @return {Promise} - The promise which resolves when API call finishes.
596
+ * The promise has a method named "cancel" which cancels the ongoing API
597
+ * call.
598
+ *
599
+ * @example
600
+ * ```
601
+ * const client = longrunning.operationsClient();
602
+ * await client.deleteOperation({name: ''});
603
+ * ```
604
+ */
605
+ deleteOperation(request: protos.google.longrunning.DeleteOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>): Promise<protos.google.protobuf.Empty>;
606
+ /**
607
+ * Return a fully-qualified collection resource name string.
608
+ *
609
+ * @param {string} project
610
+ * @param {string} location
611
+ * @param {string} collection
612
+ * @returns {string} Resource name string.
613
+ */
614
+ collectionPath(project: string, location: string, collection: string): string;
615
+ /**
616
+ * Parse the project from Collection resource.
617
+ *
618
+ * @param {string} collectionName
619
+ * A fully-qualified path representing Collection resource.
620
+ * @returns {string} A string representing the project.
621
+ */
622
+ matchProjectFromCollectionName(collectionName: string): string | number;
623
+ /**
624
+ * Parse the location from Collection resource.
625
+ *
626
+ * @param {string} collectionName
627
+ * A fully-qualified path representing Collection resource.
628
+ * @returns {string} A string representing the location.
629
+ */
630
+ matchLocationFromCollectionName(collectionName: string): string | number;
631
+ /**
632
+ * Parse the collection from Collection resource.
633
+ *
634
+ * @param {string} collectionName
635
+ * A fully-qualified path representing Collection resource.
636
+ * @returns {string} A string representing the collection.
637
+ */
638
+ matchCollectionFromCollectionName(collectionName: string): string | number;
639
+ /**
640
+ * Return a fully-qualified engine resource name string.
641
+ *
642
+ * @param {string} project
643
+ * @param {string} location
644
+ * @param {string} collection
645
+ * @param {string} engine
646
+ * @returns {string} Resource name string.
647
+ */
648
+ enginePath(project: string, location: string, collection: string, engine: string): string;
649
+ /**
650
+ * Parse the project from Engine resource.
651
+ *
652
+ * @param {string} engineName
653
+ * A fully-qualified path representing Engine resource.
654
+ * @returns {string} A string representing the project.
655
+ */
656
+ matchProjectFromEngineName(engineName: string): string | number;
657
+ /**
658
+ * Parse the location from Engine resource.
659
+ *
660
+ * @param {string} engineName
661
+ * A fully-qualified path representing Engine resource.
662
+ * @returns {string} A string representing the location.
663
+ */
664
+ matchLocationFromEngineName(engineName: string): string | number;
665
+ /**
666
+ * Parse the collection from Engine resource.
667
+ *
668
+ * @param {string} engineName
669
+ * A fully-qualified path representing Engine resource.
670
+ * @returns {string} A string representing the collection.
671
+ */
672
+ matchCollectionFromEngineName(engineName: string): string | number;
673
+ /**
674
+ * Parse the engine from Engine resource.
675
+ *
676
+ * @param {string} engineName
677
+ * A fully-qualified path representing Engine resource.
678
+ * @returns {string} A string representing the engine.
679
+ */
680
+ matchEngineFromEngineName(engineName: string): string | number;
681
+ /**
682
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
683
+ *
684
+ * @param {string} project
685
+ * @param {string} location
686
+ * @param {string} collection
687
+ * @param {string} data_store
688
+ * @returns {string} Resource name string.
689
+ */
690
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
691
+ /**
692
+ * Parse the project from ProjectLocationCollectionDataStore resource.
693
+ *
694
+ * @param {string} projectLocationCollectionDataStoreName
695
+ * A fully-qualified path representing project_location_collection_data_store resource.
696
+ * @returns {string} A string representing the project.
697
+ */
698
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
699
+ /**
700
+ * Parse the location from ProjectLocationCollectionDataStore resource.
701
+ *
702
+ * @param {string} projectLocationCollectionDataStoreName
703
+ * A fully-qualified path representing project_location_collection_data_store resource.
704
+ * @returns {string} A string representing the location.
705
+ */
706
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
707
+ /**
708
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
709
+ *
710
+ * @param {string} projectLocationCollectionDataStoreName
711
+ * A fully-qualified path representing project_location_collection_data_store resource.
712
+ * @returns {string} A string representing the collection.
713
+ */
714
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
715
+ /**
716
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
717
+ *
718
+ * @param {string} projectLocationCollectionDataStoreName
719
+ * A fully-qualified path representing project_location_collection_data_store resource.
720
+ * @returns {string} A string representing the data_store.
721
+ */
722
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
723
+ /**
724
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
725
+ *
726
+ * @param {string} project
727
+ * @param {string} location
728
+ * @param {string} collection
729
+ * @param {string} data_store
730
+ * @param {string} branch
731
+ * @param {string} document
732
+ * @returns {string} Resource name string.
733
+ */
734
+ projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
735
+ /**
736
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
737
+ *
738
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
739
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
740
+ * @returns {string} A string representing the project.
741
+ */
742
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
743
+ /**
744
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
745
+ *
746
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
747
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
748
+ * @returns {string} A string representing the location.
749
+ */
750
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
751
+ /**
752
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
753
+ *
754
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
755
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
756
+ * @returns {string} A string representing the collection.
757
+ */
758
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
759
+ /**
760
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
761
+ *
762
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
763
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
764
+ * @returns {string} A string representing the data_store.
765
+ */
766
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
767
+ /**
768
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
769
+ *
770
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
771
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
772
+ * @returns {string} A string representing the branch.
773
+ */
774
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
775
+ /**
776
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
777
+ *
778
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
779
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
780
+ * @returns {string} A string representing the document.
781
+ */
782
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
783
+ /**
784
+ * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
785
+ *
786
+ * @param {string} project
787
+ * @param {string} location
788
+ * @param {string} collection
789
+ * @param {string} data_store
790
+ * @param {string} conversation
791
+ * @returns {string} Resource name string.
792
+ */
793
+ projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
794
+ /**
795
+ * Parse the project from ProjectLocationCollectionDataStoreConversation resource.
796
+ *
797
+ * @param {string} projectLocationCollectionDataStoreConversationName
798
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
799
+ * @returns {string} A string representing the project.
800
+ */
801
+ matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
802
+ /**
803
+ * Parse the location from ProjectLocationCollectionDataStoreConversation resource.
804
+ *
805
+ * @param {string} projectLocationCollectionDataStoreConversationName
806
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
807
+ * @returns {string} A string representing the location.
808
+ */
809
+ matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
810
+ /**
811
+ * Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
812
+ *
813
+ * @param {string} projectLocationCollectionDataStoreConversationName
814
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
815
+ * @returns {string} A string representing the collection.
816
+ */
817
+ matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
818
+ /**
819
+ * Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
820
+ *
821
+ * @param {string} projectLocationCollectionDataStoreConversationName
822
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
823
+ * @returns {string} A string representing the data_store.
824
+ */
825
+ matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
826
+ /**
827
+ * Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
828
+ *
829
+ * @param {string} projectLocationCollectionDataStoreConversationName
830
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
831
+ * @returns {string} A string representing the conversation.
832
+ */
833
+ matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
834
+ /**
835
+ * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
836
+ *
837
+ * @param {string} project
838
+ * @param {string} location
839
+ * @param {string} collection
840
+ * @param {string} data_store
841
+ * @param {string} schema
842
+ * @returns {string} Resource name string.
843
+ */
844
+ projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
845
+ /**
846
+ * Parse the project from ProjectLocationCollectionDataStoreSchema resource.
847
+ *
848
+ * @param {string} projectLocationCollectionDataStoreSchemaName
849
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
850
+ * @returns {string} A string representing the project.
851
+ */
852
+ matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
853
+ /**
854
+ * Parse the location from ProjectLocationCollectionDataStoreSchema resource.
855
+ *
856
+ * @param {string} projectLocationCollectionDataStoreSchemaName
857
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
858
+ * @returns {string} A string representing the location.
859
+ */
860
+ matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
861
+ /**
862
+ * Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
863
+ *
864
+ * @param {string} projectLocationCollectionDataStoreSchemaName
865
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
866
+ * @returns {string} A string representing the collection.
867
+ */
868
+ matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
869
+ /**
870
+ * Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
871
+ *
872
+ * @param {string} projectLocationCollectionDataStoreSchemaName
873
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
874
+ * @returns {string} A string representing the data_store.
875
+ */
876
+ matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
877
+ /**
878
+ * Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
879
+ *
880
+ * @param {string} projectLocationCollectionDataStoreSchemaName
881
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
882
+ * @returns {string} A string representing the schema.
883
+ */
884
+ matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
885
+ /**
886
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
887
+ *
888
+ * @param {string} project
889
+ * @param {string} location
890
+ * @param {string} collection
891
+ * @param {string} data_store
892
+ * @returns {string} Resource name string.
893
+ */
894
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
895
+ /**
896
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
897
+ *
898
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
899
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
900
+ * @returns {string} A string representing the project.
901
+ */
902
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
903
+ /**
904
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
905
+ *
906
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
907
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
908
+ * @returns {string} A string representing the location.
909
+ */
910
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
911
+ /**
912
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
913
+ *
914
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
915
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
916
+ * @returns {string} A string representing the collection.
917
+ */
918
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
919
+ /**
920
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
921
+ *
922
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
923
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
924
+ * @returns {string} A string representing the data_store.
925
+ */
926
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
927
+ /**
928
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
929
+ *
930
+ * @param {string} project
931
+ * @param {string} location
932
+ * @param {string} collection
933
+ * @param {string} data_store
934
+ * @param {string} target_site
935
+ * @returns {string} Resource name string.
936
+ */
937
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
938
+ /**
939
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
940
+ *
941
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
942
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
943
+ * @returns {string} A string representing the project.
944
+ */
945
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
946
+ /**
947
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
948
+ *
949
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
950
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
951
+ * @returns {string} A string representing the location.
952
+ */
953
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
954
+ /**
955
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
956
+ *
957
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
958
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
959
+ * @returns {string} A string representing the collection.
960
+ */
961
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
962
+ /**
963
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
964
+ *
965
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
966
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
967
+ * @returns {string} A string representing the data_store.
968
+ */
969
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
970
+ /**
971
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
972
+ *
973
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
974
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
975
+ * @returns {string} A string representing the target_site.
976
+ */
977
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
978
+ /**
979
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
980
+ *
981
+ * @param {string} project
982
+ * @param {string} location
983
+ * @param {string} collection
984
+ * @param {string} engine
985
+ * @param {string} conversation
986
+ * @returns {string} Resource name string.
987
+ */
988
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
989
+ /**
990
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
991
+ *
992
+ * @param {string} projectLocationCollectionEngineConversationName
993
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
994
+ * @returns {string} A string representing the project.
995
+ */
996
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
997
+ /**
998
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
999
+ *
1000
+ * @param {string} projectLocationCollectionEngineConversationName
1001
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1002
+ * @returns {string} A string representing the location.
1003
+ */
1004
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1005
+ /**
1006
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1007
+ *
1008
+ * @param {string} projectLocationCollectionEngineConversationName
1009
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1010
+ * @returns {string} A string representing the collection.
1011
+ */
1012
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1013
+ /**
1014
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1015
+ *
1016
+ * @param {string} projectLocationCollectionEngineConversationName
1017
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1018
+ * @returns {string} A string representing the engine.
1019
+ */
1020
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1021
+ /**
1022
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1023
+ *
1024
+ * @param {string} projectLocationCollectionEngineConversationName
1025
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1026
+ * @returns {string} A string representing the conversation.
1027
+ */
1028
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1029
+ /**
1030
+ * Return a fully-qualified projectLocationDataStore resource name string.
1031
+ *
1032
+ * @param {string} project
1033
+ * @param {string} location
1034
+ * @param {string} data_store
1035
+ * @returns {string} Resource name string.
1036
+ */
1037
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
1038
+ /**
1039
+ * Parse the project from ProjectLocationDataStore resource.
1040
+ *
1041
+ * @param {string} projectLocationDataStoreName
1042
+ * A fully-qualified path representing project_location_data_store resource.
1043
+ * @returns {string} A string representing the project.
1044
+ */
1045
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1046
+ /**
1047
+ * Parse the location from ProjectLocationDataStore resource.
1048
+ *
1049
+ * @param {string} projectLocationDataStoreName
1050
+ * A fully-qualified path representing project_location_data_store resource.
1051
+ * @returns {string} A string representing the location.
1052
+ */
1053
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1054
+ /**
1055
+ * Parse the data_store from ProjectLocationDataStore resource.
1056
+ *
1057
+ * @param {string} projectLocationDataStoreName
1058
+ * A fully-qualified path representing project_location_data_store resource.
1059
+ * @returns {string} A string representing the data_store.
1060
+ */
1061
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1062
+ /**
1063
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
1064
+ *
1065
+ * @param {string} project
1066
+ * @param {string} location
1067
+ * @param {string} data_store
1068
+ * @param {string} branch
1069
+ * @param {string} document
1070
+ * @returns {string} Resource name string.
1071
+ */
1072
+ projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
1073
+ /**
1074
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
1075
+ *
1076
+ * @param {string} projectLocationDataStoreBranchDocumentName
1077
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1078
+ * @returns {string} A string representing the project.
1079
+ */
1080
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1081
+ /**
1082
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
1083
+ *
1084
+ * @param {string} projectLocationDataStoreBranchDocumentName
1085
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1086
+ * @returns {string} A string representing the location.
1087
+ */
1088
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1089
+ /**
1090
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
1091
+ *
1092
+ * @param {string} projectLocationDataStoreBranchDocumentName
1093
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1094
+ * @returns {string} A string representing the data_store.
1095
+ */
1096
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1097
+ /**
1098
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
1099
+ *
1100
+ * @param {string} projectLocationDataStoreBranchDocumentName
1101
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1102
+ * @returns {string} A string representing the branch.
1103
+ */
1104
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1105
+ /**
1106
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
1107
+ *
1108
+ * @param {string} projectLocationDataStoreBranchDocumentName
1109
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1110
+ * @returns {string} A string representing the document.
1111
+ */
1112
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1113
+ /**
1114
+ * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1115
+ *
1116
+ * @param {string} project
1117
+ * @param {string} location
1118
+ * @param {string} data_store
1119
+ * @param {string} conversation
1120
+ * @returns {string} Resource name string.
1121
+ */
1122
+ projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
1123
+ /**
1124
+ * Parse the project from ProjectLocationDataStoreConversation resource.
1125
+ *
1126
+ * @param {string} projectLocationDataStoreConversationName
1127
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1128
+ * @returns {string} A string representing the project.
1129
+ */
1130
+ matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1131
+ /**
1132
+ * Parse the location from ProjectLocationDataStoreConversation resource.
1133
+ *
1134
+ * @param {string} projectLocationDataStoreConversationName
1135
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1136
+ * @returns {string} A string representing the location.
1137
+ */
1138
+ matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1139
+ /**
1140
+ * Parse the data_store from ProjectLocationDataStoreConversation resource.
1141
+ *
1142
+ * @param {string} projectLocationDataStoreConversationName
1143
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1144
+ * @returns {string} A string representing the data_store.
1145
+ */
1146
+ matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1147
+ /**
1148
+ * Parse the conversation from ProjectLocationDataStoreConversation resource.
1149
+ *
1150
+ * @param {string} projectLocationDataStoreConversationName
1151
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1152
+ * @returns {string} A string representing the conversation.
1153
+ */
1154
+ matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1155
+ /**
1156
+ * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1157
+ *
1158
+ * @param {string} project
1159
+ * @param {string} location
1160
+ * @param {string} data_store
1161
+ * @param {string} schema
1162
+ * @returns {string} Resource name string.
1163
+ */
1164
+ projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
1165
+ /**
1166
+ * Parse the project from ProjectLocationDataStoreSchema resource.
1167
+ *
1168
+ * @param {string} projectLocationDataStoreSchemaName
1169
+ * A fully-qualified path representing project_location_data_store_schema resource.
1170
+ * @returns {string} A string representing the project.
1171
+ */
1172
+ matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1173
+ /**
1174
+ * Parse the location from ProjectLocationDataStoreSchema resource.
1175
+ *
1176
+ * @param {string} projectLocationDataStoreSchemaName
1177
+ * A fully-qualified path representing project_location_data_store_schema resource.
1178
+ * @returns {string} A string representing the location.
1179
+ */
1180
+ matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1181
+ /**
1182
+ * Parse the data_store from ProjectLocationDataStoreSchema resource.
1183
+ *
1184
+ * @param {string} projectLocationDataStoreSchemaName
1185
+ * A fully-qualified path representing project_location_data_store_schema resource.
1186
+ * @returns {string} A string representing the data_store.
1187
+ */
1188
+ matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1189
+ /**
1190
+ * Parse the schema from ProjectLocationDataStoreSchema resource.
1191
+ *
1192
+ * @param {string} projectLocationDataStoreSchemaName
1193
+ * A fully-qualified path representing project_location_data_store_schema resource.
1194
+ * @returns {string} A string representing the schema.
1195
+ */
1196
+ matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1197
+ /**
1198
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1199
+ *
1200
+ * @param {string} project
1201
+ * @param {string} location
1202
+ * @param {string} data_store
1203
+ * @returns {string} Resource name string.
1204
+ */
1205
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1206
+ /**
1207
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1208
+ *
1209
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1210
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1211
+ * @returns {string} A string representing the project.
1212
+ */
1213
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1214
+ /**
1215
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1216
+ *
1217
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1218
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1219
+ * @returns {string} A string representing the location.
1220
+ */
1221
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1222
+ /**
1223
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1224
+ *
1225
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1226
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1227
+ * @returns {string} A string representing the data_store.
1228
+ */
1229
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1230
+ /**
1231
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1232
+ *
1233
+ * @param {string} project
1234
+ * @param {string} location
1235
+ * @param {string} data_store
1236
+ * @param {string} target_site
1237
+ * @returns {string} Resource name string.
1238
+ */
1239
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1240
+ /**
1241
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1242
+ *
1243
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1244
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1245
+ * @returns {string} A string representing the project.
1246
+ */
1247
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1248
+ /**
1249
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1250
+ *
1251
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1252
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1253
+ * @returns {string} A string representing the location.
1254
+ */
1255
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1256
+ /**
1257
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1258
+ *
1259
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1260
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1261
+ * @returns {string} A string representing the data_store.
1262
+ */
1263
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1264
+ /**
1265
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1266
+ *
1267
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1268
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1269
+ * @returns {string} A string representing the target_site.
1270
+ */
1271
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1272
+ /**
1273
+ * Terminate the gRPC channel and close the client.
1274
+ *
1275
+ * The client will no longer be usable and all future behavior is undefined.
1276
+ * @returns {Promise} A promise that resolves when the client is closed.
1277
+ */
1278
+ close(): Promise<void>;
1279
+ }