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