@google-cloud/discoveryengine 1.8.0 → 1.9.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 (199) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +33 -4
  3. package/build/protos/google/cloud/discoveryengine/v1/answer.proto +337 -0
  4. package/build/protos/google/cloud/discoveryengine/v1/common.proto +33 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/control.proto +214 -0
  6. package/build/protos/google/cloud/discoveryengine/v1/control_service.proto +236 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/conversation.proto +2 -2
  8. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +569 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +4 -0
  10. package/build/protos/google/cloud/discoveryengine/v1/data_store_service.proto +2 -2
  11. package/build/protos/google/cloud/discoveryengine/v1/document_processing_config.proto +92 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +6 -6
  13. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +4 -4
  14. package/build/protos/google/cloud/discoveryengine/v1/grounded_generation_service.proto +149 -0
  15. package/build/protos/google/cloud/discoveryengine/v1/grounding.proto +58 -0
  16. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +4 -4
  17. package/build/protos/google/cloud/discoveryengine/v1/project.proto +103 -0
  18. package/build/protos/google/cloud/discoveryengine/v1/project_service.proto +90 -0
  19. package/build/protos/google/cloud/discoveryengine/v1/rank_service.proto +131 -0
  20. package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +20 -19
  21. package/build/protos/google/cloud/discoveryengine/v1/schema_service.proto +5 -5
  22. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +23 -18
  23. package/build/protos/google/cloud/discoveryengine/v1/session.proto +97 -0
  24. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +3 -0
  25. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +28 -3
  26. package/build/protos/google/cloud/discoveryengine/v1/user_event_service.proto +18 -2
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +9 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +7 -0
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +16 -0
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/control.proto +217 -0
  31. package/build/protos/google/cloud/discoveryengine/v1alpha/control_service.proto +236 -0
  32. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +2 -2
  33. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +19 -3
  34. package/build/protos/google/cloud/discoveryengine/v1alpha/custom_tuning_model.proto +87 -0
  35. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +2 -2
  36. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +1 -0
  37. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +12 -9
  38. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +4 -4
  39. package/build/protos/google/cloud/discoveryengine/v1alpha/grounded_generation_service.proto +30 -1
  40. package/build/protos/google/cloud/discoveryengine/v1alpha/grounding.proto +3 -0
  41. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +4 -4
  42. package/build/protos/google/cloud/discoveryengine/v1alpha/project.proto +1 -0
  43. package/build/protos/google/cloud/discoveryengine/v1alpha/project_service.proto +2 -0
  44. package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +19 -0
  45. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +20 -19
  46. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +37 -2
  47. package/build/protos/google/cloud/discoveryengine/v1alpha/schema_service.proto +6 -6
  48. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +28 -31
  49. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +39 -0
  50. package/build/protos/google/cloud/discoveryengine/v1alpha/session.proto +3 -0
  51. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +3 -0
  52. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +29 -3
  53. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event_service.proto +18 -2
  54. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +10 -1
  55. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +16 -0
  56. package/build/protos/google/cloud/discoveryengine/v1beta/control.proto +216 -0
  57. package/build/protos/google/cloud/discoveryengine/v1beta/control_service.proto +236 -0
  58. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +2 -2
  59. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +19 -3
  60. package/build/protos/google/cloud/discoveryengine/v1beta/custom_tuning_model.proto +87 -0
  61. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +2 -2
  62. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +1 -0
  63. package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +7 -8
  64. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +4 -4
  65. package/build/protos/google/cloud/discoveryengine/v1beta/grounded_generation_service.proto +30 -1
  66. package/build/protos/google/cloud/discoveryengine/v1beta/grounding.proto +3 -0
  67. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +4 -4
  68. package/build/protos/google/cloud/discoveryengine/v1beta/project.proto +103 -0
  69. package/build/protos/google/cloud/discoveryengine/v1beta/project_service.proto +90 -0
  70. package/build/protos/google/cloud/discoveryengine/v1beta/rank_service.proto +19 -0
  71. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +20 -19
  72. package/build/protos/google/cloud/discoveryengine/v1beta/schema_service.proto +5 -5
  73. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +30 -24
  74. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +39 -0
  75. package/build/protos/google/cloud/discoveryengine/v1beta/session.proto +4 -1
  76. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +3 -0
  77. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +28 -3
  78. package/build/protos/google/cloud/discoveryengine/v1beta/user_event_service.proto +18 -2
  79. package/build/protos/protos.d.ts +52350 -38733
  80. package/build/protos/protos.js +136479 -103212
  81. package/build/protos/protos.json +9460 -5916
  82. package/build/src/index.d.ts +13 -1
  83. package/build/src/index.js +13 -1
  84. package/build/src/v1/completion_service_client.d.ts +549 -0
  85. package/build/src/v1/completion_service_client.js +771 -0
  86. package/build/src/v1/control_service_client.d.ts +1623 -0
  87. package/build/src/v1/control_service_client.js +2218 -0
  88. package/build/src/v1/control_service_client_config.json +63 -0
  89. package/build/src/v1/conversational_search_service_client.d.ts +893 -0
  90. package/build/src/v1/conversational_search_service_client.js +1040 -14
  91. package/build/src/v1/conversational_search_service_client_config.json +35 -0
  92. package/build/src/v1/data_store_service_client.d.ts +555 -6
  93. package/build/src/v1/data_store_service_client.js +775 -4
  94. package/build/src/v1/document_service_client.d.ts +557 -8
  95. package/build/src/v1/document_service_client.js +773 -2
  96. package/build/src/v1/engine_service_client.d.ts +549 -0
  97. package/build/src/v1/engine_service_client.js +771 -0
  98. package/build/src/v1/grounded_generation_service_client.d.ts +1439 -0
  99. package/build/src/v1/grounded_generation_service_client.js +2036 -0
  100. package/build/src/v1/grounded_generation_service_client_config.json +43 -0
  101. package/build/src/v1/index.d.ts +4 -0
  102. package/build/src/v1/index.js +9 -1
  103. package/build/src/v1/project_service_client.d.ts +1533 -0
  104. package/build/src/v1/project_service_client.js +2255 -0
  105. package/build/src/v1/project_service_client_config.json +43 -0
  106. package/build/src/v1/rank_service_client.d.ts +1449 -0
  107. package/build/src/v1/rank_service_client.js +2037 -0
  108. package/build/src/v1/rank_service_client_config.json +43 -0
  109. package/build/src/v1/recommendation_service_client.d.ts +568 -18
  110. package/build/src/v1/recommendation_service_client.js +756 -0
  111. package/build/src/v1/schema_service_client.d.ts +558 -9
  112. package/build/src/v1/schema_service_client.js +775 -4
  113. package/build/src/v1/search_service_client.d.ts +579 -21
  114. package/build/src/v1/search_service_client.js +776 -14
  115. package/build/src/v1/site_search_engine_service_client.d.ts +549 -0
  116. package/build/src/v1/site_search_engine_service_client.js +771 -0
  117. package/build/src/v1/user_event_service_client.d.ts +562 -2
  118. package/build/src/v1/user_event_service_client.js +771 -0
  119. package/build/src/v1alpha/acl_config_service_client.d.ts +237 -0
  120. package/build/src/v1alpha/acl_config_service_client.js +326 -0
  121. package/build/src/v1alpha/chunk_service_client.d.ts +237 -0
  122. package/build/src/v1alpha/chunk_service_client.js +326 -0
  123. package/build/src/v1alpha/completion_service_client.d.ts +237 -0
  124. package/build/src/v1alpha/completion_service_client.js +340 -0
  125. package/build/src/v1alpha/control_service_client.d.ts +2013 -0
  126. package/build/src/v1alpha/control_service_client.js +2757 -0
  127. package/build/src/v1alpha/control_service_client_config.json +63 -0
  128. package/build/src/v1alpha/conversational_search_service_client.d.ts +239 -2
  129. package/build/src/v1alpha/conversational_search_service_client.js +326 -0
  130. package/build/src/v1alpha/data_store_service_client.d.ts +243 -6
  131. package/build/src/v1alpha/data_store_service_client.js +344 -4
  132. package/build/src/v1alpha/document_service_client.d.ts +246 -9
  133. package/build/src/v1alpha/document_service_client.js +342 -2
  134. package/build/src/v1alpha/engine_service_client.d.ts +237 -0
  135. package/build/src/v1alpha/engine_service_client.js +340 -0
  136. package/build/src/v1alpha/estimate_billing_service_client.d.ts +237 -0
  137. package/build/src/v1alpha/estimate_billing_service_client.js +340 -0
  138. package/build/src/v1alpha/grounded_generation_service_client.d.ts +256 -1
  139. package/build/src/v1alpha/grounded_generation_service_client.js +326 -0
  140. package/build/src/v1alpha/index.d.ts +1 -0
  141. package/build/src/v1alpha/index.js +3 -1
  142. package/build/src/v1alpha/project_service_client.d.ts +239 -0
  143. package/build/src/v1alpha/project_service_client.js +340 -0
  144. package/build/src/v1alpha/project_service_client_config.json +21 -6
  145. package/build/src/v1alpha/rank_service_client.d.ts +255 -0
  146. package/build/src/v1alpha/rank_service_client.js +326 -0
  147. package/build/src/v1alpha/recommendation_service_client.d.ts +256 -18
  148. package/build/src/v1alpha/recommendation_service_client.js +326 -0
  149. package/build/src/v1alpha/schema_service_client.d.ts +247 -10
  150. package/build/src/v1alpha/schema_service_client.js +344 -4
  151. package/build/src/v1alpha/search_service_client.d.ts +267 -21
  152. package/build/src/v1alpha/search_service_client.js +346 -14
  153. package/build/src/v1alpha/search_tuning_service_client.d.ts +265 -0
  154. package/build/src/v1alpha/search_tuning_service_client.js +365 -1
  155. package/build/src/v1alpha/search_tuning_service_client_config.json +4 -0
  156. package/build/src/v1alpha/serving_config_service_client.d.ts +237 -0
  157. package/build/src/v1alpha/serving_config_service_client.js +326 -0
  158. package/build/src/v1alpha/site_search_engine_service_client.d.ts +237 -0
  159. package/build/src/v1alpha/site_search_engine_service_client.js +340 -0
  160. package/build/src/v1alpha/user_event_service_client.d.ts +250 -2
  161. package/build/src/v1alpha/user_event_service_client.js +340 -0
  162. package/build/src/v1beta/completion_service_client.d.ts +252 -0
  163. package/build/src/v1beta/completion_service_client.js +359 -0
  164. package/build/src/v1beta/control_service_client.d.ts +1860 -0
  165. package/build/src/v1beta/control_service_client.js +2545 -0
  166. package/build/src/v1beta/control_service_client_config.json +63 -0
  167. package/build/src/v1beta/conversational_search_service_client.d.ts +254 -2
  168. package/build/src/v1beta/conversational_search_service_client.js +348 -0
  169. package/build/src/v1beta/data_store_service_client.d.ts +258 -6
  170. package/build/src/v1beta/data_store_service_client.js +363 -4
  171. package/build/src/v1beta/document_service_client.d.ts +261 -10
  172. package/build/src/v1beta/document_service_client.js +361 -2
  173. package/build/src/v1beta/engine_service_client.d.ts +252 -0
  174. package/build/src/v1beta/engine_service_client.js +359 -0
  175. package/build/src/v1beta/grounded_generation_service_client.d.ts +271 -1
  176. package/build/src/v1beta/grounded_generation_service_client.js +348 -0
  177. package/build/src/v1beta/index.d.ts +2 -0
  178. package/build/src/v1beta/index.js +5 -1
  179. package/build/src/v1beta/project_service_client.d.ts +1770 -0
  180. package/build/src/v1beta/project_service_client.js +2576 -0
  181. package/build/src/v1beta/project_service_client_config.json +43 -0
  182. package/build/src/v1beta/rank_service_client.d.ts +270 -0
  183. package/build/src/v1beta/rank_service_client.js +348 -0
  184. package/build/src/v1beta/recommendation_service_client.d.ts +271 -18
  185. package/build/src/v1beta/recommendation_service_client.js +348 -0
  186. package/build/src/v1beta/schema_service_client.d.ts +261 -9
  187. package/build/src/v1beta/schema_service_client.js +363 -4
  188. package/build/src/v1beta/search_service_client.d.ts +282 -21
  189. package/build/src/v1beta/search_service_client.js +368 -14
  190. package/build/src/v1beta/search_tuning_service_client.d.ts +280 -0
  191. package/build/src/v1beta/search_tuning_service_client.js +384 -1
  192. package/build/src/v1beta/search_tuning_service_client_config.json +4 -0
  193. package/build/src/v1beta/serving_config_service_client.d.ts +237 -0
  194. package/build/src/v1beta/serving_config_service_client.js +326 -0
  195. package/build/src/v1beta/site_search_engine_service_client.d.ts +252 -0
  196. package/build/src/v1beta/site_search_engine_service_client.js +359 -0
  197. package/build/src/v1beta/user_event_service_client.d.ts +265 -2
  198. package/build/src/v1beta/user_event_service_client.js +359 -0
  199. package/package.json +2 -2
