@google-cloud/discoveryengine 1.6.0 → 1.7.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 (142) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +24 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/common.proto +13 -1
  4. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +5 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +17 -0
  6. package/build/protos/google/cloud/discoveryengine/v1/document.proto +9 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +6 -0
  8. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +2 -2
  9. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +284 -22
  10. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +3 -0
  11. package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +228 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +125 -21
  13. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +16 -11
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +328 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +41 -1
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +21 -1
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +574 -0
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +19 -0
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +3 -6
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +64 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +2 -2
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/grounded_generation_service.proto +120 -0
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/grounding.proto +55 -0
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +283 -24
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/project.proto +102 -0
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/project_service.proto +171 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +21 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +158 -24
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +9 -3
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +2 -1
  31. package/build/protos/google/cloud/discoveryengine/v1alpha/session.proto +94 -0
  32. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +1 -1
  33. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +328 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +30 -1
  35. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +559 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +3 -6
  37. package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +6 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +2 -2
  39. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +93 -0
  40. package/build/protos/google/cloud/discoveryengine/v1beta/grounded_generation_service.proto +120 -0
  41. package/build/protos/google/cloud/discoveryengine/v1beta/grounding.proto +55 -0
  42. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +283 -24
  43. package/build/protos/google/cloud/discoveryengine/v1beta/rank_service.proto +115 -0
  44. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +142 -22
  45. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +7 -1
  46. package/build/protos/google/cloud/discoveryengine/v1beta/session.proto +94 -0
  47. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +1 -1
  48. package/build/protos/protos.d.ts +44799 -26093
  49. package/build/protos/protos.js +120465 -74222
  50. package/build/protos/protos.json +8911 -4556
  51. package/build/src/index.d.ts +4 -1
  52. package/build/src/index.js +4 -1
  53. package/build/src/v1/conversational_search_service_client.d.ts +4 -0
  54. package/build/src/v1/document_service_client.d.ts +47 -19
  55. package/build/src/v1/index.d.ts +1 -0
  56. package/build/src/v1/index.js +3 -1
  57. package/build/src/v1/recommendation_service_client.d.ts +1087 -0
  58. package/build/src/v1/recommendation_service_client.js +1432 -0
  59. package/build/src/v1/recommendation_service_client_config.json +43 -0
  60. package/build/src/v1/search_service_client.d.ts +27 -9
  61. package/build/src/v1/search_service_client.js +18 -6
  62. package/build/src/v1/search_service_client_config.json +5 -5
  63. package/build/src/v1alpha/acl_config_service_client.d.ts +330 -0
  64. package/build/src/v1alpha/acl_config_service_client.js +454 -0
  65. package/build/src/v1alpha/chunk_service_client.d.ts +330 -0
  66. package/build/src/v1alpha/chunk_service_client.js +454 -0
  67. package/build/src/v1alpha/completion_service_client.d.ts +330 -0
  68. package/build/src/v1alpha/completion_service_client.js +457 -0
  69. package/build/src/v1alpha/conversational_search_service_client.d.ts +674 -0
  70. package/build/src/v1alpha/conversational_search_service_client.js +724 -0
  71. package/build/src/v1alpha/conversational_search_service_client_config.json +35 -0
  72. package/build/src/v1alpha/data_store_service_client.d.ts +330 -0
  73. package/build/src/v1alpha/data_store_service_client.js +457 -0
  74. package/build/src/v1alpha/document_service_client.d.ts +410 -21
  75. package/build/src/v1alpha/document_service_client.js +479 -0
  76. package/build/src/v1alpha/document_service_client_config.json +5 -0
  77. package/build/src/v1alpha/engine_service_client.d.ts +330 -0
  78. package/build/src/v1alpha/engine_service_client.js +457 -0
  79. package/build/src/v1alpha/estimate_billing_service_client.d.ts +330 -0
  80. package/build/src/v1alpha/estimate_billing_service_client.js +457 -0
  81. package/build/src/v1alpha/grounded_generation_service_client.d.ts +1574 -0
  82. package/build/src/v1alpha/grounded_generation_service_client.js +2248 -0
  83. package/build/src/v1alpha/grounded_generation_service_client_config.json +43 -0
  84. package/build/src/v1alpha/index.d.ts +3 -1
  85. package/build/src/v1alpha/index.js +7 -3
  86. package/build/src/v1alpha/project_service_client.d.ts +1756 -0
  87. package/build/src/v1alpha/project_service_client.js +2500 -0
  88. package/build/src/v1alpha/project_service_client_config.json +38 -0
  89. package/build/src/v1alpha/rank_service_client.d.ts +330 -0
  90. package/build/src/v1alpha/rank_service_client.js +454 -0
  91. package/build/src/v1alpha/rank_service_client_config.json +15 -2
  92. package/build/src/v1alpha/recommendation_service_client.d.ts +330 -0
  93. package/build/src/v1alpha/recommendation_service_client.js +454 -0
  94. package/build/src/v1alpha/schema_service_client.d.ts +330 -0
  95. package/build/src/v1alpha/schema_service_client.js +457 -0
  96. package/build/src/v1alpha/search_service_client.d.ts +360 -15
  97. package/build/src/v1alpha/search_service_client.js +474 -10
  98. package/build/src/v1alpha/search_service_client_config.json +5 -5
  99. package/build/src/v1alpha/search_tuning_service_client.d.ts +330 -0
  100. package/build/src/v1alpha/search_tuning_service_client.js +457 -0
  101. package/build/src/v1alpha/serving_config_service_client.d.ts +317 -1
  102. package/build/src/v1alpha/serving_config_service_client.js +434 -1
  103. package/build/src/v1alpha/site_search_engine_service_client.d.ts +330 -0
  104. package/build/src/v1alpha/site_search_engine_service_client.js +457 -0
  105. package/build/src/v1alpha/user_event_service_client.d.ts +330 -0
  106. package/build/src/v1alpha/user_event_service_client.js +457 -0
  107. package/build/src/v1beta/completion_service_client.d.ts +315 -0
  108. package/build/src/v1beta/completion_service_client.js +432 -0
  109. package/build/src/v1beta/conversational_search_service_client.d.ts +659 -0
  110. package/build/src/v1beta/conversational_search_service_client.js +702 -0
  111. package/build/src/v1beta/conversational_search_service_client_config.json +35 -0
  112. package/build/src/v1beta/data_store_service_client.d.ts +315 -0
  113. package/build/src/v1beta/data_store_service_client.js +432 -0
  114. package/build/src/v1beta/document_service_client.d.ts +361 -21
  115. package/build/src/v1beta/document_service_client.js +432 -0
  116. package/build/src/v1beta/engine_service_client.d.ts +410 -0
  117. package/build/src/v1beta/engine_service_client.js +518 -0
  118. package/build/src/v1beta/engine_service_client_config.json +12 -0
  119. package/build/src/v1beta/grounded_generation_service_client.d.ts +1406 -0
  120. package/build/src/v1beta/grounded_generation_service_client.js +2014 -0
  121. package/build/src/v1beta/grounded_generation_service_client_config.json +43 -0
  122. package/build/src/v1beta/index.d.ts +2 -0
  123. package/build/src/v1beta/index.js +5 -1
  124. package/build/src/v1beta/rank_service_client.d.ts +1416 -0
  125. package/build/src/v1beta/rank_service_client.js +2015 -0
  126. package/build/src/v1beta/rank_service_client_config.json +43 -0
  127. package/build/src/v1beta/recommendation_service_client.d.ts +315 -0
  128. package/build/src/v1beta/recommendation_service_client.js +432 -0
  129. package/build/src/v1beta/schema_service_client.d.ts +315 -0
  130. package/build/src/v1beta/schema_service_client.js +432 -0
  131. package/build/src/v1beta/search_service_client.d.ts +342 -12
  132. package/build/src/v1beta/search_service_client.js +450 -8
  133. package/build/src/v1beta/search_service_client_config.json +5 -5
  134. package/build/src/v1beta/search_tuning_service_client.d.ts +315 -0
  135. package/build/src/v1beta/search_tuning_service_client.js +432 -0
  136. package/build/src/v1beta/serving_config_service_client.d.ts +315 -0
  137. package/build/src/v1beta/serving_config_service_client.js +432 -0
  138. package/build/src/v1beta/site_search_engine_service_client.d.ts +315 -0
  139. package/build/src/v1beta/site_search_engine_service_client.js +432 -0
  140. package/build/src/v1beta/user_event_service_client.d.ts +315 -0
  141. package/build/src/v1beta/user_event_service_client.js +432 -0
  142. package/package.json +1 -1
