@aws-sdk/client-qconnect 3.461.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 (283) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +545 -0
  3. package/dist-cjs/QConnect.js +93 -0
  4. package/dist-cjs/QConnectClient.js +43 -0
  5. package/dist-cjs/commands/CreateAssistantAssociationCommand.js +51 -0
  6. package/dist-cjs/commands/CreateAssistantCommand.js +51 -0
  7. package/dist-cjs/commands/CreateContentCommand.js +52 -0
  8. package/dist-cjs/commands/CreateKnowledgeBaseCommand.js +51 -0
  9. package/dist-cjs/commands/CreateQuickResponseCommand.js +52 -0
  10. package/dist-cjs/commands/CreateSessionCommand.js +51 -0
  11. package/dist-cjs/commands/DeleteAssistantAssociationCommand.js +51 -0
  12. package/dist-cjs/commands/DeleteAssistantCommand.js +51 -0
  13. package/dist-cjs/commands/DeleteContentCommand.js +51 -0
  14. package/dist-cjs/commands/DeleteImportJobCommand.js +51 -0
  15. package/dist-cjs/commands/DeleteKnowledgeBaseCommand.js +51 -0
  16. package/dist-cjs/commands/DeleteQuickResponseCommand.js +51 -0
  17. package/dist-cjs/commands/GetAssistantAssociationCommand.js +51 -0
  18. package/dist-cjs/commands/GetAssistantCommand.js +51 -0
  19. package/dist-cjs/commands/GetContentCommand.js +52 -0
  20. package/dist-cjs/commands/GetContentSummaryCommand.js +51 -0
  21. package/dist-cjs/commands/GetImportJobCommand.js +52 -0
  22. package/dist-cjs/commands/GetKnowledgeBaseCommand.js +51 -0
  23. package/dist-cjs/commands/GetQuickResponseCommand.js +52 -0
  24. package/dist-cjs/commands/GetRecommendationsCommand.js +52 -0
  25. package/dist-cjs/commands/GetSessionCommand.js +51 -0
  26. package/dist-cjs/commands/ListAssistantAssociationsCommand.js +51 -0
  27. package/dist-cjs/commands/ListAssistantsCommand.js +51 -0
  28. package/dist-cjs/commands/ListContentsCommand.js +51 -0
  29. package/dist-cjs/commands/ListImportJobsCommand.js +51 -0
  30. package/dist-cjs/commands/ListKnowledgeBasesCommand.js +51 -0
  31. package/dist-cjs/commands/ListQuickResponsesCommand.js +52 -0
  32. package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
  33. package/dist-cjs/commands/NotifyRecommendationsReceivedCommand.js +51 -0
  34. package/dist-cjs/commands/QueryAssistantCommand.js +52 -0
  35. package/dist-cjs/commands/RemoveKnowledgeBaseTemplateUriCommand.js +51 -0
  36. package/dist-cjs/commands/SearchContentCommand.js +51 -0
  37. package/dist-cjs/commands/SearchQuickResponsesCommand.js +52 -0
  38. package/dist-cjs/commands/SearchSessionsCommand.js +51 -0
  39. package/dist-cjs/commands/StartContentUploadCommand.js +52 -0
  40. package/dist-cjs/commands/StartImportJobCommand.js +52 -0
  41. package/dist-cjs/commands/TagResourceCommand.js +51 -0
  42. package/dist-cjs/commands/UntagResourceCommand.js +51 -0
  43. package/dist-cjs/commands/UpdateContentCommand.js +52 -0
  44. package/dist-cjs/commands/UpdateKnowledgeBaseTemplateUriCommand.js +51 -0
  45. package/dist-cjs/commands/UpdateQuickResponseCommand.js +52 -0
  46. package/dist-cjs/commands/index.js +44 -0
  47. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  48. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  49. package/dist-cjs/endpoint/ruleset.js +7 -0
  50. package/dist-cjs/extensionConfiguration.js +2 -0
  51. package/dist-cjs/index.js +12 -0
  52. package/dist-cjs/models/QConnectServiceException.js +12 -0
  53. package/dist-cjs/models/index.js +4 -0
  54. package/dist-cjs/models/models_0.js +559 -0
  55. package/dist-cjs/pagination/Interfaces.js +2 -0
  56. package/dist-cjs/pagination/ListAssistantAssociationsPaginator.js +29 -0
  57. package/dist-cjs/pagination/ListAssistantsPaginator.js +29 -0
  58. package/dist-cjs/pagination/ListContentsPaginator.js +29 -0
  59. package/dist-cjs/pagination/ListImportJobsPaginator.js +29 -0
  60. package/dist-cjs/pagination/ListKnowledgeBasesPaginator.js +29 -0
  61. package/dist-cjs/pagination/ListQuickResponsesPaginator.js +29 -0
  62. package/dist-cjs/pagination/QueryAssistantPaginator.js +29 -0
  63. package/dist-cjs/pagination/SearchContentPaginator.js +29 -0
  64. package/dist-cjs/pagination/SearchQuickResponsesPaginator.js +29 -0
  65. package/dist-cjs/pagination/SearchSessionsPaginator.js +29 -0
  66. package/dist-cjs/pagination/index.js +14 -0
  67. package/dist-cjs/protocols/Aws_restJson1.js +2993 -0
  68. package/dist-cjs/runtimeConfig.browser.js +39 -0
  69. package/dist-cjs/runtimeConfig.js +50 -0
  70. package/dist-cjs/runtimeConfig.native.js +15 -0
  71. package/dist-cjs/runtimeConfig.shared.js +24 -0
  72. package/dist-cjs/runtimeExtensions.js +22 -0
  73. package/dist-es/QConnect.js +89 -0
  74. package/dist-es/QConnectClient.js +39 -0
  75. package/dist-es/commands/CreateAssistantAssociationCommand.js +47 -0
  76. package/dist-es/commands/CreateAssistantCommand.js +47 -0
  77. package/dist-es/commands/CreateContentCommand.js +48 -0
  78. package/dist-es/commands/CreateKnowledgeBaseCommand.js +47 -0
  79. package/dist-es/commands/CreateQuickResponseCommand.js +48 -0
  80. package/dist-es/commands/CreateSessionCommand.js +47 -0
  81. package/dist-es/commands/DeleteAssistantAssociationCommand.js +47 -0
  82. package/dist-es/commands/DeleteAssistantCommand.js +47 -0
  83. package/dist-es/commands/DeleteContentCommand.js +47 -0
  84. package/dist-es/commands/DeleteImportJobCommand.js +47 -0
  85. package/dist-es/commands/DeleteKnowledgeBaseCommand.js +47 -0
  86. package/dist-es/commands/DeleteQuickResponseCommand.js +47 -0
  87. package/dist-es/commands/GetAssistantAssociationCommand.js +47 -0
  88. package/dist-es/commands/GetAssistantCommand.js +47 -0
  89. package/dist-es/commands/GetContentCommand.js +48 -0
  90. package/dist-es/commands/GetContentSummaryCommand.js +47 -0
  91. package/dist-es/commands/GetImportJobCommand.js +48 -0
  92. package/dist-es/commands/GetKnowledgeBaseCommand.js +47 -0
  93. package/dist-es/commands/GetQuickResponseCommand.js +48 -0
  94. package/dist-es/commands/GetRecommendationsCommand.js +48 -0
  95. package/dist-es/commands/GetSessionCommand.js +47 -0
  96. package/dist-es/commands/ListAssistantAssociationsCommand.js +47 -0
  97. package/dist-es/commands/ListAssistantsCommand.js +47 -0
  98. package/dist-es/commands/ListContentsCommand.js +47 -0
  99. package/dist-es/commands/ListImportJobsCommand.js +47 -0
  100. package/dist-es/commands/ListKnowledgeBasesCommand.js +47 -0
  101. package/dist-es/commands/ListQuickResponsesCommand.js +48 -0
  102. package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
  103. package/dist-es/commands/NotifyRecommendationsReceivedCommand.js +47 -0
  104. package/dist-es/commands/QueryAssistantCommand.js +48 -0
  105. package/dist-es/commands/RemoveKnowledgeBaseTemplateUriCommand.js +47 -0
  106. package/dist-es/commands/SearchContentCommand.js +47 -0
  107. package/dist-es/commands/SearchQuickResponsesCommand.js +48 -0
  108. package/dist-es/commands/SearchSessionsCommand.js +47 -0
  109. package/dist-es/commands/StartContentUploadCommand.js +48 -0
  110. package/dist-es/commands/StartImportJobCommand.js +48 -0
  111. package/dist-es/commands/TagResourceCommand.js +47 -0
  112. package/dist-es/commands/UntagResourceCommand.js +47 -0
  113. package/dist-es/commands/UpdateContentCommand.js +48 -0
  114. package/dist-es/commands/UpdateKnowledgeBaseTemplateUriCommand.js +47 -0
  115. package/dist-es/commands/UpdateQuickResponseCommand.js +48 -0
  116. package/dist-es/commands/index.js +41 -0
  117. package/dist-es/endpoint/EndpointParameters.js +8 -0
  118. package/dist-es/endpoint/endpointResolver.js +8 -0
  119. package/dist-es/endpoint/ruleset.js +4 -0
  120. package/dist-es/extensionConfiguration.js +1 -0
  121. package/dist-es/index.js +7 -0
  122. package/dist-es/models/QConnectServiceException.js +8 -0
  123. package/dist-es/models/index.js +1 -0
  124. package/dist-es/models/models_0.js +508 -0
  125. package/dist-es/pagination/Interfaces.js +1 -0
  126. package/dist-es/pagination/ListAssistantAssociationsPaginator.js +25 -0
  127. package/dist-es/pagination/ListAssistantsPaginator.js +25 -0
  128. package/dist-es/pagination/ListContentsPaginator.js +25 -0
  129. package/dist-es/pagination/ListImportJobsPaginator.js +25 -0
  130. package/dist-es/pagination/ListKnowledgeBasesPaginator.js +25 -0
  131. package/dist-es/pagination/ListQuickResponsesPaginator.js +25 -0
  132. package/dist-es/pagination/QueryAssistantPaginator.js +25 -0
  133. package/dist-es/pagination/SearchContentPaginator.js +25 -0
  134. package/dist-es/pagination/SearchQuickResponsesPaginator.js +25 -0
  135. package/dist-es/pagination/SearchSessionsPaginator.js +25 -0
  136. package/dist-es/pagination/index.js +11 -0
  137. package/dist-es/protocols/Aws_restJson1.js +2907 -0
  138. package/dist-es/runtimeConfig.browser.js +34 -0
  139. package/dist-es/runtimeConfig.js +45 -0
  140. package/dist-es/runtimeConfig.native.js +11 -0
  141. package/dist-es/runtimeConfig.shared.js +20 -0
  142. package/dist-es/runtimeExtensions.js +18 -0
  143. package/dist-types/QConnect.d.ts +309 -0
  144. package/dist-types/QConnectClient.d.ts +222 -0
  145. package/dist-types/commands/CreateAssistantAssociationCommand.d.ts +117 -0
  146. package/dist-types/commands/CreateAssistantCommand.d.ts +117 -0
  147. package/dist-types/commands/CreateContentCommand.d.ts +123 -0
  148. package/dist-types/commands/CreateKnowledgeBaseCommand.d.ts +157 -0
  149. package/dist-types/commands/CreateQuickResponseCommand.d.ts +149 -0
  150. package/dist-types/commands/CreateSessionCommand.d.ts +104 -0
  151. package/dist-types/commands/DeleteAssistantAssociationCommand.d.ts +81 -0
  152. package/dist-types/commands/DeleteAssistantCommand.d.ts +80 -0
  153. package/dist-types/commands/DeleteContentCommand.d.ts +81 -0
  154. package/dist-types/commands/DeleteImportJobCommand.d.ts +87 -0
  155. package/dist-types/commands/DeleteKnowledgeBaseCommand.d.ts +94 -0
  156. package/dist-types/commands/DeleteQuickResponseCommand.d.ts +81 -0
  157. package/dist-types/commands/GetAssistantAssociationCommand.d.ts +98 -0
  158. package/dist-types/commands/GetAssistantCommand.d.ts +101 -0
  159. package/dist-types/commands/GetContentCommand.d.ts +102 -0
  160. package/dist-types/commands/GetContentSummaryCommand.d.ts +99 -0
  161. package/dist-types/commands/GetImportJobCommand.d.ts +106 -0
  162. package/dist-types/commands/GetKnowledgeBaseCommand.d.ts +107 -0
  163. package/dist-types/commands/GetQuickResponseCommand.d.ts +118 -0
  164. package/dist-types/commands/GetRecommendationsCommand.d.ts +239 -0
  165. package/dist-types/commands/GetSessionCommand.d.ts +94 -0
  166. package/dist-types/commands/ListAssistantAssociationsCommand.d.ts +102 -0
  167. package/dist-types/commands/ListAssistantsCommand.d.ts +102 -0
  168. package/dist-types/commands/ListContentsCommand.d.ts +103 -0
  169. package/dist-types/commands/ListImportJobsCommand.d.ts +104 -0
  170. package/dist-types/commands/ListKnowledgeBasesCommand.d.ts +107 -0
  171. package/dist-types/commands/ListQuickResponsesCommand.d.ts +106 -0
  172. package/dist-types/commands/ListTagsForResourceCommand.d.ts +78 -0
  173. package/dist-types/commands/NotifyRecommendationsReceivedCommand.d.ts +96 -0
  174. package/dist-types/commands/QueryAssistantCommand.d.ts +238 -0
  175. package/dist-types/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +80 -0
  176. package/dist-types/commands/SearchContentCommand.d.ts +113 -0
  177. package/dist-types/commands/SearchQuickResponsesCommand.d.ts +163 -0
  178. package/dist-types/commands/SearchSessionsCommand.d.ts +101 -0
  179. package/dist-types/commands/StartContentUploadCommand.d.ts +92 -0
  180. package/dist-types/commands/StartImportJobCommand.d.ts +135 -0
  181. package/dist-types/commands/TagResourceCommand.d.ts +80 -0
  182. package/dist-types/commands/UntagResourceCommand.d.ts +77 -0
  183. package/dist-types/commands/UpdateContentCommand.d.ts +114 -0
  184. package/dist-types/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +113 -0
  185. package/dist-types/commands/UpdateQuickResponseCommand.d.ts +149 -0
  186. package/dist-types/commands/index.d.ts +41 -0
  187. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  188. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  189. package/dist-types/endpoint/ruleset.d.ts +2 -0
  190. package/dist-types/extensionConfiguration.d.ts +8 -0
  191. package/dist-types/index.d.ts +27 -0
  192. package/dist-types/models/QConnectServiceException.d.ts +13 -0
  193. package/dist-types/models/index.d.ts +1 -0
  194. package/dist-types/models/models_0.d.ts +4249 -0
  195. package/dist-types/pagination/Interfaces.d.ts +8 -0
  196. package/dist-types/pagination/ListAssistantAssociationsPaginator.d.ts +7 -0
  197. package/dist-types/pagination/ListAssistantsPaginator.d.ts +7 -0
  198. package/dist-types/pagination/ListContentsPaginator.d.ts +7 -0
  199. package/dist-types/pagination/ListImportJobsPaginator.d.ts +7 -0
  200. package/dist-types/pagination/ListKnowledgeBasesPaginator.d.ts +7 -0
  201. package/dist-types/pagination/ListQuickResponsesPaginator.d.ts +7 -0
  202. package/dist-types/pagination/QueryAssistantPaginator.d.ts +7 -0
  203. package/dist-types/pagination/SearchContentPaginator.d.ts +7 -0
  204. package/dist-types/pagination/SearchQuickResponsesPaginator.d.ts +7 -0
  205. package/dist-types/pagination/SearchSessionsPaginator.d.ts +7 -0
  206. package/dist-types/pagination/index.d.ts +11 -0
  207. package/dist-types/protocols/Aws_restJson1.d.ts +371 -0
  208. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  209. package/dist-types/runtimeConfig.d.ts +46 -0
  210. package/dist-types/runtimeConfig.native.d.ts +45 -0
  211. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  212. package/dist-types/runtimeExtensions.d.ts +17 -0
  213. package/dist-types/ts3.4/QConnect.d.ts +702 -0
  214. package/dist-types/ts3.4/QConnectClient.d.ts +364 -0
  215. package/dist-types/ts3.4/commands/CreateAssistantAssociationCommand.d.ts +42 -0
  216. package/dist-types/ts3.4/commands/CreateAssistantCommand.d.ts +38 -0
  217. package/dist-types/ts3.4/commands/CreateContentCommand.d.ts +38 -0
  218. package/dist-types/ts3.4/commands/CreateKnowledgeBaseCommand.d.ts +39 -0
  219. package/dist-types/ts3.4/commands/CreateQuickResponseCommand.d.ts +39 -0
  220. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +38 -0
  221. package/dist-types/ts3.4/commands/DeleteAssistantAssociationCommand.d.ts +42 -0
  222. package/dist-types/ts3.4/commands/DeleteAssistantCommand.d.ts +38 -0
  223. package/dist-types/ts3.4/commands/DeleteContentCommand.d.ts +38 -0
  224. package/dist-types/ts3.4/commands/DeleteImportJobCommand.d.ts +38 -0
  225. package/dist-types/ts3.4/commands/DeleteKnowledgeBaseCommand.d.ts +39 -0
  226. package/dist-types/ts3.4/commands/DeleteQuickResponseCommand.d.ts +39 -0
  227. package/dist-types/ts3.4/commands/GetAssistantAssociationCommand.d.ts +42 -0
  228. package/dist-types/ts3.4/commands/GetAssistantCommand.d.ts +35 -0
  229. package/dist-types/ts3.4/commands/GetContentCommand.d.ts +35 -0
  230. package/dist-types/ts3.4/commands/GetContentSummaryCommand.d.ts +39 -0
  231. package/dist-types/ts3.4/commands/GetImportJobCommand.d.ts +35 -0
  232. package/dist-types/ts3.4/commands/GetKnowledgeBaseCommand.d.ts +38 -0
  233. package/dist-types/ts3.4/commands/GetQuickResponseCommand.d.ts +38 -0
  234. package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +39 -0
  235. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +35 -0
  236. package/dist-types/ts3.4/commands/ListAssistantAssociationsCommand.d.ts +42 -0
  237. package/dist-types/ts3.4/commands/ListAssistantsCommand.d.ts +38 -0
  238. package/dist-types/ts3.4/commands/ListContentsCommand.d.ts +35 -0
  239. package/dist-types/ts3.4/commands/ListImportJobsCommand.d.ts +38 -0
  240. package/dist-types/ts3.4/commands/ListKnowledgeBasesCommand.d.ts +39 -0
  241. package/dist-types/ts3.4/commands/ListQuickResponsesCommand.d.ts +39 -0
  242. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  243. package/dist-types/ts3.4/commands/NotifyRecommendationsReceivedCommand.d.ts +42 -0
  244. package/dist-types/ts3.4/commands/QueryAssistantCommand.d.ts +38 -0
  245. package/dist-types/ts3.4/commands/RemoveKnowledgeBaseTemplateUriCommand.d.ts +42 -0
  246. package/dist-types/ts3.4/commands/SearchContentCommand.d.ts +38 -0
  247. package/dist-types/ts3.4/commands/SearchQuickResponsesCommand.d.ts +42 -0
  248. package/dist-types/ts3.4/commands/SearchSessionsCommand.d.ts +38 -0
  249. package/dist-types/ts3.4/commands/StartContentUploadCommand.d.ts +39 -0
  250. package/dist-types/ts3.4/commands/StartImportJobCommand.d.ts +38 -0
  251. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  252. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  253. package/dist-types/ts3.4/commands/UpdateContentCommand.d.ts +38 -0
  254. package/dist-types/ts3.4/commands/UpdateKnowledgeBaseTemplateUriCommand.d.ts +42 -0
  255. package/dist-types/ts3.4/commands/UpdateQuickResponseCommand.d.ts +39 -0
  256. package/dist-types/ts3.4/commands/index.d.ts +41 -0
  257. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  258. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  259. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  260. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  261. package/dist-types/ts3.4/index.d.ts +10 -0
  262. package/dist-types/ts3.4/models/QConnectServiceException.d.ts +8 -0
  263. package/dist-types/ts3.4/models/index.d.ts +1 -0
  264. package/dist-types/ts3.4/models/models_0.d.ts +1241 -0
  265. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  266. package/dist-types/ts3.4/pagination/ListAssistantAssociationsPaginator.d.ts +11 -0
  267. package/dist-types/ts3.4/pagination/ListAssistantsPaginator.d.ts +11 -0
  268. package/dist-types/ts3.4/pagination/ListContentsPaginator.d.ts +11 -0
  269. package/dist-types/ts3.4/pagination/ListImportJobsPaginator.d.ts +11 -0
  270. package/dist-types/ts3.4/pagination/ListKnowledgeBasesPaginator.d.ts +11 -0
  271. package/dist-types/ts3.4/pagination/ListQuickResponsesPaginator.d.ts +11 -0
  272. package/dist-types/ts3.4/pagination/QueryAssistantPaginator.d.ts +11 -0
  273. package/dist-types/ts3.4/pagination/SearchContentPaginator.d.ts +11 -0
  274. package/dist-types/ts3.4/pagination/SearchQuickResponsesPaginator.d.ts +11 -0
  275. package/dist-types/ts3.4/pagination/SearchSessionsPaginator.d.ts +11 -0
  276. package/dist-types/ts3.4/pagination/index.d.ts +11 -0
  277. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +497 -0
  278. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  279. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  280. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  281. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  282. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  283. package/package.json +104 -0
@@ -0,0 +1,702 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateAssistantAssociationCommandInput,
4
+ CreateAssistantAssociationCommandOutput,
5
+ } from "./commands/CreateAssistantAssociationCommand";
6
+ import {
7
+ CreateAssistantCommandInput,
8
+ CreateAssistantCommandOutput,
9
+ } from "./commands/CreateAssistantCommand";
10
+ import {
11
+ CreateContentCommandInput,
12
+ CreateContentCommandOutput,
13
+ } from "./commands/CreateContentCommand";
14
+ import {
15
+ CreateKnowledgeBaseCommandInput,
16
+ CreateKnowledgeBaseCommandOutput,
17
+ } from "./commands/CreateKnowledgeBaseCommand";
18
+ import {
19
+ CreateQuickResponseCommandInput,
20
+ CreateQuickResponseCommandOutput,
21
+ } from "./commands/CreateQuickResponseCommand";
22
+ import {
23
+ CreateSessionCommandInput,
24
+ CreateSessionCommandOutput,
25
+ } from "./commands/CreateSessionCommand";
26
+ import {
27
+ DeleteAssistantAssociationCommandInput,
28
+ DeleteAssistantAssociationCommandOutput,
29
+ } from "./commands/DeleteAssistantAssociationCommand";
30
+ import {
31
+ DeleteAssistantCommandInput,
32
+ DeleteAssistantCommandOutput,
33
+ } from "./commands/DeleteAssistantCommand";
34
+ import {
35
+ DeleteContentCommandInput,
36
+ DeleteContentCommandOutput,
37
+ } from "./commands/DeleteContentCommand";
38
+ import {
39
+ DeleteImportJobCommandInput,
40
+ DeleteImportJobCommandOutput,
41
+ } from "./commands/DeleteImportJobCommand";
42
+ import {
43
+ DeleteKnowledgeBaseCommandInput,
44
+ DeleteKnowledgeBaseCommandOutput,
45
+ } from "./commands/DeleteKnowledgeBaseCommand";
46
+ import {
47
+ DeleteQuickResponseCommandInput,
48
+ DeleteQuickResponseCommandOutput,
49
+ } from "./commands/DeleteQuickResponseCommand";
50
+ import {
51
+ GetAssistantAssociationCommandInput,
52
+ GetAssistantAssociationCommandOutput,
53
+ } from "./commands/GetAssistantAssociationCommand";
54
+ import {
55
+ GetAssistantCommandInput,
56
+ GetAssistantCommandOutput,
57
+ } from "./commands/GetAssistantCommand";
58
+ import {
59
+ GetContentCommandInput,
60
+ GetContentCommandOutput,
61
+ } from "./commands/GetContentCommand";
62
+ import {
63
+ GetContentSummaryCommandInput,
64
+ GetContentSummaryCommandOutput,
65
+ } from "./commands/GetContentSummaryCommand";
66
+ import {
67
+ GetImportJobCommandInput,
68
+ GetImportJobCommandOutput,
69
+ } from "./commands/GetImportJobCommand";
70
+ import {
71
+ GetKnowledgeBaseCommandInput,
72
+ GetKnowledgeBaseCommandOutput,
73
+ } from "./commands/GetKnowledgeBaseCommand";
74
+ import {
75
+ GetQuickResponseCommandInput,
76
+ GetQuickResponseCommandOutput,
77
+ } from "./commands/GetQuickResponseCommand";
78
+ import {
79
+ GetRecommendationsCommandInput,
80
+ GetRecommendationsCommandOutput,
81
+ } from "./commands/GetRecommendationsCommand";
82
+ import {
83
+ GetSessionCommandInput,
84
+ GetSessionCommandOutput,
85
+ } from "./commands/GetSessionCommand";
86
+ import {
87
+ ListAssistantAssociationsCommandInput,
88
+ ListAssistantAssociationsCommandOutput,
89
+ } from "./commands/ListAssistantAssociationsCommand";
90
+ import {
91
+ ListAssistantsCommandInput,
92
+ ListAssistantsCommandOutput,
93
+ } from "./commands/ListAssistantsCommand";
94
+ import {
95
+ ListContentsCommandInput,
96
+ ListContentsCommandOutput,
97
+ } from "./commands/ListContentsCommand";
98
+ import {
99
+ ListImportJobsCommandInput,
100
+ ListImportJobsCommandOutput,
101
+ } from "./commands/ListImportJobsCommand";
102
+ import {
103
+ ListKnowledgeBasesCommandInput,
104
+ ListKnowledgeBasesCommandOutput,
105
+ } from "./commands/ListKnowledgeBasesCommand";
106
+ import {
107
+ ListQuickResponsesCommandInput,
108
+ ListQuickResponsesCommandOutput,
109
+ } from "./commands/ListQuickResponsesCommand";
110
+ import {
111
+ ListTagsForResourceCommandInput,
112
+ ListTagsForResourceCommandOutput,
113
+ } from "./commands/ListTagsForResourceCommand";
114
+ import {
115
+ NotifyRecommendationsReceivedCommandInput,
116
+ NotifyRecommendationsReceivedCommandOutput,
117
+ } from "./commands/NotifyRecommendationsReceivedCommand";
118
+ import {
119
+ QueryAssistantCommandInput,
120
+ QueryAssistantCommandOutput,
121
+ } from "./commands/QueryAssistantCommand";
122
+ import {
123
+ RemoveKnowledgeBaseTemplateUriCommandInput,
124
+ RemoveKnowledgeBaseTemplateUriCommandOutput,
125
+ } from "./commands/RemoveKnowledgeBaseTemplateUriCommand";
126
+ import {
127
+ SearchContentCommandInput,
128
+ SearchContentCommandOutput,
129
+ } from "./commands/SearchContentCommand";
130
+ import {
131
+ SearchQuickResponsesCommandInput,
132
+ SearchQuickResponsesCommandOutput,
133
+ } from "./commands/SearchQuickResponsesCommand";
134
+ import {
135
+ SearchSessionsCommandInput,
136
+ SearchSessionsCommandOutput,
137
+ } from "./commands/SearchSessionsCommand";
138
+ import {
139
+ StartContentUploadCommandInput,
140
+ StartContentUploadCommandOutput,
141
+ } from "./commands/StartContentUploadCommand";
142
+ import {
143
+ StartImportJobCommandInput,
144
+ StartImportJobCommandOutput,
145
+ } from "./commands/StartImportJobCommand";
146
+ import {
147
+ TagResourceCommandInput,
148
+ TagResourceCommandOutput,
149
+ } from "./commands/TagResourceCommand";
150
+ import {
151
+ UntagResourceCommandInput,
152
+ UntagResourceCommandOutput,
153
+ } from "./commands/UntagResourceCommand";
154
+ import {
155
+ UpdateContentCommandInput,
156
+ UpdateContentCommandOutput,
157
+ } from "./commands/UpdateContentCommand";
158
+ import {
159
+ UpdateKnowledgeBaseTemplateUriCommandInput,
160
+ UpdateKnowledgeBaseTemplateUriCommandOutput,
161
+ } from "./commands/UpdateKnowledgeBaseTemplateUriCommand";
162
+ import {
163
+ UpdateQuickResponseCommandInput,
164
+ UpdateQuickResponseCommandOutput,
165
+ } from "./commands/UpdateQuickResponseCommand";
166
+ import { QConnectClient } from "./QConnectClient";
167
+ export interface QConnect {
168
+ createAssistant(
169
+ args: CreateAssistantCommandInput,
170
+ options?: __HttpHandlerOptions
171
+ ): Promise<CreateAssistantCommandOutput>;
172
+ createAssistant(
173
+ args: CreateAssistantCommandInput,
174
+ cb: (err: any, data?: CreateAssistantCommandOutput) => void
175
+ ): void;
176
+ createAssistant(
177
+ args: CreateAssistantCommandInput,
178
+ options: __HttpHandlerOptions,
179
+ cb: (err: any, data?: CreateAssistantCommandOutput) => void
180
+ ): void;
181
+ createAssistantAssociation(
182
+ args: CreateAssistantAssociationCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<CreateAssistantAssociationCommandOutput>;
185
+ createAssistantAssociation(
186
+ args: CreateAssistantAssociationCommandInput,
187
+ cb: (err: any, data?: CreateAssistantAssociationCommandOutput) => void
188
+ ): void;
189
+ createAssistantAssociation(
190
+ args: CreateAssistantAssociationCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: CreateAssistantAssociationCommandOutput) => void
193
+ ): void;
194
+ createContent(
195
+ args: CreateContentCommandInput,
196
+ options?: __HttpHandlerOptions
197
+ ): Promise<CreateContentCommandOutput>;
198
+ createContent(
199
+ args: CreateContentCommandInput,
200
+ cb: (err: any, data?: CreateContentCommandOutput) => void
201
+ ): void;
202
+ createContent(
203
+ args: CreateContentCommandInput,
204
+ options: __HttpHandlerOptions,
205
+ cb: (err: any, data?: CreateContentCommandOutput) => void
206
+ ): void;
207
+ createKnowledgeBase(
208
+ args: CreateKnowledgeBaseCommandInput,
209
+ options?: __HttpHandlerOptions
210
+ ): Promise<CreateKnowledgeBaseCommandOutput>;
211
+ createKnowledgeBase(
212
+ args: CreateKnowledgeBaseCommandInput,
213
+ cb: (err: any, data?: CreateKnowledgeBaseCommandOutput) => void
214
+ ): void;
215
+ createKnowledgeBase(
216
+ args: CreateKnowledgeBaseCommandInput,
217
+ options: __HttpHandlerOptions,
218
+ cb: (err: any, data?: CreateKnowledgeBaseCommandOutput) => void
219
+ ): void;
220
+ createQuickResponse(
221
+ args: CreateQuickResponseCommandInput,
222
+ options?: __HttpHandlerOptions
223
+ ): Promise<CreateQuickResponseCommandOutput>;
224
+ createQuickResponse(
225
+ args: CreateQuickResponseCommandInput,
226
+ cb: (err: any, data?: CreateQuickResponseCommandOutput) => void
227
+ ): void;
228
+ createQuickResponse(
229
+ args: CreateQuickResponseCommandInput,
230
+ options: __HttpHandlerOptions,
231
+ cb: (err: any, data?: CreateQuickResponseCommandOutput) => void
232
+ ): void;
233
+ createSession(
234
+ args: CreateSessionCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<CreateSessionCommandOutput>;
237
+ createSession(
238
+ args: CreateSessionCommandInput,
239
+ cb: (err: any, data?: CreateSessionCommandOutput) => void
240
+ ): void;
241
+ createSession(
242
+ args: CreateSessionCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: CreateSessionCommandOutput) => void
245
+ ): void;
246
+ deleteAssistant(
247
+ args: DeleteAssistantCommandInput,
248
+ options?: __HttpHandlerOptions
249
+ ): Promise<DeleteAssistantCommandOutput>;
250
+ deleteAssistant(
251
+ args: DeleteAssistantCommandInput,
252
+ cb: (err: any, data?: DeleteAssistantCommandOutput) => void
253
+ ): void;
254
+ deleteAssistant(
255
+ args: DeleteAssistantCommandInput,
256
+ options: __HttpHandlerOptions,
257
+ cb: (err: any, data?: DeleteAssistantCommandOutput) => void
258
+ ): void;
259
+ deleteAssistantAssociation(
260
+ args: DeleteAssistantAssociationCommandInput,
261
+ options?: __HttpHandlerOptions
262
+ ): Promise<DeleteAssistantAssociationCommandOutput>;
263
+ deleteAssistantAssociation(
264
+ args: DeleteAssistantAssociationCommandInput,
265
+ cb: (err: any, data?: DeleteAssistantAssociationCommandOutput) => void
266
+ ): void;
267
+ deleteAssistantAssociation(
268
+ args: DeleteAssistantAssociationCommandInput,
269
+ options: __HttpHandlerOptions,
270
+ cb: (err: any, data?: DeleteAssistantAssociationCommandOutput) => void
271
+ ): void;
272
+ deleteContent(
273
+ args: DeleteContentCommandInput,
274
+ options?: __HttpHandlerOptions
275
+ ): Promise<DeleteContentCommandOutput>;
276
+ deleteContent(
277
+ args: DeleteContentCommandInput,
278
+ cb: (err: any, data?: DeleteContentCommandOutput) => void
279
+ ): void;
280
+ deleteContent(
281
+ args: DeleteContentCommandInput,
282
+ options: __HttpHandlerOptions,
283
+ cb: (err: any, data?: DeleteContentCommandOutput) => void
284
+ ): void;
285
+ deleteImportJob(
286
+ args: DeleteImportJobCommandInput,
287
+ options?: __HttpHandlerOptions
288
+ ): Promise<DeleteImportJobCommandOutput>;
289
+ deleteImportJob(
290
+ args: DeleteImportJobCommandInput,
291
+ cb: (err: any, data?: DeleteImportJobCommandOutput) => void
292
+ ): void;
293
+ deleteImportJob(
294
+ args: DeleteImportJobCommandInput,
295
+ options: __HttpHandlerOptions,
296
+ cb: (err: any, data?: DeleteImportJobCommandOutput) => void
297
+ ): void;
298
+ deleteKnowledgeBase(
299
+ args: DeleteKnowledgeBaseCommandInput,
300
+ options?: __HttpHandlerOptions
301
+ ): Promise<DeleteKnowledgeBaseCommandOutput>;
302
+ deleteKnowledgeBase(
303
+ args: DeleteKnowledgeBaseCommandInput,
304
+ cb: (err: any, data?: DeleteKnowledgeBaseCommandOutput) => void
305
+ ): void;
306
+ deleteKnowledgeBase(
307
+ args: DeleteKnowledgeBaseCommandInput,
308
+ options: __HttpHandlerOptions,
309
+ cb: (err: any, data?: DeleteKnowledgeBaseCommandOutput) => void
310
+ ): void;
311
+ deleteQuickResponse(
312
+ args: DeleteQuickResponseCommandInput,
313
+ options?: __HttpHandlerOptions
314
+ ): Promise<DeleteQuickResponseCommandOutput>;
315
+ deleteQuickResponse(
316
+ args: DeleteQuickResponseCommandInput,
317
+ cb: (err: any, data?: DeleteQuickResponseCommandOutput) => void
318
+ ): void;
319
+ deleteQuickResponse(
320
+ args: DeleteQuickResponseCommandInput,
321
+ options: __HttpHandlerOptions,
322
+ cb: (err: any, data?: DeleteQuickResponseCommandOutput) => void
323
+ ): void;
324
+ getAssistant(
325
+ args: GetAssistantCommandInput,
326
+ options?: __HttpHandlerOptions
327
+ ): Promise<GetAssistantCommandOutput>;
328
+ getAssistant(
329
+ args: GetAssistantCommandInput,
330
+ cb: (err: any, data?: GetAssistantCommandOutput) => void
331
+ ): void;
332
+ getAssistant(
333
+ args: GetAssistantCommandInput,
334
+ options: __HttpHandlerOptions,
335
+ cb: (err: any, data?: GetAssistantCommandOutput) => void
336
+ ): void;
337
+ getAssistantAssociation(
338
+ args: GetAssistantAssociationCommandInput,
339
+ options?: __HttpHandlerOptions
340
+ ): Promise<GetAssistantAssociationCommandOutput>;
341
+ getAssistantAssociation(
342
+ args: GetAssistantAssociationCommandInput,
343
+ cb: (err: any, data?: GetAssistantAssociationCommandOutput) => void
344
+ ): void;
345
+ getAssistantAssociation(
346
+ args: GetAssistantAssociationCommandInput,
347
+ options: __HttpHandlerOptions,
348
+ cb: (err: any, data?: GetAssistantAssociationCommandOutput) => void
349
+ ): void;
350
+ getContent(
351
+ args: GetContentCommandInput,
352
+ options?: __HttpHandlerOptions
353
+ ): Promise<GetContentCommandOutput>;
354
+ getContent(
355
+ args: GetContentCommandInput,
356
+ cb: (err: any, data?: GetContentCommandOutput) => void
357
+ ): void;
358
+ getContent(
359
+ args: GetContentCommandInput,
360
+ options: __HttpHandlerOptions,
361
+ cb: (err: any, data?: GetContentCommandOutput) => void
362
+ ): void;
363
+ getContentSummary(
364
+ args: GetContentSummaryCommandInput,
365
+ options?: __HttpHandlerOptions
366
+ ): Promise<GetContentSummaryCommandOutput>;
367
+ getContentSummary(
368
+ args: GetContentSummaryCommandInput,
369
+ cb: (err: any, data?: GetContentSummaryCommandOutput) => void
370
+ ): void;
371
+ getContentSummary(
372
+ args: GetContentSummaryCommandInput,
373
+ options: __HttpHandlerOptions,
374
+ cb: (err: any, data?: GetContentSummaryCommandOutput) => void
375
+ ): void;
376
+ getImportJob(
377
+ args: GetImportJobCommandInput,
378
+ options?: __HttpHandlerOptions
379
+ ): Promise<GetImportJobCommandOutput>;
380
+ getImportJob(
381
+ args: GetImportJobCommandInput,
382
+ cb: (err: any, data?: GetImportJobCommandOutput) => void
383
+ ): void;
384
+ getImportJob(
385
+ args: GetImportJobCommandInput,
386
+ options: __HttpHandlerOptions,
387
+ cb: (err: any, data?: GetImportJobCommandOutput) => void
388
+ ): void;
389
+ getKnowledgeBase(
390
+ args: GetKnowledgeBaseCommandInput,
391
+ options?: __HttpHandlerOptions
392
+ ): Promise<GetKnowledgeBaseCommandOutput>;
393
+ getKnowledgeBase(
394
+ args: GetKnowledgeBaseCommandInput,
395
+ cb: (err: any, data?: GetKnowledgeBaseCommandOutput) => void
396
+ ): void;
397
+ getKnowledgeBase(
398
+ args: GetKnowledgeBaseCommandInput,
399
+ options: __HttpHandlerOptions,
400
+ cb: (err: any, data?: GetKnowledgeBaseCommandOutput) => void
401
+ ): void;
402
+ getQuickResponse(
403
+ args: GetQuickResponseCommandInput,
404
+ options?: __HttpHandlerOptions
405
+ ): Promise<GetQuickResponseCommandOutput>;
406
+ getQuickResponse(
407
+ args: GetQuickResponseCommandInput,
408
+ cb: (err: any, data?: GetQuickResponseCommandOutput) => void
409
+ ): void;
410
+ getQuickResponse(
411
+ args: GetQuickResponseCommandInput,
412
+ options: __HttpHandlerOptions,
413
+ cb: (err: any, data?: GetQuickResponseCommandOutput) => void
414
+ ): void;
415
+ getRecommendations(
416
+ args: GetRecommendationsCommandInput,
417
+ options?: __HttpHandlerOptions
418
+ ): Promise<GetRecommendationsCommandOutput>;
419
+ getRecommendations(
420
+ args: GetRecommendationsCommandInput,
421
+ cb: (err: any, data?: GetRecommendationsCommandOutput) => void
422
+ ): void;
423
+ getRecommendations(
424
+ args: GetRecommendationsCommandInput,
425
+ options: __HttpHandlerOptions,
426
+ cb: (err: any, data?: GetRecommendationsCommandOutput) => void
427
+ ): void;
428
+ getSession(
429
+ args: GetSessionCommandInput,
430
+ options?: __HttpHandlerOptions
431
+ ): Promise<GetSessionCommandOutput>;
432
+ getSession(
433
+ args: GetSessionCommandInput,
434
+ cb: (err: any, data?: GetSessionCommandOutput) => void
435
+ ): void;
436
+ getSession(
437
+ args: GetSessionCommandInput,
438
+ options: __HttpHandlerOptions,
439
+ cb: (err: any, data?: GetSessionCommandOutput) => void
440
+ ): void;
441
+ listAssistantAssociations(
442
+ args: ListAssistantAssociationsCommandInput,
443
+ options?: __HttpHandlerOptions
444
+ ): Promise<ListAssistantAssociationsCommandOutput>;
445
+ listAssistantAssociations(
446
+ args: ListAssistantAssociationsCommandInput,
447
+ cb: (err: any, data?: ListAssistantAssociationsCommandOutput) => void
448
+ ): void;
449
+ listAssistantAssociations(
450
+ args: ListAssistantAssociationsCommandInput,
451
+ options: __HttpHandlerOptions,
452
+ cb: (err: any, data?: ListAssistantAssociationsCommandOutput) => void
453
+ ): void;
454
+ listAssistants(
455
+ args: ListAssistantsCommandInput,
456
+ options?: __HttpHandlerOptions
457
+ ): Promise<ListAssistantsCommandOutput>;
458
+ listAssistants(
459
+ args: ListAssistantsCommandInput,
460
+ cb: (err: any, data?: ListAssistantsCommandOutput) => void
461
+ ): void;
462
+ listAssistants(
463
+ args: ListAssistantsCommandInput,
464
+ options: __HttpHandlerOptions,
465
+ cb: (err: any, data?: ListAssistantsCommandOutput) => void
466
+ ): void;
467
+ listContents(
468
+ args: ListContentsCommandInput,
469
+ options?: __HttpHandlerOptions
470
+ ): Promise<ListContentsCommandOutput>;
471
+ listContents(
472
+ args: ListContentsCommandInput,
473
+ cb: (err: any, data?: ListContentsCommandOutput) => void
474
+ ): void;
475
+ listContents(
476
+ args: ListContentsCommandInput,
477
+ options: __HttpHandlerOptions,
478
+ cb: (err: any, data?: ListContentsCommandOutput) => void
479
+ ): void;
480
+ listImportJobs(
481
+ args: ListImportJobsCommandInput,
482
+ options?: __HttpHandlerOptions
483
+ ): Promise<ListImportJobsCommandOutput>;
484
+ listImportJobs(
485
+ args: ListImportJobsCommandInput,
486
+ cb: (err: any, data?: ListImportJobsCommandOutput) => void
487
+ ): void;
488
+ listImportJobs(
489
+ args: ListImportJobsCommandInput,
490
+ options: __HttpHandlerOptions,
491
+ cb: (err: any, data?: ListImportJobsCommandOutput) => void
492
+ ): void;
493
+ listKnowledgeBases(
494
+ args: ListKnowledgeBasesCommandInput,
495
+ options?: __HttpHandlerOptions
496
+ ): Promise<ListKnowledgeBasesCommandOutput>;
497
+ listKnowledgeBases(
498
+ args: ListKnowledgeBasesCommandInput,
499
+ cb: (err: any, data?: ListKnowledgeBasesCommandOutput) => void
500
+ ): void;
501
+ listKnowledgeBases(
502
+ args: ListKnowledgeBasesCommandInput,
503
+ options: __HttpHandlerOptions,
504
+ cb: (err: any, data?: ListKnowledgeBasesCommandOutput) => void
505
+ ): void;
506
+ listQuickResponses(
507
+ args: ListQuickResponsesCommandInput,
508
+ options?: __HttpHandlerOptions
509
+ ): Promise<ListQuickResponsesCommandOutput>;
510
+ listQuickResponses(
511
+ args: ListQuickResponsesCommandInput,
512
+ cb: (err: any, data?: ListQuickResponsesCommandOutput) => void
513
+ ): void;
514
+ listQuickResponses(
515
+ args: ListQuickResponsesCommandInput,
516
+ options: __HttpHandlerOptions,
517
+ cb: (err: any, data?: ListQuickResponsesCommandOutput) => void
518
+ ): void;
519
+ listTagsForResource(
520
+ args: ListTagsForResourceCommandInput,
521
+ options?: __HttpHandlerOptions
522
+ ): Promise<ListTagsForResourceCommandOutput>;
523
+ listTagsForResource(
524
+ args: ListTagsForResourceCommandInput,
525
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
526
+ ): void;
527
+ listTagsForResource(
528
+ args: ListTagsForResourceCommandInput,
529
+ options: __HttpHandlerOptions,
530
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
531
+ ): void;
532
+ notifyRecommendationsReceived(
533
+ args: NotifyRecommendationsReceivedCommandInput,
534
+ options?: __HttpHandlerOptions
535
+ ): Promise<NotifyRecommendationsReceivedCommandOutput>;
536
+ notifyRecommendationsReceived(
537
+ args: NotifyRecommendationsReceivedCommandInput,
538
+ cb: (err: any, data?: NotifyRecommendationsReceivedCommandOutput) => void
539
+ ): void;
540
+ notifyRecommendationsReceived(
541
+ args: NotifyRecommendationsReceivedCommandInput,
542
+ options: __HttpHandlerOptions,
543
+ cb: (err: any, data?: NotifyRecommendationsReceivedCommandOutput) => void
544
+ ): void;
545
+ queryAssistant(
546
+ args: QueryAssistantCommandInput,
547
+ options?: __HttpHandlerOptions
548
+ ): Promise<QueryAssistantCommandOutput>;
549
+ queryAssistant(
550
+ args: QueryAssistantCommandInput,
551
+ cb: (err: any, data?: QueryAssistantCommandOutput) => void
552
+ ): void;
553
+ queryAssistant(
554
+ args: QueryAssistantCommandInput,
555
+ options: __HttpHandlerOptions,
556
+ cb: (err: any, data?: QueryAssistantCommandOutput) => void
557
+ ): void;
558
+ removeKnowledgeBaseTemplateUri(
559
+ args: RemoveKnowledgeBaseTemplateUriCommandInput,
560
+ options?: __HttpHandlerOptions
561
+ ): Promise<RemoveKnowledgeBaseTemplateUriCommandOutput>;
562
+ removeKnowledgeBaseTemplateUri(
563
+ args: RemoveKnowledgeBaseTemplateUriCommandInput,
564
+ cb: (err: any, data?: RemoveKnowledgeBaseTemplateUriCommandOutput) => void
565
+ ): void;
566
+ removeKnowledgeBaseTemplateUri(
567
+ args: RemoveKnowledgeBaseTemplateUriCommandInput,
568
+ options: __HttpHandlerOptions,
569
+ cb: (err: any, data?: RemoveKnowledgeBaseTemplateUriCommandOutput) => void
570
+ ): void;
571
+ searchContent(
572
+ args: SearchContentCommandInput,
573
+ options?: __HttpHandlerOptions
574
+ ): Promise<SearchContentCommandOutput>;
575
+ searchContent(
576
+ args: SearchContentCommandInput,
577
+ cb: (err: any, data?: SearchContentCommandOutput) => void
578
+ ): void;
579
+ searchContent(
580
+ args: SearchContentCommandInput,
581
+ options: __HttpHandlerOptions,
582
+ cb: (err: any, data?: SearchContentCommandOutput) => void
583
+ ): void;
584
+ searchQuickResponses(
585
+ args: SearchQuickResponsesCommandInput,
586
+ options?: __HttpHandlerOptions
587
+ ): Promise<SearchQuickResponsesCommandOutput>;
588
+ searchQuickResponses(
589
+ args: SearchQuickResponsesCommandInput,
590
+ cb: (err: any, data?: SearchQuickResponsesCommandOutput) => void
591
+ ): void;
592
+ searchQuickResponses(
593
+ args: SearchQuickResponsesCommandInput,
594
+ options: __HttpHandlerOptions,
595
+ cb: (err: any, data?: SearchQuickResponsesCommandOutput) => void
596
+ ): void;
597
+ searchSessions(
598
+ args: SearchSessionsCommandInput,
599
+ options?: __HttpHandlerOptions
600
+ ): Promise<SearchSessionsCommandOutput>;
601
+ searchSessions(
602
+ args: SearchSessionsCommandInput,
603
+ cb: (err: any, data?: SearchSessionsCommandOutput) => void
604
+ ): void;
605
+ searchSessions(
606
+ args: SearchSessionsCommandInput,
607
+ options: __HttpHandlerOptions,
608
+ cb: (err: any, data?: SearchSessionsCommandOutput) => void
609
+ ): void;
610
+ startContentUpload(
611
+ args: StartContentUploadCommandInput,
612
+ options?: __HttpHandlerOptions
613
+ ): Promise<StartContentUploadCommandOutput>;
614
+ startContentUpload(
615
+ args: StartContentUploadCommandInput,
616
+ cb: (err: any, data?: StartContentUploadCommandOutput) => void
617
+ ): void;
618
+ startContentUpload(
619
+ args: StartContentUploadCommandInput,
620
+ options: __HttpHandlerOptions,
621
+ cb: (err: any, data?: StartContentUploadCommandOutput) => void
622
+ ): void;
623
+ startImportJob(
624
+ args: StartImportJobCommandInput,
625
+ options?: __HttpHandlerOptions
626
+ ): Promise<StartImportJobCommandOutput>;
627
+ startImportJob(
628
+ args: StartImportJobCommandInput,
629
+ cb: (err: any, data?: StartImportJobCommandOutput) => void
630
+ ): void;
631
+ startImportJob(
632
+ args: StartImportJobCommandInput,
633
+ options: __HttpHandlerOptions,
634
+ cb: (err: any, data?: StartImportJobCommandOutput) => void
635
+ ): void;
636
+ tagResource(
637
+ args: TagResourceCommandInput,
638
+ options?: __HttpHandlerOptions
639
+ ): Promise<TagResourceCommandOutput>;
640
+ tagResource(
641
+ args: TagResourceCommandInput,
642
+ cb: (err: any, data?: TagResourceCommandOutput) => void
643
+ ): void;
644
+ tagResource(
645
+ args: TagResourceCommandInput,
646
+ options: __HttpHandlerOptions,
647
+ cb: (err: any, data?: TagResourceCommandOutput) => void
648
+ ): void;
649
+ untagResource(
650
+ args: UntagResourceCommandInput,
651
+ options?: __HttpHandlerOptions
652
+ ): Promise<UntagResourceCommandOutput>;
653
+ untagResource(
654
+ args: UntagResourceCommandInput,
655
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
656
+ ): void;
657
+ untagResource(
658
+ args: UntagResourceCommandInput,
659
+ options: __HttpHandlerOptions,
660
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
661
+ ): void;
662
+ updateContent(
663
+ args: UpdateContentCommandInput,
664
+ options?: __HttpHandlerOptions
665
+ ): Promise<UpdateContentCommandOutput>;
666
+ updateContent(
667
+ args: UpdateContentCommandInput,
668
+ cb: (err: any, data?: UpdateContentCommandOutput) => void
669
+ ): void;
670
+ updateContent(
671
+ args: UpdateContentCommandInput,
672
+ options: __HttpHandlerOptions,
673
+ cb: (err: any, data?: UpdateContentCommandOutput) => void
674
+ ): void;
675
+ updateKnowledgeBaseTemplateUri(
676
+ args: UpdateKnowledgeBaseTemplateUriCommandInput,
677
+ options?: __HttpHandlerOptions
678
+ ): Promise<UpdateKnowledgeBaseTemplateUriCommandOutput>;
679
+ updateKnowledgeBaseTemplateUri(
680
+ args: UpdateKnowledgeBaseTemplateUriCommandInput,
681
+ cb: (err: any, data?: UpdateKnowledgeBaseTemplateUriCommandOutput) => void
682
+ ): void;
683
+ updateKnowledgeBaseTemplateUri(
684
+ args: UpdateKnowledgeBaseTemplateUriCommandInput,
685
+ options: __HttpHandlerOptions,
686
+ cb: (err: any, data?: UpdateKnowledgeBaseTemplateUriCommandOutput) => void
687
+ ): void;
688
+ updateQuickResponse(
689
+ args: UpdateQuickResponseCommandInput,
690
+ options?: __HttpHandlerOptions
691
+ ): Promise<UpdateQuickResponseCommandOutput>;
692
+ updateQuickResponse(
693
+ args: UpdateQuickResponseCommandInput,
694
+ cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void
695
+ ): void;
696
+ updateQuickResponse(
697
+ args: UpdateQuickResponseCommandInput,
698
+ options: __HttpHandlerOptions,
699
+ cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void
700
+ ): void;
701
+ }
702
+ export declare class QConnect extends QConnectClient implements QConnect {}