@google-cloud/discoveryengine 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +15 -0
  3. package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config.proto +49 -0
  4. package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config_service.proto +79 -0
  5. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +106 -0
  6. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk_service.proto +137 -0
  7. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +97 -4
  8. package/build/protos/google/cloud/discoveryengine/v1alpha/completion.proto +52 -0
  9. package/build/protos/google/cloud/discoveryengine/v1alpha/completion_service.proto +44 -2
  10. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +6 -1
  11. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +44 -0
  12. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +80 -1
  13. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +102 -0
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +127 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +70 -0
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +13 -8
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +3 -2
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/estimate_billing_service.proto +130 -0
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +376 -21
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/purge_config.proto +66 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +115 -0
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +3 -1
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +3 -0
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +221 -30
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +27 -20
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config.proto +271 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +148 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +9 -3
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +7 -4
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +4 -3
  31. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +5 -0
  32. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +22 -0
  33. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +9 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +94 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +3 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +19 -4
  37. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +151 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +4 -3
  39. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +6 -5
  40. package/build/protos/protos.d.ts +18160 -8292
  41. package/build/protos/protos.js +50325 -25400
  42. package/build/protos/protos.json +4864 -2447
  43. package/build/src/v1/completion_service_client.js +10 -7
  44. package/build/src/v1/conversational_search_service_client.js +10 -7
  45. package/build/src/v1/data_store_service_client.js +10 -7
  46. package/build/src/v1/document_service_client.js +10 -7
  47. package/build/src/v1/engine_service_client.js +10 -7
  48. package/build/src/v1/schema_service_client.js +10 -7
  49. package/build/src/v1/search_service_client.js +10 -7
  50. package/build/src/v1/site_search_engine_service_client.js +10 -7
  51. package/build/src/v1/user_event_service_client.js +10 -7
  52. package/build/src/v1alpha/acl_config_service_client.d.ts +1233 -0
  53. package/build/src/v1alpha/acl_config_service_client.js +1768 -0
  54. package/build/src/v1alpha/acl_config_service_client_config.json +34 -0
  55. package/build/src/v1alpha/chunk_service_client.d.ts +1350 -0
  56. package/build/src/v1alpha/chunk_service_client.js +1889 -0
  57. package/build/src/v1alpha/chunk_service_client_config.json +34 -0
  58. package/build/src/v1alpha/completion_service_client.d.ts +588 -3
  59. package/build/src/v1alpha/completion_service_client.js +844 -9
  60. package/build/src/v1alpha/completion_service_client_config.json +10 -0
  61. package/build/src/v1alpha/conversational_search_service_client.d.ts +233 -1
  62. package/build/src/v1alpha/conversational_search_service_client.js +326 -7
  63. package/build/src/v1alpha/data_store_service_client.d.ts +451 -3
  64. package/build/src/v1alpha/data_store_service_client.js +575 -9
  65. package/build/src/v1alpha/data_store_service_client_config.json +8 -0
  66. package/build/src/v1alpha/document_service_client.d.ts +462 -21
  67. package/build/src/v1alpha/document_service_client.js +549 -7
  68. package/build/src/v1alpha/document_service_client_config.json +5 -0
  69. package/build/src/v1alpha/engine_service_client.d.ts +375 -2
  70. package/build/src/v1alpha/engine_service_client.js +527 -7
  71. package/build/src/v1alpha/estimate_billing_service_client.d.ts +1367 -0
  72. package/build/src/v1alpha/estimate_billing_service_client.js +2034 -0
  73. package/build/src/v1alpha/estimate_billing_service_client_config.json +30 -0
  74. package/build/src/v1alpha/index.d.ts +5 -0
  75. package/build/src/v1alpha/index.js +11 -1
  76. package/build/src/v1alpha/rank_service_client.d.ts +1254 -0
  77. package/build/src/v1alpha/rank_service_client.js +1796 -0
  78. package/build/src/v1alpha/rank_service_client_config.json +30 -0
  79. package/build/src/v1alpha/recommendation_service_client.d.ts +231 -1
  80. package/build/src/v1alpha/recommendation_service_client.js +326 -7
  81. package/build/src/v1alpha/schema_service_client.d.ts +372 -0
  82. package/build/src/v1alpha/schema_service_client.js +527 -7
  83. package/build/src/v1alpha/search_service_client.d.ts +288 -30
  84. package/build/src/v1alpha/search_service_client.js +366 -27
  85. package/build/src/v1alpha/search_tuning_service_client.d.ts +373 -1
  86. package/build/src/v1alpha/search_tuning_service_client.js +527 -7
  87. package/build/src/v1alpha/serving_config_service_client.d.ts +1370 -0
  88. package/build/src/v1alpha/serving_config_service_client.js +1939 -0
  89. package/build/src/v1alpha/serving_config_service_client_config.json +38 -0
  90. package/build/src/v1alpha/site_search_engine_service_client.d.ts +372 -0
  91. package/build/src/v1alpha/site_search_engine_service_client.js +527 -7
  92. package/build/src/v1alpha/user_event_service_client.d.ts +372 -0
  93. package/build/src/v1alpha/user_event_service_client.js +527 -7
  94. package/build/src/v1beta/completion_service_client.d.ts +75 -0
  95. package/build/src/v1beta/completion_service_client.js +114 -7
  96. package/build/src/v1beta/conversational_search_service_client.d.ts +79 -0
  97. package/build/src/v1beta/conversational_search_service_client.js +114 -7
  98. package/build/src/v1beta/data_store_service_client.d.ts +75 -0
  99. package/build/src/v1beta/data_store_service_client.js +114 -7
  100. package/build/src/v1beta/document_service_client.d.ts +75 -0
  101. package/build/src/v1beta/document_service_client.js +114 -7
  102. package/build/src/v1beta/engine_service_client.d.ts +75 -0
  103. package/build/src/v1beta/engine_service_client.js +114 -7
  104. package/build/src/v1beta/index.d.ts +1 -0
  105. package/build/src/v1beta/index.js +3 -1
  106. package/build/src/v1beta/recommendation_service_client.d.ts +75 -0
  107. package/build/src/v1beta/recommendation_service_client.js +114 -7
  108. package/build/src/v1beta/schema_service_client.d.ts +75 -0
  109. package/build/src/v1beta/schema_service_client.js +114 -7
  110. package/build/src/v1beta/search_service_client.d.ts +81 -0
  111. package/build/src/v1beta/search_service_client.js +118 -7
  112. package/build/src/v1beta/search_tuning_service_client.d.ts +1196 -0
  113. package/build/src/v1beta/search_tuning_service_client.js +1784 -0
  114. package/build/src/v1beta/search_tuning_service_client_config.json +30 -0
  115. package/build/src/v1beta/serving_config_service_client.d.ts +123 -8
  116. package/build/src/v1beta/serving_config_service_client.js +176 -12
  117. package/build/src/v1beta/site_search_engine_service_client.d.ts +75 -0
  118. package/build/src/v1beta/site_search_engine_service_client.js +114 -7
  119. package/build/src/v1beta/user_event_service_client.d.ts +75 -0
  120. package/build/src/v1beta/user_event_service_client.js +114 -7
  121. package/package.json +3 -3
