@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,364 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ AwsAuthInputConfig,
7
+ AwsAuthResolvedConfig,
8
+ } from "@aws-sdk/middleware-signing";
9
+ import {
10
+ UserAgentInputConfig,
11
+ UserAgentResolvedConfig,
12
+ } from "@aws-sdk/middleware-user-agent";
13
+ import { Credentials as __Credentials } from "@aws-sdk/types";
14
+ import {
15
+ RegionInputConfig,
16
+ RegionResolvedConfig,
17
+ } from "@smithy/config-resolver";
18
+ import {
19
+ EndpointInputConfig,
20
+ EndpointResolvedConfig,
21
+ } from "@smithy/middleware-endpoint";
22
+ import {
23
+ RetryInputConfig,
24
+ RetryResolvedConfig,
25
+ } from "@smithy/middleware-retry";
26
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
27
+ import {
28
+ Client as __Client,
29
+ DefaultsMode as __DefaultsMode,
30
+ SmithyConfiguration as __SmithyConfiguration,
31
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
32
+ } from "@smithy/smithy-client";
33
+ import {
34
+ BodyLengthCalculator as __BodyLengthCalculator,
35
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
36
+ ChecksumConstructor as __ChecksumConstructor,
37
+ Decoder as __Decoder,
38
+ Encoder as __Encoder,
39
+ HashConstructor as __HashConstructor,
40
+ HttpHandlerOptions as __HttpHandlerOptions,
41
+ Logger as __Logger,
42
+ Provider as __Provider,
43
+ Provider,
44
+ StreamCollector as __StreamCollector,
45
+ UrlParser as __UrlParser,
46
+ UserAgent as __UserAgent,
47
+ } from "@smithy/types";
48
+ import {
49
+ CreateAssistantAssociationCommandInput,
50
+ CreateAssistantAssociationCommandOutput,
51
+ } from "./commands/CreateAssistantAssociationCommand";
52
+ import {
53
+ CreateAssistantCommandInput,
54
+ CreateAssistantCommandOutput,
55
+ } from "./commands/CreateAssistantCommand";
56
+ import {
57
+ CreateContentCommandInput,
58
+ CreateContentCommandOutput,
59
+ } from "./commands/CreateContentCommand";
60
+ import {
61
+ CreateKnowledgeBaseCommandInput,
62
+ CreateKnowledgeBaseCommandOutput,
63
+ } from "./commands/CreateKnowledgeBaseCommand";
64
+ import {
65
+ CreateQuickResponseCommandInput,
66
+ CreateQuickResponseCommandOutput,
67
+ } from "./commands/CreateQuickResponseCommand";
68
+ import {
69
+ CreateSessionCommandInput,
70
+ CreateSessionCommandOutput,
71
+ } from "./commands/CreateSessionCommand";
72
+ import {
73
+ DeleteAssistantAssociationCommandInput,
74
+ DeleteAssistantAssociationCommandOutput,
75
+ } from "./commands/DeleteAssistantAssociationCommand";
76
+ import {
77
+ DeleteAssistantCommandInput,
78
+ DeleteAssistantCommandOutput,
79
+ } from "./commands/DeleteAssistantCommand";
80
+ import {
81
+ DeleteContentCommandInput,
82
+ DeleteContentCommandOutput,
83
+ } from "./commands/DeleteContentCommand";
84
+ import {
85
+ DeleteImportJobCommandInput,
86
+ DeleteImportJobCommandOutput,
87
+ } from "./commands/DeleteImportJobCommand";
88
+ import {
89
+ DeleteKnowledgeBaseCommandInput,
90
+ DeleteKnowledgeBaseCommandOutput,
91
+ } from "./commands/DeleteKnowledgeBaseCommand";
92
+ import {
93
+ DeleteQuickResponseCommandInput,
94
+ DeleteQuickResponseCommandOutput,
95
+ } from "./commands/DeleteQuickResponseCommand";
96
+ import {
97
+ GetAssistantAssociationCommandInput,
98
+ GetAssistantAssociationCommandOutput,
99
+ } from "./commands/GetAssistantAssociationCommand";
100
+ import {
101
+ GetAssistantCommandInput,
102
+ GetAssistantCommandOutput,
103
+ } from "./commands/GetAssistantCommand";
104
+ import {
105
+ GetContentCommandInput,
106
+ GetContentCommandOutput,
107
+ } from "./commands/GetContentCommand";
108
+ import {
109
+ GetContentSummaryCommandInput,
110
+ GetContentSummaryCommandOutput,
111
+ } from "./commands/GetContentSummaryCommand";
112
+ import {
113
+ GetImportJobCommandInput,
114
+ GetImportJobCommandOutput,
115
+ } from "./commands/GetImportJobCommand";
116
+ import {
117
+ GetKnowledgeBaseCommandInput,
118
+ GetKnowledgeBaseCommandOutput,
119
+ } from "./commands/GetKnowledgeBaseCommand";
120
+ import {
121
+ GetQuickResponseCommandInput,
122
+ GetQuickResponseCommandOutput,
123
+ } from "./commands/GetQuickResponseCommand";
124
+ import {
125
+ GetRecommendationsCommandInput,
126
+ GetRecommendationsCommandOutput,
127
+ } from "./commands/GetRecommendationsCommand";
128
+ import {
129
+ GetSessionCommandInput,
130
+ GetSessionCommandOutput,
131
+ } from "./commands/GetSessionCommand";
132
+ import {
133
+ ListAssistantAssociationsCommandInput,
134
+ ListAssistantAssociationsCommandOutput,
135
+ } from "./commands/ListAssistantAssociationsCommand";
136
+ import {
137
+ ListAssistantsCommandInput,
138
+ ListAssistantsCommandOutput,
139
+ } from "./commands/ListAssistantsCommand";
140
+ import {
141
+ ListContentsCommandInput,
142
+ ListContentsCommandOutput,
143
+ } from "./commands/ListContentsCommand";
144
+ import {
145
+ ListImportJobsCommandInput,
146
+ ListImportJobsCommandOutput,
147
+ } from "./commands/ListImportJobsCommand";
148
+ import {
149
+ ListKnowledgeBasesCommandInput,
150
+ ListKnowledgeBasesCommandOutput,
151
+ } from "./commands/ListKnowledgeBasesCommand";
152
+ import {
153
+ ListQuickResponsesCommandInput,
154
+ ListQuickResponsesCommandOutput,
155
+ } from "./commands/ListQuickResponsesCommand";
156
+ import {
157
+ ListTagsForResourceCommandInput,
158
+ ListTagsForResourceCommandOutput,
159
+ } from "./commands/ListTagsForResourceCommand";
160
+ import {
161
+ NotifyRecommendationsReceivedCommandInput,
162
+ NotifyRecommendationsReceivedCommandOutput,
163
+ } from "./commands/NotifyRecommendationsReceivedCommand";
164
+ import {
165
+ QueryAssistantCommandInput,
166
+ QueryAssistantCommandOutput,
167
+ } from "./commands/QueryAssistantCommand";
168
+ import {
169
+ RemoveKnowledgeBaseTemplateUriCommandInput,
170
+ RemoveKnowledgeBaseTemplateUriCommandOutput,
171
+ } from "./commands/RemoveKnowledgeBaseTemplateUriCommand";
172
+ import {
173
+ SearchContentCommandInput,
174
+ SearchContentCommandOutput,
175
+ } from "./commands/SearchContentCommand";
176
+ import {
177
+ SearchQuickResponsesCommandInput,
178
+ SearchQuickResponsesCommandOutput,
179
+ } from "./commands/SearchQuickResponsesCommand";
180
+ import {
181
+ SearchSessionsCommandInput,
182
+ SearchSessionsCommandOutput,
183
+ } from "./commands/SearchSessionsCommand";
184
+ import {
185
+ StartContentUploadCommandInput,
186
+ StartContentUploadCommandOutput,
187
+ } from "./commands/StartContentUploadCommand";
188
+ import {
189
+ StartImportJobCommandInput,
190
+ StartImportJobCommandOutput,
191
+ } from "./commands/StartImportJobCommand";
192
+ import {
193
+ TagResourceCommandInput,
194
+ TagResourceCommandOutput,
195
+ } from "./commands/TagResourceCommand";
196
+ import {
197
+ UntagResourceCommandInput,
198
+ UntagResourceCommandOutput,
199
+ } from "./commands/UntagResourceCommand";
200
+ import {
201
+ UpdateContentCommandInput,
202
+ UpdateContentCommandOutput,
203
+ } from "./commands/UpdateContentCommand";
204
+ import {
205
+ UpdateKnowledgeBaseTemplateUriCommandInput,
206
+ UpdateKnowledgeBaseTemplateUriCommandOutput,
207
+ } from "./commands/UpdateKnowledgeBaseTemplateUriCommand";
208
+ import {
209
+ UpdateQuickResponseCommandInput,
210
+ UpdateQuickResponseCommandOutput,
211
+ } from "./commands/UpdateQuickResponseCommand";
212
+ import {
213
+ ClientInputEndpointParameters,
214
+ ClientResolvedEndpointParameters,
215
+ EndpointParameters,
216
+ } from "./endpoint/EndpointParameters";
217
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
218
+ export { __Client };
219
+ export type ServiceInputTypes =
220
+ | CreateAssistantAssociationCommandInput
221
+ | CreateAssistantCommandInput
222
+ | CreateContentCommandInput
223
+ | CreateKnowledgeBaseCommandInput
224
+ | CreateQuickResponseCommandInput
225
+ | CreateSessionCommandInput
226
+ | DeleteAssistantAssociationCommandInput
227
+ | DeleteAssistantCommandInput
228
+ | DeleteContentCommandInput
229
+ | DeleteImportJobCommandInput
230
+ | DeleteKnowledgeBaseCommandInput
231
+ | DeleteQuickResponseCommandInput
232
+ | GetAssistantAssociationCommandInput
233
+ | GetAssistantCommandInput
234
+ | GetContentCommandInput
235
+ | GetContentSummaryCommandInput
236
+ | GetImportJobCommandInput
237
+ | GetKnowledgeBaseCommandInput
238
+ | GetQuickResponseCommandInput
239
+ | GetRecommendationsCommandInput
240
+ | GetSessionCommandInput
241
+ | ListAssistantAssociationsCommandInput
242
+ | ListAssistantsCommandInput
243
+ | ListContentsCommandInput
244
+ | ListImportJobsCommandInput
245
+ | ListKnowledgeBasesCommandInput
246
+ | ListQuickResponsesCommandInput
247
+ | ListTagsForResourceCommandInput
248
+ | NotifyRecommendationsReceivedCommandInput
249
+ | QueryAssistantCommandInput
250
+ | RemoveKnowledgeBaseTemplateUriCommandInput
251
+ | SearchContentCommandInput
252
+ | SearchQuickResponsesCommandInput
253
+ | SearchSessionsCommandInput
254
+ | StartContentUploadCommandInput
255
+ | StartImportJobCommandInput
256
+ | TagResourceCommandInput
257
+ | UntagResourceCommandInput
258
+ | UpdateContentCommandInput
259
+ | UpdateKnowledgeBaseTemplateUriCommandInput
260
+ | UpdateQuickResponseCommandInput;
261
+ export type ServiceOutputTypes =
262
+ | CreateAssistantAssociationCommandOutput
263
+ | CreateAssistantCommandOutput
264
+ | CreateContentCommandOutput
265
+ | CreateKnowledgeBaseCommandOutput
266
+ | CreateQuickResponseCommandOutput
267
+ | CreateSessionCommandOutput
268
+ | DeleteAssistantAssociationCommandOutput
269
+ | DeleteAssistantCommandOutput
270
+ | DeleteContentCommandOutput
271
+ | DeleteImportJobCommandOutput
272
+ | DeleteKnowledgeBaseCommandOutput
273
+ | DeleteQuickResponseCommandOutput
274
+ | GetAssistantAssociationCommandOutput
275
+ | GetAssistantCommandOutput
276
+ | GetContentCommandOutput
277
+ | GetContentSummaryCommandOutput
278
+ | GetImportJobCommandOutput
279
+ | GetKnowledgeBaseCommandOutput
280
+ | GetQuickResponseCommandOutput
281
+ | GetRecommendationsCommandOutput
282
+ | GetSessionCommandOutput
283
+ | ListAssistantAssociationsCommandOutput
284
+ | ListAssistantsCommandOutput
285
+ | ListContentsCommandOutput
286
+ | ListImportJobsCommandOutput
287
+ | ListKnowledgeBasesCommandOutput
288
+ | ListQuickResponsesCommandOutput
289
+ | ListTagsForResourceCommandOutput
290
+ | NotifyRecommendationsReceivedCommandOutput
291
+ | QueryAssistantCommandOutput
292
+ | RemoveKnowledgeBaseTemplateUriCommandOutput
293
+ | SearchContentCommandOutput
294
+ | SearchQuickResponsesCommandOutput
295
+ | SearchSessionsCommandOutput
296
+ | StartContentUploadCommandOutput
297
+ | StartImportJobCommandOutput
298
+ | TagResourceCommandOutput
299
+ | UntagResourceCommandOutput
300
+ | UpdateContentCommandOutput
301
+ | UpdateKnowledgeBaseTemplateUriCommandOutput
302
+ | UpdateQuickResponseCommandOutput;
303
+ export interface ClientDefaults
304
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
305
+ requestHandler?: __HttpHandler;
306
+ sha256?: __ChecksumConstructor | __HashConstructor;
307
+ urlParser?: __UrlParser;
308
+ bodyLengthChecker?: __BodyLengthCalculator;
309
+ streamCollector?: __StreamCollector;
310
+ base64Decoder?: __Decoder;
311
+ base64Encoder?: __Encoder;
312
+ utf8Decoder?: __Decoder;
313
+ utf8Encoder?: __Encoder;
314
+ runtime?: string;
315
+ disableHostPrefix?: boolean;
316
+ serviceId?: string;
317
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
318
+ useFipsEndpoint?: boolean | __Provider<boolean>;
319
+ region?: string | __Provider<string>;
320
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
321
+ defaultUserAgentProvider?: Provider<__UserAgent>;
322
+ maxAttempts?: number | __Provider<number>;
323
+ retryMode?: string | __Provider<string>;
324
+ logger?: __Logger;
325
+ extensions?: RuntimeExtension[];
326
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
327
+ }
328
+ export type QConnectClientConfigType = Partial<
329
+ __SmithyConfiguration<__HttpHandlerOptions>
330
+ > &
331
+ ClientDefaults &
332
+ RegionInputConfig &
333
+ EndpointInputConfig<EndpointParameters> &
334
+ RetryInputConfig &
335
+ HostHeaderInputConfig &
336
+ AwsAuthInputConfig &
337
+ UserAgentInputConfig &
338
+ ClientInputEndpointParameters;
339
+ export interface QConnectClientConfig extends QConnectClientConfigType {}
340
+ export type QConnectClientResolvedConfigType =
341
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
342
+ Required<ClientDefaults> &
343
+ RuntimeExtensionsConfig &
344
+ RegionResolvedConfig &
345
+ EndpointResolvedConfig<EndpointParameters> &
346
+ RetryResolvedConfig &
347
+ HostHeaderResolvedConfig &
348
+ AwsAuthResolvedConfig &
349
+ UserAgentResolvedConfig &
350
+ ClientResolvedEndpointParameters;
351
+ export interface QConnectClientResolvedConfig
352
+ extends QConnectClientResolvedConfigType {}
353
+ export declare class QConnectClient extends __Client<
354
+ __HttpHandlerOptions,
355
+ ServiceInputTypes,
356
+ ServiceOutputTypes,
357
+ QConnectClientResolvedConfig
358
+ > {
359
+ readonly config: QConnectClientResolvedConfig;
360
+ constructor(
361
+ ...[configuration]: __CheckOptionalClientConfig<QConnectClientConfig>
362
+ );
363
+ destroy(): void;
364
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateAssistantAssociationRequest,
11
+ CreateAssistantAssociationResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateAssistantAssociationCommandInput
20
+ extends CreateAssistantAssociationRequest {}
21
+ export interface CreateAssistantAssociationCommandOutput
22
+ extends CreateAssistantAssociationResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateAssistantAssociationCommand extends $Command<
25
+ CreateAssistantAssociationCommandInput,
26
+ CreateAssistantAssociationCommandOutput,
27
+ QConnectClientResolvedConfig
28
+ > {
29
+ readonly input: CreateAssistantAssociationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateAssistantAssociationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: QConnectClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateAssistantAssociationCommandInput,
38
+ CreateAssistantAssociationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateAssistantRequest,
11
+ CreateAssistantResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateAssistantCommandInput extends CreateAssistantRequest {}
20
+ export interface CreateAssistantCommandOutput
21
+ extends CreateAssistantResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateAssistantCommand extends $Command<
24
+ CreateAssistantCommandInput,
25
+ CreateAssistantCommandOutput,
26
+ QConnectClientResolvedConfig
27
+ > {
28
+ readonly input: CreateAssistantCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateAssistantCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: QConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateAssistantCommandInput, CreateAssistantCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateContentRequest,
11
+ CreateContentResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateContentCommandInput extends CreateContentRequest {}
20
+ export interface CreateContentCommandOutput
21
+ extends CreateContentResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateContentCommand extends $Command<
24
+ CreateContentCommandInput,
25
+ CreateContentCommandOutput,
26
+ QConnectClientResolvedConfig
27
+ > {
28
+ readonly input: CreateContentCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateContentCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: QConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateContentCommandInput, CreateContentCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateKnowledgeBaseRequest,
11
+ CreateKnowledgeBaseResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateKnowledgeBaseCommandInput
20
+ extends CreateKnowledgeBaseRequest {}
21
+ export interface CreateKnowledgeBaseCommandOutput
22
+ extends CreateKnowledgeBaseResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateKnowledgeBaseCommand extends $Command<
25
+ CreateKnowledgeBaseCommandInput,
26
+ CreateKnowledgeBaseCommandOutput,
27
+ QConnectClientResolvedConfig
28
+ > {
29
+ readonly input: CreateKnowledgeBaseCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateKnowledgeBaseCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: QConnectClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<CreateKnowledgeBaseCommandInput, CreateKnowledgeBaseCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateQuickResponseRequest,
11
+ CreateQuickResponseResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateQuickResponseCommandInput
20
+ extends CreateQuickResponseRequest {}
21
+ export interface CreateQuickResponseCommandOutput
22
+ extends CreateQuickResponseResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateQuickResponseCommand extends $Command<
25
+ CreateQuickResponseCommandInput,
26
+ CreateQuickResponseCommandOutput,
27
+ QConnectClientResolvedConfig
28
+ > {
29
+ readonly input: CreateQuickResponseCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateQuickResponseCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: QConnectClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<CreateQuickResponseCommandInput, CreateQuickResponseCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateSessionRequest,
11
+ CreateSessionResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateSessionCommandInput extends CreateSessionRequest {}
20
+ export interface CreateSessionCommandOutput
21
+ extends CreateSessionResponse,
22
+ __MetadataBearer {}
23
+ export declare class CreateSessionCommand extends $Command<
24
+ CreateSessionCommandInput,
25
+ CreateSessionCommandOutput,
26
+ QConnectClientResolvedConfig
27
+ > {
28
+ readonly input: CreateSessionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateSessionCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: QConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateSessionCommandInput, CreateSessionCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DeleteAssistantAssociationRequest,
11
+ DeleteAssistantAssociationResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteAssistantAssociationCommandInput
20
+ extends DeleteAssistantAssociationRequest {}
21
+ export interface DeleteAssistantAssociationCommandOutput
22
+ extends DeleteAssistantAssociationResponse,
23
+ __MetadataBearer {}
24
+ export declare class DeleteAssistantAssociationCommand extends $Command<
25
+ DeleteAssistantAssociationCommandInput,
26
+ DeleteAssistantAssociationCommandOutput,
27
+ QConnectClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteAssistantAssociationCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteAssistantAssociationCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: QConnectClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeleteAssistantAssociationCommandInput,
38
+ DeleteAssistantAssociationCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DeleteAssistantRequest,
11
+ DeleteAssistantResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ QConnectClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../QConnectClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteAssistantCommandInput extends DeleteAssistantRequest {}
20
+ export interface DeleteAssistantCommandOutput
21
+ extends DeleteAssistantResponse,
22
+ __MetadataBearer {}
23
+ export declare class DeleteAssistantCommand extends $Command<
24
+ DeleteAssistantCommandInput,
25
+ DeleteAssistantCommandOutput,
26
+ QConnectClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteAssistantCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteAssistantCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: QConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteAssistantCommandInput, DeleteAssistantCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }