@google-cloud/discoveryengine 1.3.1 → 1.4.0

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