@@ -0,0 +1,1233 @@
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 managing Acl Configuration.
6
+ * @class
7
+ * @memberof v1alpha
8
+ */
9
+ export declare class AclConfigServiceClient {
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
+ aclConfigServiceStub?: Promise<{
30
+ [name: string]: Function;
31
+ }>;
32
+ /**
33
+ * Construct an instance of AclConfigServiceClient.
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 AclConfigServiceClient({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
+ * Default Acl Configuration for use in a location of a customer's project.
119
+ * Updates will only reflect to new data stores. Existing data stores will
120
+ * still use the old value.
121
+ *
122
+ * @param {Object} request
123
+ * The request object that will be sent.
124
+ * @param {google.cloud.discoveryengine.v1alpha.AclConfig} request.aclConfig
125
+ * @param {object} [options]
126
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
127
+ * @returns {Promise} - The promise which resolves to an array.
128
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.AclConfig|AclConfig}.
129
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
130
+ * for more details and examples.
131
+ * @example <caption>include:samples/generated/v1alpha/acl_config_service.update_acl_config.js</caption>
132
+ * region_tag:discoveryengine_v1alpha_generated_AclConfigService_UpdateAclConfig_async
133
+ */
134
+ updateAclConfig(request?: protos.google.cloud.discoveryengine.v1alpha.IUpdateAclConfigRequest, options?: CallOptions): Promise<[
135
+ protos.google.cloud.discoveryengine.v1alpha.IAclConfig,
136
+ (protos.google.cloud.discoveryengine.v1alpha.IUpdateAclConfigRequest | undefined),
137
+ {} | undefined
138
+ ]>;
139
+ updateAclConfig(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateAclConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IAclConfig, protos.google.cloud.discoveryengine.v1alpha.IUpdateAclConfigRequest | null | undefined, {} | null | undefined>): void;
140
+ updateAclConfig(request: protos.google.cloud.discoveryengine.v1alpha.IUpdateAclConfigRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IAclConfig, protos.google.cloud.discoveryengine.v1alpha.IUpdateAclConfigRequest | null | undefined, {} | null | undefined>): void;
141
+ /**
142
+ * Gets the {@link protos.google.cloud.discoveryengine.v1alpha.AclConfig|AclConfig}.
143
+ *
144
+ * @param {Object} request
145
+ * The request object that will be sent.
146
+ * @param {string} request.name
147
+ * Required. Resource name of
148
+ * {@link protos.google.cloud.discoveryengine.v1alpha.AclConfig|AclConfig}, such as
149
+ * `projects/* /locations/* /aclConfig`.
150
+ *
151
+ * If the caller does not have permission to access the
152
+ * {@link protos.google.cloud.discoveryengine.v1alpha.AclConfig|AclConfig}, regardless of
153
+ * whether or not it exists, a PERMISSION_DENIED error is returned.
154
+ * @param {object} [options]
155
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
156
+ * @returns {Promise} - The promise which resolves to an array.
157
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.AclConfig|AclConfig}.
158
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
159
+ * for more details and examples.
160
+ * @example <caption>include:samples/generated/v1alpha/acl_config_service.get_acl_config.js</caption>
161
+ * region_tag:discoveryengine_v1alpha_generated_AclConfigService_GetAclConfig_async
162
+ */
163
+ getAclConfig(request?: protos.google.cloud.discoveryengine.v1alpha.IGetAclConfigRequest, options?: CallOptions): Promise<[
164
+ protos.google.cloud.discoveryengine.v1alpha.IAclConfig,
165
+ (protos.google.cloud.discoveryengine.v1alpha.IGetAclConfigRequest | undefined),
166
+ {} | undefined
167
+ ]>;
168
+ getAclConfig(request: protos.google.cloud.discoveryengine.v1alpha.IGetAclConfigRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IAclConfig, protos.google.cloud.discoveryengine.v1alpha.IGetAclConfigRequest | null | undefined, {} | null | undefined>): void;
169
+ getAclConfig(request: protos.google.cloud.discoveryengine.v1alpha.IGetAclConfigRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IAclConfig, protos.google.cloud.discoveryengine.v1alpha.IGetAclConfigRequest | null | undefined, {} | null | undefined>): void;
170
+ /**
171
+ * Gets information about a location.
172
+ *
173
+ * @param {Object} request
174
+ * The request object that will be sent.
175
+ * @param {string} request.name
176
+ * Resource name for the location.
177
+ * @param {object} [options]
178
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
179
+ * @returns {Promise} - The promise which resolves to an array.
180
+ * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
181
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
182
+ * for more details and examples.
183
+ * @example
184
+ * ```
185
+ * const [response] = await client.getLocation(request);
186
+ * ```
187
+ */
188
+ 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>;
189
+ /**
190
+ * Lists information about the supported locations for this service. Returns an iterable object.
191
+ *
192
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
193
+ * @param {Object} request
194
+ * The request object that will be sent.
195
+ * @param {string} request.name
196
+ * The resource that owns the locations collection, if applicable.
197
+ * @param {string} request.filter
198
+ * The standard list filter.
199
+ * @param {number} request.pageSize
200
+ * The standard list page size.
201
+ * @param {string} request.pageToken
202
+ * The standard list page token.
203
+ * @param {object} [options]
204
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
205
+ * @returns {Object}
206
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
207
+ * When you iterate the returned iterable, each element will be an object representing
208
+ * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
209
+ * so you can stop the iteration when you don't need more results.
210
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
211
+ * for more details and examples.
212
+ * @example
213
+ * ```
214
+ * const iterable = client.listLocationsAsync(request);
215
+ * for await (const response of iterable) {
216
+ * // process response
217
+ * }
218
+ * ```
219
+ */
220
+ listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
221
+ /**
222
+ * Return a fully-qualified aclConfig resource name string.
223
+ *
224
+ * @param {string} project
225
+ * @param {string} location
226
+ * @returns {string} Resource name string.
227
+ */
228
+ aclConfigPath(project: string, location: string): string;
229
+ /**
230
+ * Parse the project from AclConfig resource.
231
+ *
232
+ * @param {string} aclConfigName
233
+ * A fully-qualified path representing AclConfig resource.
234
+ * @returns {string} A string representing the project.
235
+ */
236
+ matchProjectFromAclConfigName(aclConfigName: string): string | number;
237
+ /**
238
+ * Parse the location from AclConfig resource.
239
+ *
240
+ * @param {string} aclConfigName
241
+ * A fully-qualified path representing AclConfig resource.
242
+ * @returns {string} A string representing the location.
243
+ */
244
+ matchLocationFromAclConfigName(aclConfigName: string): string | number;
245
+ /**
246
+ * Return a fully-qualified engine resource name string.
247
+ *
248
+ * @param {string} project
249
+ * @param {string} location
250
+ * @param {string} collection
251
+ * @param {string} engine
252
+ * @returns {string} Resource name string.
253
+ */
254
+ enginePath(project: string, location: string, collection: string, engine: string): string;
255
+ /**
256
+ * Parse the project from Engine resource.
257
+ *
258
+ * @param {string} engineName
259
+ * A fully-qualified path representing Engine resource.
260
+ * @returns {string} A string representing the project.
261
+ */
262
+ matchProjectFromEngineName(engineName: string): string | number;
263
+ /**
264
+ * Parse the location from Engine resource.
265
+ *
266
+ * @param {string} engineName
267
+ * A fully-qualified path representing Engine resource.
268
+ * @returns {string} A string representing the location.
269
+ */
270
+ matchLocationFromEngineName(engineName: string): string | number;
271
+ /**
272
+ * Parse the collection from Engine resource.
273
+ *
274
+ * @param {string} engineName
275
+ * A fully-qualified path representing Engine resource.
276
+ * @returns {string} A string representing the collection.
277
+ */
278
+ matchCollectionFromEngineName(engineName: string): string | number;
279
+ /**
280
+ * Parse the engine from Engine resource.
281
+ *
282
+ * @param {string} engineName
283
+ * A fully-qualified path representing Engine resource.
284
+ * @returns {string} A string representing the engine.
285
+ */
286
+ matchEngineFromEngineName(engineName: string): string | number;
287
+ /**
288
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
289
+ *
290
+ * @param {string} project
291
+ * @param {string} location
292
+ * @param {string} collection
293
+ * @param {string} data_store
294
+ * @returns {string} Resource name string.
295
+ */
296
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
297
+ /**
298
+ * Parse the project from ProjectLocationCollectionDataStore resource.
299
+ *
300
+ * @param {string} projectLocationCollectionDataStoreName
301
+ * A fully-qualified path representing project_location_collection_data_store resource.
302
+ * @returns {string} A string representing the project.
303
+ */
304
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
305
+ /**
306
+ * Parse the location from ProjectLocationCollectionDataStore resource.
307
+ *
308
+ * @param {string} projectLocationCollectionDataStoreName
309
+ * A fully-qualified path representing project_location_collection_data_store resource.
310
+ * @returns {string} A string representing the location.
311
+ */
312
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
313
+ /**
314
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
315
+ *
316
+ * @param {string} projectLocationCollectionDataStoreName
317
+ * A fully-qualified path representing project_location_collection_data_store resource.
318
+ * @returns {string} A string representing the collection.
319
+ */
320
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
321
+ /**
322
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
323
+ *
324
+ * @param {string} projectLocationCollectionDataStoreName
325
+ * A fully-qualified path representing project_location_collection_data_store resource.
326
+ * @returns {string} A string representing the data_store.
327
+ */
328
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
329
+ /**
330
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
331
+ *
332
+ * @param {string} project
333
+ * @param {string} location
334
+ * @param {string} collection
335
+ * @param {string} data_store
336
+ * @param {string} branch
337
+ * @param {string} document
338
+ * @returns {string} Resource name string.
339
+ */
340
+ projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
341
+ /**
342
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
343
+ *
344
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
345
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
346
+ * @returns {string} A string representing the project.
347
+ */
348
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
349
+ /**
350
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
351
+ *
352
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
353
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
354
+ * @returns {string} A string representing the location.
355
+ */
356
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
357
+ /**
358
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
359
+ *
360
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
361
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
362
+ * @returns {string} A string representing the collection.
363
+ */
364
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
365
+ /**
366
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
367
+ *
368
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
369
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
370
+ * @returns {string} A string representing the data_store.
371
+ */
372
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
373
+ /**
374
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
375
+ *
376
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
377
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
378
+ * @returns {string} A string representing the branch.
379
+ */
380
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
381
+ /**
382
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
383
+ *
384
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
385
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
386
+ * @returns {string} A string representing the document.
387
+ */
388
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
389
+ /**
390
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
391
+ *
392
+ * @param {string} project
393
+ * @param {string} location
394
+ * @param {string} collection
395
+ * @param {string} data_store
396
+ * @param {string} branch
397
+ * @param {string} document
398
+ * @param {string} chunk
399
+ * @returns {string} Resource name string.
400
+ */
401
+ projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
402
+ /**
403
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
404
+ *
405
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
406
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
407
+ * @returns {string} A string representing the project.
408
+ */
409
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
410
+ /**
411
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
412
+ *
413
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
414
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
415
+ * @returns {string} A string representing the location.
416
+ */
417
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
418
+ /**
419
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
420
+ *
421
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
422
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
423
+ * @returns {string} A string representing the collection.
424
+ */
425
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
426
+ /**
427
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
428
+ *
429
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
430
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
431
+ * @returns {string} A string representing the data_store.
432
+ */
433
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
434
+ /**
435
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
436
+ *
437
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
438
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
439
+ * @returns {string} A string representing the branch.
440
+ */
441
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
442
+ /**
443
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
444
+ *
445
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
446
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
447
+ * @returns {string} A string representing the document.
448
+ */
449
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
450
+ /**
451
+ * Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
452
+ *
453
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
454
+ * A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
455
+ * @returns {string} A string representing the chunk.
456
+ */
457
+ matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
458
+ /**
459
+ * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
460
+ *
461
+ * @param {string} project
462
+ * @param {string} location
463
+ * @param {string} collection
464
+ * @param {string} data_store
465
+ * @param {string} conversation
466
+ * @returns {string} Resource name string.
467
+ */
468
+ projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
469
+ /**
470
+ * Parse the project from ProjectLocationCollectionDataStoreConversation resource.
471
+ *
472
+ * @param {string} projectLocationCollectionDataStoreConversationName
473
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
474
+ * @returns {string} A string representing the project.
475
+ */
476
+ matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
477
+ /**
478
+ * Parse the location from ProjectLocationCollectionDataStoreConversation resource.
479
+ *
480
+ * @param {string} projectLocationCollectionDataStoreConversationName
481
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
482
+ * @returns {string} A string representing the location.
483
+ */
484
+ matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
485
+ /**
486
+ * Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
487
+ *
488
+ * @param {string} projectLocationCollectionDataStoreConversationName
489
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
490
+ * @returns {string} A string representing the collection.
491
+ */
492
+ matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
493
+ /**
494
+ * Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
495
+ *
496
+ * @param {string} projectLocationCollectionDataStoreConversationName
497
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
498
+ * @returns {string} A string representing the data_store.
499
+ */
500
+ matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
501
+ /**
502
+ * Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
503
+ *
504
+ * @param {string} projectLocationCollectionDataStoreConversationName
505
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
506
+ * @returns {string} A string representing the conversation.
507
+ */
508
+ matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
509
+ /**
510
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
511
+ *
512
+ * @param {string} project
513
+ * @param {string} location
514
+ * @param {string} collection
515
+ * @param {string} data_store
516
+ * @returns {string} Resource name string.
517
+ */
518
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
519
+ /**
520
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
521
+ *
522
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
523
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
524
+ * @returns {string} A string representing the project.
525
+ */
526
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
527
+ /**
528
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
529
+ *
530
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
531
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
532
+ * @returns {string} A string representing the location.
533
+ */
534
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
535
+ /**
536
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
537
+ *
538
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
539
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
540
+ * @returns {string} A string representing the collection.
541
+ */
542
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
543
+ /**
544
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
545
+ *
546
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
547
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
548
+ * @returns {string} A string representing the data_store.
549
+ */
550
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
551
+ /**
552
+ * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
553
+ *
554
+ * @param {string} project
555
+ * @param {string} location
556
+ * @param {string} collection
557
+ * @param {string} data_store
558
+ * @param {string} schema
559
+ * @returns {string} Resource name string.
560
+ */
561
+ projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
562
+ /**
563
+ * Parse the project from ProjectLocationCollectionDataStoreSchema resource.
564
+ *
565
+ * @param {string} projectLocationCollectionDataStoreSchemaName
566
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
567
+ * @returns {string} A string representing the project.
568
+ */
569
+ matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
570
+ /**
571
+ * Parse the location from ProjectLocationCollectionDataStoreSchema resource.
572
+ *
573
+ * @param {string} projectLocationCollectionDataStoreSchemaName
574
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
575
+ * @returns {string} A string representing the location.
576
+ */
577
+ matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
578
+ /**
579
+ * Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
580
+ *
581
+ * @param {string} projectLocationCollectionDataStoreSchemaName
582
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
583
+ * @returns {string} A string representing the collection.
584
+ */
585
+ matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
586
+ /**
587
+ * Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
588
+ *
589
+ * @param {string} projectLocationCollectionDataStoreSchemaName
590
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
591
+ * @returns {string} A string representing the data_store.
592
+ */
593
+ matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
594
+ /**
595
+ * Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
596
+ *
597
+ * @param {string} projectLocationCollectionDataStoreSchemaName
598
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
599
+ * @returns {string} A string representing the schema.
600
+ */
601
+ matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
602
+ /**
603
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
604
+ *
605
+ * @param {string} project
606
+ * @param {string} location
607
+ * @param {string} collection
608
+ * @param {string} data_store
609
+ * @param {string} serving_config
610
+ * @returns {string} Resource name string.
611
+ */
612
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
613
+ /**
614
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
615
+ *
616
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
617
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
618
+ * @returns {string} A string representing the project.
619
+ */
620
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
621
+ /**
622
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
623
+ *
624
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
625
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
626
+ * @returns {string} A string representing the location.
627
+ */
628
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
629
+ /**
630
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
631
+ *
632
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
633
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
634
+ * @returns {string} A string representing the collection.
635
+ */
636
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
637
+ /**
638
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
639
+ *
640
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
641
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
642
+ * @returns {string} A string representing the data_store.
643
+ */
644
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
645
+ /**
646
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
647
+ *
648
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
649
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
650
+ * @returns {string} A string representing the serving_config.
651
+ */
652
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
653
+ /**
654
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
655
+ *
656
+ * @param {string} project
657
+ * @param {string} location
658
+ * @param {string} collection
659
+ * @param {string} data_store
660
+ * @returns {string} Resource name string.
661
+ */
662
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
663
+ /**
664
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
665
+ *
666
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
667
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
668
+ * @returns {string} A string representing the project.
669
+ */
670
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
671
+ /**
672
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
673
+ *
674
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
675
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
676
+ * @returns {string} A string representing the location.
677
+ */
678
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
679
+ /**
680
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
681
+ *
682
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
683
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
684
+ * @returns {string} A string representing the collection.
685
+ */
686
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
687
+ /**
688
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
689
+ *
690
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
691
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
692
+ * @returns {string} A string representing the data_store.
693
+ */
694
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
695
+ /**
696
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
697
+ *
698
+ * @param {string} project
699
+ * @param {string} location
700
+ * @param {string} collection
701
+ * @param {string} data_store
702
+ * @param {string} target_site
703
+ * @returns {string} Resource name string.
704
+ */
705
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
706
+ /**
707
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
708
+ *
709
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
710
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
711
+ * @returns {string} A string representing the project.
712
+ */
713
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
714
+ /**
715
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
716
+ *
717
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
718
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
719
+ * @returns {string} A string representing the location.
720
+ */
721
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
722
+ /**
723
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
724
+ *
725
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
726
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
727
+ * @returns {string} A string representing the collection.
728
+ */
729
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
730
+ /**
731
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
732
+ *
733
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
734
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
735
+ * @returns {string} A string representing the data_store.
736
+ */
737
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
738
+ /**
739
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
740
+ *
741
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
742
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
743
+ * @returns {string} A string representing the target_site.
744
+ */
745
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
746
+ /**
747
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
748
+ *
749
+ * @param {string} project
750
+ * @param {string} location
751
+ * @param {string} collection
752
+ * @param {string} engine
753
+ * @param {string} conversation
754
+ * @returns {string} Resource name string.
755
+ */
756
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
757
+ /**
758
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
759
+ *
760
+ * @param {string} projectLocationCollectionEngineConversationName
761
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
762
+ * @returns {string} A string representing the project.
763
+ */
764
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
765
+ /**
766
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
767
+ *
768
+ * @param {string} projectLocationCollectionEngineConversationName
769
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
770
+ * @returns {string} A string representing the location.
771
+ */
772
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
773
+ /**
774
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
775
+ *
776
+ * @param {string} projectLocationCollectionEngineConversationName
777
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
778
+ * @returns {string} A string representing the collection.
779
+ */
780
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
781
+ /**
782
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
783
+ *
784
+ * @param {string} projectLocationCollectionEngineConversationName
785
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
786
+ * @returns {string} A string representing the engine.
787
+ */
788
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
789
+ /**
790
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
791
+ *
792
+ * @param {string} projectLocationCollectionEngineConversationName
793
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
794
+ * @returns {string} A string representing the conversation.
795
+ */
796
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
797
+ /**
798
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
799
+ *
800
+ * @param {string} project
801
+ * @param {string} location
802
+ * @param {string} collection
803
+ * @param {string} engine
804
+ * @param {string} serving_config
805
+ * @returns {string} Resource name string.
806
+ */
807
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
808
+ /**
809
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
810
+ *
811
+ * @param {string} projectLocationCollectionEngineServingConfigName
812
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
813
+ * @returns {string} A string representing the project.
814
+ */
815
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
816
+ /**
817
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
818
+ *
819
+ * @param {string} projectLocationCollectionEngineServingConfigName
820
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
821
+ * @returns {string} A string representing the location.
822
+ */
823
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
824
+ /**
825
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
826
+ *
827
+ * @param {string} projectLocationCollectionEngineServingConfigName
828
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
829
+ * @returns {string} A string representing the collection.
830
+ */
831
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
832
+ /**
833
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
834
+ *
835
+ * @param {string} projectLocationCollectionEngineServingConfigName
836
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
837
+ * @returns {string} A string representing the engine.
838
+ */
839
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
840
+ /**
841
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
842
+ *
843
+ * @param {string} projectLocationCollectionEngineServingConfigName
844
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
845
+ * @returns {string} A string representing the serving_config.
846
+ */
847
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
848
+ /**
849
+ * Return a fully-qualified projectLocationDataStore resource name string.
850
+ *
851
+ * @param {string} project
852
+ * @param {string} location
853
+ * @param {string} data_store
854
+ * @returns {string} Resource name string.
855
+ */
856
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
857
+ /**
858
+ * Parse the project from ProjectLocationDataStore resource.
859
+ *
860
+ * @param {string} projectLocationDataStoreName
861
+ * A fully-qualified path representing project_location_data_store resource.
862
+ * @returns {string} A string representing the project.
863
+ */
864
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
865
+ /**
866
+ * Parse the location from ProjectLocationDataStore resource.
867
+ *
868
+ * @param {string} projectLocationDataStoreName
869
+ * A fully-qualified path representing project_location_data_store resource.
870
+ * @returns {string} A string representing the location.
871
+ */
872
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
873
+ /**
874
+ * Parse the data_store from ProjectLocationDataStore resource.
875
+ *
876
+ * @param {string} projectLocationDataStoreName
877
+ * A fully-qualified path representing project_location_data_store resource.
878
+ * @returns {string} A string representing the data_store.
879
+ */
880
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
881
+ /**
882
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
883
+ *
884
+ * @param {string} project
885
+ * @param {string} location
886
+ * @param {string} data_store
887
+ * @param {string} branch
888
+ * @param {string} document
889
+ * @returns {string} Resource name string.
890
+ */
891
+ projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
892
+ /**
893
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
894
+ *
895
+ * @param {string} projectLocationDataStoreBranchDocumentName
896
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
897
+ * @returns {string} A string representing the project.
898
+ */
899
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
900
+ /**
901
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
902
+ *
903
+ * @param {string} projectLocationDataStoreBranchDocumentName
904
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
905
+ * @returns {string} A string representing the location.
906
+ */
907
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
908
+ /**
909
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
910
+ *
911
+ * @param {string} projectLocationDataStoreBranchDocumentName
912
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
913
+ * @returns {string} A string representing the data_store.
914
+ */
915
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
916
+ /**
917
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
918
+ *
919
+ * @param {string} projectLocationDataStoreBranchDocumentName
920
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
921
+ * @returns {string} A string representing the branch.
922
+ */
923
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
924
+ /**
925
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
926
+ *
927
+ * @param {string} projectLocationDataStoreBranchDocumentName
928
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
929
+ * @returns {string} A string representing the document.
930
+ */
931
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
932
+ /**
933
+ * Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
934
+ *
935
+ * @param {string} project
936
+ * @param {string} location
937
+ * @param {string} data_store
938
+ * @param {string} branch
939
+ * @param {string} document
940
+ * @param {string} chunk
941
+ * @returns {string} Resource name string.
942
+ */
943
+ projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
944
+ /**
945
+ * Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
946
+ *
947
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
948
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
949
+ * @returns {string} A string representing the project.
950
+ */
951
+ matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
952
+ /**
953
+ * Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
954
+ *
955
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
956
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
957
+ * @returns {string} A string representing the location.
958
+ */
959
+ matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
960
+ /**
961
+ * Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
962
+ *
963
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
964
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
965
+ * @returns {string} A string representing the data_store.
966
+ */
967
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
968
+ /**
969
+ * Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
970
+ *
971
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
972
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
973
+ * @returns {string} A string representing the branch.
974
+ */
975
+ matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
976
+ /**
977
+ * Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
978
+ *
979
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
980
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
981
+ * @returns {string} A string representing the document.
982
+ */
983
+ matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
984
+ /**
985
+ * Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
986
+ *
987
+ * @param {string} projectLocationDataStoreBranchDocumentChunkName
988
+ * A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
989
+ * @returns {string} A string representing the chunk.
990
+ */
991
+ matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
992
+ /**
993
+ * Return a fully-qualified projectLocationDataStoreConversation resource name string.
994
+ *
995
+ * @param {string} project
996
+ * @param {string} location
997
+ * @param {string} data_store
998
+ * @param {string} conversation
999
+ * @returns {string} Resource name string.
1000
+ */
1001
+ projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
1002
+ /**
1003
+ * Parse the project from ProjectLocationDataStoreConversation resource.
1004
+ *
1005
+ * @param {string} projectLocationDataStoreConversationName
1006
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1007
+ * @returns {string} A string representing the project.
1008
+ */
1009
+ matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1010
+ /**
1011
+ * Parse the location from ProjectLocationDataStoreConversation resource.
1012
+ *
1013
+ * @param {string} projectLocationDataStoreConversationName
1014
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1015
+ * @returns {string} A string representing the location.
1016
+ */
1017
+ matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1018
+ /**
1019
+ * Parse the data_store from ProjectLocationDataStoreConversation resource.
1020
+ *
1021
+ * @param {string} projectLocationDataStoreConversationName
1022
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1023
+ * @returns {string} A string representing the data_store.
1024
+ */
1025
+ matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1026
+ /**
1027
+ * Parse the conversation from ProjectLocationDataStoreConversation resource.
1028
+ *
1029
+ * @param {string} projectLocationDataStoreConversationName
1030
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1031
+ * @returns {string} A string representing the conversation.
1032
+ */
1033
+ matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1034
+ /**
1035
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1036
+ *
1037
+ * @param {string} project
1038
+ * @param {string} location
1039
+ * @param {string} data_store
1040
+ * @returns {string} Resource name string.
1041
+ */
1042
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1043
+ /**
1044
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1045
+ *
1046
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1047
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1048
+ * @returns {string} A string representing the project.
1049
+ */
1050
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1051
+ /**
1052
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1053
+ *
1054
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1055
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1056
+ * @returns {string} A string representing the location.
1057
+ */
1058
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1059
+ /**
1060
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1061
+ *
1062
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1063
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1064
+ * @returns {string} A string representing the data_store.
1065
+ */
1066
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1067
+ /**
1068
+ * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1069
+ *
1070
+ * @param {string} project
1071
+ * @param {string} location
1072
+ * @param {string} data_store
1073
+ * @param {string} schema
1074
+ * @returns {string} Resource name string.
1075
+ */
1076
+ projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
1077
+ /**
1078
+ * Parse the project from ProjectLocationDataStoreSchema resource.
1079
+ *
1080
+ * @param {string} projectLocationDataStoreSchemaName
1081
+ * A fully-qualified path representing project_location_data_store_schema resource.
1082
+ * @returns {string} A string representing the project.
1083
+ */
1084
+ matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1085
+ /**
1086
+ * Parse the location from ProjectLocationDataStoreSchema resource.
1087
+ *
1088
+ * @param {string} projectLocationDataStoreSchemaName
1089
+ * A fully-qualified path representing project_location_data_store_schema resource.
1090
+ * @returns {string} A string representing the location.
1091
+ */
1092
+ matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1093
+ /**
1094
+ * Parse the data_store from ProjectLocationDataStoreSchema resource.
1095
+ *
1096
+ * @param {string} projectLocationDataStoreSchemaName
1097
+ * A fully-qualified path representing project_location_data_store_schema resource.
1098
+ * @returns {string} A string representing the data_store.
1099
+ */
1100
+ matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1101
+ /**
1102
+ * Parse the schema from ProjectLocationDataStoreSchema resource.
1103
+ *
1104
+ * @param {string} projectLocationDataStoreSchemaName
1105
+ * A fully-qualified path representing project_location_data_store_schema resource.
1106
+ * @returns {string} A string representing the schema.
1107
+ */
1108
+ matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1109
+ /**
1110
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1111
+ *
1112
+ * @param {string} project
1113
+ * @param {string} location
1114
+ * @param {string} data_store
1115
+ * @param {string} serving_config
1116
+ * @returns {string} Resource name string.
1117
+ */
1118
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1119
+ /**
1120
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1121
+ *
1122
+ * @param {string} projectLocationDataStoreServingConfigName
1123
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1124
+ * @returns {string} A string representing the project.
1125
+ */
1126
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1127
+ /**
1128
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1129
+ *
1130
+ * @param {string} projectLocationDataStoreServingConfigName
1131
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1132
+ * @returns {string} A string representing the location.
1133
+ */
1134
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1135
+ /**
1136
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1137
+ *
1138
+ * @param {string} projectLocationDataStoreServingConfigName
1139
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1140
+ * @returns {string} A string representing the data_store.
1141
+ */
1142
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1143
+ /**
1144
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1145
+ *
1146
+ * @param {string} projectLocationDataStoreServingConfigName
1147
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1148
+ * @returns {string} A string representing the serving_config.
1149
+ */
1150
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1151
+ /**
1152
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1153
+ *
1154
+ * @param {string} project
1155
+ * @param {string} location
1156
+ * @param {string} data_store
1157
+ * @returns {string} Resource name string.
1158
+ */
1159
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1160
+ /**
1161
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1162
+ *
1163
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1164
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1165
+ * @returns {string} A string representing the project.
1166
+ */
1167
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1168
+ /**
1169
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1170
+ *
1171
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1172
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1173
+ * @returns {string} A string representing the location.
1174
+ */
1175
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1176
+ /**
1177
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1178
+ *
1179
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1180
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1181
+ * @returns {string} A string representing the data_store.
1182
+ */
1183
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1184
+ /**
1185
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1186
+ *
1187
+ * @param {string} project
1188
+ * @param {string} location
1189
+ * @param {string} data_store
1190
+ * @param {string} target_site
1191
+ * @returns {string} Resource name string.
1192
+ */
1193
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1194
+ /**
1195
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1196
+ *
1197
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1198
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1199
+ * @returns {string} A string representing the project.
1200
+ */
1201
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1202
+ /**
1203
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1204
+ *
1205
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1206
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1207
+ * @returns {string} A string representing the location.
1208
+ */
1209
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1210
+ /**
1211
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1212
+ *
1213
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1214
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1215
+ * @returns {string} A string representing the data_store.
1216
+ */
1217
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1218
+ /**
1219
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1220
+ *
1221
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1222
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1223
+ * @returns {string} A string representing the target_site.
1224
+ */
1225
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1226
+ /**
1227
+ * Terminate the gRPC channel and close the client.
1228
+ *
1229
+ * The client will no longer be usable and all future behavior is undefined.
1230
+ * @returns {Promise} A promise that resolves when the client is closed.
1231
+ */
1232
+ close(): Promise<void>;
1233
+ }