@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,1367 @@
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 managing billing estimations resources.
6
+ * @class
7
+ * @memberof v1alpha
8
+ */
9
+ export declare class EstimateBillingServiceClient {
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
+ estimateBillingServiceStub?: Promise<{
31
+ [name: string]: Function;
32
+ }>;
33
+ /**
34
+ * Construct an instance of EstimateBillingServiceClient.
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 EstimateBillingServiceClient({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
+ * Estimates the data size to be used by a customer.
120
+ *
121
+ * @param {Object} request
122
+ * The request object that will be sent.
123
+ * @param {google.cloud.discoveryengine.v1alpha.EstimateDataSizeRequest.WebsiteDataSource} request.websiteDataSource
124
+ * Website data.
125
+ * @param {google.cloud.discoveryengine.v1alpha.EstimateDataSizeRequest.FileDataSource} request.fileDataSource
126
+ * Structured or unstructured data.
127
+ * @param {string} request.location
128
+ * Required. Full resource name of the location, such as
129
+ * `projects/{project}/locations/{location}`.
130
+ * @param {object} [options]
131
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
132
+ * @returns {Promise} - The promise which resolves to an array.
133
+ * The first element of the array is an object representing
134
+ * a long running operation. Its `promise()` method returns a promise
135
+ * you can `await` for.
136
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
137
+ * for more details and examples.
138
+ * @example <caption>include:samples/generated/v1alpha/estimate_billing_service.estimate_data_size.js</caption>
139
+ * region_tag:discoveryengine_v1alpha_generated_EstimateBillingService_EstimateDataSize_async
140
+ */
141
+ estimateDataSize(request?: protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeRequest, options?: CallOptions): Promise<[
142
+ LROperation<protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeResponse, protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeMetadata>,
143
+ protos.google.longrunning.IOperation | undefined,
144
+ {} | undefined
145
+ ]>;
146
+ estimateDataSize(request: protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeResponse, protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
147
+ estimateDataSize(request: protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeRequest, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeResponse, protos.google.cloud.discoveryengine.v1alpha.IEstimateDataSizeMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
148
+ /**
149
+ * Check the status of the long running operation returned by `estimateDataSize()`.
150
+ * @param {String} name
151
+ * The operation name that will be passed.
152
+ * @returns {Promise} - The promise which resolves to an object.
153
+ * The decoded operation object has result and metadata field to get information from.
154
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
155
+ * for more details and examples.
156
+ * @example <caption>include:samples/generated/v1alpha/estimate_billing_service.estimate_data_size.js</caption>
157
+ * region_tag:discoveryengine_v1alpha_generated_EstimateBillingService_EstimateDataSize_async
158
+ */
159
+ checkEstimateDataSizeProgress(name: string): Promise<LROperation<protos.google.cloud.discoveryengine.v1alpha.EstimateDataSizeResponse, protos.google.cloud.discoveryengine.v1alpha.EstimateDataSizeMetadata>>;
160
+ /**
161
+ * Gets information about a location.
162
+ *
163
+ * @param {Object} request
164
+ * The request object that will be sent.
165
+ * @param {string} request.name
166
+ * Resource name for the location.
167
+ * @param {object} [options]
168
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
169
+ * @returns {Promise} - The promise which resolves to an array.
170
+ * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
171
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
172
+ * for more details and examples.
173
+ * @example
174
+ * ```
175
+ * const [response] = await client.getLocation(request);
176
+ * ```
177
+ */
178
+ 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>;
179
+ /**
180
+ * Lists information about the supported locations for this service. Returns an iterable object.
181
+ *
182
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
183
+ * @param {Object} request
184
+ * The request object that will be sent.
185
+ * @param {string} request.name
186
+ * The resource that owns the locations collection, if applicable.
187
+ * @param {string} request.filter
188
+ * The standard list filter.
189
+ * @param {number} request.pageSize
190
+ * The standard list page size.
191
+ * @param {string} request.pageToken
192
+ * The standard list page token.
193
+ * @param {object} [options]
194
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
195
+ * @returns {Object}
196
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
197
+ * When you iterate the returned iterable, each element will be an object representing
198
+ * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
199
+ * so you can stop the iteration when you don't need more results.
200
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
201
+ * for more details and examples.
202
+ * @example
203
+ * ```
204
+ * const iterable = client.listLocationsAsync(request);
205
+ * for await (const response of iterable) {
206
+ * // process response
207
+ * }
208
+ * ```
209
+ */
210
+ listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
211
+ /**
212
+ * Gets the latest state of a long-running operation. Clients can use this
213
+ * method to poll the operation result at intervals as recommended by the API
214
+ * service.
215
+ *
216
+ * @param {Object} request - The request object that will be sent.
217
+ * @param {string} request.name - The name of the operation resource.
218
+ * @param {Object=} options
219
+ * Optional parameters. You can override the default settings for this call,
220
+ * e.g, timeout, retries, paginations, etc. See {@link
221
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
222
+ * for the details.
223
+ * @param {function(?Error, ?Object)=} callback
224
+ * The function which will be called with the result of the API call.
225
+ *
226
+ * The second parameter to the callback is an object representing
227
+ * {@link google.longrunning.Operation | google.longrunning.Operation}.
228
+ * @return {Promise} - The promise which resolves to an array.
229
+ * The first element of the array is an object representing
230
+ * {@link google.longrunning.Operation | google.longrunning.Operation}.
231
+ * The promise has a method named "cancel" which cancels the ongoing API call.
232
+ *
233
+ * @example
234
+ * ```
235
+ * const client = longrunning.operationsClient();
236
+ * const name = '';
237
+ * const [response] = await client.getOperation({name});
238
+ * // doThingsWith(response)
239
+ * ```
240
+ */
241
+ 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]>;
242
+ /**
243
+ * Lists operations that match the specified filter in the request. If the
244
+ * server doesn't support this method, it returns `UNIMPLEMENTED`. Returns an iterable object.
245
+ *
246
+ * For-await-of syntax is used with the iterable to recursively get response element on-demand.
247
+ *
248
+ * @param {Object} request - The request object that will be sent.
249
+ * @param {string} request.name - The name of the operation collection.
250
+ * @param {string} request.filter - The standard list filter.
251
+ * @param {number=} request.pageSize -
252
+ * The maximum number of resources contained in the underlying API
253
+ * response. If page streaming is performed per-resource, this
254
+ * parameter does not affect the return value. If page streaming is
255
+ * performed per-page, this determines the maximum number of
256
+ * resources in a page.
257
+ * @param {Object=} options
258
+ * Optional parameters. You can override the default settings for this call,
259
+ * e.g, timeout, retries, paginations, etc. See {@link
260
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
261
+ * details.
262
+ * @returns {Object}
263
+ * An iterable Object that conforms to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | iteration protocols}.
264
+ *
265
+ * @example
266
+ * ```
267
+ * const client = longrunning.operationsClient();
268
+ * for await (const response of client.listOperationsAsync(request));
269
+ * // doThingsWith(response)
270
+ * ```
271
+ */
272
+ listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.ListOperationsResponse>;
273
+ /**
274
+ * Starts asynchronous cancellation on a long-running operation. The server
275
+ * makes a best effort to cancel the operation, but success is not
276
+ * guaranteed. If the server doesn't support this method, it returns
277
+ * `google.rpc.Code.UNIMPLEMENTED`. Clients can use
278
+ * {@link Operations.GetOperation} or
279
+ * other methods to check whether the cancellation succeeded or whether the
280
+ * operation completed despite cancellation. On successful cancellation,
281
+ * the operation is not deleted; instead, it becomes an operation with
282
+ * an {@link Operation.error} value with a {@link google.rpc.Status.code} of
283
+ * 1, corresponding to `Code.CANCELLED`.
284
+ *
285
+ * @param {Object} request - The request object that will be sent.
286
+ * @param {string} request.name - The name of the operation resource to be cancelled.
287
+ * @param {Object=} options
288
+ * Optional parameters. You can override the default settings for this call,
289
+ * e.g, timeout, retries, paginations, etc. See {@link
290
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
291
+ * details.
292
+ * @param {function(?Error)=} callback
293
+ * The function which will be called with the result of the API call.
294
+ * @return {Promise} - The promise which resolves when API call finishes.
295
+ * The promise has a method named "cancel" which cancels the ongoing API
296
+ * call.
297
+ *
298
+ * @example
299
+ * ```
300
+ * const client = longrunning.operationsClient();
301
+ * await client.cancelOperation({name: ''});
302
+ * ```
303
+ */
304
+ 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>;
305
+ /**
306
+ * Deletes a long-running operation. This method indicates that the client is
307
+ * no longer interested in the operation result. It does not cancel the
308
+ * operation. If the server doesn't support this method, it returns
309
+ * `google.rpc.Code.UNIMPLEMENTED`.
310
+ *
311
+ * @param {Object} request - The request object that will be sent.
312
+ * @param {string} request.name - The name of the operation resource to be deleted.
313
+ * @param {Object=} options
314
+ * Optional parameters. You can override the default settings for this call,
315
+ * e.g, timeout, retries, paginations, etc. See {@link
316
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
317
+ * for the details.
318
+ * @param {function(?Error)=} callback
319
+ * The function which will be called with the result of the API call.
320
+ * @return {Promise} - The promise which resolves when API call finishes.
321
+ * The promise has a method named "cancel" which cancels the ongoing API
322
+ * call.
323
+ *
324
+ * @example
325
+ * ```
326
+ * const client = longrunning.operationsClient();
327
+ * await client.deleteOperation({name: ''});
328
+ * ```
329
+ */
330
+ 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>;
331
+ /**
332
+ * Return a fully-qualified aclConfig resource name string.
333
+ *
334
+ * @param {string} project
335
+ * @param {string} location
336
+ * @returns {string} Resource name string.
337
+ */
338
+ aclConfigPath(project: string, location: string): string;
339
+ /**
340
+ * Parse the project from AclConfig resource.
341
+ *
342
+ * @param {string} aclConfigName
343
+ * A fully-qualified path representing AclConfig resource.
344
+ * @returns {string} A string representing the project.
345
+ */
346
+ matchProjectFromAclConfigName(aclConfigName: string): string | number;
347
+ /**
348
+ * Parse the location from AclConfig resource.
349
+ *
350
+ * @param {string} aclConfigName
351
+ * A fully-qualified path representing AclConfig resource.
352
+ * @returns {string} A string representing the location.
353
+ */
354
+ matchLocationFromAclConfigName(aclConfigName: string): string | number;
355
+ /**
356
+ * Return a fully-qualified engine resource name string.
357
+ *
358
+ * @param {string} project
359
+ * @param {string} location
360
+ * @param {string} collection
361
+ * @param {string} engine
362
+ * @returns {string} Resource name string.
363
+ */
364
+ enginePath(project: string, location: string, collection: string, engine: string): string;
365
+ /**
366
+ * Parse the project from Engine resource.
367
+ *
368
+ * @param {string} engineName
369
+ * A fully-qualified path representing Engine resource.
370
+ * @returns {string} A string representing the project.
371
+ */
372
+ matchProjectFromEngineName(engineName: string): string | number;
373
+ /**
374
+ * Parse the location from Engine resource.
375
+ *
376
+ * @param {string} engineName
377
+ * A fully-qualified path representing Engine resource.
378
+ * @returns {string} A string representing the location.
379
+ */
380
+ matchLocationFromEngineName(engineName: string): string | number;
381
+ /**
382
+ * Parse the collection from Engine resource.
383
+ *
384
+ * @param {string} engineName
385
+ * A fully-qualified path representing Engine resource.
386
+ * @returns {string} A string representing the collection.
387
+ */
388
+ matchCollectionFromEngineName(engineName: string): string | number;
389
+ /**
390
+ * Parse the engine from Engine resource.
391
+ *
392
+ * @param {string} engineName
393
+ * A fully-qualified path representing Engine resource.
394
+ * @returns {string} A string representing the engine.
395
+ */
396
+ matchEngineFromEngineName(engineName: string): string | number;
397
+ /**
398
+ * Return a fully-qualified location resource name string.
399
+ *
400
+ * @param {string} project
401
+ * @param {string} location
402
+ * @returns {string} Resource name string.
403
+ */
404
+ locationPath(project: string, location: string): string;
405
+ /**
406
+ * Parse the project from Location resource.
407
+ *
408
+ * @param {string} locationName
409
+ * A fully-qualified path representing Location resource.
410
+ * @returns {string} A string representing the project.
411
+ */
412
+ matchProjectFromLocationName(locationName: string): string | number;
413
+ /**
414
+ * Parse the location from Location resource.
415
+ *
416
+ * @param {string} locationName
417
+ * A fully-qualified path representing Location resource.
418
+ * @returns {string} A string representing the location.
419
+ */
420
+ matchLocationFromLocationName(locationName: string): string | number;
421
+ /**
422
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
423
+ *
424
+ * @param {string} project
425
+ * @param {string} location
426
+ * @param {string} collection
427
+ * @param {string} data_store
428
+ * @returns {string} Resource name string.
429
+ */
430
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
431
+ /**
432
+ * Parse the project from ProjectLocationCollectionDataStore resource.
433
+ *
434
+ * @param {string} projectLocationCollectionDataStoreName
435
+ * A fully-qualified path representing project_location_collection_data_store resource.
436
+ * @returns {string} A string representing the project.
437
+ */
438
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
439
+ /**
440
+ * Parse the location from ProjectLocationCollectionDataStore resource.
441
+ *
442
+ * @param {string} projectLocationCollectionDataStoreName
443
+ * A fully-qualified path representing project_location_collection_data_store resource.
444
+ * @returns {string} A string representing the location.
445
+ */
446
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
447
+ /**
448
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
449
+ *
450
+ * @param {string} projectLocationCollectionDataStoreName
451
+ * A fully-qualified path representing project_location_collection_data_store resource.
452
+ * @returns {string} A string representing the collection.
453
+ */
454
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
455
+ /**
456
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
457
+ *
458
+ * @param {string} projectLocationCollectionDataStoreName
459
+ * A fully-qualified path representing project_location_collection_data_store resource.
460
+ * @returns {string} A string representing the data_store.
461
+ */
462
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
463
+ /**
464
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
465
+ *
466
+ * @param {string} project
467
+ * @param {string} location
468
+ * @param {string} collection
469
+ * @param {string} data_store
470
+ * @param {string} branch
471
+ * @param {string} document
472
+ * @returns {string} Resource name string.
473
+ */
474
+ projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
475
+ /**
476
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
477
+ *
478
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
479
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
480
+ * @returns {string} A string representing the project.
481
+ */
482
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
483
+ /**
484
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
485
+ *
486
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
487
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
488
+ * @returns {string} A string representing the location.
489
+ */
490
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
491
+ /**
492
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
493
+ *
494
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
495
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
496
+ * @returns {string} A string representing the collection.
497
+ */
498
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
499
+ /**
500
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
501
+ *
502
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
503
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
504
+ * @returns {string} A string representing the data_store.
505
+ */
506
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
507
+ /**
508
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
509
+ *
510
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
511
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
512
+ * @returns {string} A string representing the branch.
513
+ */
514
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
515
+ /**
516
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
517
+ *
518
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
519
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
520
+ * @returns {string} A string representing the document.
521
+ */
522
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
523
+ /**
524
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
525
+ *
526
+ * @param {string} project
527
+ * @param {string} location
528
+ * @param {string} collection
529
+ * @param {string} data_store
530
+ * @param {string} branch
531
+ * @param {string} document
532
+ * @param {string} chunk
533
+ * @returns {string} Resource name string.
534
+ */
535
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
536
+ /**
537
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
538
+ *
539
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
540
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
541
+ * @returns {string} A string representing the project.
542
+ */
543
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
544
+ /**
545
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
546
+ *
547
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
548
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
549
+ * @returns {string} A string representing the location.
550
+ */
551
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
552
+ /**
553
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
554
+ *
555
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
556
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
557
+ * @returns {string} A string representing the collection.
558
+ */
559
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
560
+ /**
561
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
562
+ *
563
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
564
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
565
+ * @returns {string} A string representing the data_store.
566
+ */
567
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
568
+ /**
569
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
570
+ *
571
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
572
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
573
+ * @returns {string} A string representing the branch.
574
+ */
575
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
576
+ /**
577
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
578
+ *
579
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
580
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
581
+ * @returns {string} A string representing the document.
582
+ */
583
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
584
+ /**
585
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
586
+ *
587
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
588
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
589
+ * @returns {string} A string representing the chunk.
590
+ */
591
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
592
+ /**
593
+ * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
594
+ *
595
+ * @param {string} project
596
+ * @param {string} location
597
+ * @param {string} collection
598
+ * @param {string} data_store
599
+ * @param {string} conversation
600
+ * @returns {string} Resource name string.
601
+ */
602
+ projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
603
+ /**
604
+ * Parse the project from ProjectLocationCollectionDataStoreConversation resource.
605
+ *
606
+ * @param {string} projectLocationCollectionDataStoreConversationName
607
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
608
+ * @returns {string} A string representing the project.
609
+ */
610
+ matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
611
+ /**
612
+ * Parse the location from ProjectLocationCollectionDataStoreConversation resource.
613
+ *
614
+ * @param {string} projectLocationCollectionDataStoreConversationName
615
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
616
+ * @returns {string} A string representing the location.
617
+ */
618
+ matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
619
+ /**
620
+ * Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
621
+ *
622
+ * @param {string} projectLocationCollectionDataStoreConversationName
623
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
624
+ * @returns {string} A string representing the collection.
625
+ */
626
+ matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
627
+ /**
628
+ * Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
629
+ *
630
+ * @param {string} projectLocationCollectionDataStoreConversationName
631
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
632
+ * @returns {string} A string representing the data_store.
633
+ */
634
+ matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
635
+ /**
636
+ * Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
637
+ *
638
+ * @param {string} projectLocationCollectionDataStoreConversationName
639
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
640
+ * @returns {string} A string representing the conversation.
641
+ */
642
+ matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
643
+ /**
644
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
645
+ *
646
+ * @param {string} project
647
+ * @param {string} location
648
+ * @param {string} collection
649
+ * @param {string} data_store
650
+ * @returns {string} Resource name string.
651
+ */
652
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
653
+ /**
654
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
655
+ *
656
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
657
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
658
+ * @returns {string} A string representing the project.
659
+ */
660
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
661
+ /**
662
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
663
+ *
664
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
665
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
666
+ * @returns {string} A string representing the location.
667
+ */
668
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
669
+ /**
670
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
671
+ *
672
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
673
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
674
+ * @returns {string} A string representing the collection.
675
+ */
676
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
677
+ /**
678
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
679
+ *
680
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
681
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
682
+ * @returns {string} A string representing the data_store.
683
+ */
684
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
685
+ /**
686
+ * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
687
+ *
688
+ * @param {string} project
689
+ * @param {string} location
690
+ * @param {string} collection
691
+ * @param {string} data_store
692
+ * @param {string} schema
693
+ * @returns {string} Resource name string.
694
+ */
695
+ projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
696
+ /**
697
+ * Parse the project from ProjectLocationCollectionDataStoreSchema resource.
698
+ *
699
+ * @param {string} projectLocationCollectionDataStoreSchemaName
700
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
701
+ * @returns {string} A string representing the project.
702
+ */
703
+ matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
704
+ /**
705
+ * Parse the location from ProjectLocationCollectionDataStoreSchema resource.
706
+ *
707
+ * @param {string} projectLocationCollectionDataStoreSchemaName
708
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
709
+ * @returns {string} A string representing the location.
710
+ */
711
+ matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
712
+ /**
713
+ * Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
714
+ *
715
+ * @param {string} projectLocationCollectionDataStoreSchemaName
716
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
717
+ * @returns {string} A string representing the collection.
718
+ */
719
+ matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
720
+ /**
721
+ * Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
722
+ *
723
+ * @param {string} projectLocationCollectionDataStoreSchemaName
724
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
725
+ * @returns {string} A string representing the data_store.
726
+ */
727
+ matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
728
+ /**
729
+ * Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
730
+ *
731
+ * @param {string} projectLocationCollectionDataStoreSchemaName
732
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
733
+ * @returns {string} A string representing the schema.
734
+ */
735
+ matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
736
+ /**
737
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
738
+ *
739
+ * @param {string} project
740
+ * @param {string} location
741
+ * @param {string} collection
742
+ * @param {string} data_store
743
+ * @param {string} serving_config
744
+ * @returns {string} Resource name string.
745
+ */
746
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
747
+ /**
748
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
749
+ *
750
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
751
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
752
+ * @returns {string} A string representing the project.
753
+ */
754
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
755
+ /**
756
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
757
+ *
758
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
759
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
760
+ * @returns {string} A string representing the location.
761
+ */
762
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
763
+ /**
764
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
765
+ *
766
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
767
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
768
+ * @returns {string} A string representing the collection.
769
+ */
770
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
771
+ /**
772
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
773
+ *
774
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
775
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
776
+ * @returns {string} A string representing the data_store.
777
+ */
778
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
779
+ /**
780
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
781
+ *
782
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
783
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
784
+ * @returns {string} A string representing the serving_config.
785
+ */
786
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
787
+ /**
788
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
789
+ *
790
+ * @param {string} project
791
+ * @param {string} location
792
+ * @param {string} collection
793
+ * @param {string} data_store
794
+ * @returns {string} Resource name string.
795
+ */
796
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
797
+ /**
798
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
799
+ *
800
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
801
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
802
+ * @returns {string} A string representing the project.
803
+ */
804
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
805
+ /**
806
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
807
+ *
808
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
809
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
810
+ * @returns {string} A string representing the location.
811
+ */
812
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
813
+ /**
814
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
815
+ *
816
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
817
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
818
+ * @returns {string} A string representing the collection.
819
+ */
820
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
821
+ /**
822
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
823
+ *
824
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
825
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
826
+ * @returns {string} A string representing the data_store.
827
+ */
828
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
829
+ /**
830
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
831
+ *
832
+ * @param {string} project
833
+ * @param {string} location
834
+ * @param {string} collection
835
+ * @param {string} data_store
836
+ * @param {string} target_site
837
+ * @returns {string} Resource name string.
838
+ */
839
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
840
+ /**
841
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
842
+ *
843
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
844
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
845
+ * @returns {string} A string representing the project.
846
+ */
847
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
848
+ /**
849
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
850
+ *
851
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
852
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
853
+ * @returns {string} A string representing the location.
854
+ */
855
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
856
+ /**
857
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
858
+ *
859
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
860
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
861
+ * @returns {string} A string representing the collection.
862
+ */
863
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
864
+ /**
865
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
866
+ *
867
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
868
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
869
+ * @returns {string} A string representing the data_store.
870
+ */
871
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
872
+ /**
873
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
874
+ *
875
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
876
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
877
+ * @returns {string} A string representing the target_site.
878
+ */
879
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
880
+ /**
881
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
882
+ *
883
+ * @param {string} project
884
+ * @param {string} location
885
+ * @param {string} collection
886
+ * @param {string} engine
887
+ * @param {string} conversation
888
+ * @returns {string} Resource name string.
889
+ */
890
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
891
+ /**
892
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
893
+ *
894
+ * @param {string} projectLocationCollectionEngineConversationName
895
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
896
+ * @returns {string} A string representing the project.
897
+ */
898
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
899
+ /**
900
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
901
+ *
902
+ * @param {string} projectLocationCollectionEngineConversationName
903
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
904
+ * @returns {string} A string representing the location.
905
+ */
906
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
907
+ /**
908
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
909
+ *
910
+ * @param {string} projectLocationCollectionEngineConversationName
911
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
912
+ * @returns {string} A string representing the collection.
913
+ */
914
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
915
+ /**
916
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
917
+ *
918
+ * @param {string} projectLocationCollectionEngineConversationName
919
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
920
+ * @returns {string} A string representing the engine.
921
+ */
922
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
923
+ /**
924
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
925
+ *
926
+ * @param {string} projectLocationCollectionEngineConversationName
927
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
928
+ * @returns {string} A string representing the conversation.
929
+ */
930
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
931
+ /**
932
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
933
+ *
934
+ * @param {string} project
935
+ * @param {string} location
936
+ * @param {string} collection
937
+ * @param {string} engine
938
+ * @param {string} serving_config
939
+ * @returns {string} Resource name string.
940
+ */
941
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
942
+ /**
943
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
944
+ *
945
+ * @param {string} projectLocationCollectionEngineServingConfigName
946
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
947
+ * @returns {string} A string representing the project.
948
+ */
949
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
950
+ /**
951
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
952
+ *
953
+ * @param {string} projectLocationCollectionEngineServingConfigName
954
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
955
+ * @returns {string} A string representing the location.
956
+ */
957
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
958
+ /**
959
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
960
+ *
961
+ * @param {string} projectLocationCollectionEngineServingConfigName
962
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
963
+ * @returns {string} A string representing the collection.
964
+ */
965
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
966
+ /**
967
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
968
+ *
969
+ * @param {string} projectLocationCollectionEngineServingConfigName
970
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
971
+ * @returns {string} A string representing the engine.
972
+ */
973
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
974
+ /**
975
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
976
+ *
977
+ * @param {string} projectLocationCollectionEngineServingConfigName
978
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
979
+ * @returns {string} A string representing the serving_config.
980
+ */
981
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
982
+ /**
983
+ * Return a fully-qualified projectLocationDataStore resource name string.
984
+ *
985
+ * @param {string} project
986
+ * @param {string} location
987
+ * @param {string} data_store
988
+ * @returns {string} Resource name string.
989
+ */
990
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
991
+ /**
992
+ * Parse the project from ProjectLocationDataStore resource.
993
+ *
994
+ * @param {string} projectLocationDataStoreName
995
+ * A fully-qualified path representing project_location_data_store resource.
996
+ * @returns {string} A string representing the project.
997
+ */
998
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
999
+ /**
1000
+ * Parse the location from ProjectLocationDataStore resource.
1001
+ *
1002
+ * @param {string} projectLocationDataStoreName
1003
+ * A fully-qualified path representing project_location_data_store resource.
1004
+ * @returns {string} A string representing the location.
1005
+ */
1006
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1007
+ /**
1008
+ * Parse the data_store from ProjectLocationDataStore resource.
1009
+ *
1010
+ * @param {string} projectLocationDataStoreName
1011
+ * A fully-qualified path representing project_location_data_store resource.
1012
+ * @returns {string} A string representing the data_store.
1013
+ */
1014
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1015
+ /**
1016
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
1017
+ *
1018
+ * @param {string} project
1019
+ * @param {string} location
1020
+ * @param {string} data_store
1021
+ * @param {string} branch
1022
+ * @param {string} document
1023
+ * @returns {string} Resource name string.
1024
+ */
1025
+ projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
1026
+ /**
1027
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
1028
+ *
1029
+ * @param {string} projectLocationDataStoreBranchDocumentName
1030
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1031
+ * @returns {string} A string representing the project.
1032
+ */
1033
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1034
+ /**
1035
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
1036
+ *
1037
+ * @param {string} projectLocationDataStoreBranchDocumentName
1038
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1039
+ * @returns {string} A string representing the location.
1040
+ */
1041
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1042
+ /**
1043
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
1044
+ *
1045
+ * @param {string} projectLocationDataStoreBranchDocumentName
1046
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1047
+ * @returns {string} A string representing the data_store.
1048
+ */
1049
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1050
+ /**
1051
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
1052
+ *
1053
+ * @param {string} projectLocationDataStoreBranchDocumentName
1054
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1055
+ * @returns {string} A string representing the branch.
1056
+ */
1057
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1058
+ /**
1059
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
1060
+ *
1061
+ * @param {string} projectLocationDataStoreBranchDocumentName
1062
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1063
+ * @returns {string} A string representing the document.
1064
+ */
1065
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1066
+ /**
1067
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
1068
+ *
1069
+ * @param {string} project
1070
+ * @param {string} location
1071
+ * @param {string} data_store
1072
+ * @param {string} branch
1073
+ * @param {string} document
1074
+ * @param {string} chunk
1075
+ * @returns {string} Resource name string.
1076
+ */
1077
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
1078
+ /**
1079
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
1080
+ *
1081
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1082
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1083
+ * @returns {string} A string representing the project.
1084
+ */
1085
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1086
+ /**
1087
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
1088
+ *
1089
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1090
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1091
+ * @returns {string} A string representing the location.
1092
+ */
1093
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1094
+ /**
1095
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
1096
+ *
1097
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1098
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1099
+ * @returns {string} A string representing the data_store.
1100
+ */
1101
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1102
+ /**
1103
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
1104
+ *
1105
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1106
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1107
+ * @returns {string} A string representing the branch.
1108
+ */
1109
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1110
+ /**
1111
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
1112
+ *
1113
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1114
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1115
+ * @returns {string} A string representing the document.
1116
+ */
1117
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1118
+ /**
1119
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
1120
+ *
1121
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1122
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1123
+ * @returns {string} A string representing the chunk.
1124
+ */
1125
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1126
+ /**
1127
+ * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1128
+ *
1129
+ * @param {string} project
1130
+ * @param {string} location
1131
+ * @param {string} data_store
1132
+ * @param {string} conversation
1133
+ * @returns {string} Resource name string.
1134
+ */
1135
+ projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
1136
+ /**
1137
+ * Parse the project from ProjectLocationDataStoreConversation resource.
1138
+ *
1139
+ * @param {string} projectLocationDataStoreConversationName
1140
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1141
+ * @returns {string} A string representing the project.
1142
+ */
1143
+ matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1144
+ /**
1145
+ * Parse the location from ProjectLocationDataStoreConversation resource.
1146
+ *
1147
+ * @param {string} projectLocationDataStoreConversationName
1148
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1149
+ * @returns {string} A string representing the location.
1150
+ */
1151
+ matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1152
+ /**
1153
+ * Parse the data_store from ProjectLocationDataStoreConversation resource.
1154
+ *
1155
+ * @param {string} projectLocationDataStoreConversationName
1156
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1157
+ * @returns {string} A string representing the data_store.
1158
+ */
1159
+ matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1160
+ /**
1161
+ * Parse the conversation from ProjectLocationDataStoreConversation resource.
1162
+ *
1163
+ * @param {string} projectLocationDataStoreConversationName
1164
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1165
+ * @returns {string} A string representing the conversation.
1166
+ */
1167
+ matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1168
+ /**
1169
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1170
+ *
1171
+ * @param {string} project
1172
+ * @param {string} location
1173
+ * @param {string} data_store
1174
+ * @returns {string} Resource name string.
1175
+ */
1176
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1177
+ /**
1178
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1179
+ *
1180
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1181
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1182
+ * @returns {string} A string representing the project.
1183
+ */
1184
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1185
+ /**
1186
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1187
+ *
1188
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1189
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1190
+ * @returns {string} A string representing the location.
1191
+ */
1192
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1193
+ /**
1194
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1195
+ *
1196
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1197
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1198
+ * @returns {string} A string representing the data_store.
1199
+ */
1200
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1201
+ /**
1202
+ * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1203
+ *
1204
+ * @param {string} project
1205
+ * @param {string} location
1206
+ * @param {string} data_store
1207
+ * @param {string} schema
1208
+ * @returns {string} Resource name string.
1209
+ */
1210
+ projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
1211
+ /**
1212
+ * Parse the project from ProjectLocationDataStoreSchema resource.
1213
+ *
1214
+ * @param {string} projectLocationDataStoreSchemaName
1215
+ * A fully-qualified path representing project_location_data_store_schema resource.
1216
+ * @returns {string} A string representing the project.
1217
+ */
1218
+ matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1219
+ /**
1220
+ * Parse the location from ProjectLocationDataStoreSchema resource.
1221
+ *
1222
+ * @param {string} projectLocationDataStoreSchemaName
1223
+ * A fully-qualified path representing project_location_data_store_schema resource.
1224
+ * @returns {string} A string representing the location.
1225
+ */
1226
+ matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1227
+ /**
1228
+ * Parse the data_store from ProjectLocationDataStoreSchema resource.
1229
+ *
1230
+ * @param {string} projectLocationDataStoreSchemaName
1231
+ * A fully-qualified path representing project_location_data_store_schema resource.
1232
+ * @returns {string} A string representing the data_store.
1233
+ */
1234
+ matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1235
+ /**
1236
+ * Parse the schema from ProjectLocationDataStoreSchema resource.
1237
+ *
1238
+ * @param {string} projectLocationDataStoreSchemaName
1239
+ * A fully-qualified path representing project_location_data_store_schema resource.
1240
+ * @returns {string} A string representing the schema.
1241
+ */
1242
+ matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1243
+ /**
1244
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1245
+ *
1246
+ * @param {string} project
1247
+ * @param {string} location
1248
+ * @param {string} data_store
1249
+ * @param {string} serving_config
1250
+ * @returns {string} Resource name string.
1251
+ */
1252
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1253
+ /**
1254
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1255
+ *
1256
+ * @param {string} projectLocationDataStoreServingConfigName
1257
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1258
+ * @returns {string} A string representing the project.
1259
+ */
1260
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1261
+ /**
1262
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1263
+ *
1264
+ * @param {string} projectLocationDataStoreServingConfigName
1265
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1266
+ * @returns {string} A string representing the location.
1267
+ */
1268
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1269
+ /**
1270
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1271
+ *
1272
+ * @param {string} projectLocationDataStoreServingConfigName
1273
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1274
+ * @returns {string} A string representing the data_store.
1275
+ */
1276
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1277
+ /**
1278
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1279
+ *
1280
+ * @param {string} projectLocationDataStoreServingConfigName
1281
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1282
+ * @returns {string} A string representing the serving_config.
1283
+ */
1284
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1285
+ /**
1286
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1287
+ *
1288
+ * @param {string} project
1289
+ * @param {string} location
1290
+ * @param {string} data_store
1291
+ * @returns {string} Resource name string.
1292
+ */
1293
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1294
+ /**
1295
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1296
+ *
1297
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1298
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1299
+ * @returns {string} A string representing the project.
1300
+ */
1301
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1302
+ /**
1303
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1304
+ *
1305
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1306
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1307
+ * @returns {string} A string representing the location.
1308
+ */
1309
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1310
+ /**
1311
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1312
+ *
1313
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1314
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1315
+ * @returns {string} A string representing the data_store.
1316
+ */
1317
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1318
+ /**
1319
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1320
+ *
1321
+ * @param {string} project
1322
+ * @param {string} location
1323
+ * @param {string} data_store
1324
+ * @param {string} target_site
1325
+ * @returns {string} Resource name string.
1326
+ */
1327
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1328
+ /**
1329
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1330
+ *
1331
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1332
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1333
+ * @returns {string} A string representing the project.
1334
+ */
1335
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1336
+ /**
1337
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1338
+ *
1339
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1340
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1341
+ * @returns {string} A string representing the location.
1342
+ */
1343
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1344
+ /**
1345
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1346
+ *
1347
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1348
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1349
+ * @returns {string} A string representing the data_store.
1350
+ */
1351
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1352
+ /**
1353
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1354
+ *
1355
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1356
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1357
+ * @returns {string} A string representing the target_site.
1358
+ */
1359
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1360
+ /**
1361
+ * Terminate the gRPC channel and close the client.
1362
+ *
1363
+ * The client will no longer be usable and all future behavior is undefined.
1364
+ * @returns {Promise} A promise that resolves when the client is closed.
1365
+ */
1366
+ close(): Promise<void>;
1367
+ }