@@ -0,0 +1,1574 @@
1
+ import type * as gax from 'google-gax';
2
+ import type { Callback, CallOptions, Descriptors, ClientOptions, LocationsClient, LocationProtos } from 'google-gax';
3
+ import * as protos from '../../protos/protos';
4
+ /**
5
+ * Service for grounded generation.
6
+ * @class
7
+ * @memberof v1alpha
8
+ */
9
+ export declare class GroundedGenerationServiceClient {
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
+ groundedGenerationServiceStub?: Promise<{
30
+ [name: string]: Function;
31
+ }>;
32
+ /**
33
+ * Construct an instance of GroundedGenerationServiceClient.
34
+ *
35
+ * @param {object} [options] - The configuration object.
36
+ * The options accepted by the constructor are described in detail
37
+ * in [this document](https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#creating-the-client-instance).
38
+ * The common options are:
39
+ * @param {object} [options.credentials] - Credentials object.
40
+ * @param {string} [options.credentials.client_email]
41
+ * @param {string} [options.credentials.private_key]
42
+ * @param {string} [options.email] - Account email address. Required when
43
+ * using a .pem or .p12 keyFilename.
44
+ * @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
45
+ * .p12 key downloaded from the Google Developers Console. If you provide
46
+ * a path to a JSON file, the projectId option below is not necessary.
47
+ * NOTE: .pem and .p12 require you to specify options.email as well.
48
+ * @param {number} [options.port] - The port on which to connect to
49
+ * the remote host.
50
+ * @param {string} [options.projectId] - The project ID from the Google
51
+ * Developer's Console, e.g. 'grape-spaceship-123'. We will also check
52
+ * the environment variable GCLOUD_PROJECT for your project ID. If your
53
+ * app is running in an environment which supports
54
+ * {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials},
55
+ * your project ID will be detected automatically.
56
+ * @param {string} [options.apiEndpoint] - The domain name of the
57
+ * API remote host.
58
+ * @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
59
+ * Follows the structure of {@link gapicConfig}.
60
+ * @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
61
+ * For more information, please check the
62
+ * {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
63
+ * @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
64
+ * need to avoid loading the default gRPC version and want to use the fallback
65
+ * HTTP implementation. Load only fallback version and pass it to the constructor:
66
+ * ```
67
+ * const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
68
+ * const client = new GroundedGenerationServiceClient({fallback: true}, gax);
69
+ * ```
70
+ */
71
+ constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
72
+ /**
73
+ * Initialize the client.
74
+ * Performs asynchronous operations (such as authentication) and prepares the client.
75
+ * This function will be called automatically when any class method is called for the
76
+ * first time, but if you need to initialize it before calling an actual method,
77
+ * feel free to call initialize() directly.
78
+ *
79
+ * You can await on this method if you want to make sure the client is initialized.
80
+ *
81
+ * @returns {Promise} A promise that resolves to an authenticated service stub.
82
+ */
83
+ initialize(): Promise<{
84
+ [name: string]: Function;
85
+ }>;
86
+ /**
87
+ * The DNS address for this API service.
88
+ * @deprecated Use the apiEndpoint method of the client instance.
89
+ * @returns {string} The DNS address for this service.
90
+ */
91
+ static get servicePath(): string;
92
+ /**
93
+ * The DNS address for this API service - same as servicePath.
94
+ * @deprecated Use the apiEndpoint method of the client instance.
95
+ * @returns {string} The DNS address for this service.
96
+ */
97
+ static get apiEndpoint(): string;
98
+ /**
99
+ * The DNS address for this API service.
100
+ * @returns {string} The DNS address for this service.
101
+ */
102
+ get apiEndpoint(): string;
103
+ get universeDomain(): string;
104
+ /**
105
+ * The port for this API service.
106
+ * @returns {number} The default port for this service.
107
+ */
108
+ static get port(): number;
109
+ /**
110
+ * The scopes needed to make gRPC calls for every method defined
111
+ * in this service.
112
+ * @returns {string[]} List of default scopes.
113
+ */
114
+ static get scopes(): string[];
115
+ getProjectId(): Promise<string>;
116
+ getProjectId(callback: Callback<string, undefined, undefined>): void;
117
+ /**
118
+ * Performs a grounding check.
119
+ *
120
+ * @param {Object} request
121
+ * The request object that will be sent.
122
+ * @param {string} request.groundingConfig
123
+ * Required. The resource name of the grounding config, such as
124
+ * `projects/* /locations/global/groundingConfigs/default_grounding_config`.
125
+ * @param {string} request.answerCandidate
126
+ * Answer candidate to check.
127
+ * @param {number[]} request.facts
128
+ * List of facts for the grounding check.
129
+ * We support up to 200 facts.
130
+ * @param {google.cloud.discoveryengine.v1alpha.CheckGroundingSpec} request.groundingSpec
131
+ * Configuration of the grounding check.
132
+ * @param {object} [options]
133
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
134
+ * @returns {Promise} - The promise which resolves to an array.
135
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.CheckGroundingResponse|CheckGroundingResponse}.
136
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
137
+ * for more details and examples.
138
+ * @example <caption>include:samples/generated/v1alpha/grounded_generation_service.check_grounding.js</caption>
139
+ * region_tag:discoveryengine_v1alpha_generated_GroundedGenerationService_CheckGrounding_async
140
+ */
141
+ checkGrounding(request?: protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingRequest, options?: CallOptions): Promise<[
142
+ protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingResponse,
143
+ (protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingRequest | undefined),
144
+ {} | undefined
145
+ ]>;
146
+ checkGrounding(request: protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingResponse, protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingRequest | null | undefined, {} | null | undefined>): void;
147
+ checkGrounding(request: protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingResponse, protos.google.cloud.discoveryengine.v1alpha.ICheckGroundingRequest | null | undefined, {} | null | undefined>): void;
148
+ /**
149
+ * Gets information about a location.
150
+ *
151
+ * @param {Object} request
152
+ * The request object that will be sent.
153
+ * @param {string} request.name
154
+ * Resource name for the location.
155
+ * @param {object} [options]
156
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
157
+ * @returns {Promise} - The promise which resolves to an array.
158
+ * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
159
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
160
+ * for more details and examples.
161
+ * @example
162
+ * ```
163
+ * const [response] = await client.getLocation(request);
164
+ * ```
165
+ */
166
+ 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>;
167
+ /**
168
+ * Lists information about the supported locations for this service. Returns an iterable object.
169
+ *
170
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
171
+ * @param {Object} request
172
+ * The request object that will be sent.
173
+ * @param {string} request.name
174
+ * The resource that owns the locations collection, if applicable.
175
+ * @param {string} request.filter
176
+ * The standard list filter.
177
+ * @param {number} request.pageSize
178
+ * The standard list page size.
179
+ * @param {string} request.pageToken
180
+ * The standard list page token.
181
+ * @param {object} [options]
182
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
183
+ * @returns {Object}
184
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
185
+ * When you iterate the returned iterable, each element will be an object representing
186
+ * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
187
+ * so you can stop the iteration when you don't need more results.
188
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
189
+ * for more details and examples.
190
+ * @example
191
+ * ```
192
+ * const iterable = client.listLocationsAsync(request);
193
+ * for await (const response of iterable) {
194
+ * // process response
195
+ * }
196
+ * ```
197
+ */
198
+ listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
199
+ /**
200
+ * Return a fully-qualified aclConfig resource name string.
201
+ *
202
+ * @param {string} project
203
+ * @param {string} location
204
+ * @returns {string} Resource name string.
205
+ */
206
+ aclConfigPath(project: string, location: string): string;
207
+ /**
208
+ * Parse the project from AclConfig resource.
209
+ *
210
+ * @param {string} aclConfigName
211
+ * A fully-qualified path representing AclConfig resource.
212
+ * @returns {string} A string representing the project.
213
+ */
214
+ matchProjectFromAclConfigName(aclConfigName: string): string | number;
215
+ /**
216
+ * Parse the location from AclConfig resource.
217
+ *
218
+ * @param {string} aclConfigName
219
+ * A fully-qualified path representing AclConfig resource.
220
+ * @returns {string} A string representing the location.
221
+ */
222
+ matchLocationFromAclConfigName(aclConfigName: string): string | number;
223
+ /**
224
+ * Return a fully-qualified engine resource name string.
225
+ *
226
+ * @param {string} project
227
+ * @param {string} location
228
+ * @param {string} collection
229
+ * @param {string} engine
230
+ * @returns {string} Resource name string.
231
+ */
232
+ enginePath(project: string, location: string, collection: string, engine: string): string;
233
+ /**
234
+ * Parse the project from Engine resource.
235
+ *
236
+ * @param {string} engineName
237
+ * A fully-qualified path representing Engine resource.
238
+ * @returns {string} A string representing the project.
239
+ */
240
+ matchProjectFromEngineName(engineName: string): string | number;
241
+ /**
242
+ * Parse the location from Engine resource.
243
+ *
244
+ * @param {string} engineName
245
+ * A fully-qualified path representing Engine resource.
246
+ * @returns {string} A string representing the location.
247
+ */
248
+ matchLocationFromEngineName(engineName: string): string | number;
249
+ /**
250
+ * Parse the collection from Engine resource.
251
+ *
252
+ * @param {string} engineName
253
+ * A fully-qualified path representing Engine resource.
254
+ * @returns {string} A string representing the collection.
255
+ */
256
+ matchCollectionFromEngineName(engineName: string): string | number;
257
+ /**
258
+ * Parse the engine from Engine resource.
259
+ *
260
+ * @param {string} engineName
261
+ * A fully-qualified path representing Engine resource.
262
+ * @returns {string} A string representing the engine.
263
+ */
264
+ matchEngineFromEngineName(engineName: string): string | number;
265
+ /**
266
+ * Return a fully-qualified groundingConfig resource name string.
267
+ *
268
+ * @param {string} project
269
+ * @param {string} location
270
+ * @param {string} grounding_config
271
+ * @returns {string} Resource name string.
272
+ */
273
+ groundingConfigPath(project: string, location: string, groundingConfig: string): string;
274
+ /**
275
+ * Parse the project from GroundingConfig resource.
276
+ *
277
+ * @param {string} groundingConfigName
278
+ * A fully-qualified path representing GroundingConfig resource.
279
+ * @returns {string} A string representing the project.
280
+ */
281
+ matchProjectFromGroundingConfigName(groundingConfigName: string): string | number;
282
+ /**
283
+ * Parse the location from GroundingConfig resource.
284
+ *
285
+ * @param {string} groundingConfigName
286
+ * A fully-qualified path representing GroundingConfig resource.
287
+ * @returns {string} A string representing the location.
288
+ */
289
+ matchLocationFromGroundingConfigName(groundingConfigName: string): string | number;
290
+ /**
291
+ * Parse the grounding_config from GroundingConfig resource.
292
+ *
293
+ * @param {string} groundingConfigName
294
+ * A fully-qualified path representing GroundingConfig resource.
295
+ * @returns {string} A string representing the grounding_config.
296
+ */
297
+ matchGroundingConfigFromGroundingConfigName(groundingConfigName: string): string | number;
298
+ /**
299
+ * Return a fully-qualified project resource name string.
300
+ *
301
+ * @param {string} project
302
+ * @returns {string} Resource name string.
303
+ */
304
+ projectPath(project: string): string;
305
+ /**
306
+ * Parse the project from Project resource.
307
+ *
308
+ * @param {string} projectName
309
+ * A fully-qualified path representing Project resource.
310
+ * @returns {string} A string representing the project.
311
+ */
312
+ matchProjectFromProjectName(projectName: string): string | number;
313
+ /**
314
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
315
+ *
316
+ * @param {string} project
317
+ * @param {string} location
318
+ * @param {string} collection
319
+ * @param {string} data_store
320
+ * @returns {string} Resource name string.
321
+ */
322
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
323
+ /**
324
+ * Parse the project from ProjectLocationCollectionDataStore resource.
325
+ *
326
+ * @param {string} projectLocationCollectionDataStoreName
327
+ * A fully-qualified path representing project_location_collection_data_store resource.
328
+ * @returns {string} A string representing the project.
329
+ */
330
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
331
+ /**
332
+ * Parse the location from ProjectLocationCollectionDataStore resource.
333
+ *
334
+ * @param {string} projectLocationCollectionDataStoreName
335
+ * A fully-qualified path representing project_location_collection_data_store resource.
336
+ * @returns {string} A string representing the location.
337
+ */
338
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
339
+ /**
340
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
341
+ *
342
+ * @param {string} projectLocationCollectionDataStoreName
343
+ * A fully-qualified path representing project_location_collection_data_store resource.
344
+ * @returns {string} A string representing the collection.
345
+ */
346
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
347
+ /**
348
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
349
+ *
350
+ * @param {string} projectLocationCollectionDataStoreName
351
+ * A fully-qualified path representing project_location_collection_data_store resource.
352
+ * @returns {string} A string representing the data_store.
353
+ */
354
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
355
+ /**
356
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
357
+ *
358
+ * @param {string} project
359
+ * @param {string} location
360
+ * @param {string} collection
361
+ * @param {string} data_store
362
+ * @param {string} branch
363
+ * @param {string} document
364
+ * @returns {string} Resource name string.
365
+ */
366
+ projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
367
+ /**
368
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
369
+ *
370
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
371
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
372
+ * @returns {string} A string representing the project.
373
+ */
374
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
375
+ /**
376
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
377
+ *
378
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
379
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
380
+ * @returns {string} A string representing the location.
381
+ */
382
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
383
+ /**
384
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
385
+ *
386
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
387
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
388
+ * @returns {string} A string representing the collection.
389
+ */
390
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
391
+ /**
392
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
393
+ *
394
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
395
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
396
+ * @returns {string} A string representing the data_store.
397
+ */
398
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
399
+ /**
400
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
401
+ *
402
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
403
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
404
+ * @returns {string} A string representing the branch.
405
+ */
406
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
407
+ /**
408
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
409
+ *
410
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
411
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
412
+ * @returns {string} A string representing the document.
413
+ */
414
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
415
+ /**
416
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
417
+ *
418
+ * @param {string} project
419
+ * @param {string} location
420
+ * @param {string} collection
421
+ * @param {string} data_store
422
+ * @param {string} branch
423
+ * @param {string} document
424
+ * @param {string} chunk
425
+ * @returns {string} Resource name string.
426
+ */
427
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
428
+ /**
429
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
430
+ *
431
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
432
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
433
+ * @returns {string} A string representing the project.
434
+ */
435
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
436
+ /**
437
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
438
+ *
439
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
440
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
441
+ * @returns {string} A string representing the location.
442
+ */
443
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
444
+ /**
445
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
446
+ *
447
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
448
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
449
+ * @returns {string} A string representing the collection.
450
+ */
451
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
452
+ /**
453
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
454
+ *
455
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
456
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
457
+ * @returns {string} A string representing the data_store.
458
+ */
459
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
460
+ /**
461
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
462
+ *
463
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
464
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
465
+ * @returns {string} A string representing the branch.
466
+ */
467
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
468
+ /**
469
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
470
+ *
471
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
472
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
473
+ * @returns {string} A string representing the document.
474
+ */
475
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
476
+ /**
477
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
478
+ *
479
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
480
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
481
+ * @returns {string} A string representing the chunk.
482
+ */
483
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
484
+ /**
485
+ * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
486
+ *
487
+ * @param {string} project
488
+ * @param {string} location
489
+ * @param {string} collection
490
+ * @param {string} data_store
491
+ * @param {string} conversation
492
+ * @returns {string} Resource name string.
493
+ */
494
+ projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
495
+ /**
496
+ * Parse the project from ProjectLocationCollectionDataStoreConversation resource.
497
+ *
498
+ * @param {string} projectLocationCollectionDataStoreConversationName
499
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
500
+ * @returns {string} A string representing the project.
501
+ */
502
+ matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
503
+ /**
504
+ * Parse the location from ProjectLocationCollectionDataStoreConversation resource.
505
+ *
506
+ * @param {string} projectLocationCollectionDataStoreConversationName
507
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
508
+ * @returns {string} A string representing the location.
509
+ */
510
+ matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
511
+ /**
512
+ * Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
513
+ *
514
+ * @param {string} projectLocationCollectionDataStoreConversationName
515
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
516
+ * @returns {string} A string representing the collection.
517
+ */
518
+ matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
519
+ /**
520
+ * Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
521
+ *
522
+ * @param {string} projectLocationCollectionDataStoreConversationName
523
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
524
+ * @returns {string} A string representing the data_store.
525
+ */
526
+ matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
527
+ /**
528
+ * Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
529
+ *
530
+ * @param {string} projectLocationCollectionDataStoreConversationName
531
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
532
+ * @returns {string} A string representing the conversation.
533
+ */
534
+ matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
535
+ /**
536
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
537
+ *
538
+ * @param {string} project
539
+ * @param {string} location
540
+ * @param {string} collection
541
+ * @param {string} data_store
542
+ * @returns {string} Resource name string.
543
+ */
544
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
545
+ /**
546
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
547
+ *
548
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
549
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
550
+ * @returns {string} A string representing the project.
551
+ */
552
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
553
+ /**
554
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
555
+ *
556
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
557
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
558
+ * @returns {string} A string representing the location.
559
+ */
560
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
561
+ /**
562
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
563
+ *
564
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
565
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
566
+ * @returns {string} A string representing the collection.
567
+ */
568
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
569
+ /**
570
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
571
+ *
572
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
573
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
574
+ * @returns {string} A string representing the data_store.
575
+ */
576
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
577
+ /**
578
+ * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
579
+ *
580
+ * @param {string} project
581
+ * @param {string} location
582
+ * @param {string} collection
583
+ * @param {string} data_store
584
+ * @param {string} schema
585
+ * @returns {string} Resource name string.
586
+ */
587
+ projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
588
+ /**
589
+ * Parse the project from ProjectLocationCollectionDataStoreSchema resource.
590
+ *
591
+ * @param {string} projectLocationCollectionDataStoreSchemaName
592
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
593
+ * @returns {string} A string representing the project.
594
+ */
595
+ matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
596
+ /**
597
+ * Parse the location from ProjectLocationCollectionDataStoreSchema resource.
598
+ *
599
+ * @param {string} projectLocationCollectionDataStoreSchemaName
600
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
601
+ * @returns {string} A string representing the location.
602
+ */
603
+ matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
604
+ /**
605
+ * Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
606
+ *
607
+ * @param {string} projectLocationCollectionDataStoreSchemaName
608
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
609
+ * @returns {string} A string representing the collection.
610
+ */
611
+ matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
612
+ /**
613
+ * Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
614
+ *
615
+ * @param {string} projectLocationCollectionDataStoreSchemaName
616
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
617
+ * @returns {string} A string representing the data_store.
618
+ */
619
+ matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
620
+ /**
621
+ * Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
622
+ *
623
+ * @param {string} projectLocationCollectionDataStoreSchemaName
624
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
625
+ * @returns {string} A string representing the schema.
626
+ */
627
+ matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
628
+ /**
629
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
630
+ *
631
+ * @param {string} project
632
+ * @param {string} location
633
+ * @param {string} collection
634
+ * @param {string} data_store
635
+ * @param {string} serving_config
636
+ * @returns {string} Resource name string.
637
+ */
638
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
639
+ /**
640
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
641
+ *
642
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
643
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
644
+ * @returns {string} A string representing the project.
645
+ */
646
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
647
+ /**
648
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
649
+ *
650
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
651
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
652
+ * @returns {string} A string representing the location.
653
+ */
654
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
655
+ /**
656
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
657
+ *
658
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
659
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
660
+ * @returns {string} A string representing the collection.
661
+ */
662
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
663
+ /**
664
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
665
+ *
666
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
667
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
668
+ * @returns {string} A string representing the data_store.
669
+ */
670
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
671
+ /**
672
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
673
+ *
674
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
675
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
676
+ * @returns {string} A string representing the serving_config.
677
+ */
678
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
679
+ /**
680
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
681
+ *
682
+ * @param {string} project
683
+ * @param {string} location
684
+ * @param {string} collection
685
+ * @param {string} data_store
686
+ * @param {string} session
687
+ * @returns {string} Resource name string.
688
+ */
689
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
690
+ /**
691
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
692
+ *
693
+ * @param {string} projectLocationCollectionDataStoreSessionName
694
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
695
+ * @returns {string} A string representing the project.
696
+ */
697
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
698
+ /**
699
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
700
+ *
701
+ * @param {string} projectLocationCollectionDataStoreSessionName
702
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
703
+ * @returns {string} A string representing the location.
704
+ */
705
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
706
+ /**
707
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
708
+ *
709
+ * @param {string} projectLocationCollectionDataStoreSessionName
710
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
711
+ * @returns {string} A string representing the collection.
712
+ */
713
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
714
+ /**
715
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
716
+ *
717
+ * @param {string} projectLocationCollectionDataStoreSessionName
718
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
719
+ * @returns {string} A string representing the data_store.
720
+ */
721
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
722
+ /**
723
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
724
+ *
725
+ * @param {string} projectLocationCollectionDataStoreSessionName
726
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
727
+ * @returns {string} A string representing the session.
728
+ */
729
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
730
+ /**
731
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
732
+ *
733
+ * @param {string} project
734
+ * @param {string} location
735
+ * @param {string} collection
736
+ * @param {string} data_store
737
+ * @param {string} session
738
+ * @param {string} answer
739
+ * @returns {string} Resource name string.
740
+ */
741
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
742
+ /**
743
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
744
+ *
745
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
746
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
747
+ * @returns {string} A string representing the project.
748
+ */
749
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
750
+ /**
751
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
752
+ *
753
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
754
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
755
+ * @returns {string} A string representing the location.
756
+ */
757
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
758
+ /**
759
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
760
+ *
761
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
762
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
763
+ * @returns {string} A string representing the collection.
764
+ */
765
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
766
+ /**
767
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
768
+ *
769
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
770
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
771
+ * @returns {string} A string representing the data_store.
772
+ */
773
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
774
+ /**
775
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
776
+ *
777
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
778
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
779
+ * @returns {string} A string representing the session.
780
+ */
781
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
782
+ /**
783
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
784
+ *
785
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
786
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
787
+ * @returns {string} A string representing the answer.
788
+ */
789
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
790
+ /**
791
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
792
+ *
793
+ * @param {string} project
794
+ * @param {string} location
795
+ * @param {string} collection
796
+ * @param {string} data_store
797
+ * @returns {string} Resource name string.
798
+ */
799
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
800
+ /**
801
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
802
+ *
803
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
804
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
805
+ * @returns {string} A string representing the project.
806
+ */
807
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
808
+ /**
809
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
810
+ *
811
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
812
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
813
+ * @returns {string} A string representing the location.
814
+ */
815
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
816
+ /**
817
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
818
+ *
819
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
820
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
821
+ * @returns {string} A string representing the collection.
822
+ */
823
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
824
+ /**
825
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
826
+ *
827
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
828
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
829
+ * @returns {string} A string representing the data_store.
830
+ */
831
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
832
+ /**
833
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
834
+ *
835
+ * @param {string} project
836
+ * @param {string} location
837
+ * @param {string} collection
838
+ * @param {string} data_store
839
+ * @param {string} target_site
840
+ * @returns {string} Resource name string.
841
+ */
842
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
843
+ /**
844
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
845
+ *
846
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
847
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
848
+ * @returns {string} A string representing the project.
849
+ */
850
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
851
+ /**
852
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
853
+ *
854
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
855
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
856
+ * @returns {string} A string representing the location.
857
+ */
858
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
859
+ /**
860
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
861
+ *
862
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
863
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
864
+ * @returns {string} A string representing the collection.
865
+ */
866
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
867
+ /**
868
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
869
+ *
870
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
871
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
872
+ * @returns {string} A string representing the data_store.
873
+ */
874
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
875
+ /**
876
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
877
+ *
878
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
879
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
880
+ * @returns {string} A string representing the target_site.
881
+ */
882
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
883
+ /**
884
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
885
+ *
886
+ * @param {string} project
887
+ * @param {string} location
888
+ * @param {string} collection
889
+ * @param {string} engine
890
+ * @param {string} conversation
891
+ * @returns {string} Resource name string.
892
+ */
893
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
894
+ /**
895
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
896
+ *
897
+ * @param {string} projectLocationCollectionEngineConversationName
898
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
899
+ * @returns {string} A string representing the project.
900
+ */
901
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
902
+ /**
903
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
904
+ *
905
+ * @param {string} projectLocationCollectionEngineConversationName
906
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
907
+ * @returns {string} A string representing the location.
908
+ */
909
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
910
+ /**
911
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
912
+ *
913
+ * @param {string} projectLocationCollectionEngineConversationName
914
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
915
+ * @returns {string} A string representing the collection.
916
+ */
917
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
918
+ /**
919
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
920
+ *
921
+ * @param {string} projectLocationCollectionEngineConversationName
922
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
923
+ * @returns {string} A string representing the engine.
924
+ */
925
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
926
+ /**
927
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
928
+ *
929
+ * @param {string} projectLocationCollectionEngineConversationName
930
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
931
+ * @returns {string} A string representing the conversation.
932
+ */
933
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
934
+ /**
935
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
936
+ *
937
+ * @param {string} project
938
+ * @param {string} location
939
+ * @param {string} collection
940
+ * @param {string} engine
941
+ * @param {string} serving_config
942
+ * @returns {string} Resource name string.
943
+ */
944
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
945
+ /**
946
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
947
+ *
948
+ * @param {string} projectLocationCollectionEngineServingConfigName
949
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
950
+ * @returns {string} A string representing the project.
951
+ */
952
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
953
+ /**
954
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
955
+ *
956
+ * @param {string} projectLocationCollectionEngineServingConfigName
957
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
958
+ * @returns {string} A string representing the location.
959
+ */
960
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
961
+ /**
962
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
963
+ *
964
+ * @param {string} projectLocationCollectionEngineServingConfigName
965
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
966
+ * @returns {string} A string representing the collection.
967
+ */
968
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
969
+ /**
970
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
971
+ *
972
+ * @param {string} projectLocationCollectionEngineServingConfigName
973
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
974
+ * @returns {string} A string representing the engine.
975
+ */
976
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
977
+ /**
978
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
979
+ *
980
+ * @param {string} projectLocationCollectionEngineServingConfigName
981
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
982
+ * @returns {string} A string representing the serving_config.
983
+ */
984
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
985
+ /**
986
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
987
+ *
988
+ * @param {string} project
989
+ * @param {string} location
990
+ * @param {string} collection
991
+ * @param {string} engine
992
+ * @param {string} session
993
+ * @returns {string} Resource name string.
994
+ */
995
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
996
+ /**
997
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
998
+ *
999
+ * @param {string} projectLocationCollectionEngineSessionName
1000
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1001
+ * @returns {string} A string representing the project.
1002
+ */
1003
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1004
+ /**
1005
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1006
+ *
1007
+ * @param {string} projectLocationCollectionEngineSessionName
1008
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1009
+ * @returns {string} A string representing the location.
1010
+ */
1011
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1012
+ /**
1013
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1014
+ *
1015
+ * @param {string} projectLocationCollectionEngineSessionName
1016
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1017
+ * @returns {string} A string representing the collection.
1018
+ */
1019
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1020
+ /**
1021
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1022
+ *
1023
+ * @param {string} projectLocationCollectionEngineSessionName
1024
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1025
+ * @returns {string} A string representing the engine.
1026
+ */
1027
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1028
+ /**
1029
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1030
+ *
1031
+ * @param {string} projectLocationCollectionEngineSessionName
1032
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1033
+ * @returns {string} A string representing the session.
1034
+ */
1035
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1036
+ /**
1037
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1038
+ *
1039
+ * @param {string} project
1040
+ * @param {string} location
1041
+ * @param {string} collection
1042
+ * @param {string} engine
1043
+ * @param {string} session
1044
+ * @param {string} answer
1045
+ * @returns {string} Resource name string.
1046
+ */
1047
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1048
+ /**
1049
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1050
+ *
1051
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1052
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1053
+ * @returns {string} A string representing the project.
1054
+ */
1055
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1056
+ /**
1057
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1058
+ *
1059
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1060
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1061
+ * @returns {string} A string representing the location.
1062
+ */
1063
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1064
+ /**
1065
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1066
+ *
1067
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1068
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1069
+ * @returns {string} A string representing the collection.
1070
+ */
1071
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1072
+ /**
1073
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1074
+ *
1075
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1076
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1077
+ * @returns {string} A string representing the engine.
1078
+ */
1079
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1080
+ /**
1081
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1082
+ *
1083
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1084
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1085
+ * @returns {string} A string representing the session.
1086
+ */
1087
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1088
+ /**
1089
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1090
+ *
1091
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1092
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1093
+ * @returns {string} A string representing the answer.
1094
+ */
1095
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1096
+ /**
1097
+ * Return a fully-qualified projectLocationDataStore resource name string.
1098
+ *
1099
+ * @param {string} project
1100
+ * @param {string} location
1101
+ * @param {string} data_store
1102
+ * @returns {string} Resource name string.
1103
+ */
1104
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
1105
+ /**
1106
+ * Parse the project from ProjectLocationDataStore resource.
1107
+ *
1108
+ * @param {string} projectLocationDataStoreName
1109
+ * A fully-qualified path representing project_location_data_store resource.
1110
+ * @returns {string} A string representing the project.
1111
+ */
1112
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1113
+ /**
1114
+ * Parse the location from ProjectLocationDataStore resource.
1115
+ *
1116
+ * @param {string} projectLocationDataStoreName
1117
+ * A fully-qualified path representing project_location_data_store resource.
1118
+ * @returns {string} A string representing the location.
1119
+ */
1120
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1121
+ /**
1122
+ * Parse the data_store from ProjectLocationDataStore resource.
1123
+ *
1124
+ * @param {string} projectLocationDataStoreName
1125
+ * A fully-qualified path representing project_location_data_store resource.
1126
+ * @returns {string} A string representing the data_store.
1127
+ */
1128
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1129
+ /**
1130
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
1131
+ *
1132
+ * @param {string} project
1133
+ * @param {string} location
1134
+ * @param {string} data_store
1135
+ * @param {string} branch
1136
+ * @param {string} document
1137
+ * @returns {string} Resource name string.
1138
+ */
1139
+ projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
1140
+ /**
1141
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
1142
+ *
1143
+ * @param {string} projectLocationDataStoreBranchDocumentName
1144
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1145
+ * @returns {string} A string representing the project.
1146
+ */
1147
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1148
+ /**
1149
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
1150
+ *
1151
+ * @param {string} projectLocationDataStoreBranchDocumentName
1152
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1153
+ * @returns {string} A string representing the location.
1154
+ */
1155
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1156
+ /**
1157
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
1158
+ *
1159
+ * @param {string} projectLocationDataStoreBranchDocumentName
1160
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1161
+ * @returns {string} A string representing the data_store.
1162
+ */
1163
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1164
+ /**
1165
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
1166
+ *
1167
+ * @param {string} projectLocationDataStoreBranchDocumentName
1168
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1169
+ * @returns {string} A string representing the branch.
1170
+ */
1171
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1172
+ /**
1173
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
1174
+ *
1175
+ * @param {string} projectLocationDataStoreBranchDocumentName
1176
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1177
+ * @returns {string} A string representing the document.
1178
+ */
1179
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1180
+ /**
1181
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
1182
+ *
1183
+ * @param {string} project
1184
+ * @param {string} location
1185
+ * @param {string} data_store
1186
+ * @param {string} branch
1187
+ * @param {string} document
1188
+ * @param {string} chunk
1189
+ * @returns {string} Resource name string.
1190
+ */
1191
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
1192
+ /**
1193
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
1194
+ *
1195
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1196
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1197
+ * @returns {string} A string representing the project.
1198
+ */
1199
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1200
+ /**
1201
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
1202
+ *
1203
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1204
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1205
+ * @returns {string} A string representing the location.
1206
+ */
1207
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1208
+ /**
1209
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
1210
+ *
1211
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1212
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1213
+ * @returns {string} A string representing the data_store.
1214
+ */
1215
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1216
+ /**
1217
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
1218
+ *
1219
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1220
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1221
+ * @returns {string} A string representing the branch.
1222
+ */
1223
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1224
+ /**
1225
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
1226
+ *
1227
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1228
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1229
+ * @returns {string} A string representing the document.
1230
+ */
1231
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1232
+ /**
1233
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
1234
+ *
1235
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
1236
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
1237
+ * @returns {string} A string representing the chunk.
1238
+ */
1239
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
1240
+ /**
1241
+ * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1242
+ *
1243
+ * @param {string} project
1244
+ * @param {string} location
1245
+ * @param {string} data_store
1246
+ * @param {string} conversation
1247
+ * @returns {string} Resource name string.
1248
+ */
1249
+ projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
1250
+ /**
1251
+ * Parse the project from ProjectLocationDataStoreConversation resource.
1252
+ *
1253
+ * @param {string} projectLocationDataStoreConversationName
1254
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1255
+ * @returns {string} A string representing the project.
1256
+ */
1257
+ matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1258
+ /**
1259
+ * Parse the location from ProjectLocationDataStoreConversation resource.
1260
+ *
1261
+ * @param {string} projectLocationDataStoreConversationName
1262
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1263
+ * @returns {string} A string representing the location.
1264
+ */
1265
+ matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1266
+ /**
1267
+ * Parse the data_store from ProjectLocationDataStoreConversation resource.
1268
+ *
1269
+ * @param {string} projectLocationDataStoreConversationName
1270
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1271
+ * @returns {string} A string representing the data_store.
1272
+ */
1273
+ matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1274
+ /**
1275
+ * Parse the conversation from ProjectLocationDataStoreConversation resource.
1276
+ *
1277
+ * @param {string} projectLocationDataStoreConversationName
1278
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1279
+ * @returns {string} A string representing the conversation.
1280
+ */
1281
+ matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1282
+ /**
1283
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1284
+ *
1285
+ * @param {string} project
1286
+ * @param {string} location
1287
+ * @param {string} data_store
1288
+ * @returns {string} Resource name string.
1289
+ */
1290
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1291
+ /**
1292
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1293
+ *
1294
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1295
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1296
+ * @returns {string} A string representing the project.
1297
+ */
1298
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1299
+ /**
1300
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1301
+ *
1302
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1303
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1304
+ * @returns {string} A string representing the location.
1305
+ */
1306
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1307
+ /**
1308
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1309
+ *
1310
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1311
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1312
+ * @returns {string} A string representing the data_store.
1313
+ */
1314
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1315
+ /**
1316
+ * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1317
+ *
1318
+ * @param {string} project
1319
+ * @param {string} location
1320
+ * @param {string} data_store
1321
+ * @param {string} schema
1322
+ * @returns {string} Resource name string.
1323
+ */
1324
+ projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
1325
+ /**
1326
+ * Parse the project from ProjectLocationDataStoreSchema resource.
1327
+ *
1328
+ * @param {string} projectLocationDataStoreSchemaName
1329
+ * A fully-qualified path representing project_location_data_store_schema resource.
1330
+ * @returns {string} A string representing the project.
1331
+ */
1332
+ matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1333
+ /**
1334
+ * Parse the location from ProjectLocationDataStoreSchema resource.
1335
+ *
1336
+ * @param {string} projectLocationDataStoreSchemaName
1337
+ * A fully-qualified path representing project_location_data_store_schema resource.
1338
+ * @returns {string} A string representing the location.
1339
+ */
1340
+ matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1341
+ /**
1342
+ * Parse the data_store from ProjectLocationDataStoreSchema resource.
1343
+ *
1344
+ * @param {string} projectLocationDataStoreSchemaName
1345
+ * A fully-qualified path representing project_location_data_store_schema resource.
1346
+ * @returns {string} A string representing the data_store.
1347
+ */
1348
+ matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1349
+ /**
1350
+ * Parse the schema from ProjectLocationDataStoreSchema resource.
1351
+ *
1352
+ * @param {string} projectLocationDataStoreSchemaName
1353
+ * A fully-qualified path representing project_location_data_store_schema resource.
1354
+ * @returns {string} A string representing the schema.
1355
+ */
1356
+ matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1357
+ /**
1358
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1359
+ *
1360
+ * @param {string} project
1361
+ * @param {string} location
1362
+ * @param {string} data_store
1363
+ * @param {string} serving_config
1364
+ * @returns {string} Resource name string.
1365
+ */
1366
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1367
+ /**
1368
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1369
+ *
1370
+ * @param {string} projectLocationDataStoreServingConfigName
1371
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1372
+ * @returns {string} A string representing the project.
1373
+ */
1374
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1375
+ /**
1376
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1377
+ *
1378
+ * @param {string} projectLocationDataStoreServingConfigName
1379
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1380
+ * @returns {string} A string representing the location.
1381
+ */
1382
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1383
+ /**
1384
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1385
+ *
1386
+ * @param {string} projectLocationDataStoreServingConfigName
1387
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1388
+ * @returns {string} A string representing the data_store.
1389
+ */
1390
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1391
+ /**
1392
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1393
+ *
1394
+ * @param {string} projectLocationDataStoreServingConfigName
1395
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1396
+ * @returns {string} A string representing the serving_config.
1397
+ */
1398
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1399
+ /**
1400
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1401
+ *
1402
+ * @param {string} project
1403
+ * @param {string} location
1404
+ * @param {string} data_store
1405
+ * @param {string} session
1406
+ * @returns {string} Resource name string.
1407
+ */
1408
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1409
+ /**
1410
+ * Parse the project from ProjectLocationDataStoreSession resource.
1411
+ *
1412
+ * @param {string} projectLocationDataStoreSessionName
1413
+ * A fully-qualified path representing project_location_data_store_session resource.
1414
+ * @returns {string} A string representing the project.
1415
+ */
1416
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1417
+ /**
1418
+ * Parse the location from ProjectLocationDataStoreSession resource.
1419
+ *
1420
+ * @param {string} projectLocationDataStoreSessionName
1421
+ * A fully-qualified path representing project_location_data_store_session resource.
1422
+ * @returns {string} A string representing the location.
1423
+ */
1424
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1425
+ /**
1426
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1427
+ *
1428
+ * @param {string} projectLocationDataStoreSessionName
1429
+ * A fully-qualified path representing project_location_data_store_session resource.
1430
+ * @returns {string} A string representing the data_store.
1431
+ */
1432
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1433
+ /**
1434
+ * Parse the session from ProjectLocationDataStoreSession resource.
1435
+ *
1436
+ * @param {string} projectLocationDataStoreSessionName
1437
+ * A fully-qualified path representing project_location_data_store_session resource.
1438
+ * @returns {string} A string representing the session.
1439
+ */
1440
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1441
+ /**
1442
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1443
+ *
1444
+ * @param {string} project
1445
+ * @param {string} location
1446
+ * @param {string} data_store
1447
+ * @param {string} session
1448
+ * @param {string} answer
1449
+ * @returns {string} Resource name string.
1450
+ */
1451
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1452
+ /**
1453
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1454
+ *
1455
+ * @param {string} projectLocationDataStoreSessionAnswerName
1456
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1457
+ * @returns {string} A string representing the project.
1458
+ */
1459
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1460
+ /**
1461
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1462
+ *
1463
+ * @param {string} projectLocationDataStoreSessionAnswerName
1464
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1465
+ * @returns {string} A string representing the location.
1466
+ */
1467
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1468
+ /**
1469
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1470
+ *
1471
+ * @param {string} projectLocationDataStoreSessionAnswerName
1472
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1473
+ * @returns {string} A string representing the data_store.
1474
+ */
1475
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1476
+ /**
1477
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1478
+ *
1479
+ * @param {string} projectLocationDataStoreSessionAnswerName
1480
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1481
+ * @returns {string} A string representing the session.
1482
+ */
1483
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1484
+ /**
1485
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1486
+ *
1487
+ * @param {string} projectLocationDataStoreSessionAnswerName
1488
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1489
+ * @returns {string} A string representing the answer.
1490
+ */
1491
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1492
+ /**
1493
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1494
+ *
1495
+ * @param {string} project
1496
+ * @param {string} location
1497
+ * @param {string} data_store
1498
+ * @returns {string} Resource name string.
1499
+ */
1500
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1501
+ /**
1502
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1503
+ *
1504
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1505
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1506
+ * @returns {string} A string representing the project.
1507
+ */
1508
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1509
+ /**
1510
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1511
+ *
1512
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1513
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1514
+ * @returns {string} A string representing the location.
1515
+ */
1516
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1517
+ /**
1518
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1519
+ *
1520
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1521
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1522
+ * @returns {string} A string representing the data_store.
1523
+ */
1524
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1525
+ /**
1526
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1527
+ *
1528
+ * @param {string} project
1529
+ * @param {string} location
1530
+ * @param {string} data_store
1531
+ * @param {string} target_site
1532
+ * @returns {string} Resource name string.
1533
+ */
1534
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1535
+ /**
1536
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1537
+ *
1538
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1539
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1540
+ * @returns {string} A string representing the project.
1541
+ */
1542
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1543
+ /**
1544
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1545
+ *
1546
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1547
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1548
+ * @returns {string} A string representing the location.
1549
+ */
1550
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1551
+ /**
1552
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1553
+ *
1554
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1555
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1556
+ * @returns {string} A string representing the data_store.
1557
+ */
1558
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1559
+ /**
1560
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1561
+ *
1562
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1563
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1564
+ * @returns {string} A string representing the target_site.
1565
+ */
1566
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1567
+ /**
1568
+ * Terminate the gRPC channel and close the client.
1569
+ *
1570
+ * The client will no longer be usable and all future behavior is undefined.
1571
+ * @returns {Promise} A promise that resolves when the client is closed.
1572
+ */
1573
+ close(): Promise<void>;
1574
+ }