@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,1406 @@
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 v1beta
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.v1beta.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.v1beta.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/v1beta/grounded_generation_service.check_grounding.js</caption>
139
+ * region_tag:discoveryengine_v1beta_generated_GroundedGenerationService_CheckGrounding_async
140
+ */
141
+ checkGrounding(request?: protos.google.cloud.discoveryengine.v1beta.ICheckGroundingRequest, options?: CallOptions): Promise<[
142
+ protos.google.cloud.discoveryengine.v1beta.ICheckGroundingResponse,
143
+ (protos.google.cloud.discoveryengine.v1beta.ICheckGroundingRequest | undefined),
144
+ {} | undefined
145
+ ]>;
146
+ checkGrounding(request: protos.google.cloud.discoveryengine.v1beta.ICheckGroundingRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1beta.ICheckGroundingResponse, protos.google.cloud.discoveryengine.v1beta.ICheckGroundingRequest | null | undefined, {} | null | undefined>): void;
147
+ checkGrounding(request: protos.google.cloud.discoveryengine.v1beta.ICheckGroundingRequest, callback: Callback<protos.google.cloud.discoveryengine.v1beta.ICheckGroundingResponse, protos.google.cloud.discoveryengine.v1beta.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 engine resource name string.
201
+ *
202
+ * @param {string} project
203
+ * @param {string} location
204
+ * @param {string} collection
205
+ * @param {string} engine
206
+ * @returns {string} Resource name string.
207
+ */
208
+ enginePath(project: string, location: string, collection: string, engine: string): string;
209
+ /**
210
+ * Parse the project from Engine resource.
211
+ *
212
+ * @param {string} engineName
213
+ * A fully-qualified path representing Engine resource.
214
+ * @returns {string} A string representing the project.
215
+ */
216
+ matchProjectFromEngineName(engineName: string): string | number;
217
+ /**
218
+ * Parse the location from Engine resource.
219
+ *
220
+ * @param {string} engineName
221
+ * A fully-qualified path representing Engine resource.
222
+ * @returns {string} A string representing the location.
223
+ */
224
+ matchLocationFromEngineName(engineName: string): string | number;
225
+ /**
226
+ * Parse the collection from Engine resource.
227
+ *
228
+ * @param {string} engineName
229
+ * A fully-qualified path representing Engine resource.
230
+ * @returns {string} A string representing the collection.
231
+ */
232
+ matchCollectionFromEngineName(engineName: string): string | number;
233
+ /**
234
+ * Parse the engine from Engine resource.
235
+ *
236
+ * @param {string} engineName
237
+ * A fully-qualified path representing Engine resource.
238
+ * @returns {string} A string representing the engine.
239
+ */
240
+ matchEngineFromEngineName(engineName: string): string | number;
241
+ /**
242
+ * Return a fully-qualified groundingConfig resource name string.
243
+ *
244
+ * @param {string} project
245
+ * @param {string} location
246
+ * @param {string} grounding_config
247
+ * @returns {string} Resource name string.
248
+ */
249
+ groundingConfigPath(project: string, location: string, groundingConfig: string): string;
250
+ /**
251
+ * Parse the project from GroundingConfig resource.
252
+ *
253
+ * @param {string} groundingConfigName
254
+ * A fully-qualified path representing GroundingConfig resource.
255
+ * @returns {string} A string representing the project.
256
+ */
257
+ matchProjectFromGroundingConfigName(groundingConfigName: string): string | number;
258
+ /**
259
+ * Parse the location from GroundingConfig resource.
260
+ *
261
+ * @param {string} groundingConfigName
262
+ * A fully-qualified path representing GroundingConfig resource.
263
+ * @returns {string} A string representing the location.
264
+ */
265
+ matchLocationFromGroundingConfigName(groundingConfigName: string): string | number;
266
+ /**
267
+ * Parse the grounding_config from GroundingConfig resource.
268
+ *
269
+ * @param {string} groundingConfigName
270
+ * A fully-qualified path representing GroundingConfig resource.
271
+ * @returns {string} A string representing the grounding_config.
272
+ */
273
+ matchGroundingConfigFromGroundingConfigName(groundingConfigName: string): string | number;
274
+ /**
275
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
276
+ *
277
+ * @param {string} project
278
+ * @param {string} location
279
+ * @param {string} collection
280
+ * @param {string} data_store
281
+ * @returns {string} Resource name string.
282
+ */
283
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
284
+ /**
285
+ * Parse the project from ProjectLocationCollectionDataStore resource.
286
+ *
287
+ * @param {string} projectLocationCollectionDataStoreName
288
+ * A fully-qualified path representing project_location_collection_data_store resource.
289
+ * @returns {string} A string representing the project.
290
+ */
291
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
292
+ /**
293
+ * Parse the location from ProjectLocationCollectionDataStore resource.
294
+ *
295
+ * @param {string} projectLocationCollectionDataStoreName
296
+ * A fully-qualified path representing project_location_collection_data_store resource.
297
+ * @returns {string} A string representing the location.
298
+ */
299
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
300
+ /**
301
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
302
+ *
303
+ * @param {string} projectLocationCollectionDataStoreName
304
+ * A fully-qualified path representing project_location_collection_data_store resource.
305
+ * @returns {string} A string representing the collection.
306
+ */
307
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
308
+ /**
309
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
310
+ *
311
+ * @param {string} projectLocationCollectionDataStoreName
312
+ * A fully-qualified path representing project_location_collection_data_store resource.
313
+ * @returns {string} A string representing the data_store.
314
+ */
315
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
316
+ /**
317
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
318
+ *
319
+ * @param {string} project
320
+ * @param {string} location
321
+ * @param {string} collection
322
+ * @param {string} data_store
323
+ * @param {string} branch
324
+ * @param {string} document
325
+ * @returns {string} Resource name string.
326
+ */
327
+ projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
328
+ /**
329
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
330
+ *
331
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
332
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
333
+ * @returns {string} A string representing the project.
334
+ */
335
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
336
+ /**
337
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
338
+ *
339
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
340
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
341
+ * @returns {string} A string representing the location.
342
+ */
343
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
344
+ /**
345
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
346
+ *
347
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
348
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
349
+ * @returns {string} A string representing the collection.
350
+ */
351
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
352
+ /**
353
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
354
+ *
355
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
356
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
357
+ * @returns {string} A string representing the data_store.
358
+ */
359
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
360
+ /**
361
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
362
+ *
363
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
364
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
365
+ * @returns {string} A string representing the branch.
366
+ */
367
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
368
+ /**
369
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
370
+ *
371
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
372
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
373
+ * @returns {string} A string representing the document.
374
+ */
375
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
376
+ /**
377
+ * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
378
+ *
379
+ * @param {string} project
380
+ * @param {string} location
381
+ * @param {string} collection
382
+ * @param {string} data_store
383
+ * @param {string} conversation
384
+ * @returns {string} Resource name string.
385
+ */
386
+ projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
387
+ /**
388
+ * Parse the project from ProjectLocationCollectionDataStoreConversation resource.
389
+ *
390
+ * @param {string} projectLocationCollectionDataStoreConversationName
391
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
392
+ * @returns {string} A string representing the project.
393
+ */
394
+ matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
395
+ /**
396
+ * Parse the location from ProjectLocationCollectionDataStoreConversation resource.
397
+ *
398
+ * @param {string} projectLocationCollectionDataStoreConversationName
399
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
400
+ * @returns {string} A string representing the location.
401
+ */
402
+ matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
403
+ /**
404
+ * Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
405
+ *
406
+ * @param {string} projectLocationCollectionDataStoreConversationName
407
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
408
+ * @returns {string} A string representing the collection.
409
+ */
410
+ matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
411
+ /**
412
+ * Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
413
+ *
414
+ * @param {string} projectLocationCollectionDataStoreConversationName
415
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
416
+ * @returns {string} A string representing the data_store.
417
+ */
418
+ matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
419
+ /**
420
+ * Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
421
+ *
422
+ * @param {string} projectLocationCollectionDataStoreConversationName
423
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
424
+ * @returns {string} A string representing the conversation.
425
+ */
426
+ matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
427
+ /**
428
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
429
+ *
430
+ * @param {string} project
431
+ * @param {string} location
432
+ * @param {string} collection
433
+ * @param {string} data_store
434
+ * @returns {string} Resource name string.
435
+ */
436
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
437
+ /**
438
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
439
+ *
440
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
441
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
442
+ * @returns {string} A string representing the project.
443
+ */
444
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
445
+ /**
446
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
447
+ *
448
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
449
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
450
+ * @returns {string} A string representing the location.
451
+ */
452
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
453
+ /**
454
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
455
+ *
456
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
457
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
458
+ * @returns {string} A string representing the collection.
459
+ */
460
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
461
+ /**
462
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
463
+ *
464
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
465
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
466
+ * @returns {string} A string representing the data_store.
467
+ */
468
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
469
+ /**
470
+ * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
471
+ *
472
+ * @param {string} project
473
+ * @param {string} location
474
+ * @param {string} collection
475
+ * @param {string} data_store
476
+ * @param {string} schema
477
+ * @returns {string} Resource name string.
478
+ */
479
+ projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
480
+ /**
481
+ * Parse the project from ProjectLocationCollectionDataStoreSchema resource.
482
+ *
483
+ * @param {string} projectLocationCollectionDataStoreSchemaName
484
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
485
+ * @returns {string} A string representing the project.
486
+ */
487
+ matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
488
+ /**
489
+ * Parse the location from ProjectLocationCollectionDataStoreSchema resource.
490
+ *
491
+ * @param {string} projectLocationCollectionDataStoreSchemaName
492
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
493
+ * @returns {string} A string representing the location.
494
+ */
495
+ matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
496
+ /**
497
+ * Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
498
+ *
499
+ * @param {string} projectLocationCollectionDataStoreSchemaName
500
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
501
+ * @returns {string} A string representing the collection.
502
+ */
503
+ matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
504
+ /**
505
+ * Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
506
+ *
507
+ * @param {string} projectLocationCollectionDataStoreSchemaName
508
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
509
+ * @returns {string} A string representing the data_store.
510
+ */
511
+ matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
512
+ /**
513
+ * Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
514
+ *
515
+ * @param {string} projectLocationCollectionDataStoreSchemaName
516
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
517
+ * @returns {string} A string representing the schema.
518
+ */
519
+ matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
520
+ /**
521
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
522
+ *
523
+ * @param {string} project
524
+ * @param {string} location
525
+ * @param {string} collection
526
+ * @param {string} data_store
527
+ * @param {string} serving_config
528
+ * @returns {string} Resource name string.
529
+ */
530
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
531
+ /**
532
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
533
+ *
534
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
535
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
536
+ * @returns {string} A string representing the project.
537
+ */
538
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
539
+ /**
540
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
541
+ *
542
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
543
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
544
+ * @returns {string} A string representing the location.
545
+ */
546
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
547
+ /**
548
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
549
+ *
550
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
551
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
552
+ * @returns {string} A string representing the collection.
553
+ */
554
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
555
+ /**
556
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
557
+ *
558
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
559
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
560
+ * @returns {string} A string representing the data_store.
561
+ */
562
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
563
+ /**
564
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
565
+ *
566
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
567
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
568
+ * @returns {string} A string representing the serving_config.
569
+ */
570
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
571
+ /**
572
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
573
+ *
574
+ * @param {string} project
575
+ * @param {string} location
576
+ * @param {string} collection
577
+ * @param {string} data_store
578
+ * @param {string} session
579
+ * @returns {string} Resource name string.
580
+ */
581
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
582
+ /**
583
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
584
+ *
585
+ * @param {string} projectLocationCollectionDataStoreSessionName
586
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
587
+ * @returns {string} A string representing the project.
588
+ */
589
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
590
+ /**
591
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
592
+ *
593
+ * @param {string} projectLocationCollectionDataStoreSessionName
594
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
595
+ * @returns {string} A string representing the location.
596
+ */
597
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
598
+ /**
599
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
600
+ *
601
+ * @param {string} projectLocationCollectionDataStoreSessionName
602
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
603
+ * @returns {string} A string representing the collection.
604
+ */
605
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
606
+ /**
607
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
608
+ *
609
+ * @param {string} projectLocationCollectionDataStoreSessionName
610
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
611
+ * @returns {string} A string representing the data_store.
612
+ */
613
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
614
+ /**
615
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
616
+ *
617
+ * @param {string} projectLocationCollectionDataStoreSessionName
618
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
619
+ * @returns {string} A string representing the session.
620
+ */
621
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
622
+ /**
623
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
624
+ *
625
+ * @param {string} project
626
+ * @param {string} location
627
+ * @param {string} collection
628
+ * @param {string} data_store
629
+ * @param {string} session
630
+ * @param {string} answer
631
+ * @returns {string} Resource name string.
632
+ */
633
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
634
+ /**
635
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
636
+ *
637
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
638
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
639
+ * @returns {string} A string representing the project.
640
+ */
641
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
642
+ /**
643
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
644
+ *
645
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
646
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
647
+ * @returns {string} A string representing the location.
648
+ */
649
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
650
+ /**
651
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
652
+ *
653
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
654
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
655
+ * @returns {string} A string representing the collection.
656
+ */
657
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
658
+ /**
659
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
660
+ *
661
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
662
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
663
+ * @returns {string} A string representing the data_store.
664
+ */
665
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
666
+ /**
667
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
668
+ *
669
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
670
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
671
+ * @returns {string} A string representing the session.
672
+ */
673
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
674
+ /**
675
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
676
+ *
677
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
678
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
679
+ * @returns {string} A string representing the answer.
680
+ */
681
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
682
+ /**
683
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
684
+ *
685
+ * @param {string} project
686
+ * @param {string} location
687
+ * @param {string} collection
688
+ * @param {string} data_store
689
+ * @returns {string} Resource name string.
690
+ */
691
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
692
+ /**
693
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
694
+ *
695
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
696
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
697
+ * @returns {string} A string representing the project.
698
+ */
699
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
700
+ /**
701
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
702
+ *
703
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
704
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
705
+ * @returns {string} A string representing the location.
706
+ */
707
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
708
+ /**
709
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
710
+ *
711
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
712
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
713
+ * @returns {string} A string representing the collection.
714
+ */
715
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
716
+ /**
717
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
718
+ *
719
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
720
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
721
+ * @returns {string} A string representing the data_store.
722
+ */
723
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
724
+ /**
725
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
726
+ *
727
+ * @param {string} project
728
+ * @param {string} location
729
+ * @param {string} collection
730
+ * @param {string} data_store
731
+ * @param {string} target_site
732
+ * @returns {string} Resource name string.
733
+ */
734
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
735
+ /**
736
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
737
+ *
738
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
739
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
740
+ * @returns {string} A string representing the project.
741
+ */
742
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
743
+ /**
744
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
745
+ *
746
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
747
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
748
+ * @returns {string} A string representing the location.
749
+ */
750
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
751
+ /**
752
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
753
+ *
754
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
755
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
756
+ * @returns {string} A string representing the collection.
757
+ */
758
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
759
+ /**
760
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
761
+ *
762
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
763
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
764
+ * @returns {string} A string representing the data_store.
765
+ */
766
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
767
+ /**
768
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
769
+ *
770
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
771
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
772
+ * @returns {string} A string representing the target_site.
773
+ */
774
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
775
+ /**
776
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
777
+ *
778
+ * @param {string} project
779
+ * @param {string} location
780
+ * @param {string} collection
781
+ * @param {string} engine
782
+ * @param {string} conversation
783
+ * @returns {string} Resource name string.
784
+ */
785
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
786
+ /**
787
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
788
+ *
789
+ * @param {string} projectLocationCollectionEngineConversationName
790
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
791
+ * @returns {string} A string representing the project.
792
+ */
793
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
794
+ /**
795
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
796
+ *
797
+ * @param {string} projectLocationCollectionEngineConversationName
798
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
799
+ * @returns {string} A string representing the location.
800
+ */
801
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
802
+ /**
803
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
804
+ *
805
+ * @param {string} projectLocationCollectionEngineConversationName
806
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
807
+ * @returns {string} A string representing the collection.
808
+ */
809
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
810
+ /**
811
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
812
+ *
813
+ * @param {string} projectLocationCollectionEngineConversationName
814
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
815
+ * @returns {string} A string representing the engine.
816
+ */
817
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
818
+ /**
819
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
820
+ *
821
+ * @param {string} projectLocationCollectionEngineConversationName
822
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
823
+ * @returns {string} A string representing the conversation.
824
+ */
825
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
826
+ /**
827
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
828
+ *
829
+ * @param {string} project
830
+ * @param {string} location
831
+ * @param {string} collection
832
+ * @param {string} engine
833
+ * @param {string} serving_config
834
+ * @returns {string} Resource name string.
835
+ */
836
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
837
+ /**
838
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
839
+ *
840
+ * @param {string} projectLocationCollectionEngineServingConfigName
841
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
842
+ * @returns {string} A string representing the project.
843
+ */
844
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
845
+ /**
846
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
847
+ *
848
+ * @param {string} projectLocationCollectionEngineServingConfigName
849
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
850
+ * @returns {string} A string representing the location.
851
+ */
852
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
853
+ /**
854
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
855
+ *
856
+ * @param {string} projectLocationCollectionEngineServingConfigName
857
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
858
+ * @returns {string} A string representing the collection.
859
+ */
860
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
861
+ /**
862
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
863
+ *
864
+ * @param {string} projectLocationCollectionEngineServingConfigName
865
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
866
+ * @returns {string} A string representing the engine.
867
+ */
868
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
869
+ /**
870
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
871
+ *
872
+ * @param {string} projectLocationCollectionEngineServingConfigName
873
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
874
+ * @returns {string} A string representing the serving_config.
875
+ */
876
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
877
+ /**
878
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
879
+ *
880
+ * @param {string} project
881
+ * @param {string} location
882
+ * @param {string} collection
883
+ * @param {string} engine
884
+ * @param {string} session
885
+ * @returns {string} Resource name string.
886
+ */
887
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
888
+ /**
889
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
890
+ *
891
+ * @param {string} projectLocationCollectionEngineSessionName
892
+ * A fully-qualified path representing project_location_collection_engine_session resource.
893
+ * @returns {string} A string representing the project.
894
+ */
895
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
896
+ /**
897
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
898
+ *
899
+ * @param {string} projectLocationCollectionEngineSessionName
900
+ * A fully-qualified path representing project_location_collection_engine_session resource.
901
+ * @returns {string} A string representing the location.
902
+ */
903
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
904
+ /**
905
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
906
+ *
907
+ * @param {string} projectLocationCollectionEngineSessionName
908
+ * A fully-qualified path representing project_location_collection_engine_session resource.
909
+ * @returns {string} A string representing the collection.
910
+ */
911
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
912
+ /**
913
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
914
+ *
915
+ * @param {string} projectLocationCollectionEngineSessionName
916
+ * A fully-qualified path representing project_location_collection_engine_session resource.
917
+ * @returns {string} A string representing the engine.
918
+ */
919
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
920
+ /**
921
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
922
+ *
923
+ * @param {string} projectLocationCollectionEngineSessionName
924
+ * A fully-qualified path representing project_location_collection_engine_session resource.
925
+ * @returns {string} A string representing the session.
926
+ */
927
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
928
+ /**
929
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
930
+ *
931
+ * @param {string} project
932
+ * @param {string} location
933
+ * @param {string} collection
934
+ * @param {string} engine
935
+ * @param {string} session
936
+ * @param {string} answer
937
+ * @returns {string} Resource name string.
938
+ */
939
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
940
+ /**
941
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
942
+ *
943
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
944
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
945
+ * @returns {string} A string representing the project.
946
+ */
947
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
948
+ /**
949
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
950
+ *
951
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
952
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
953
+ * @returns {string} A string representing the location.
954
+ */
955
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
956
+ /**
957
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
958
+ *
959
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
960
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
961
+ * @returns {string} A string representing the collection.
962
+ */
963
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
964
+ /**
965
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
966
+ *
967
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
968
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
969
+ * @returns {string} A string representing the engine.
970
+ */
971
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
972
+ /**
973
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
974
+ *
975
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
976
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
977
+ * @returns {string} A string representing the session.
978
+ */
979
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
980
+ /**
981
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
982
+ *
983
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
984
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
985
+ * @returns {string} A string representing the answer.
986
+ */
987
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
988
+ /**
989
+ * Return a fully-qualified projectLocationDataStore resource name string.
990
+ *
991
+ * @param {string} project
992
+ * @param {string} location
993
+ * @param {string} data_store
994
+ * @returns {string} Resource name string.
995
+ */
996
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
997
+ /**
998
+ * Parse the project from ProjectLocationDataStore resource.
999
+ *
1000
+ * @param {string} projectLocationDataStoreName
1001
+ * A fully-qualified path representing project_location_data_store resource.
1002
+ * @returns {string} A string representing the project.
1003
+ */
1004
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1005
+ /**
1006
+ * Parse the location from ProjectLocationDataStore resource.
1007
+ *
1008
+ * @param {string} projectLocationDataStoreName
1009
+ * A fully-qualified path representing project_location_data_store resource.
1010
+ * @returns {string} A string representing the location.
1011
+ */
1012
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1013
+ /**
1014
+ * Parse the data_store from ProjectLocationDataStore resource.
1015
+ *
1016
+ * @param {string} projectLocationDataStoreName
1017
+ * A fully-qualified path representing project_location_data_store resource.
1018
+ * @returns {string} A string representing the data_store.
1019
+ */
1020
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1021
+ /**
1022
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
1023
+ *
1024
+ * @param {string} project
1025
+ * @param {string} location
1026
+ * @param {string} data_store
1027
+ * @param {string} branch
1028
+ * @param {string} document
1029
+ * @returns {string} Resource name string.
1030
+ */
1031
+ projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
1032
+ /**
1033
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
1034
+ *
1035
+ * @param {string} projectLocationDataStoreBranchDocumentName
1036
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1037
+ * @returns {string} A string representing the project.
1038
+ */
1039
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1040
+ /**
1041
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
1042
+ *
1043
+ * @param {string} projectLocationDataStoreBranchDocumentName
1044
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1045
+ * @returns {string} A string representing the location.
1046
+ */
1047
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1048
+ /**
1049
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
1050
+ *
1051
+ * @param {string} projectLocationDataStoreBranchDocumentName
1052
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1053
+ * @returns {string} A string representing the data_store.
1054
+ */
1055
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1056
+ /**
1057
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
1058
+ *
1059
+ * @param {string} projectLocationDataStoreBranchDocumentName
1060
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1061
+ * @returns {string} A string representing the branch.
1062
+ */
1063
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1064
+ /**
1065
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
1066
+ *
1067
+ * @param {string} projectLocationDataStoreBranchDocumentName
1068
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1069
+ * @returns {string} A string representing the document.
1070
+ */
1071
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1072
+ /**
1073
+ * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1074
+ *
1075
+ * @param {string} project
1076
+ * @param {string} location
1077
+ * @param {string} data_store
1078
+ * @param {string} conversation
1079
+ * @returns {string} Resource name string.
1080
+ */
1081
+ projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
1082
+ /**
1083
+ * Parse the project from ProjectLocationDataStoreConversation resource.
1084
+ *
1085
+ * @param {string} projectLocationDataStoreConversationName
1086
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1087
+ * @returns {string} A string representing the project.
1088
+ */
1089
+ matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1090
+ /**
1091
+ * Parse the location from ProjectLocationDataStoreConversation resource.
1092
+ *
1093
+ * @param {string} projectLocationDataStoreConversationName
1094
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1095
+ * @returns {string} A string representing the location.
1096
+ */
1097
+ matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1098
+ /**
1099
+ * Parse the data_store from ProjectLocationDataStoreConversation resource.
1100
+ *
1101
+ * @param {string} projectLocationDataStoreConversationName
1102
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1103
+ * @returns {string} A string representing the data_store.
1104
+ */
1105
+ matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1106
+ /**
1107
+ * Parse the conversation from ProjectLocationDataStoreConversation resource.
1108
+ *
1109
+ * @param {string} projectLocationDataStoreConversationName
1110
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1111
+ * @returns {string} A string representing the conversation.
1112
+ */
1113
+ matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1114
+ /**
1115
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1116
+ *
1117
+ * @param {string} project
1118
+ * @param {string} location
1119
+ * @param {string} data_store
1120
+ * @returns {string} Resource name string.
1121
+ */
1122
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1123
+ /**
1124
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1125
+ *
1126
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1127
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1128
+ * @returns {string} A string representing the project.
1129
+ */
1130
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1131
+ /**
1132
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1133
+ *
1134
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1135
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1136
+ * @returns {string} A string representing the location.
1137
+ */
1138
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1139
+ /**
1140
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1141
+ *
1142
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1143
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1144
+ * @returns {string} A string representing the data_store.
1145
+ */
1146
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1147
+ /**
1148
+ * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1149
+ *
1150
+ * @param {string} project
1151
+ * @param {string} location
1152
+ * @param {string} data_store
1153
+ * @param {string} schema
1154
+ * @returns {string} Resource name string.
1155
+ */
1156
+ projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
1157
+ /**
1158
+ * Parse the project from ProjectLocationDataStoreSchema resource.
1159
+ *
1160
+ * @param {string} projectLocationDataStoreSchemaName
1161
+ * A fully-qualified path representing project_location_data_store_schema resource.
1162
+ * @returns {string} A string representing the project.
1163
+ */
1164
+ matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1165
+ /**
1166
+ * Parse the location from ProjectLocationDataStoreSchema resource.
1167
+ *
1168
+ * @param {string} projectLocationDataStoreSchemaName
1169
+ * A fully-qualified path representing project_location_data_store_schema resource.
1170
+ * @returns {string} A string representing the location.
1171
+ */
1172
+ matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1173
+ /**
1174
+ * Parse the data_store from ProjectLocationDataStoreSchema resource.
1175
+ *
1176
+ * @param {string} projectLocationDataStoreSchemaName
1177
+ * A fully-qualified path representing project_location_data_store_schema resource.
1178
+ * @returns {string} A string representing the data_store.
1179
+ */
1180
+ matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1181
+ /**
1182
+ * Parse the schema from ProjectLocationDataStoreSchema resource.
1183
+ *
1184
+ * @param {string} projectLocationDataStoreSchemaName
1185
+ * A fully-qualified path representing project_location_data_store_schema resource.
1186
+ * @returns {string} A string representing the schema.
1187
+ */
1188
+ matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1189
+ /**
1190
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1191
+ *
1192
+ * @param {string} project
1193
+ * @param {string} location
1194
+ * @param {string} data_store
1195
+ * @param {string} serving_config
1196
+ * @returns {string} Resource name string.
1197
+ */
1198
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1199
+ /**
1200
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1201
+ *
1202
+ * @param {string} projectLocationDataStoreServingConfigName
1203
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1204
+ * @returns {string} A string representing the project.
1205
+ */
1206
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1207
+ /**
1208
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1209
+ *
1210
+ * @param {string} projectLocationDataStoreServingConfigName
1211
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1212
+ * @returns {string} A string representing the location.
1213
+ */
1214
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1215
+ /**
1216
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1217
+ *
1218
+ * @param {string} projectLocationDataStoreServingConfigName
1219
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1220
+ * @returns {string} A string representing the data_store.
1221
+ */
1222
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1223
+ /**
1224
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1225
+ *
1226
+ * @param {string} projectLocationDataStoreServingConfigName
1227
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1228
+ * @returns {string} A string representing the serving_config.
1229
+ */
1230
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1231
+ /**
1232
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1233
+ *
1234
+ * @param {string} project
1235
+ * @param {string} location
1236
+ * @param {string} data_store
1237
+ * @param {string} session
1238
+ * @returns {string} Resource name string.
1239
+ */
1240
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1241
+ /**
1242
+ * Parse the project from ProjectLocationDataStoreSession resource.
1243
+ *
1244
+ * @param {string} projectLocationDataStoreSessionName
1245
+ * A fully-qualified path representing project_location_data_store_session resource.
1246
+ * @returns {string} A string representing the project.
1247
+ */
1248
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1249
+ /**
1250
+ * Parse the location from ProjectLocationDataStoreSession resource.
1251
+ *
1252
+ * @param {string} projectLocationDataStoreSessionName
1253
+ * A fully-qualified path representing project_location_data_store_session resource.
1254
+ * @returns {string} A string representing the location.
1255
+ */
1256
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1257
+ /**
1258
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1259
+ *
1260
+ * @param {string} projectLocationDataStoreSessionName
1261
+ * A fully-qualified path representing project_location_data_store_session resource.
1262
+ * @returns {string} A string representing the data_store.
1263
+ */
1264
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1265
+ /**
1266
+ * Parse the session from ProjectLocationDataStoreSession resource.
1267
+ *
1268
+ * @param {string} projectLocationDataStoreSessionName
1269
+ * A fully-qualified path representing project_location_data_store_session resource.
1270
+ * @returns {string} A string representing the session.
1271
+ */
1272
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1273
+ /**
1274
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1275
+ *
1276
+ * @param {string} project
1277
+ * @param {string} location
1278
+ * @param {string} data_store
1279
+ * @param {string} session
1280
+ * @param {string} answer
1281
+ * @returns {string} Resource name string.
1282
+ */
1283
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1284
+ /**
1285
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1286
+ *
1287
+ * @param {string} projectLocationDataStoreSessionAnswerName
1288
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1289
+ * @returns {string} A string representing the project.
1290
+ */
1291
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1292
+ /**
1293
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1294
+ *
1295
+ * @param {string} projectLocationDataStoreSessionAnswerName
1296
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1297
+ * @returns {string} A string representing the location.
1298
+ */
1299
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1300
+ /**
1301
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1302
+ *
1303
+ * @param {string} projectLocationDataStoreSessionAnswerName
1304
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1305
+ * @returns {string} A string representing the data_store.
1306
+ */
1307
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1308
+ /**
1309
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1310
+ *
1311
+ * @param {string} projectLocationDataStoreSessionAnswerName
1312
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1313
+ * @returns {string} A string representing the session.
1314
+ */
1315
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1316
+ /**
1317
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1318
+ *
1319
+ * @param {string} projectLocationDataStoreSessionAnswerName
1320
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1321
+ * @returns {string} A string representing the answer.
1322
+ */
1323
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1324
+ /**
1325
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1326
+ *
1327
+ * @param {string} project
1328
+ * @param {string} location
1329
+ * @param {string} data_store
1330
+ * @returns {string} Resource name string.
1331
+ */
1332
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1333
+ /**
1334
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1335
+ *
1336
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1337
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1338
+ * @returns {string} A string representing the project.
1339
+ */
1340
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1341
+ /**
1342
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1343
+ *
1344
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1345
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1346
+ * @returns {string} A string representing the location.
1347
+ */
1348
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1349
+ /**
1350
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1351
+ *
1352
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1353
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1354
+ * @returns {string} A string representing the data_store.
1355
+ */
1356
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1357
+ /**
1358
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1359
+ *
1360
+ * @param {string} project
1361
+ * @param {string} location
1362
+ * @param {string} data_store
1363
+ * @param {string} target_site
1364
+ * @returns {string} Resource name string.
1365
+ */
1366
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1367
+ /**
1368
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1369
+ *
1370
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1371
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1372
+ * @returns {string} A string representing the project.
1373
+ */
1374
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1375
+ /**
1376
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1377
+ *
1378
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1379
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1380
+ * @returns {string} A string representing the location.
1381
+ */
1382
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1383
+ /**
1384
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1385
+ *
1386
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1387
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1388
+ * @returns {string} A string representing the data_store.
1389
+ */
1390
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1391
+ /**
1392
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1393
+ *
1394
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1395
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1396
+ * @returns {string} A string representing the target_site.
1397
+ */
1398
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1399
+ /**
1400
+ * Terminate the gRPC channel and close the client.
1401
+ *
1402
+ * The client will no longer be usable and all future behavior is undefined.
1403
+ * @returns {Promise} A promise that resolves when the client is closed.
1404
+ */
1405
+ close(): Promise<void>;
1406
+ }