@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,78 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
+ import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListTagsForResourceCommand}.
14
+ */
15
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListTagsForResourceCommand}.
21
+ */
22
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Lists the tags for the specified resource.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { QConnectClient, ListTagsForResourceCommand } from "@aws-sdk/client-qconnect"; // ES Modules import
31
+ * // const { QConnectClient, ListTagsForResourceCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import
32
+ * const client = new QConnectClient(config);
33
+ * const input = { // ListTagsForResourceRequest
34
+ * resourceArn: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new ListTagsForResourceCommand(input);
37
+ * const response = await client.send(command);
38
+ * // { // ListTagsForResourceResponse
39
+ * // tags: { // Tags
40
+ * // "<keys>": "STRING_VALUE",
41
+ * // },
42
+ * // };
43
+ *
44
+ * ```
45
+ *
46
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
47
+ * @returns {@link ListTagsForResourceCommandOutput}
48
+ * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
49
+ * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
50
+ * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape.
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p>The specified resource does not exist.</p>
54
+ *
55
+ * @throws {@link QConnectServiceException}
56
+ * <p>Base exception class for all service exceptions from QConnect service.</p>
57
+ *
58
+ */
59
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, QConnectClientResolvedConfig> {
60
+ readonly input: ListTagsForResourceCommandInput;
61
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
65
+ constructor(input: ListTagsForResourceCommandInput);
66
+ /**
67
+ * @internal
68
+ */
69
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
73
+ private serialize;
74
+ /**
75
+ * @internal
76
+ */
77
+ private deserialize;
78
+ }
@@ -0,0 +1,96 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0";
5
+ import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link NotifyRecommendationsReceivedCommand}.
14
+ */
15
+ export interface NotifyRecommendationsReceivedCommandInput extends NotifyRecommendationsReceivedRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link NotifyRecommendationsReceivedCommand}.
21
+ */
22
+ export interface NotifyRecommendationsReceivedCommandOutput extends NotifyRecommendationsReceivedResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Removes the specified recommendations from the specified assistant's queue of newly
27
+ * available recommendations. You can use this API in conjunction with <a href="https://docs.aws.amazon.com/amazon-q-connect/latest/APIReference/API_GetRecommendations.html">GetRecommendations</a> and a <code>waitTimeSeconds</code> input for long-polling
28
+ * behavior and avoiding duplicate recommendations.</p>
29
+ * @example
30
+ * Use a bare-bones client and the command you need to make an API call.
31
+ * ```javascript
32
+ * import { QConnectClient, NotifyRecommendationsReceivedCommand } from "@aws-sdk/client-qconnect"; // ES Modules import
33
+ * // const { QConnectClient, NotifyRecommendationsReceivedCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import
34
+ * const client = new QConnectClient(config);
35
+ * const input = { // NotifyRecommendationsReceivedRequest
36
+ * assistantId: "STRING_VALUE", // required
37
+ * sessionId: "STRING_VALUE", // required
38
+ * recommendationIds: [ // RecommendationIdList // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * };
42
+ * const command = new NotifyRecommendationsReceivedCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // NotifyRecommendationsReceivedResponse
45
+ * // recommendationIds: [ // RecommendationIdList
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // errors: [ // NotifyRecommendationsReceivedErrorList
49
+ * // { // NotifyRecommendationsReceivedError
50
+ * // recommendationId: "STRING_VALUE",
51
+ * // message: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param NotifyRecommendationsReceivedCommandInput - {@link NotifyRecommendationsReceivedCommandInput}
59
+ * @returns {@link NotifyRecommendationsReceivedCommandOutput}
60
+ * @see {@link NotifyRecommendationsReceivedCommandInput} for command's `input` shape.
61
+ * @see {@link NotifyRecommendationsReceivedCommandOutput} for command's `response` shape.
62
+ * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>You do not have sufficient access to perform this action.</p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>The specified resource does not exist.</p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>The input fails to satisfy the constraints specified by a service.</p>
72
+ *
73
+ * @throws {@link QConnectServiceException}
74
+ * <p>Base exception class for all service exceptions from QConnect service.</p>
75
+ *
76
+ */
77
+ export declare class NotifyRecommendationsReceivedCommand extends $Command<NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput, QConnectClientResolvedConfig> {
78
+ readonly input: NotifyRecommendationsReceivedCommandInput;
79
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
83
+ constructor(input: NotifyRecommendationsReceivedCommandInput);
84
+ /**
85
+ * @internal
86
+ */
87
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<NotifyRecommendationsReceivedCommandInput, NotifyRecommendationsReceivedCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
91
+ private serialize;
92
+ /**
93
+ * @internal
94
+ */
95
+ private deserialize;
96
+ }
@@ -0,0 +1,238 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { QueryAssistantRequest, QueryAssistantResponse } from "../models/models_0";
5
+ import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link QueryAssistantCommand}.
14
+ */
15
+ export interface QueryAssistantCommandInput extends QueryAssistantRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link QueryAssistantCommand}.
21
+ */
22
+ export interface QueryAssistantCommandOutput extends QueryAssistantResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Performs a manual search against the specified assistant. To retrieve recommendations for
27
+ * an assistant, use <a href="https://docs.aws.amazon.com/amazon-q-connect/latest/APIReference/API_GetRecommendations.html">GetRecommendations</a>.
28
+ * </p>
29
+ * @example
30
+ * Use a bare-bones client and the command you need to make an API call.
31
+ * ```javascript
32
+ * import { QConnectClient, QueryAssistantCommand } from "@aws-sdk/client-qconnect"; // ES Modules import
33
+ * // const { QConnectClient, QueryAssistantCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import
34
+ * const client = new QConnectClient(config);
35
+ * const input = { // QueryAssistantRequest
36
+ * assistantId: "STRING_VALUE", // required
37
+ * queryText: "STRING_VALUE", // required
38
+ * nextToken: "STRING_VALUE",
39
+ * maxResults: Number("int"),
40
+ * sessionId: "STRING_VALUE",
41
+ * queryCondition: [ // QueryConditionExpression
42
+ * { // QueryCondition Union: only one key present
43
+ * single: { // QueryConditionItem
44
+ * field: "STRING_VALUE", // required
45
+ * comparator: "STRING_VALUE", // required
46
+ * value: "STRING_VALUE", // required
47
+ * },
48
+ * },
49
+ * ],
50
+ * };
51
+ * const command = new QueryAssistantCommand(input);
52
+ * const response = await client.send(command);
53
+ * // { // QueryAssistantResponse
54
+ * // results: [ // QueryResultsList // required
55
+ * // { // ResultData
56
+ * // resultId: "STRING_VALUE", // required
57
+ * // document: { // Document
58
+ * // contentReference: { // ContentReference
59
+ * // knowledgeBaseArn: "STRING_VALUE",
60
+ * // knowledgeBaseId: "STRING_VALUE",
61
+ * // contentArn: "STRING_VALUE",
62
+ * // contentId: "STRING_VALUE",
63
+ * // },
64
+ * // title: { // DocumentText
65
+ * // text: "STRING_VALUE",
66
+ * // highlights: [ // Highlights
67
+ * // { // Highlight
68
+ * // beginOffsetInclusive: Number("int"),
69
+ * // endOffsetExclusive: Number("int"),
70
+ * // },
71
+ * // ],
72
+ * // },
73
+ * // excerpt: {
74
+ * // text: "STRING_VALUE",
75
+ * // highlights: [
76
+ * // {
77
+ * // beginOffsetInclusive: Number("int"),
78
+ * // endOffsetExclusive: Number("int"),
79
+ * // },
80
+ * // ],
81
+ * // },
82
+ * // },
83
+ * // relevanceScore: Number("double"),
84
+ * // data: { // DataSummary
85
+ * // reference: { // DataReference Union: only one key present
86
+ * // contentReference: {
87
+ * // knowledgeBaseArn: "STRING_VALUE",
88
+ * // knowledgeBaseId: "STRING_VALUE",
89
+ * // contentArn: "STRING_VALUE",
90
+ * // contentId: "STRING_VALUE",
91
+ * // },
92
+ * // generativeReference: { // GenerativeReference
93
+ * // modelId: "STRING_VALUE",
94
+ * // generationId: "STRING_VALUE",
95
+ * // },
96
+ * // },
97
+ * // details: { // DataDetails Union: only one key present
98
+ * // contentData: { // ContentDataDetails
99
+ * // textData: { // TextData
100
+ * // title: {
101
+ * // text: "STRING_VALUE",
102
+ * // highlights: [
103
+ * // {
104
+ * // beginOffsetInclusive: Number("int"),
105
+ * // endOffsetExclusive: Number("int"),
106
+ * // },
107
+ * // ],
108
+ * // },
109
+ * // excerpt: {
110
+ * // text: "STRING_VALUE",
111
+ * // highlights: [
112
+ * // {
113
+ * // beginOffsetInclusive: Number("int"),
114
+ * // endOffsetExclusive: Number("int"),
115
+ * // },
116
+ * // ],
117
+ * // },
118
+ * // },
119
+ * // rankingData: { // RankingData
120
+ * // relevanceScore: Number("double"),
121
+ * // relevanceLevel: "STRING_VALUE",
122
+ * // },
123
+ * // },
124
+ * // generativeData: { // GenerativeDataDetails
125
+ * // completion: "STRING_VALUE", // required
126
+ * // references: [ // DataSummaryList // required
127
+ * // {
128
+ * // reference: {// Union: only one key present
129
+ * // contentReference: "<ContentReference>",
130
+ * // generativeReference: {
131
+ * // modelId: "STRING_VALUE",
132
+ * // generationId: "STRING_VALUE",
133
+ * // },
134
+ * // },
135
+ * // details: {// Union: only one key present
136
+ * // contentData: {
137
+ * // textData: {
138
+ * // title: "<DocumentText>",
139
+ * // excerpt: "<DocumentText>",
140
+ * // },
141
+ * // rankingData: {
142
+ * // relevanceScore: Number("double"),
143
+ * // relevanceLevel: "STRING_VALUE",
144
+ * // },
145
+ * // },
146
+ * // generativeData: {
147
+ * // completion: "STRING_VALUE", // required
148
+ * // references: [ // required
149
+ * // "<DataSummary>",
150
+ * // ],
151
+ * // rankingData: {
152
+ * // relevanceScore: Number("double"),
153
+ * // relevanceLevel: "STRING_VALUE",
154
+ * // },
155
+ * // },
156
+ * // sourceContentData: { // SourceContentDataDetails
157
+ * // id: "STRING_VALUE", // required
158
+ * // type: "STRING_VALUE", // required
159
+ * // textData: {
160
+ * // title: "<DocumentText>",
161
+ * // excerpt: "<DocumentText>",
162
+ * // },
163
+ * // rankingData: {
164
+ * // relevanceScore: Number("double"),
165
+ * // relevanceLevel: "STRING_VALUE",
166
+ * // },
167
+ * // },
168
+ * // },
169
+ * // },
170
+ * // ],
171
+ * // rankingData: {
172
+ * // relevanceScore: Number("double"),
173
+ * // relevanceLevel: "STRING_VALUE",
174
+ * // },
175
+ * // },
176
+ * // sourceContentData: {
177
+ * // id: "STRING_VALUE", // required
178
+ * // type: "STRING_VALUE", // required
179
+ * // textData: {
180
+ * // title: "<DocumentText>",
181
+ * // excerpt: "<DocumentText>",
182
+ * // },
183
+ * // rankingData: "<RankingData>", // required
184
+ * // },
185
+ * // },
186
+ * // },
187
+ * // type: "STRING_VALUE",
188
+ * // },
189
+ * // ],
190
+ * // nextToken: "STRING_VALUE",
191
+ * // };
192
+ *
193
+ * ```
194
+ *
195
+ * @param QueryAssistantCommandInput - {@link QueryAssistantCommandInput}
196
+ * @returns {@link QueryAssistantCommandOutput}
197
+ * @see {@link QueryAssistantCommandInput} for command's `input` shape.
198
+ * @see {@link QueryAssistantCommandOutput} for command's `response` shape.
199
+ * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape.
200
+ *
201
+ * @throws {@link AccessDeniedException} (client fault)
202
+ * <p>You do not have sufficient access to perform this action.</p>
203
+ *
204
+ * @throws {@link RequestTimeoutException} (client fault)
205
+ * <p>The request reached the service more than 15 minutes after the date stamp on the request
206
+ * or more than 15 minutes after the request expiration date (such as for pre-signed URLs), or
207
+ * the date stamp on the request is more than 15 minutes in the future.</p>
208
+ *
209
+ * @throws {@link ResourceNotFoundException} (client fault)
210
+ * <p>The specified resource does not exist.</p>
211
+ *
212
+ * @throws {@link ValidationException} (client fault)
213
+ * <p>The input fails to satisfy the constraints specified by a service.</p>
214
+ *
215
+ * @throws {@link QConnectServiceException}
216
+ * <p>Base exception class for all service exceptions from QConnect service.</p>
217
+ *
218
+ */
219
+ export declare class QueryAssistantCommand extends $Command<QueryAssistantCommandInput, QueryAssistantCommandOutput, QConnectClientResolvedConfig> {
220
+ readonly input: QueryAssistantCommandInput;
221
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
222
+ /**
223
+ * @public
224
+ */
225
+ constructor(input: QueryAssistantCommandInput);
226
+ /**
227
+ * @internal
228
+ */
229
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<QueryAssistantCommandInput, QueryAssistantCommandOutput>;
230
+ /**
231
+ * @internal
232
+ */
233
+ private serialize;
234
+ /**
235
+ * @internal
236
+ */
237
+ private deserialize;
238
+ }
@@ -0,0 +1,80 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_0";
5
+ import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link RemoveKnowledgeBaseTemplateUriCommand}.
14
+ */
15
+ export interface RemoveKnowledgeBaseTemplateUriCommandInput extends RemoveKnowledgeBaseTemplateUriRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link RemoveKnowledgeBaseTemplateUriCommand}.
21
+ */
22
+ export interface RemoveKnowledgeBaseTemplateUriCommandOutput extends RemoveKnowledgeBaseTemplateUriResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Removes a URI template from a knowledge base.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { QConnectClient, RemoveKnowledgeBaseTemplateUriCommand } from "@aws-sdk/client-qconnect"; // ES Modules import
31
+ * // const { QConnectClient, RemoveKnowledgeBaseTemplateUriCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import
32
+ * const client = new QConnectClient(config);
33
+ * const input = { // RemoveKnowledgeBaseTemplateUriRequest
34
+ * knowledgeBaseId: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new RemoveKnowledgeBaseTemplateUriCommand(input);
37
+ * const response = await client.send(command);
38
+ * // {};
39
+ *
40
+ * ```
41
+ *
42
+ * @param RemoveKnowledgeBaseTemplateUriCommandInput - {@link RemoveKnowledgeBaseTemplateUriCommandInput}
43
+ * @returns {@link RemoveKnowledgeBaseTemplateUriCommandOutput}
44
+ * @see {@link RemoveKnowledgeBaseTemplateUriCommandInput} for command's `input` shape.
45
+ * @see {@link RemoveKnowledgeBaseTemplateUriCommandOutput} for command's `response` shape.
46
+ * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape.
47
+ *
48
+ * @throws {@link AccessDeniedException} (client fault)
49
+ * <p>You do not have sufficient access to perform this action.</p>
50
+ *
51
+ * @throws {@link ResourceNotFoundException} (client fault)
52
+ * <p>The specified resource does not exist.</p>
53
+ *
54
+ * @throws {@link ValidationException} (client fault)
55
+ * <p>The input fails to satisfy the constraints specified by a service.</p>
56
+ *
57
+ * @throws {@link QConnectServiceException}
58
+ * <p>Base exception class for all service exceptions from QConnect service.</p>
59
+ *
60
+ */
61
+ export declare class RemoveKnowledgeBaseTemplateUriCommand extends $Command<RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput, QConnectClientResolvedConfig> {
62
+ readonly input: RemoveKnowledgeBaseTemplateUriCommandInput;
63
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
67
+ constructor(input: RemoveKnowledgeBaseTemplateUriCommandInput);
68
+ /**
69
+ * @internal
70
+ */
71
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveKnowledgeBaseTemplateUriCommandInput, RemoveKnowledgeBaseTemplateUriCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
75
+ private serialize;
76
+ /**
77
+ * @internal
78
+ */
79
+ private deserialize;
80
+ }
@@ -0,0 +1,113 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { SearchContentRequest, SearchContentResponse } from "../models/models_0";
5
+ import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link SearchContentCommand}.
14
+ */
15
+ export interface SearchContentCommandInput extends SearchContentRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link SearchContentCommand}.
21
+ */
22
+ export interface SearchContentCommandOutput extends SearchContentResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Searches for content in a specified knowledge base. Can be used to get a specific content
27
+ * resource by its name.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { QConnectClient, SearchContentCommand } from "@aws-sdk/client-qconnect"; // ES Modules import
32
+ * // const { QConnectClient, SearchContentCommand } = require("@aws-sdk/client-qconnect"); // CommonJS import
33
+ * const client = new QConnectClient(config);
34
+ * const input = { // SearchContentRequest
35
+ * nextToken: "STRING_VALUE",
36
+ * maxResults: Number("int"),
37
+ * knowledgeBaseId: "STRING_VALUE", // required
38
+ * searchExpression: { // SearchExpression
39
+ * filters: [ // FilterList // required
40
+ * { // Filter
41
+ * field: "STRING_VALUE", // required
42
+ * operator: "STRING_VALUE", // required
43
+ * value: "STRING_VALUE", // required
44
+ * },
45
+ * ],
46
+ * },
47
+ * };
48
+ * const command = new SearchContentCommand(input);
49
+ * const response = await client.send(command);
50
+ * // { // SearchContentResponse
51
+ * // contentSummaries: [ // ContentSummaryList // required
52
+ * // { // ContentSummary
53
+ * // contentArn: "STRING_VALUE", // required
54
+ * // contentId: "STRING_VALUE", // required
55
+ * // knowledgeBaseArn: "STRING_VALUE", // required
56
+ * // knowledgeBaseId: "STRING_VALUE", // required
57
+ * // name: "STRING_VALUE", // required
58
+ * // revisionId: "STRING_VALUE", // required
59
+ * // title: "STRING_VALUE", // required
60
+ * // contentType: "STRING_VALUE", // required
61
+ * // status: "STRING_VALUE", // required
62
+ * // metadata: { // ContentMetadata // required
63
+ * // "<keys>": "STRING_VALUE",
64
+ * // },
65
+ * // tags: { // Tags
66
+ * // "<keys>": "STRING_VALUE",
67
+ * // },
68
+ * // },
69
+ * // ],
70
+ * // nextToken: "STRING_VALUE",
71
+ * // };
72
+ *
73
+ * ```
74
+ *
75
+ * @param SearchContentCommandInput - {@link SearchContentCommandInput}
76
+ * @returns {@link SearchContentCommandOutput}
77
+ * @see {@link SearchContentCommandInput} for command's `input` shape.
78
+ * @see {@link SearchContentCommandOutput} for command's `response` shape.
79
+ * @see {@link QConnectClientResolvedConfig | config} for QConnectClient's `config` shape.
80
+ *
81
+ * @throws {@link AccessDeniedException} (client fault)
82
+ * <p>You do not have sufficient access to perform this action.</p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>The specified resource does not exist.</p>
86
+ *
87
+ * @throws {@link ValidationException} (client fault)
88
+ * <p>The input fails to satisfy the constraints specified by a service.</p>
89
+ *
90
+ * @throws {@link QConnectServiceException}
91
+ * <p>Base exception class for all service exceptions from QConnect service.</p>
92
+ *
93
+ */
94
+ export declare class SearchContentCommand extends $Command<SearchContentCommandInput, SearchContentCommandOutput, QConnectClientResolvedConfig> {
95
+ readonly input: SearchContentCommandInput;
96
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
97
+ /**
98
+ * @public
99
+ */
100
+ constructor(input: SearchContentCommandInput);
101
+ /**
102
+ * @internal
103
+ */
104
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: QConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchContentCommandInput, SearchContentCommandOutput>;
105
+ /**
106
+ * @internal
107
+ */
108
+ private serialize;
109
+ /**
110
+ * @internal
111
+ */
112
+ private deserialize;
113
+ }