@@ -313,6 +313,212 @@ export declare class ConversationalSearchServiceClient {
313
313
  ]>;
314
314
  getConversation(request: protos.google.cloud.discoveryengine.v1.IGetConversationRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.IConversation, protos.google.cloud.discoveryengine.v1.IGetConversationRequest | null | undefined, {} | null | undefined>): void;
315
315
  getConversation(request: protos.google.cloud.discoveryengine.v1.IGetConversationRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.IConversation, protos.google.cloud.discoveryengine.v1.IGetConversationRequest | null | undefined, {} | null | undefined>): void;
316
+ /**
317
+ * Answer query method.
318
+ *
319
+ * @param {Object} request
320
+ * The request object that will be sent.
321
+ * @param {string} request.servingConfig
322
+ * Required. The resource name of the Search serving config, such as
323
+ * `projects/* /locations/global/collections/default_collection/engines/* /servingConfigs/default_serving_config`,
324
+ * or
325
+ * `projects/* /locations/global/collections/default_collection/dataStores/* /servingConfigs/default_serving_config`.
326
+ * This field is used to identify the serving configuration name, set
327
+ * of models used to make the search.
328
+ * @param {google.cloud.discoveryengine.v1.Query} request.query
329
+ * Required. Current user query.
330
+ * @param {string} request.session
331
+ * The session resource name. Not required.
332
+ *
333
+ * When session field is not set, the API is in sessionless mode.
334
+ *
335
+ * We support auto session mode: users can use the wildcard symbol `-` as
336
+ * session ID. A new ID will be automatically generated and assigned.
337
+ * @param {google.cloud.discoveryengine.v1.AnswerQueryRequest.SafetySpec} request.safetySpec
338
+ * Model specification.
339
+ * @param {google.cloud.discoveryengine.v1.AnswerQueryRequest.RelatedQuestionsSpec} request.relatedQuestionsSpec
340
+ * Related questions specification.
341
+ * @param {google.cloud.discoveryengine.v1.AnswerQueryRequest.AnswerGenerationSpec} request.answerGenerationSpec
342
+ * Answer generation specification.
343
+ * @param {google.cloud.discoveryengine.v1.AnswerQueryRequest.SearchSpec} request.searchSpec
344
+ * Search specification.
345
+ * @param {google.cloud.discoveryengine.v1.AnswerQueryRequest.QueryUnderstandingSpec} request.queryUnderstandingSpec
346
+ * Query understanding specification.
347
+ * @param {boolean} request.asynchronousMode
348
+ * Asynchronous mode control.
349
+ *
350
+ * If enabled, the response will be returned with answer/session resource
351
+ * name without final answer. The API users need to do the polling to get
352
+ * the latest status of answer/session by calling
353
+ * {@link protos.google.cloud.discoveryengine.v1.ConversationalSearchService.GetAnswer|ConversationalSearchService.GetAnswer}
354
+ * or
355
+ * {@link protos.google.cloud.discoveryengine.v1.ConversationalSearchService.GetSession|ConversationalSearchService.GetSession}
356
+ * method.
357
+ * @param {string} request.userPseudoId
358
+ * A unique identifier for tracking visitors. For example, this could be
359
+ * implemented with an HTTP cookie, which should be able to uniquely identify
360
+ * a visitor on a single device. This unique identifier should not change if
361
+ * the visitor logs in or out of the website.
362
+ *
363
+ * This field should NOT have a fixed value such as `unknown_visitor`.
364
+ *
365
+ * The field must be a UTF-8 encoded string with a length limit of 128
366
+ * characters. Otherwise, an `INVALID_ARGUMENT` error is returned.
367
+ * @param {object} [options]
368
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
369
+ * @returns {Promise} - The promise which resolves to an array.
370
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1.AnswerQueryResponse|AnswerQueryResponse}.
371
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
372
+ * for more details and examples.
373
+ * @example <caption>include:samples/generated/v1/conversational_search_service.answer_query.js</caption>
374
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_AnswerQuery_async
375
+ */
376
+ answerQuery(request?: protos.google.cloud.discoveryengine.v1.IAnswerQueryRequest, options?: CallOptions): Promise<[
377
+ protos.google.cloud.discoveryengine.v1.IAnswerQueryResponse,
378
+ protos.google.cloud.discoveryengine.v1.IAnswerQueryRequest | undefined,
379
+ {} | undefined
380
+ ]>;
381
+ answerQuery(request: protos.google.cloud.discoveryengine.v1.IAnswerQueryRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.IAnswerQueryResponse, protos.google.cloud.discoveryengine.v1.IAnswerQueryRequest | null | undefined, {} | null | undefined>): void;
382
+ answerQuery(request: protos.google.cloud.discoveryengine.v1.IAnswerQueryRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.IAnswerQueryResponse, protos.google.cloud.discoveryengine.v1.IAnswerQueryRequest | null | undefined, {} | null | undefined>): void;
383
+ /**
384
+ * Gets a Answer.
385
+ *
386
+ * @param {Object} request
387
+ * The request object that will be sent.
388
+ * @param {string} request.name
389
+ * Required. The resource name of the Answer to get. Format:
390
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/engines/{engine_id}/sessions/{session_id}/answers/{answer_id}`
391
+ * @param {object} [options]
392
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
393
+ * @returns {Promise} - The promise which resolves to an array.
394
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1.Answer|Answer}.
395
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
396
+ * for more details and examples.
397
+ * @example <caption>include:samples/generated/v1/conversational_search_service.get_answer.js</caption>
398
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_GetAnswer_async
399
+ */
400
+ getAnswer(request?: protos.google.cloud.discoveryengine.v1.IGetAnswerRequest, options?: CallOptions): Promise<[
401
+ protos.google.cloud.discoveryengine.v1.IAnswer,
402
+ protos.google.cloud.discoveryengine.v1.IGetAnswerRequest | undefined,
403
+ {} | undefined
404
+ ]>;
405
+ getAnswer(request: protos.google.cloud.discoveryengine.v1.IGetAnswerRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.IAnswer, protos.google.cloud.discoveryengine.v1.IGetAnswerRequest | null | undefined, {} | null | undefined>): void;
406
+ getAnswer(request: protos.google.cloud.discoveryengine.v1.IGetAnswerRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.IAnswer, protos.google.cloud.discoveryengine.v1.IGetAnswerRequest | null | undefined, {} | null | undefined>): void;
407
+ /**
408
+ * Creates a Session.
409
+ *
410
+ * If the {@link protos.google.cloud.discoveryengine.v1.Session|Session} to create already
411
+ * exists, an ALREADY_EXISTS error is returned.
412
+ *
413
+ * @param {Object} request
414
+ * The request object that will be sent.
415
+ * @param {string} request.parent
416
+ * Required. Full resource name of parent data store. Format:
417
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/dataStores/{data_store_id}`
418
+ * @param {google.cloud.discoveryengine.v1.Session} request.session
419
+ * Required. The session to create.
420
+ * @param {object} [options]
421
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
422
+ * @returns {Promise} - The promise which resolves to an array.
423
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1.Session|Session}.
424
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
425
+ * for more details and examples.
426
+ * @example <caption>include:samples/generated/v1/conversational_search_service.create_session.js</caption>
427
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_CreateSession_async
428
+ */
429
+ createSession(request?: protos.google.cloud.discoveryengine.v1.ICreateSessionRequest, options?: CallOptions): Promise<[
430
+ protos.google.cloud.discoveryengine.v1.ISession,
431
+ protos.google.cloud.discoveryengine.v1.ICreateSessionRequest | undefined,
432
+ {} | undefined
433
+ ]>;
434
+ createSession(request: protos.google.cloud.discoveryengine.v1.ICreateSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.ISession, protos.google.cloud.discoveryengine.v1.ICreateSessionRequest | null | undefined, {} | null | undefined>): void;
435
+ createSession(request: protos.google.cloud.discoveryengine.v1.ICreateSessionRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.ISession, protos.google.cloud.discoveryengine.v1.ICreateSessionRequest | null | undefined, {} | null | undefined>): void;
436
+ /**
437
+ * Deletes a Session.
438
+ *
439
+ * If the {@link protos.google.cloud.discoveryengine.v1.Session|Session} to delete does
440
+ * not exist, a NOT_FOUND error is returned.
441
+ *
442
+ * @param {Object} request
443
+ * The request object that will be sent.
444
+ * @param {string} request.name
445
+ * Required. The resource name of the Session to delete. Format:
446
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/dataStores/{data_store_id}/sessions/{session_id}`
447
+ * @param {object} [options]
448
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
449
+ * @returns {Promise} - The promise which resolves to an array.
450
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
451
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
452
+ * for more details and examples.
453
+ * @example <caption>include:samples/generated/v1/conversational_search_service.delete_session.js</caption>
454
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_DeleteSession_async
455
+ */
456
+ deleteSession(request?: protos.google.cloud.discoveryengine.v1.IDeleteSessionRequest, options?: CallOptions): Promise<[
457
+ protos.google.protobuf.IEmpty,
458
+ protos.google.cloud.discoveryengine.v1.IDeleteSessionRequest | undefined,
459
+ {} | undefined
460
+ ]>;
461
+ deleteSession(request: protos.google.cloud.discoveryengine.v1.IDeleteSessionRequest, options: CallOptions, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1.IDeleteSessionRequest | null | undefined, {} | null | undefined>): void;
462
+ deleteSession(request: protos.google.cloud.discoveryengine.v1.IDeleteSessionRequest, callback: Callback<protos.google.protobuf.IEmpty, protos.google.cloud.discoveryengine.v1.IDeleteSessionRequest | null | undefined, {} | null | undefined>): void;
463
+ /**
464
+ * Updates a Session.
465
+ *
466
+ * {@link protos.google.cloud.discoveryengine.v1.Session|Session} action type cannot be
467
+ * changed. If the {@link protos.google.cloud.discoveryengine.v1.Session|Session} to
468
+ * update does not exist, a NOT_FOUND error is returned.
469
+ *
470
+ * @param {Object} request
471
+ * The request object that will be sent.
472
+ * @param {google.cloud.discoveryengine.v1.Session} request.session
473
+ * Required. The Session to update.
474
+ * @param {google.protobuf.FieldMask} request.updateMask
475
+ * Indicates which fields in the provided
476
+ * {@link protos.google.cloud.discoveryengine.v1.Session|Session} to update. The following
477
+ * are NOT supported:
478
+ *
479
+ * * {@link protos.google.cloud.discoveryengine.v1.Session.name|Session.name}
480
+ *
481
+ * If not set or empty, all supported fields are updated.
482
+ * @param {object} [options]
483
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
484
+ * @returns {Promise} - The promise which resolves to an array.
485
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1.Session|Session}.
486
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
487
+ * for more details and examples.
488
+ * @example <caption>include:samples/generated/v1/conversational_search_service.update_session.js</caption>
489
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_UpdateSession_async
490
+ */
491
+ updateSession(request?: protos.google.cloud.discoveryengine.v1.IUpdateSessionRequest, options?: CallOptions): Promise<[
492
+ protos.google.cloud.discoveryengine.v1.ISession,
493
+ protos.google.cloud.discoveryengine.v1.IUpdateSessionRequest | undefined,
494
+ {} | undefined
495
+ ]>;
496
+ updateSession(request: protos.google.cloud.discoveryengine.v1.IUpdateSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.ISession, protos.google.cloud.discoveryengine.v1.IUpdateSessionRequest | null | undefined, {} | null | undefined>): void;
497
+ updateSession(request: protos.google.cloud.discoveryengine.v1.IUpdateSessionRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.ISession, protos.google.cloud.discoveryengine.v1.IUpdateSessionRequest | null | undefined, {} | null | undefined>): void;
498
+ /**
499
+ * Gets a Session.
500
+ *
501
+ * @param {Object} request
502
+ * The request object that will be sent.
503
+ * @param {string} request.name
504
+ * Required. The resource name of the Session to get. Format:
505
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/dataStores/{data_store_id}/sessions/{session_id}`
506
+ * @param {object} [options]
507
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
508
+ * @returns {Promise} - The promise which resolves to an array.
509
+ * The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1.Session|Session}.
510
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
511
+ * for more details and examples.
512
+ * @example <caption>include:samples/generated/v1/conversational_search_service.get_session.js</caption>
513
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_GetSession_async
514
+ */
515
+ getSession(request?: protos.google.cloud.discoveryengine.v1.IGetSessionRequest, options?: CallOptions): Promise<[
516
+ protos.google.cloud.discoveryengine.v1.ISession,
517
+ protos.google.cloud.discoveryengine.v1.IGetSessionRequest | undefined,
518
+ {} | undefined
519
+ ]>;
520
+ getSession(request: protos.google.cloud.discoveryengine.v1.IGetSessionRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1.ISession, protos.google.cloud.discoveryengine.v1.IGetSessionRequest | null | undefined, {} | null | undefined>): void;
521
+ getSession(request: protos.google.cloud.discoveryengine.v1.IGetSessionRequest, callback: Callback<protos.google.cloud.discoveryengine.v1.ISession, protos.google.cloud.discoveryengine.v1.IGetSessionRequest | null | undefined, {} | null | undefined>): void;
316
522
  /**
317
523
  * Lists all Conversations by their parent
318
524
  * {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore}.
@@ -451,6 +657,144 @@ export declare class ConversationalSearchServiceClient {
451
657
  * region_tag:discoveryengine_v1_generated_ConversationalSearchService_ListConversations_async
452
658
  */
