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