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