453
659
  listConversationsAsync(request?: protos.google.cloud.discoveryengine.v1.IListConversationsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.discoveryengine.v1.IConversation>;
660
+ /**
661
+ * Lists all Sessions by their parent
662
+ * {@link protos.google.cloud.discoveryengine.v1.DataStore|DataStore}.
663
+ *
664
+ * @param {Object} request
665
+ * The request object that will be sent.
666
+ * @param {string} request.parent
667
+ * Required. The data store resource name. Format:
668
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/dataStores/{data_store_id}`
669
+ * @param {number} request.pageSize
670
+ * Maximum number of results to return. If unspecified, defaults
671
+ * to 50. Max allowed value is 1000.
672
+ * @param {string} request.pageToken
673
+ * A page token, received from a previous `ListSessions` call.
674
+ * Provide this to retrieve the subsequent page.
675
+ * @param {string} request.filter
676
+ * A filter to apply on the list results. The supported features are:
677
+ * user_pseudo_id, state.
678
+ *
679
+ * Example:
680
+ * "user_pseudo_id = some_id"
681
+ * @param {string} request.orderBy
682
+ * A comma-separated list of fields to order by, sorted in ascending order.
683
+ * Use "desc" after a field name for descending.
684
+ * Supported fields:
685
+ * * `update_time`
686
+ * * `create_time`
687
+ * * `session_name`
688
+ *
689
+ * Example:
690
+ * "update_time desc"
691
+ * "create_time"
692
+ * @param {object} [options]
693
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
694
+ * @returns {Promise} - The promise which resolves to an array.
695
+ * The first element of the array is Array of {@link protos.google.cloud.discoveryengine.v1.Session|Session}.
696
+ * The client library will perform auto-pagination by default: it will call the API as many
697
+ * times as needed and will merge results from all the pages into this array.
698
+ * Note that it can affect your quota.
699
+ * We recommend using `listSessionsAsync()`
700
+ * method described below for async iteration which you can stop as needed.
701
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
702
+ * for more details and examples.
703
+ */
704
+ listSessions(request?: protos.google.cloud.discoveryengine.v1.IListSessionsRequest, options?: CallOptions): Promise<[
705
+ protos.google.cloud.discoveryengine.v1.ISession[],
706
+ protos.google.cloud.discoveryengine.v1.IListSessionsRequest | null,
707
+ protos.google.cloud.discoveryengine.v1.IListSessionsResponse
708
+ ]>;
709
+ listSessions(request: protos.google.cloud.discoveryengine.v1.IListSessionsRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.discoveryengine.v1.IListSessionsRequest, protos.google.cloud.discoveryengine.v1.IListSessionsResponse | null | undefined, protos.google.cloud.discoveryengine.v1.ISession>): void;
710
+ listSessions(request: protos.google.cloud.discoveryengine.v1.IListSessionsRequest, callback: PaginationCallback<protos.google.cloud.discoveryengine.v1.IListSessionsRequest, protos.google.cloud.discoveryengine.v1.IListSessionsResponse | null | undefined, protos.google.cloud.discoveryengine.v1.ISession>): void;
711
+ /**
712
+ * Equivalent to `method.name.toCamelCase()`, but returns a NodeJS Stream object.
713
+ * @param {Object} request
714
+ * The request object that will be sent.
715
+ * @param {string} request.parent
716
+ * Required. The data store resource name. Format:
717
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/dataStores/{data_store_id}`
718
+ * @param {number} request.pageSize
719
+ * Maximum number of results to return. If unspecified, defaults
720
+ * to 50. Max allowed value is 1000.
721
+ * @param {string} request.pageToken
722
+ * A page token, received from a previous `ListSessions` call.
723
+ * Provide this to retrieve the subsequent page.
724
+ * @param {string} request.filter
725
+ * A filter to apply on the list results. The supported features are:
726
+ * user_pseudo_id, state.
727
+ *
728
+ * Example:
729
+ * "user_pseudo_id = some_id"
730
+ * @param {string} request.orderBy
731
+ * A comma-separated list of fields to order by, sorted in ascending order.
732
+ * Use "desc" after a field name for descending.
733
+ * Supported fields:
734
+ * * `update_time`
735
+ * * `create_time`
736
+ * * `session_name`
737
+ *
738
+ * Example:
739
+ * "update_time desc"
740
+ * "create_time"
741
+ * @param {object} [options]
742
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
743
+ * @returns {Stream}
744
+ * An object stream which emits an object representing {@link protos.google.cloud.discoveryengine.v1.Session|Session} on 'data' event.
745
+ * The client library will perform auto-pagination by default: it will call the API as many
746
+ * times as needed. Note that it can affect your quota.
747
+ * We recommend using `listSessionsAsync()`
748
+ * method described below for async iteration which you can stop as needed.
749
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
750
+ * for more details and examples.
751
+ */
752
+ listSessionsStream(request?: protos.google.cloud.discoveryengine.v1.IListSessionsRequest, options?: CallOptions): Transform;
753
+ /**
754
+ * Equivalent to `listSessions`, but returns an iterable object.
755
+ *
756
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
757
+ * @param {Object} request
758
+ * The request object that will be sent.
759
+ * @param {string} request.parent
760
+ * Required. The data store resource name. Format:
761
+ * `projects/{project_number}/locations/{location_id}/collections/{collection}/dataStores/{data_store_id}`
762
+ * @param {number} request.pageSize
763
+ * Maximum number of results to return. If unspecified, defaults
764
+ * to 50. Max allowed value is 1000.
765
+ * @param {string} request.pageToken
766
+ * A page token, received from a previous `ListSessions` call.
767
+ * Provide this to retrieve the subsequent page.
768
+ * @param {string} request.filter
769
+ * A filter to apply on the list results. The supported features are:
770
+ * user_pseudo_id, state.
771
+ *
772
+ * Example:
773
+ * "user_pseudo_id = some_id"
774
+ * @param {string} request.orderBy
775
+ * A comma-separated list of fields to order by, sorted in ascending order.
776
+ * Use "desc" after a field name for descending.
777
+ * Supported fields:
778
+ * * `update_time`
779
+ * * `create_time`
780
+ * * `session_name`
781
+ *
782
+ * Example:
783
+ * "update_time desc"
784
+ * "create_time"
785
+ * @param {object} [options]
786
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
787
+ * @returns {Object}
788
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
789
+ * When you iterate the returned iterable, each element will be an object representing
790
+ * {@link protos.google.cloud.discoveryengine.v1.Session|Session}. The API will be called under the hood as needed, once per the page,
791
+ * so you can stop the iteration when you don't need more results.
792
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
793
+ * for more details and examples.
794
+ * @example <caption>include:samples/generated/v1/conversational_search_service.list_sessions.js</caption>
795
+ * region_tag:discoveryengine_v1_generated_ConversationalSearchService_ListSessions_async
796
+ */
797
+ listSessionsAsync(request?: protos.google.cloud.discoveryengine.v1.IListSessionsRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.discoveryengine.v1.ISession>;
454
798
  /**
455
799
  * Gets information about a location.
456
800
  *
@@ -544,6 +888,21 @@ export declare class ConversationalSearchServiceClient {
544
888
  * @returns {string} A string representing the engine.
545
889
  */
546
890
  matchEngineFromEngineName(engineName: string): string | number;
891
+ /**
892
+ * Return a fully-qualified project resource name string.
893
+ *
894
+ * @param {string} project
895
+ * @returns {string} Resource name string.
896
+ */
897
+ projectPath(project: string): string;
898
+ /**
899
+ * Parse the project from Project resource.
900
+ *
901
+ * @param {string} projectName
902
+ * A fully-qualified path representing Project resource.
903
+ * @returns {string} A string representing the project.
904
+ */
905
+ matchProjectFromProjectName(projectName: string): string | number;
547
906
  /**
548
907
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
549
908
  *
@@ -646,6 +1005,57 @@ export declare class ConversationalSearchServiceClient {
646
1005
  * @returns {string} A string representing the document.
647
1006
  */
648
1007
  matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
1008
+ /**
1009
+ * Return a fully-qualified projectLocationCollectionDataStoreControl resource name string.
1010
+ *
1011
+ * @param {string} project
1012
+ * @param {string} location
1013
+ * @param {string} collection
1014
+ * @param {string} data_store
1015
+ * @param {string} control
1016
+ * @returns {string} Resource name string.
1017
+ */
1018
+ projectLocationCollectionDataStoreControlPath(project: string, location: string, collection: string, dataStore: string, control: string): string;
1019
+ /**
1020
+ * Parse the project from ProjectLocationCollectionDataStoreControl resource.
1021
+ *
1022
+ * @param {string} projectLocationCollectionDataStoreControlName
1023
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
1024
+ * @returns {string} A string representing the project.
1025
+ */
1026
+ matchProjectFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
1027
+ /**
1028
+ * Parse the location from ProjectLocationCollectionDataStoreControl resource.
1029
+ *
1030
+ * @param {string} projectLocationCollectionDataStoreControlName
1031
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
1032
+ * @returns {string} A string representing the location.
1033
+ */
1034
+ matchLocationFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
1035
+ /**
1036
+ * Parse the collection from ProjectLocationCollectionDataStoreControl resource.
1037
+ *
1038
+ * @param {string} projectLocationCollectionDataStoreControlName
1039
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
1040
+ * @returns {string} A string representing the collection.
1041
+ */
1042
+ matchCollectionFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
1043
+ /**
1044
+ * Parse the data_store from ProjectLocationCollectionDataStoreControl resource.
1045
+ *
1046
+ * @param {string} projectLocationCollectionDataStoreControlName
1047
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
1048
+ * @returns {string} A string representing the data_store.
1049
+ */
1050
+ matchDataStoreFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
1051
+ /**
1052
+ * Parse the control from ProjectLocationCollectionDataStoreControl resource.
1053
+ *
1054
+ * @param {string} projectLocationCollectionDataStoreControlName
1055
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
1056
+ * @returns {string} A string representing the control.
1057
+ */
1058
+ matchControlFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
649
1059
  /**
650
1060
  * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
651
1061
  *
@@ -697,6 +1107,48 @@ export declare class ConversationalSearchServiceClient {
697
1107
  * @returns {string} A string representing the conversation.
698
1108
  */
699
1109
  matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
1110
+ /**
1111
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
1112
+ *
1113
+ * @param {string} project
1114
+ * @param {string} location
1115
+ * @param {string} collection
1116
+ * @param {string} data_store
1117
+ * @returns {string} Resource name string.
1118
+ */
1119
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
1120
+ /**
1121
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1122
+ *
1123
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1124
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1125
+ * @returns {string} A string representing the project.
1126
+ */
1127
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1128
+ /**
1129
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1130
+ *
1131
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1132
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1133
+ * @returns {string} A string representing the location.
1134
+ */
1135
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1136
+ /**
1137
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1138
+ *
1139
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1140
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1141
+ * @returns {string} A string representing the collection.
1142
+ */
1143
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
1144
+ /**
1145
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
1146
+ *
1147
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
1148
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
1149
+ * @returns {string} A string representing the data_store.
1150
+ */
1151
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
700
1152
  /**
701
1153
  * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
702
1154
  *
@@ -799,6 +1251,117 @@ export declare class ConversationalSearchServiceClient {
799
1251
  * @returns {string} A string representing the serving_config.
800
1252
  */
801
1253
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1254
+ /**
1255
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
1256
+ *
1257
+ * @param {string} project
1258
+ * @param {string} location
1259
+ * @param {string} collection
1260
+ * @param {string} data_store
1261
+ * @param {string} session
1262
+ * @returns {string} Resource name string.
1263
+ */
1264
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
1265
+ /**
1266
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
1267
+ *
1268
+ * @param {string} projectLocationCollectionDataStoreSessionName
1269
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1270
+ * @returns {string} A string representing the project.
1271
+ */
1272
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1273
+ /**
1274
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
1275
+ *
1276
+ * @param {string} projectLocationCollectionDataStoreSessionName
1277
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1278
+ * @returns {string} A string representing the location.
1279
+ */
1280
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1281
+ /**
1282
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
1283
+ *
1284
+ * @param {string} projectLocationCollectionDataStoreSessionName
1285
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1286
+ * @returns {string} A string representing the collection.
1287
+ */
1288
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1289
+ /**
1290
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
1291
+ *
1292
+ * @param {string} projectLocationCollectionDataStoreSessionName
1293
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1294
+ * @returns {string} A string representing the data_store.
1295
+ */
1296
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1297
+ /**
1298
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
1299
+ *
1300
+ * @param {string} projectLocationCollectionDataStoreSessionName
1301
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
1302
+ * @returns {string} A string representing the session.
1303
+ */
1304
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
1305
+ /**
1306
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
1307
+ *
1308
+ * @param {string} project
1309
+ * @param {string} location
1310
+ * @param {string} collection
1311
+ * @param {string} data_store
1312
+ * @param {string} session
1313
+ * @param {string} answer
1314
+ * @returns {string} Resource name string.
1315
+ */
1316
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
1317
+ /**
1318
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
1319
+ *
1320
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1321
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1322
+ * @returns {string} A string representing the project.
1323
+ */
1324
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1325
+ /**
1326
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
1327
+ *
1328
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1329
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1330
+ * @returns {string} A string representing the location.
1331
+ */
1332
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1333
+ /**
1334
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
1335
+ *
1336
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1337
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1338
+ * @returns {string} A string representing the collection.
1339
+ */
1340
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1341
+ /**
1342
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
1343
+ *
1344
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1345
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1346
+ * @returns {string} A string representing the data_store.
1347
+ */
1348
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1349
+ /**
1350
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
1351
+ *
1352
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1353
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1354
+ * @returns {string} A string representing the session.
1355
+ */
1356
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
1357
+ /**
1358
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
1359
+ *
1360
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
1361
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
1362
+ * @returns {string} A string representing the answer.
1363
+ */
1364
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
802
1365
  /**
803
1366
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
804
1367
  *
@@ -892,6 +1455,57 @@ export declare class ConversationalSearchServiceClient {
892
1455
  * @returns {string} A string representing the target_site.
893
1456
  */
894
1457
  matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1458
+ /**
1459
+ * Return a fully-qualified projectLocationCollectionEngineControl resource name string.
1460
+ *
1461
+ * @param {string} project
1462
+ * @param {string} location
1463
+ * @param {string} collection
1464
+ * @param {string} engine
1465
+ * @param {string} control
1466
+ * @returns {string} Resource name string.
1467
+ */
1468
+ projectLocationCollectionEngineControlPath(project: string, location: string, collection: string, engine: string, control: string): string;
1469
+ /**
1470
+ * Parse the project from ProjectLocationCollectionEngineControl resource.
1471
+ *
1472
+ * @param {string} projectLocationCollectionEngineControlName
1473
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1474
+ * @returns {string} A string representing the project.
1475
+ */
1476
+ matchProjectFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1477
+ /**
1478
+ * Parse the location from ProjectLocationCollectionEngineControl resource.
1479
+ *
1480
+ * @param {string} projectLocationCollectionEngineControlName
1481
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1482
+ * @returns {string} A string representing the location.
1483
+ */
1484
+ matchLocationFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1485
+ /**
1486
+ * Parse the collection from ProjectLocationCollectionEngineControl resource.
1487
+ *
1488
+ * @param {string} projectLocationCollectionEngineControlName
1489
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1490
+ * @returns {string} A string representing the collection.
1491
+ */
1492
+ matchCollectionFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1493
+ /**
1494
+ * Parse the engine from ProjectLocationCollectionEngineControl resource.
1495
+ *
1496
+ * @param {string} projectLocationCollectionEngineControlName
1497
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1498
+ * @returns {string} A string representing the engine.
1499
+ */
1500
+ matchEngineFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1501
+ /**
1502
+ * Parse the control from ProjectLocationCollectionEngineControl resource.
1503
+ *
1504
+ * @param {string} projectLocationCollectionEngineControlName
1505
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1506
+ * @returns {string} A string representing the control.
1507
+ */
1508
+ matchControlFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
895
1509
  /**
896
1510
  * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
897
1511
  *
@@ -994,6 +1608,117 @@ export declare class ConversationalSearchServiceClient {
994
1608
  * @returns {string} A string representing the serving_config.
995
1609
  */
996
1610
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1611
+ /**
1612
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1613
+ *
1614
+ * @param {string} project
1615
+ * @param {string} location
1616
+ * @param {string} collection
1617
+ * @param {string} engine
1618
+ * @param {string} session
1619
+ * @returns {string} Resource name string.
1620
+ */
1621
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1622
+ /**
1623
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1624
+ *
1625
+ * @param {string} projectLocationCollectionEngineSessionName
1626
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1627
+ * @returns {string} A string representing the project.
1628
+ */
1629
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1630
+ /**
1631
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1632
+ *
1633
+ * @param {string} projectLocationCollectionEngineSessionName
1634
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1635
+ * @returns {string} A string representing the location.
1636
+ */
1637
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1638
+ /**
1639
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1640
+ *
1641
+ * @param {string} projectLocationCollectionEngineSessionName
1642
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1643
+ * @returns {string} A string representing the collection.
1644
+ */
1645
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1646
+ /**
1647
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1648
+ *
1649
+ * @param {string} projectLocationCollectionEngineSessionName
1650
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1651
+ * @returns {string} A string representing the engine.
1652
+ */
1653
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1654
+ /**
1655
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1656
+ *
1657
+ * @param {string} projectLocationCollectionEngineSessionName
1658
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1659
+ * @returns {string} A string representing the session.
1660
+ */
1661
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1662
+ /**
1663
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1664
+ *
1665
+ * @param {string} project
1666
+ * @param {string} location
1667
+ * @param {string} collection
1668
+ * @param {string} engine
1669
+ * @param {string} session
1670
+ * @param {string} answer
1671
+ * @returns {string} Resource name string.
1672
+ */
1673
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1674
+ /**
1675
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1676
+ *
1677
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1678
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1679
+ * @returns {string} A string representing the project.
1680
+ */
1681
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1682
+ /**
1683
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1684
+ *
1685
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1686
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1687
+ * @returns {string} A string representing the location.
1688
+ */
1689
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1690
+ /**
1691
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1692
+ *
1693
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1694
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1695
+ * @returns {string} A string representing the collection.
1696
+ */
1697
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1698
+ /**
1699
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1700
+ *
1701
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1702
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1703
+ * @returns {string} A string representing the engine.
1704
+ */
1705
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1706
+ /**
1707
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1708
+ *
1709
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1710
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1711
+ * @returns {string} A string representing the session.
1712
+ */
1713
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1714
+ /**
1715
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1716
+ *
1717
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1718
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1719
+ * @returns {string} A string representing the answer.
1720
+ */
1721
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
997
1722
  /**
998
1723
  * Return a fully-qualified projectLocationDataStore resource name string.
999
1724
  *
@@ -1078,6 +1803,48 @@ export declare class ConversationalSearchServiceClient {
1078
1803
  * @returns {string} A string representing the document.
1079
1804
  */
1080
1805
  matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1806
+ /**
1807
+ * Return a fully-qualified projectLocationDataStoreControl resource name string.
1808
+ *
1809
+ * @param {string} project
1810
+ * @param {string} location
1811
+ * @param {string} data_store
1812
+ * @param {string} control
1813
+ * @returns {string} Resource name string.
1814
+ */
1815
+ projectLocationDataStoreControlPath(project: string, location: string, dataStore: string, control: string): string;
1816
+ /**
1817
+ * Parse the project from ProjectLocationDataStoreControl resource.
1818
+ *
1819
+ * @param {string} projectLocationDataStoreControlName
1820
+ * A fully-qualified path representing project_location_data_store_control resource.
1821
+ * @returns {string} A string representing the project.
1822
+ */
1823
+ matchProjectFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1824
+ /**
1825
+ * Parse the location from ProjectLocationDataStoreControl resource.
1826
+ *
1827
+ * @param {string} projectLocationDataStoreControlName
1828
+ * A fully-qualified path representing project_location_data_store_control resource.
1829
+ * @returns {string} A string representing the location.
1830
+ */
1831
+ matchLocationFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1832
+ /**
1833
+ * Parse the data_store from ProjectLocationDataStoreControl resource.
1834
+ *
1835
+ * @param {string} projectLocationDataStoreControlName
1836
+ * A fully-qualified path representing project_location_data_store_control resource.
1837
+ * @returns {string} A string representing the data_store.
1838
+ */
1839
+ matchDataStoreFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1840
+ /**
1841
+ * Parse the control from ProjectLocationDataStoreControl resource.
1842
+ *
1843
+ * @param {string} projectLocationDataStoreControlName
1844
+ * A fully-qualified path representing project_location_data_store_control resource.
1845
+ * @returns {string} A string representing the control.
1846
+ */
1847
+ matchControlFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1081
1848
  /**
1082
1849
  * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1083
1850
  *
@@ -1120,6 +1887,39 @@ export declare class ConversationalSearchServiceClient {
1120
1887
  * @returns {string} A string representing the conversation.
1121
1888
  */
1122
1889
  matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1890
+ /**
1891
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1892
+ *
1893
+ * @param {string} project
1894
+ * @param {string} location
1895
+ * @param {string} data_store
1896
+ * @returns {string} Resource name string.
1897
+ */
1898
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1899
+ /**
1900
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1901
+ *
1902
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1903
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1904
+ * @returns {string} A string representing the project.
1905
+ */
1906
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1907
+ /**
1908
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1909
+ *
1910
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1911
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1912
+ * @returns {string} A string representing the location.
1913
+ */
1914
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1915
+ /**
1916
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1917
+ *
1918
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1919
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1920
+ * @returns {string} A string representing the data_store.
1921
+ */
1922
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1123
1923
  /**
1124
1924
  * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1125
1925
  *
@@ -1204,6 +2004,99 @@ export declare class ConversationalSearchServiceClient {
1204
2004
  * @returns {string} A string representing the serving_config.
1205
2005
  */
1206
2006
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
2007
+ /**
2008
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
2009
+ *
2010
+ * @param {string} project
2011
+ * @param {string} location
2012
+ * @param {string} data_store
2013
+ * @param {string} session
2014
+ * @returns {string} Resource name string.
2015
+ */
2016
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
2017
+ /**
2018
+ * Parse the project from ProjectLocationDataStoreSession resource.
2019
+ *
2020
+ * @param {string} projectLocationDataStoreSessionName
2021
+ * A fully-qualified path representing project_location_data_store_session resource.
2022
+ * @returns {string} A string representing the project.
2023
+ */
2024
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2025
+ /**
2026
+ * Parse the location from ProjectLocationDataStoreSession resource.
2027
+ *
2028
+ * @param {string} projectLocationDataStoreSessionName
2029
+ * A fully-qualified path representing project_location_data_store_session resource.
2030
+ * @returns {string} A string representing the location.
2031
+ */
2032
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2033
+ /**
2034
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
2035
+ *
2036
+ * @param {string} projectLocationDataStoreSessionName
2037
+ * A fully-qualified path representing project_location_data_store_session resource.
2038
+ * @returns {string} A string representing the data_store.
2039
+ */
2040
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2041
+ /**
2042
+ * Parse the session from ProjectLocationDataStoreSession resource.
2043
+ *
2044
+ * @param {string} projectLocationDataStoreSessionName
2045
+ * A fully-qualified path representing project_location_data_store_session resource.
2046
+ * @returns {string} A string representing the session.
2047
+ */
2048
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
2049
+ /**
2050
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
2051
+ *
2052
+ * @param {string} project
2053
+ * @param {string} location
2054
+ * @param {string} data_store
2055
+ * @param {string} session
2056
+ * @param {string} answer
2057
+ * @returns {string} Resource name string.
2058
+ */
2059
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
2060
+ /**
2061
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
2062
+ *
2063
+ * @param {string} projectLocationDataStoreSessionAnswerName
2064
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2065
+ * @returns {string} A string representing the project.
2066
+ */
2067
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2068
+ /**
2069
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
2070
+ *
2071
+ * @param {string} projectLocationDataStoreSessionAnswerName
2072
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2073
+ * @returns {string} A string representing the location.
2074
+ */
2075
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2076
+ /**
2077
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
2078
+ *
2079
+ * @param {string} projectLocationDataStoreSessionAnswerName
2080
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2081
+ * @returns {string} A string representing the data_store.
2082
+ */
2083
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2084
+ /**
2085
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
2086
+ *
2087
+ * @param {string} projectLocationDataStoreSessionAnswerName
2088
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2089
+ * @returns {string} A string representing the session.
2090
+ */
2091
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
2092
+ /**
2093
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
2094
+ *
2095
+ * @param {string} projectLocationDataStoreSessionAnswerName
2096
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
2097
+ * @returns {string} A string representing the answer.
2098
+ */
2099
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1207
2100
  /**
1208
2101
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1209
2102
  *