@google-cloud/discoveryengine 1.6.0 → 1.7.0

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