@aws/lsp-codewhisperer 0.0.16 → 0.0.17

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 (1518) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/node_modules/@amzn/codewhisperer-streaming/README.md +235 -60
  3. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js +2 -0
  4. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js +15 -9
  5. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  7. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js +16 -32
  8. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js +16 -32
  9. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js +16 -32
  10. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/SendMessageCommand.js +26 -0
  11. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js +1 -0
  12. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js +139 -95
  13. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js +541 -135
  14. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js +227 -221
  15. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js +5 -4
  16. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js +15 -10
  17. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js +1 -1
  18. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js +23 -13
  19. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js +3 -0
  20. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js +7 -5
  21. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js +26 -20
  22. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  23. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  24. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js +20 -36
  25. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js +20 -36
  26. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js +20 -36
  27. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/SendMessageCommand.js +22 -0
  28. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/index.js +4 -3
  29. package/node_modules/@amzn/codewhisperer-streaming/dist-es/endpoints.js +140 -96
  30. package/node_modules/@amzn/codewhisperer-streaming/dist-es/index.js +5 -5
  31. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js +1 -1
  32. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/index.js +1 -1
  33. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/models_0.js +509 -135
  34. package/node_modules/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js +218 -214
  35. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js +16 -15
  36. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js +29 -24
  37. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js +3 -3
  38. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js +28 -18
  39. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js +6 -3
  40. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts +12 -5
  41. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts +25 -20
  42. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  43. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
  44. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts +31 -27
  45. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts +263 -30
  46. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts +263 -30
  47. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/SendMessageCommand.d.ts +636 -0
  48. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts +4 -3
  49. package/node_modules/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts +1 -1
  50. package/node_modules/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts +5 -4
  51. package/node_modules/@amzn/codewhisperer-streaming/dist-types/index.d.ts +7 -5
  52. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts +3 -2
  53. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts +1 -1
  54. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts +1313 -229
  55. package/node_modules/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts +14 -5
  56. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts +14 -10
  57. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts +1 -36
  58. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts +13 -9
  59. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts +9 -1
  60. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts +1 -1
  61. package/node_modules/@amzn/codewhisperer-streaming/package.json +47 -47
  62. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +118 -0
  63. package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
  64. package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
  65. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +10 -0
  66. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +43 -0
  67. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +1 -0
  68. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +8 -0
  69. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +30 -0
  70. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +1 -0
  71. package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +2 -0
  72. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +8 -0
  73. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +1 -0
  74. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +2 -0
  75. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +11 -0
  76. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +1 -0
  77. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +10 -0
  78. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +56 -0
  79. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +1 -0
  80. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +10 -0
  81. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +40 -0
  82. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +1 -0
  83. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +8 -0
  84. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +27 -0
  85. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +1 -0
  86. package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +2 -0
  87. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +3 -0
  88. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +1 -0
  89. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +2 -0
  90. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +7 -0
  91. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +1 -0
  92. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +10 -0
  93. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +53 -0
  94. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +1 -0
  95. package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
  96. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
  97. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +30 -0
  98. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +2 -0
  99. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
  100. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
  101. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +10 -0
  102. package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +7 -0
  103. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +106 -0
  104. package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
  105. package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
  106. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +17 -0
  107. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +124 -0
  108. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +1 -0
  109. package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +20 -0
  110. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +98 -0
  111. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +1 -0
  112. package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +1 -0
  113. package/node_modules/@aws-crypto/sha256-js/build/main/index.js +5 -0
  114. package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +1 -0
  115. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +12 -0
  116. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +85 -0
  117. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +1 -0
  118. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +5 -0
  119. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +322 -0
  120. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +1 -0
  121. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +17 -0
  122. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +121 -0
  123. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +1 -0
  124. package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +20 -0
  125. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +95 -0
  126. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +1 -0
  127. package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +1 -0
  128. package/node_modules/@aws-crypto/sha256-js/build/module/index.js +2 -0
  129. package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +1 -0
  130. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +12 -0
  131. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +82 -0
  132. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +1 -0
  133. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +5 -0
  134. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +319 -0
  135. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +1 -0
  136. package/node_modules/@aws-crypto/sha256-js/package.json +32 -0
  137. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
  138. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
  139. package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
  140. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
  141. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
  142. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +10 -0
  143. package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +7 -0
  144. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +66 -0
  145. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
  146. package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
  147. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +1 -0
  148. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +5 -0
  149. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +1 -0
  150. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +4 -0
  151. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +69 -0
  152. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +1 -0
  153. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +1 -0
  154. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +2 -0
  155. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +1 -0
  156. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +4 -0
  157. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +62 -0
  158. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +1 -0
  159. package/node_modules/@aws-crypto/supports-web-crypto/package.json +28 -0
  160. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
  161. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
  162. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +10 -0
  163. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +7 -0
  164. package/node_modules/@aws-crypto/util/CHANGELOG.md +71 -0
  165. package/node_modules/@aws-crypto/util/LICENSE +201 -0
  166. package/node_modules/@aws-crypto/util/README.md +16 -0
  167. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +2 -0
  168. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +24 -0
  169. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +1 -0
  170. package/node_modules/@aws-crypto/util/build/main/index.d.ts +4 -0
  171. package/node_modules/@aws-crypto/util/build/main/index.js +14 -0
  172. package/node_modules/@aws-crypto/util/build/main/index.js.map +1 -0
  173. package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +2 -0
  174. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +13 -0
  175. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +1 -0
  176. package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +1 -0
  177. package/node_modules/@aws-crypto/util/build/main/numToUint8.js +15 -0
  178. package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +1 -0
  179. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +1 -0
  180. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +20 -0
  181. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +1 -0
  182. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +2 -0
  183. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +20 -0
  184. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +1 -0
  185. package/node_modules/@aws-crypto/util/build/module/index.d.ts +4 -0
  186. package/node_modules/@aws-crypto/util/build/module/index.js +7 -0
  187. package/node_modules/@aws-crypto/util/build/module/index.js.map +1 -0
  188. package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +2 -0
  189. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +9 -0
  190. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +1 -0
  191. package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +1 -0
  192. package/node_modules/@aws-crypto/util/build/module/numToUint8.js +11 -0
  193. package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +1 -0
  194. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +1 -0
  195. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +16 -0
  196. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +1 -0
  197. package/node_modules/@aws-crypto/util/package.json +32 -0
  198. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
  199. package/node_modules/@aws-crypto/util/src/index.ts +7 -0
  200. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
  201. package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
  202. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
  203. package/node_modules/@aws-crypto/util/tsconfig.json +9 -0
  204. package/node_modules/@aws-crypto/util/tsconfig.module.json +7 -0
  205. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  206. package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  207. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +71 -0
  208. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
  209. package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
  210. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
  211. package/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
  212. package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  213. package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  214. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +80 -0
  215. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
  216. package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
  217. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
  218. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
  219. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
  220. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
  221. package/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
  222. package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  223. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  224. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +68 -0
  225. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
  226. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
  227. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
  228. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
  229. package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  230. package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  231. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +123 -0
  232. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
  233. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
  234. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
  235. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
  236. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -0
  237. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
  238. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
  239. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
  240. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
  241. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
  242. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
  243. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
  244. package/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -0
  245. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  246. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  247. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
  248. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
  249. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +17 -0
  250. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
  251. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
  252. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +9 -0
  253. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
  254. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
  255. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
  256. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
  257. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
  258. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  259. package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  260. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +95 -0
  261. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
  262. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +39 -0
  263. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
  264. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
  265. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -0
  266. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
  267. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
  268. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
  269. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
  270. package/node_modules/@aws-sdk/util-user-agent-node/package.json +63 -0
  271. package/node_modules/@smithy/config-resolver/README.md +10 -0
  272. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
  273. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
  274. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
  275. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
  276. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
  277. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
  278. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
  279. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
  280. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
  281. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
  282. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
  283. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
  284. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
  285. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
  286. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
  287. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
  288. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
  289. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
  290. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
  291. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
  292. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
  293. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -0
  294. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
  295. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
  296. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
  297. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
  298. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
  299. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
  300. package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
  301. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
  302. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
  303. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
  304. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
  305. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
  306. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
  307. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
  308. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
  309. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
  310. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
  311. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
  312. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  313. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  314. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
  315. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  316. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  317. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  318. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
  319. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
  320. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
  321. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
  322. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
  323. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
  324. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +10 -0
  325. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
  326. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
  327. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
  328. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
  329. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
  330. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
  331. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
  332. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  333. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
  334. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  335. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  336. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
  337. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  338. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  339. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  340. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
  341. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
  342. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
  343. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
  344. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
  345. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
  346. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +10 -0
  347. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
  348. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
  349. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
  350. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
  351. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
  352. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
  353. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
  354. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  355. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
  356. package/node_modules/@smithy/config-resolver/package.json +63 -0
  357. package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
  358. package/node_modules/@smithy/fetch-http-handler/README.md +11 -0
  359. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
  360. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +255 -0
  361. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
  362. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
  363. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +138 -0
  364. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
  365. package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
  366. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +50 -0
  367. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
  368. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
  369. package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
  370. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
  371. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
  372. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  373. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  374. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
  375. package/node_modules/@smithy/fetch-http-handler/package.json +62 -0
  376. package/node_modules/@smithy/hash-node/LICENSE +201 -0
  377. package/node_modules/@smithy/hash-node/README.md +10 -0
  378. package/node_modules/@smithy/hash-node/dist-cjs/index.js +66 -0
  379. package/node_modules/@smithy/hash-node/dist-es/index.js +34 -0
  380. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
  381. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
  382. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/LICENSE +201 -0
  383. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/README.md +4 -0
  384. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  385. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  386. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
  387. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  388. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  389. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  390. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  391. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  392. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  393. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  394. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
  395. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
  396. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  397. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  398. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  399. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  400. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
  401. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
  402. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  403. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  404. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  405. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  406. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
  407. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
  408. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/package.json +65 -0
  409. package/node_modules/@smithy/hash-node/package.json +63 -0
  410. package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
  411. package/node_modules/@smithy/middleware-content-length/README.md +4 -0
  412. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +71 -0
  413. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
  414. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
  415. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
  416. package/node_modules/@smithy/middleware-content-length/package.json +62 -0
  417. package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
  418. package/node_modules/@smithy/middleware-retry/README.md +11 -0
  419. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  420. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  421. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
  422. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
  423. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
  424. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +425 -0
  425. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
  426. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
  427. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +1 -0
  428. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
  429. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
  430. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
  431. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
  432. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
  433. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
  434. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -0
  435. package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
  436. package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
  437. package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
  438. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
  439. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
  440. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
  441. package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
  442. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
  443. package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
  444. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
  445. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
  446. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +45 -0
  447. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
  448. package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -0
  449. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
  450. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  451. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  452. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
  453. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +5 -0
  454. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
  455. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
  456. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
  457. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +45 -0
  458. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
  459. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
  460. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
  461. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  462. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  463. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
  464. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +5 -0
  465. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
  466. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -0
  467. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
  468. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +53 -0
  469. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
  470. package/node_modules/@smithy/middleware-retry/package.json +77 -0
  471. package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
  472. package/node_modules/@smithy/middleware-serde/README.md +4 -0
  473. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +1 -0
  474. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +102 -0
  475. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
  476. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
  477. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +25 -0
  478. package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
  479. package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
  480. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +13 -0
  481. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +5 -0
  482. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
  483. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +12 -0
  484. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
  485. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +5 -0
  486. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
  487. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +12 -0
  488. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
  489. package/node_modules/@smithy/middleware-serde/package.json +61 -0
  490. package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
  491. package/node_modules/@smithy/node-config-provider/README.md +4 -0
  492. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
  493. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
  494. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
  495. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
  496. package/node_modules/@smithy/node-config-provider/dist-cjs/getSelectorName.js +1 -0
  497. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +105 -0
  498. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
  499. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
  500. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
  501. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
  502. package/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
  503. package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
  504. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +22 -0
  505. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
  506. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
  507. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
  508. package/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
  509. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
  510. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
  511. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
  512. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
  513. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
  514. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
  515. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
  516. package/node_modules/@smithy/node-config-provider/package.json +64 -0
  517. package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
  518. package/node_modules/@smithy/node-http-handler/README.md +4 -0
  519. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
  520. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
  521. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
  522. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
  523. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
  524. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
  525. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
  526. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
  527. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
  528. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
  529. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
  530. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
  531. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
  532. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
  533. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
  534. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -0
  535. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
  536. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
  537. package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
  538. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
  539. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
  540. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
  541. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
  542. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
  543. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
  544. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
  545. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
  546. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
  547. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
  548. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
  549. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
  550. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
  551. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
  552. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
  553. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
  554. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
  555. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
  556. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
  557. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
  558. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
  559. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
  560. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  561. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
  562. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  563. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
  564. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
  565. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
  566. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  567. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  568. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  569. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
  570. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
  571. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
  572. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
  573. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  574. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
  575. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  576. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  577. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  578. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
  579. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
  580. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  581. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  582. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
  583. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/LICENSE +201 -0
  584. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/README.md +4 -0
  585. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +1 -0
  586. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
  587. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
  588. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -0
  589. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
  590. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
  591. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
  592. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
  593. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
  594. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
  595. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
  596. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
  597. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/package.json +62 -0
  598. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/LICENSE +201 -0
  599. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/README.md +4 -0
  600. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/Field.js +1 -0
  601. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
  602. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
  603. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
  604. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
  605. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
  606. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
  607. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
  608. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
  609. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
  610. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
  611. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
  612. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -0
  613. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
  614. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +48 -0
  615. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -0
  616. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
  617. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
  618. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +49 -0
  619. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
  620. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +37 -0
  621. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
  622. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +37 -0
  623. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
  624. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -0
  625. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
  626. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
  627. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +49 -0
  628. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
  629. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +37 -0
  630. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
  631. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +37 -0
  632. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
  633. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -0
  634. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
  635. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
  636. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
  637. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
  638. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/package.json +61 -0
  639. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/LICENSE +201 -0
  640. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/README.md +10 -0
  641. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-cjs/index.js +52 -0
  642. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
  643. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
  644. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
  645. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/package.json +61 -0
  646. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/LICENSE +201 -0
  647. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/README.md +80 -0
  648. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
  649. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
  650. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
  651. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
  652. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
  653. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
  654. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
  655. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
  656. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
  657. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
  658. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/client.js +1 -0
  659. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/command.js +1 -0
  660. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
  661. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
  662. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
  663. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
  664. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
  665. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
  666. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
  667. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
  668. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
  669. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
  670. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
  671. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
  672. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
  673. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
  674. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
  675. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
  676. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
  677. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  678. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
  679. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
  680. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
  681. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
  682. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/http.js +1 -0
  683. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
  684. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
  685. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
  686. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
  687. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
  688. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/index.js +149 -0
  689. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
  690. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
  691. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
  692. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
  693. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/response.js +1 -0
  694. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
  695. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
  696. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
  697. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
  698. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
  699. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
  700. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  701. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  702. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
  703. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
  704. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
  705. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
  706. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
  707. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
  708. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
  709. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/util.js +1 -0
  710. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/waiter.js +1 -0
  711. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
  712. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
  713. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
  714. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
  715. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
  716. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
  717. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/checksum.js +39 -0
  718. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -0
  719. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
  720. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/http.js +5 -0
  721. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
  722. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/index.js +36 -0
  723. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/logger.js +1 -0
  724. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/middleware.js +1 -0
  725. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/pagination.js +1 -0
  726. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/profile.js +6 -0
  727. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/response.js +1 -0
  728. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/retry.js +1 -0
  729. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/serde.js +1 -0
  730. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/shapes.js +1 -0
  731. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/signature.js +1 -0
  732. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/stream.js +1 -0
  733. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
  734. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  735. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  736. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transfer.js +6 -0
  737. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
  738. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
  739. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
  740. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
  741. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
  742. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/uri.js +1 -0
  743. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/util.js +1 -0
  744. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/waiter.js +1 -0
  745. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/abort.d.ts +49 -0
  746. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
  747. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
  748. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
  749. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
  750. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
  751. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
  752. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
  753. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +41 -0
  754. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
  755. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
  756. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
  757. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -0
  758. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
  759. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/manager.d.ts +28 -0
  760. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -0
  761. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
  762. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
  763. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/encode.d.ts +19 -0
  764. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
  765. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
  766. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
  767. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
  768. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -0
  769. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
  770. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +25 -0
  771. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
  772. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -0
  773. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
  774. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
  775. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
  776. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
  777. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
  778. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +79 -0
  779. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/http.d.ts +105 -0
  780. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
  781. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +27 -0
  782. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
  783. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
  784. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
  785. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/index.d.ts +36 -0
  786. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
  787. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
  788. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -0
  789. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
  790. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
  791. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
  792. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/serde.d.ts +111 -0
  793. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/shapes.d.ts +81 -0
  794. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/signature.d.ts +150 -0
  795. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
  796. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  797. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
  798. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
  799. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -0
  800. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
  801. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +73 -0
  802. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
  803. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -0
  804. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
  805. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +49 -0
  806. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  807. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  808. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  809. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  810. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  811. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
  812. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
  813. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
  814. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
  815. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +44 -0
  816. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
  817. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -0
  818. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  819. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +28 -0
  820. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -0
  821. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
  822. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
  823. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +19 -0
  824. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  825. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +15 -0
  826. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
  827. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
  828. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -0
  829. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  830. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +25 -0
  831. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
  832. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -0
  833. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
  834. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  835. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
  836. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  837. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  838. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +78 -0
  839. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -0
  840. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  841. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +27 -0
  842. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  843. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  844. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  845. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +36 -0
  846. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  847. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +510 -0
  848. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -0
  849. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  850. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  851. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
  852. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +111 -0
  853. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +81 -0
  854. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -0
  855. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  856. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  857. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
  858. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
  859. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -0
  860. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  861. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +84 -0
  862. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  863. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +82 -0
  864. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
  865. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  866. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
  867. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  868. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
  869. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
  870. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
  871. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/package.json +61 -0
  872. package/node_modules/@smithy/node-http-handler/package.json +67 -0
  873. package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
  874. package/node_modules/@smithy/service-error-classification/README.md +4 -0
  875. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +1 -0
  876. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +98 -0
  877. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
  878. package/node_modules/@smithy/service-error-classification/dist-es/index.js +21 -0
  879. package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
  880. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +19 -0
  881. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
  882. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +19 -0
  883. package/node_modules/@smithy/service-error-classification/package.json +58 -0
  884. package/node_modules/@smithy/smithy-client/LICENSE +201 -0
  885. package/node_modules/@smithy/smithy-client/README.md +10 -0
  886. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +1 -0
  887. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
  888. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
  889. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
  890. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
  891. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
  892. package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
  893. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
  894. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
  895. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
  896. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
  897. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
  898. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
  899. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  900. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
  901. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
  902. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
  903. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
  904. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1309 -0
  905. package/node_modules/@smithy/smithy-client/dist-cjs/is-serializable-header-value.js +1 -0
  906. package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
  907. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
  908. package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
  909. package/node_modules/@smithy/smithy-client/dist-cjs/quote-header.js +1 -0
  910. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
  911. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
  912. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
  913. package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
  914. package/node_modules/@smithy/smithy-client/dist-cjs/split-header.js +1 -0
  915. package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
  916. package/node_modules/@smithy/smithy-client/dist-es/client.js +42 -0
  917. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
  918. package/node_modules/@smithy/smithy-client/dist-es/command.js +115 -0
  919. package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
  920. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
  921. package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +190 -0
  922. package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
  923. package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
  924. package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
  925. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +22 -0
  926. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
  927. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
  928. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -0
  929. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
  930. package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +16 -0
  931. package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
  932. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
  933. package/node_modules/@smithy/smithy-client/dist-es/index.js +25 -0
  934. package/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
  935. package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
  936. package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
  937. package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
  938. package/node_modules/@smithy/smithy-client/dist-es/quote-header.js +6 -0
  939. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
  940. package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
  941. package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
  942. package/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -0
  943. package/node_modules/@smithy/smithy-client/dist-es/split-header.js +37 -0
  944. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
  945. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +53 -0
  946. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
  947. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +113 -0
  948. package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
  949. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -0
  950. package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
  951. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -0
  952. package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
  953. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
  954. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +34 -0
  955. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
  956. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -0
  957. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
  958. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
  959. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +15 -0
  960. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
  961. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
  962. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +26 -0
  963. package/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
  964. package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
  965. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
  966. package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
  967. package/node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts +6 -0
  968. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
  969. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +14 -0
  970. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
  971. package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -0
  972. package/node_modules/@smithy/smithy-client/dist-types/split-header.d.ts +5 -0
  973. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
  974. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +53 -0
  975. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
  976. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +113 -0
  977. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
  978. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +9 -0
  979. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
  980. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -0
  981. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
  982. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
  983. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +34 -0
  984. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
  985. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -0
  986. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
  987. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
  988. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +15 -0
  989. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
  990. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
  991. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +26 -0
  992. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
  993. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -0
  994. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
  995. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +270 -0
  996. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/quote-header.d.ts +6 -0
  997. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
  998. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +14 -0
  999. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
  1000. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
  1001. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-header.d.ts +5 -0
  1002. package/node_modules/@smithy/smithy-client/package.json +66 -0
  1003. package/node_modules/@smithy/util-base64/LICENSE +201 -0
  1004. package/node_modules/@smithy/util-base64/README.md +4 -0
  1005. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +35 -0
  1006. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
  1007. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
  1008. package/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
  1009. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +39 -0
  1010. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
  1011. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -0
  1012. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
  1013. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
  1014. package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
  1015. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
  1016. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
  1017. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -0
  1018. package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
  1019. package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
  1020. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
  1021. package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
  1022. package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
  1023. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -0
  1024. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
  1025. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
  1026. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
  1027. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
  1028. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
  1029. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/LICENSE +201 -0
  1030. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/README.md +4 -0
  1031. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  1032. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  1033. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
  1034. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  1035. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  1036. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  1037. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  1038. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  1039. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  1040. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  1041. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
  1042. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
  1043. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  1044. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  1045. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  1046. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  1047. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
  1048. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
  1049. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  1050. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  1051. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  1052. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  1053. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
  1054. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
  1055. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/package.json +65 -0
  1056. package/node_modules/@smithy/util-base64/package.json +72 -0
  1057. package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
  1058. package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
  1059. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +1 -0
  1060. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -0
  1061. package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
  1062. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
  1063. package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
  1064. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
  1065. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  1066. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
  1067. package/node_modules/@smithy/util-body-length-browser/package.json +56 -0
  1068. package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
  1069. package/node_modules/@smithy/util-body-length-node/README.md +12 -0
  1070. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +1 -0
  1071. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
  1072. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -0
  1073. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
  1074. package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
  1075. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
  1076. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  1077. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
  1078. package/node_modules/@smithy/util-body-length-node/package.json +60 -0
  1079. package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
  1080. package/node_modules/@smithy/util-buffer-from/README.md +10 -0
  1081. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
  1082. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
  1083. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
  1084. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
  1085. package/node_modules/@smithy/util-buffer-from/package.json +60 -0
  1086. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
  1087. package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
  1088. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
  1089. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +25 -0
  1090. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
  1091. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
  1092. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
  1093. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
  1094. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
  1095. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
  1096. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
  1097. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
  1098. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  1099. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
  1100. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
  1101. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
  1102. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  1103. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
  1104. package/node_modules/@smithy/util-defaults-mode-browser/package.json +65 -0
  1105. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
  1106. package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
  1107. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +1 -0
  1108. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
  1109. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +119 -0
  1110. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -0
  1111. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
  1112. package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
  1113. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
  1114. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
  1115. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
  1116. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
  1117. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
  1118. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  1119. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
  1120. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
  1121. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
  1122. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  1123. package/node_modules/@smithy/util-defaults-mode-node/package.json +65 -0
  1124. package/node_modules/@smithy/util-retry/LICENSE +201 -0
  1125. package/node_modules/@smithy/util-retry/README.md +78 -0
  1126. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  1127. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
  1128. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
  1129. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  1130. package/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
  1131. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
  1132. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
  1133. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
  1134. package/node_modules/@smithy/util-retry/dist-cjs/index.js +348 -0
  1135. package/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
  1136. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
  1137. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
  1138. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
  1139. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -0
  1140. package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
  1141. package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
  1142. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
  1143. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
  1144. package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
  1145. package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
  1146. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
  1147. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
  1148. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +45 -0
  1149. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
  1150. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
  1151. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
  1152. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
  1153. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
  1154. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
  1155. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
  1156. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
  1157. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +45 -0
  1158. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
  1159. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
  1160. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
  1161. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
  1162. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
  1163. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
  1164. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
  1165. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
  1166. package/node_modules/@smithy/util-retry/package.json +67 -0
  1167. package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
  1168. package/node_modules/@smithy/util-uri-escape/README.md +10 -0
  1169. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +1 -0
  1170. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
  1171. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -0
  1172. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
  1173. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
  1174. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
  1175. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
  1176. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
  1177. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
  1178. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
  1179. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
  1180. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
  1181. package/node_modules/@smithy/util-uri-escape/package.json +59 -0
  1182. package/out/client/streamingClient/codewhispererStreamingClient.js +7 -8
  1183. package/out/client/streamingClient/codewhispererStreamingClient.js.map +1 -1
  1184. package/out/client/token/bearer-token-service.json +2472 -470
  1185. package/out/constants.d.ts +2 -0
  1186. package/out/constants.js +6 -0
  1187. package/out/constants.js.map +1 -0
  1188. package/out/language-server/auto-trigger/coefficients.json +11 -1
  1189. package/out/language-server/chat/chatController.d.ts +4 -3
  1190. package/out/language-server/chat/chatController.js +90 -31
  1191. package/out/language-server/chat/chatController.js.map +1 -1
  1192. package/out/language-server/chat/chatController.test.js +51 -28
  1193. package/out/language-server/chat/chatController.test.js.map +1 -1
  1194. package/out/language-server/chat/chatEventParser.d.ts +7 -2
  1195. package/out/language-server/chat/chatEventParser.js +13 -5
  1196. package/out/language-server/chat/chatEventParser.js.map +1 -1
  1197. package/out/language-server/chat/chatEventParser.test.js +88 -42
  1198. package/out/language-server/chat/chatEventParser.test.js.map +1 -1
  1199. package/out/language-server/chat/chatSessionService.d.ts +4 -4
  1200. package/out/language-server/chat/chatSessionService.js +13 -13
  1201. package/out/language-server/chat/chatSessionService.js.map +1 -1
  1202. package/out/language-server/chat/chatSessionService.test.js +19 -25
  1203. package/out/language-server/chat/chatSessionService.test.js.map +1 -1
  1204. package/out/language-server/chat/contexts/documentContext.d.ts +1 -4
  1205. package/out/language-server/chat/contexts/documentContext.js +1 -17
  1206. package/out/language-server/chat/contexts/documentContext.js.map +1 -1
  1207. package/out/language-server/chat/contexts/documentContext.test.js +0 -7
  1208. package/out/language-server/chat/contexts/documentContext.test.js.map +1 -1
  1209. package/out/language-server/chat/contexts/triggerContext.d.ts +3 -4
  1210. package/out/language-server/chat/contexts/triggerContext.js +0 -4
  1211. package/out/language-server/chat/contexts/triggerContext.js.map +1 -1
  1212. package/out/language-server/chat/contexts/triggerContexts.test.js +0 -1
  1213. package/out/language-server/chat/contexts/triggerContexts.test.js.map +1 -1
  1214. package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +7 -2
  1215. package/out/language-server/chat/telemetry/chatTelemetryController.js +68 -44
  1216. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  1217. package/out/language-server/chat/telemetry/chatTelemetryController.test.js +112 -1
  1218. package/out/language-server/chat/telemetry/chatTelemetryController.test.js.map +1 -1
  1219. package/out/language-server/chat/telemetry/clientTelemetry.d.ts +0 -1
  1220. package/out/language-server/chat/telemetry/clientTelemetry.js.map +1 -1
  1221. package/out/language-server/codeWhispererSecurityScanServer.js +2 -1
  1222. package/out/language-server/codeWhispererSecurityScanServer.js.map +1 -1
  1223. package/out/language-server/codeWhispererServer.js +67 -46
  1224. package/out/language-server/codeWhispererServer.js.map +1 -1
  1225. package/out/language-server/codeWhispererServer.test.js +73 -2
  1226. package/out/language-server/codeWhispererServer.test.js.map +1 -1
  1227. package/out/language-server/codeWhispererService.d.ts +14 -11
  1228. package/out/language-server/codeWhispererService.js +25 -12
  1229. package/out/language-server/codeWhispererService.js.map +1 -1
  1230. package/out/language-server/configuration/qConfigurationServer.js +2 -2
  1231. package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
  1232. package/out/language-server/constants.d.ts +1 -0
  1233. package/out/language-server/constants.js +2 -1
  1234. package/out/language-server/constants.js.map +1 -1
  1235. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js +2 -3
  1236. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js.map +1 -1
  1237. package/out/language-server/dependencyGraph/dependencyGraph.js +2 -2
  1238. package/out/language-server/dependencyGraph/dependencyGraph.js.map +1 -1
  1239. package/out/language-server/languageDetection.d.ts +9 -1
  1240. package/out/language-server/languageDetection.js +71 -5
  1241. package/out/language-server/languageDetection.js.map +1 -1
  1242. package/out/language-server/netTransform/artifactManager.js +12 -10
  1243. package/out/language-server/netTransform/artifactManager.js.map +1 -1
  1244. package/out/language-server/netTransform/converter.d.ts +1 -2
  1245. package/out/language-server/netTransform/converter.js +3 -48
  1246. package/out/language-server/netTransform/converter.js.map +1 -1
  1247. package/out/language-server/netTransform/models.d.ts +4 -0
  1248. package/out/language-server/netTransform/models.js.map +1 -1
  1249. package/out/language-server/netTransform/resources/SupportedProjects.js +0 -1
  1250. package/out/language-server/netTransform/resources/SupportedProjects.js.map +1 -1
  1251. package/out/language-server/netTransform/tests/converter.test.js +2 -159
  1252. package/out/language-server/netTransform/tests/converter.test.js.map +1 -1
  1253. package/out/language-server/netTransform/tests/validation.test.js +2 -0
  1254. package/out/language-server/netTransform/tests/validation.test.js.map +1 -1
  1255. package/out/language-server/netTransform/transformHandler.js +25 -35
  1256. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  1257. package/out/language-server/netTransformServer.js +2 -21
  1258. package/out/language-server/netTransformServer.js.map +1 -1
  1259. package/out/language-server/proxy-server.js +9 -83
  1260. package/out/language-server/proxy-server.js.map +1 -1
  1261. package/out/language-server/qChatServer.js +13 -4
  1262. package/out/language-server/qChatServer.js.map +1 -1
  1263. package/out/language-server/session/sessionManager.d.ts +7 -2
  1264. package/out/language-server/session/sessionManager.js +2 -0
  1265. package/out/language-server/session/sessionManager.js.map +1 -1
  1266. package/out/language-server/session/sessionManager.test.js +4 -0
  1267. package/out/language-server/session/sessionManager.test.js.map +1 -1
  1268. package/out/language-server/telemetry/codeDiffTracker.d.ts +2 -1
  1269. package/out/language-server/telemetry/codeDiffTracker.js +6 -1
  1270. package/out/language-server/telemetry/codeDiffTracker.js.map +1 -1
  1271. package/out/language-server/telemetry/codePercentage.d.ts +6 -4
  1272. package/out/language-server/telemetry/codePercentage.js +49 -12
  1273. package/out/language-server/telemetry/codePercentage.js.map +1 -1
  1274. package/out/language-server/telemetry/codePercentage.test.js +169 -41
  1275. package/out/language-server/telemetry/codePercentage.test.js.map +1 -1
  1276. package/out/language-server/telemetry/types.d.ts +2 -1
  1277. package/out/language-server/telemetry/types.js.map +1 -1
  1278. package/out/language-server/telemetry/userTriggerDecision.test.js +560 -156
  1279. package/out/language-server/telemetry/userTriggerDecision.test.js.map +1 -1
  1280. package/out/language-server/telemetry.test.js +11 -9
  1281. package/out/language-server/telemetry.test.js.map +1 -1
  1282. package/out/language-server/telemetryService.d.ts +79 -0
  1283. package/out/language-server/telemetryService.js +321 -0
  1284. package/out/language-server/telemetryService.js.map +1 -0
  1285. package/out/language-server/telemetryService.test.d.ts +1 -0
  1286. package/out/language-server/telemetryService.test.js +761 -0
  1287. package/out/language-server/telemetryService.test.js.map +1 -0
  1288. package/out/language-server/utilities/telemetryUtils.d.ts +4 -0
  1289. package/out/language-server/utilities/telemetryUtils.js +89 -0
  1290. package/out/language-server/utilities/telemetryUtils.js.map +1 -0
  1291. package/out/language-server/utilities/telemetryUtils.test.d.ts +1 -0
  1292. package/out/language-server/utilities/telemetryUtils.test.js +207 -0
  1293. package/out/language-server/utilities/telemetryUtils.test.js.map +1 -0
  1294. package/out/language-server/utils.d.ts +7 -4
  1295. package/out/language-server/utils.js +57 -34
  1296. package/out/language-server/utils.js.map +1 -1
  1297. package/out/language-server/utils.test.js +104 -73
  1298. package/out/language-server/utils.test.js.map +1 -1
  1299. package/package.json +4 -7
  1300. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.d.ts +0 -5
  1301. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.js +0 -28
  1302. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.js.map +0 -1
  1303. package/node_modules/@aws/lsp-fqn/out/browser/index.d.ts +0 -2
  1304. package/node_modules/@aws/lsp-fqn/out/browser/index.js +0 -19
  1305. package/node_modules/@aws/lsp-fqn/out/browser/index.js.map +0 -1
  1306. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.d.ts +0 -7
  1307. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.js +0 -39
  1308. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.js.map +0 -1
  1309. package/node_modules/@aws/lsp-fqn/out/common/defaults.d.ts +0 -4
  1310. package/node_modules/@aws/lsp-fqn/out/common/defaults.js +0 -8
  1311. package/node_modules/@aws/lsp-fqn/out/common/defaults.js.map +0 -1
  1312. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.d.ts +0 -3
  1313. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.js +0 -28
  1314. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.js.map +0 -1
  1315. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.test.js +0 -57
  1316. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.test.js.map +0 -1
  1317. package/node_modules/@aws/lsp-fqn/out/common/types.d.ts +0 -58
  1318. package/node_modules/@aws/lsp-fqn/out/common/types.js +0 -3
  1319. package/node_modules/@aws/lsp-fqn/out/common/types.js.map +0 -1
  1320. package/node_modules/@aws/lsp-fqn/out/index.d.ts +0 -7
  1321. package/node_modules/@aws/lsp-fqn/out/index.js +0 -18
  1322. package/node_modules/@aws/lsp-fqn/out/index.js.map +0 -1
  1323. package/node_modules/@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.js +0 -19
  1324. package/node_modules/@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.js.map +0 -1
  1325. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.d.ts +0 -5
  1326. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.js +0 -12
  1327. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.js.map +0 -1
  1328. package/node_modules/@aws/lsp-fqn/out/node/index.d.ts +0 -2
  1329. package/node_modules/@aws/lsp-fqn/out/node/index.js +0 -19
  1330. package/node_modules/@aws/lsp-fqn/out/node/index.js.map +0 -1
  1331. package/node_modules/@aws/lsp-fqn/package.json +0 -42
  1332. package/node_modules/@aws/lsp-fqn/src/browser/fqnWorkerPool.ts +0 -26
  1333. package/node_modules/@aws/lsp-fqn/src/browser/index.ts +0 -2
  1334. package/node_modules/@aws/lsp-fqn/src/common/commonFqnWorkerPool.ts +0 -44
  1335. package/node_modules/@aws/lsp-fqn/src/common/defaults.ts +0 -4
  1336. package/node_modules/@aws/lsp-fqn/src/common/fqnExtractor.test.ts +0 -66
  1337. package/node_modules/@aws/lsp-fqn/src/common/fqnExtractor.ts +0 -35
  1338. package/node_modules/@aws/lsp-fqn/src/common/types.ts +0 -77
  1339. package/node_modules/@aws/lsp-fqn/src/index.ts +0 -8
  1340. package/node_modules/@aws/lsp-fqn/src/node/aws-lsp-fqn-worker.ts +0 -19
  1341. package/node_modules/@aws/lsp-fqn/src/node/fqnWorkerPool.ts +0 -9
  1342. package/node_modules/@aws/lsp-fqn/src/node/index.ts +0 -2
  1343. package/node_modules/@aws/lsp-fqn/tsconfig.json +0 -8
  1344. package/node_modules/@aws/lsp-fqn/tsconfig.tsbuildinfo +0 -1
  1345. package/node_modules/@aws-sdk/types/README.md +0 -4
  1346. package/node_modules/@aws-sdk/types/dist-cjs/auth.js +0 -5
  1347. package/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +0 -2
  1348. package/node_modules/@aws-sdk/types/dist-cjs/blob/runtime-blob-types.browser.js +0 -2
  1349. package/node_modules/@aws-sdk/types/dist-cjs/blob/runtime-blob-types.node.js +0 -2
  1350. package/node_modules/@aws-sdk/types/dist-cjs/checksum.js +0 -2
  1351. package/node_modules/@aws-sdk/types/dist-cjs/client.js +0 -2
  1352. package/node_modules/@aws-sdk/types/dist-cjs/command.js +0 -2
  1353. package/node_modules/@aws-sdk/types/dist-cjs/connection.js +0 -2
  1354. package/node_modules/@aws-sdk/types/dist-cjs/credentials.js +0 -2
  1355. package/node_modules/@aws-sdk/types/dist-cjs/crypto.js +0 -2
  1356. package/node_modules/@aws-sdk/types/dist-cjs/dns.js +0 -8
  1357. package/node_modules/@aws-sdk/types/dist-cjs/encode.js +0 -2
  1358. package/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +0 -5
  1359. package/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +0 -2
  1360. package/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +0 -2
  1361. package/node_modules/@aws-sdk/types/dist-cjs/http.js +0 -2
  1362. package/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +0 -2
  1363. package/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +0 -2
  1364. package/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +0 -2
  1365. package/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +0 -2
  1366. package/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +0 -2
  1367. package/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +0 -8
  1368. package/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -35
  1369. package/node_modules/@aws-sdk/types/dist-cjs/logger.js +0 -2
  1370. package/node_modules/@aws-sdk/types/dist-cjs/middleware.js +0 -2
  1371. package/node_modules/@aws-sdk/types/dist-cjs/pagination.js +0 -2
  1372. package/node_modules/@aws-sdk/types/dist-cjs/profile.js +0 -2
  1373. package/node_modules/@aws-sdk/types/dist-cjs/request.js +0 -2
  1374. package/node_modules/@aws-sdk/types/dist-cjs/response.js +0 -2
  1375. package/node_modules/@aws-sdk/types/dist-cjs/retry.js +0 -2
  1376. package/node_modules/@aws-sdk/types/dist-cjs/serde.js +0 -2
  1377. package/node_modules/@aws-sdk/types/dist-cjs/shapes.js +0 -2
  1378. package/node_modules/@aws-sdk/types/dist-cjs/signature.js +0 -2
  1379. package/node_modules/@aws-sdk/types/dist-cjs/stream.js +0 -2
  1380. package/node_modules/@aws-sdk/types/dist-cjs/token.js +0 -2
  1381. package/node_modules/@aws-sdk/types/dist-cjs/transfer.js +0 -5
  1382. package/node_modules/@aws-sdk/types/dist-cjs/uri.js +0 -2
  1383. package/node_modules/@aws-sdk/types/dist-cjs/util.js +0 -2
  1384. package/node_modules/@aws-sdk/types/dist-cjs/waiter.js +0 -2
  1385. package/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  1386. package/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  1387. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  1388. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  1389. package/node_modules/@aws-sdk/types/dist-es/index.js +0 -32
  1390. package/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  1391. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  1392. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  1393. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  1394. package/node_modules/@aws-sdk/types/dist-types/blob/runtime-blob-types.browser.d.ts +0 -6
  1395. package/node_modules/@aws-sdk/types/dist-types/blob/runtime-blob-types.node.d.ts +0 -9
  1396. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  1397. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  1398. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  1399. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  1400. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -17
  1401. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  1402. package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  1403. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  1404. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  1405. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  1406. package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  1407. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  1408. package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  1409. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -1
  1410. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  1411. package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  1412. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -14
  1413. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  1414. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -32
  1415. package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  1416. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -1
  1417. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  1418. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  1419. package/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  1420. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  1421. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  1422. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  1423. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  1424. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  1425. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  1426. package/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  1427. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  1428. package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  1429. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  1430. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  1431. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/runtime-blob-types.browser.d.ts +0 -1
  1432. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/runtime-blob-types.node.d.ts +0 -2
  1433. package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  1434. package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  1435. package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  1436. package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  1437. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -4
  1438. package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  1439. package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  1440. package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  1441. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  1442. package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  1443. package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  1444. package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  1445. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  1446. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -4
  1447. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  1448. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  1449. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -5
  1450. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  1451. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -32
  1452. package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  1453. package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -40
  1454. package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  1455. package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  1456. package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  1457. package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  1458. package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  1459. package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  1460. package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  1461. package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  1462. package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  1463. package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  1464. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  1465. package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  1466. package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  1467. package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  1468. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  1469. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  1470. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  1471. package/node_modules/@aws-sdk/types/package.json +0 -64
  1472. package/out/language-server/chat/contexts/documentFqnExtractor.d.ts +0 -22
  1473. package/out/language-server/chat/contexts/documentFqnExtractor.js +0 -95
  1474. package/out/language-server/chat/contexts/documentFqnExtractor.js.map +0 -1
  1475. package/out/language-server/chat/contexts/documentFqnExtractor.test.js +0 -94
  1476. package/out/language-server/chat/contexts/documentFqnExtractor.test.js.map +0 -1
  1477. package/out/language-server/chat/contexts/mockData.d.ts +0 -37
  1478. package/out/language-server/chat/contexts/mockData.js +0 -98
  1479. package/out/language-server/chat/contexts/mockData.js.map +0 -1
  1480. /package/node_modules/@aws-sdk/{types/dist-cjs/abort.js → util-user-agent-browser/dist-cjs/configurations.js} +0 -0
  1481. /package/node_modules/@aws-sdk/{types/dist-es/abort.js → util-user-agent-browser/dist-es/configurations.js} +0 -0
  1482. /package/node_modules/{@aws-sdk/types → @smithy/config-resolver}/LICENSE +0 -0
  1483. /package/node_modules/{@aws-sdk/types/dist-es/blob/blob-types.js → @smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js} +0 -0
  1484. /package/node_modules/{@aws-sdk/types/dist-es/blob/runtime-blob-types.browser.js → @smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js} +0 -0
  1485. /package/node_modules/{@aws-sdk/types/dist-es/blob/runtime-blob-types.node.js → @smithy/config-resolver/dist-es/regionInfo/PartitionHash.js} +0 -0
  1486. /package/node_modules/{@aws-sdk/types/dist-es/checksum.js → @smithy/config-resolver/dist-es/regionInfo/RegionHash.js} +0 -0
  1487. /package/node_modules/{@aws-sdk/types/dist-es/client.js → @smithy/middleware-retry/dist-es/types.js} +0 -0
  1488. /package/node_modules/{@aws-sdk/types/dist-es/command.js → @smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpHandler.js} +0 -0
  1489. /package/node_modules/{@aws-sdk/types/dist-es/connection.js → @smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/types.js} +0 -0
  1490. /package/node_modules/{@aws-sdk/types/dist-es/credentials.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/abort.js} +0 -0
  1491. /package/node_modules/{@aws-sdk/types/dist-es/crypto.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js} +0 -0
  1492. /package/node_modules/{@aws-sdk/types/dist-es/encode.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js} +0 -0
  1493. /package/node_modules/{@aws-sdk/types/dist-es/eventStream.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpSigner.js} +0 -0
  1494. /package/node_modules/{@aws-sdk/types/dist-es/extensions/index.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js} +0 -0
  1495. /package/node_modules/{@aws-sdk/types/dist-es/http.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js} +0 -0
  1496. /package/node_modules/{@aws-sdk/types/dist-es/identity/AnonymousIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/checksum.js} +0 -0
  1497. /package/node_modules/{@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/client.js} +0 -0
  1498. /package/node_modules/{@aws-sdk/types/dist-es/identity/Identity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/command.js} +0 -0
  1499. /package/node_modules/{@aws-sdk/types/dist-es/identity/LoginIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/config.js} +0 -0
  1500. /package/node_modules/{@aws-sdk/types/dist-es/identity/TokenIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/manager.js} +0 -0
  1501. /package/node_modules/{@aws-sdk/types/dist-es/logger.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/pool.js} +0 -0
  1502. /package/node_modules/{@aws-sdk/types/dist-es/middleware.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/crypto.js} +0 -0
  1503. /package/node_modules/{@aws-sdk/types/dist-es/pagination.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js} +0 -0
  1504. /package/node_modules/{@aws-sdk/types/dist-es/profile.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/encode.js} +0 -0
  1505. /package/node_modules/{@aws-sdk/types/dist-es/request.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js} +0 -0
  1506. /package/node_modules/{@aws-sdk/types/dist-es/response.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js} +0 -0
  1507. /package/node_modules/{@aws-sdk/types/dist-es/retry.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js} +0 -0
  1508. /package/node_modules/{@aws-sdk/types/dist-es/serde.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js} +0 -0
  1509. /package/node_modules/{@aws-sdk/types/dist-es/shapes.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/shared.js} +0 -0
  1510. /package/node_modules/{@aws-sdk/types/dist-es/signature.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/eventStream.js} +0 -0
  1511. /package/node_modules/{@aws-sdk/types/dist-es/stream.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js} +0 -0
  1512. /package/node_modules/{@aws-sdk/types/dist-es/token.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/retry.js} +0 -0
  1513. /package/node_modules/{@aws-sdk/types/dist-es/uri.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js} +0 -0
  1514. /package/node_modules/{@aws-sdk/types/dist-es/util.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js} +0 -0
  1515. /package/node_modules/{@aws-sdk/types/dist-es/waiter.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js} +0 -0
  1516. /package/node_modules/{@aws/lsp-fqn/out/common/fqnExtractor.test.d.ts → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js} +0 -0
  1517. /package/node_modules/{@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.d.ts → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/identity.js} +0 -0
  1518. /package/{out/language-server/chat/contexts/documentFqnExtractor.test.d.ts → node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js} +0 -0
@@ -18,14 +18,27 @@
18
18
  "method": "POST",
19
19
  "requestUri": "/"
20
20
  },
21
- "input": { "shape": "CreateUploadUrlRequest" },
22
- "output": { "shape": "CreateUploadUrlResponse" },
21
+ "input": {
22
+ "shape": "CreateUploadUrlRequest"
23
+ },
24
+ "output": {
25
+ "shape": "CreateUploadUrlResponse"
26
+ },
23
27
  "errors": [
24
- { "shape": "ThrottlingException" },
25
- { "shape": "InternalServerException" },
26
- { "shape": "ValidationException" },
27
- { "shape": "AccessDeniedException" }
28
+ {
29
+ "shape": "ThrottlingException"
30
+ },
31
+ {
32
+ "shape": "InternalServerException"
33
+ },
34
+ {
35
+ "shape": "ValidationException"
36
+ },
37
+ {
38
+ "shape": "AccessDeniedException"
39
+ }
28
40
  ],
41
+ "documentation": "<p>Creates a pre-signed, S3 write URL for uploading a repository zip archive.</p>",
29
42
  "idempotent": true
30
43
  },
31
44
  "CreateTaskAssistConversation": {
@@ -34,14 +47,30 @@
34
47
  "method": "POST",
35
48
  "requestUri": "/"
36
49
  },
37
- "input": { "shape": "CreateTaskAssistConversationRequest" },
38
- "output": { "shape": "CreateTaskAssistConversationResponse" },
50
+ "input": {
51
+ "shape": "CreateTaskAssistConversationRequest"
52
+ },
53
+ "output": {
54
+ "shape": "CreateTaskAssistConversationResponse"
55
+ },
39
56
  "errors": [
40
- { "shape": "ThrottlingException" },
41
- { "shape": "InternalServerException" },
42
- { "shape": "ValidationException" },
43
- { "shape": "AccessDeniedException" }
44
- ]
57
+ {
58
+ "shape": "ThrottlingException"
59
+ },
60
+ {
61
+ "shape": "ServiceQuotaExceededException"
62
+ },
63
+ {
64
+ "shape": "InternalServerException"
65
+ },
66
+ {
67
+ "shape": "ValidationException"
68
+ },
69
+ {
70
+ "shape": "AccessDeniedException"
71
+ }
72
+ ],
73
+ "documentation": "<p>API to create task assist conversation.</p>"
45
74
  },
46
75
  "CreateUploadUrl": {
47
76
  "name": "CreateUploadUrl",
@@ -49,16 +78,36 @@
49
78
  "method": "POST",
50
79
  "requestUri": "/"
51
80
  },
52
- "input": { "shape": "CreateUploadUrlRequest" },
53
- "output": { "shape": "CreateUploadUrlResponse" },
81
+ "input": {
82
+ "shape": "CreateUploadUrlRequest"
83
+ },
84
+ "output": {
85
+ "shape": "CreateUploadUrlResponse"
86
+ },
54
87
  "errors": [
55
- { "shape": "ThrottlingException" },
56
- { "shape": "ConflictException" },
57
- { "shape": "ResourceNotFoundException" },
58
- { "shape": "InternalServerException" },
59
- { "shape": "ValidationException" },
60
- { "shape": "AccessDeniedException" }
88
+ {
89
+ "shape": "ThrottlingException"
90
+ },
91
+ {
92
+ "shape": "ConflictException"
93
+ },
94
+ {
95
+ "shape": "ServiceQuotaExceededException"
96
+ },
97
+ {
98
+ "shape": "ResourceNotFoundException"
99
+ },
100
+ {
101
+ "shape": "InternalServerException"
102
+ },
103
+ {
104
+ "shape": "ValidationException"
105
+ },
106
+ {
107
+ "shape": "AccessDeniedException"
108
+ }
61
109
  ],
110
+ "documentation": "<p>Creates a pre-signed, S3 write URL for uploading a repository zip archive.</p>",
62
111
  "idempotent": true
63
112
  },
64
113
  "DeleteTaskAssistConversation": {
@@ -67,15 +116,30 @@
67
116
  "method": "POST",
68
117
  "requestUri": "/"
69
118
  },
70
- "input": { "shape": "DeleteTaskAssistConversationRequest" },
71
- "output": { "shape": "DeleteTaskAssistConversationResponse" },
119
+ "input": {
120
+ "shape": "DeleteTaskAssistConversationRequest"
121
+ },
122
+ "output": {
123
+ "shape": "DeleteTaskAssistConversationResponse"
124
+ },
72
125
  "errors": [
73
- { "shape": "ThrottlingException" },
74
- { "shape": "ResourceNotFoundException" },
75
- { "shape": "InternalServerException" },
76
- { "shape": "ValidationException" },
77
- { "shape": "AccessDeniedException" }
78
- ]
126
+ {
127
+ "shape": "ThrottlingException"
128
+ },
129
+ {
130
+ "shape": "ResourceNotFoundException"
131
+ },
132
+ {
133
+ "shape": "InternalServerException"
134
+ },
135
+ {
136
+ "shape": "ValidationException"
137
+ },
138
+ {
139
+ "shape": "AccessDeniedException"
140
+ }
141
+ ],
142
+ "documentation": "<p>API to delete task assist conversation.</p>"
79
143
  },
80
144
  "GenerateCompletions": {
81
145
  "name": "GenerateCompletions",
@@ -83,14 +147,27 @@
83
147
  "method": "POST",
84
148
  "requestUri": "/"
85
149
  },
86
- "input": { "shape": "GenerateCompletionsRequest" },
87
- "output": { "shape": "GenerateCompletionsResponse" },
150
+ "input": {
151
+ "shape": "GenerateCompletionsRequest"
152
+ },
153
+ "output": {
154
+ "shape": "GenerateCompletionsResponse"
155
+ },
88
156
  "errors": [
89
- { "shape": "ThrottlingException" },
90
- { "shape": "InternalServerException" },
91
- { "shape": "ValidationException" },
92
- { "shape": "AccessDeniedException" }
93
- ]
157
+ {
158
+ "shape": "ThrottlingException"
159
+ },
160
+ {
161
+ "shape": "InternalServerException"
162
+ },
163
+ {
164
+ "shape": "ValidationException"
165
+ },
166
+ {
167
+ "shape": "AccessDeniedException"
168
+ }
169
+ ],
170
+ "documentation": "<p>Generate completions based on the provided file context in a paginated response.</p>"
94
171
  },
95
172
  "GetCodeAnalysis": {
96
173
  "name": "GetCodeAnalysis",
@@ -98,15 +175,30 @@
98
175
  "method": "POST",
99
176
  "requestUri": "/"
100
177
  },
101
- "input": { "shape": "GetCodeAnalysisRequest" },
102
- "output": { "shape": "GetCodeAnalysisResponse" },
178
+ "input": {
179
+ "shape": "GetCodeAnalysisRequest"
180
+ },
181
+ "output": {
182
+ "shape": "GetCodeAnalysisResponse"
183
+ },
103
184
  "errors": [
104
- { "shape": "ThrottlingException" },
105
- { "shape": "ResourceNotFoundException" },
106
- { "shape": "InternalServerException" },
107
- { "shape": "ValidationException" },
108
- { "shape": "AccessDeniedException" }
109
- ]
185
+ {
186
+ "shape": "ThrottlingException"
187
+ },
188
+ {
189
+ "shape": "ResourceNotFoundException"
190
+ },
191
+ {
192
+ "shape": "InternalServerException"
193
+ },
194
+ {
195
+ "shape": "ValidationException"
196
+ },
197
+ {
198
+ "shape": "AccessDeniedException"
199
+ }
200
+ ],
201
+ "documentation": "<p>Gets the metadata of a code analysis job.</p>"
110
202
  },
111
203
  "GetTaskAssistCodeGeneration": {
112
204
  "name": "GetTaskAssistCodeGeneration",
@@ -114,16 +206,61 @@
114
206
  "method": "POST",
115
207
  "requestUri": "/"
116
208
  },
117
- "input": { "shape": "GetTaskAssistCodeGenerationRequest" },
118
- "output": { "shape": "GetTaskAssistCodeGenerationResponse" },
209
+ "input": {
210
+ "shape": "GetTaskAssistCodeGenerationRequest"
211
+ },
212
+ "output": {
213
+ "shape": "GetTaskAssistCodeGenerationResponse"
214
+ },
119
215
  "errors": [
120
- { "shape": "ThrottlingException" },
121
- { "shape": "ConflictException" },
122
- { "shape": "ResourceNotFoundException" },
123
- { "shape": "InternalServerException" },
124
- { "shape": "ValidationException" },
125
- { "shape": "AccessDeniedException" }
126
- ]
216
+ {
217
+ "shape": "ThrottlingException"
218
+ },
219
+ {
220
+ "shape": "ConflictException"
221
+ },
222
+ {
223
+ "shape": "ResourceNotFoundException"
224
+ },
225
+ {
226
+ "shape": "InternalServerException"
227
+ },
228
+ {
229
+ "shape": "ValidationException"
230
+ },
231
+ {
232
+ "shape": "AccessDeniedException"
233
+ }
234
+ ],
235
+ "documentation": "<p>API to get status of task assist code generation.</p>"
236
+ },
237
+ "GetTestGeneration": {
238
+ "name": "GetTestGeneration",
239
+ "http": {
240
+ "method": "POST",
241
+ "requestUri": "/"
242
+ },
243
+ "input": {
244
+ "shape": "GetTestGenerationRequest"
245
+ },
246
+ "output": {
247
+ "shape": "GetTestGenerationResponse"
248
+ },
249
+ "errors": [
250
+ {
251
+ "shape": "ThrottlingException"
252
+ },
253
+ {
254
+ "shape": "InternalServerException"
255
+ },
256
+ {
257
+ "shape": "ValidationException"
258
+ },
259
+ {
260
+ "shape": "AccessDeniedException"
261
+ }
262
+ ],
263
+ "documentation": "<p>API to get test generation job.</p>"
127
264
  },
128
265
  "GetTransformation": {
129
266
  "name": "GetTransformation",
@@ -131,14 +268,30 @@
131
268
  "method": "POST",
132
269
  "requestUri": "/"
133
270
  },
134
- "input": { "shape": "GetTransformationRequest" },
135
- "output": { "shape": "GetTransformationResponse" },
271
+ "input": {
272
+ "shape": "GetTransformationRequest"
273
+ },
274
+ "output": {
275
+ "shape": "GetTransformationResponse"
276
+ },
136
277
  "errors": [
137
- { "shape": "ThrottlingException" },
138
- { "shape": "InternalServerException" },
139
- { "shape": "ValidationException" },
140
- { "shape": "AccessDeniedException" }
141
- ]
278
+ {
279
+ "shape": "ThrottlingException"
280
+ },
281
+ {
282
+ "shape": "ResourceNotFoundException"
283
+ },
284
+ {
285
+ "shape": "InternalServerException"
286
+ },
287
+ {
288
+ "shape": "ValidationException"
289
+ },
290
+ {
291
+ "shape": "AccessDeniedException"
292
+ }
293
+ ],
294
+ "documentation": "<p>API to get code transformation status.</p>"
142
295
  },
143
296
  "GetTransformationPlan": {
144
297
  "name": "GetTransformationPlan",
@@ -146,14 +299,30 @@
146
299
  "method": "POST",
147
300
  "requestUri": "/"
148
301
  },
149
- "input": { "shape": "GetTransformationPlanRequest" },
150
- "output": { "shape": "GetTransformationPlanResponse" },
302
+ "input": {
303
+ "shape": "GetTransformationPlanRequest"
304
+ },
305
+ "output": {
306
+ "shape": "GetTransformationPlanResponse"
307
+ },
151
308
  "errors": [
152
- { "shape": "ThrottlingException" },
153
- { "shape": "InternalServerException" },
154
- { "shape": "ValidationException" },
155
- { "shape": "AccessDeniedException" }
156
- ]
309
+ {
310
+ "shape": "ThrottlingException"
311
+ },
312
+ {
313
+ "shape": "ResourceNotFoundException"
314
+ },
315
+ {
316
+ "shape": "InternalServerException"
317
+ },
318
+ {
319
+ "shape": "ValidationException"
320
+ },
321
+ {
322
+ "shape": "AccessDeniedException"
323
+ }
324
+ ],
325
+ "documentation": "<p>API to get code transformation status.</p>"
157
326
  },
158
327
  "ListAvailableCustomizations": {
159
328
  "name": "ListAvailableCustomizations",
@@ -161,13 +330,25 @@
161
330
  "method": "POST",
162
331
  "requestUri": "/"
163
332
  },
164
- "input": { "shape": "ListAvailableCustomizationsRequest" },
165
- "output": { "shape": "ListAvailableCustomizationsResponse" },
333
+ "input": {
334
+ "shape": "ListAvailableCustomizationsRequest"
335
+ },
336
+ "output": {
337
+ "shape": "ListAvailableCustomizationsResponse"
338
+ },
166
339
  "errors": [
167
- { "shape": "ThrottlingException" },
168
- { "shape": "InternalServerException" },
169
- { "shape": "ValidationException" },
170
- { "shape": "AccessDeniedException" }
340
+ {
341
+ "shape": "ThrottlingException"
342
+ },
343
+ {
344
+ "shape": "InternalServerException"
345
+ },
346
+ {
347
+ "shape": "ValidationException"
348
+ },
349
+ {
350
+ "shape": "AccessDeniedException"
351
+ }
171
352
  ]
172
353
  },
173
354
  "ListCodeAnalysisFindings": {
@@ -176,15 +357,30 @@
176
357
  "method": "POST",
177
358
  "requestUri": "/"
178
359
  },
179
- "input": { "shape": "ListCodeAnalysisFindingsRequest" },
180
- "output": { "shape": "ListCodeAnalysisFindingsResponse" },
360
+ "input": {
361
+ "shape": "ListCodeAnalysisFindingsRequest"
362
+ },
363
+ "output": {
364
+ "shape": "ListCodeAnalysisFindingsResponse"
365
+ },
181
366
  "errors": [
182
- { "shape": "ThrottlingException" },
183
- { "shape": "ResourceNotFoundException" },
184
- { "shape": "InternalServerException" },
185
- { "shape": "ValidationException" },
186
- { "shape": "AccessDeniedException" }
187
- ]
367
+ {
368
+ "shape": "ThrottlingException"
369
+ },
370
+ {
371
+ "shape": "ResourceNotFoundException"
372
+ },
373
+ {
374
+ "shape": "InternalServerException"
375
+ },
376
+ {
377
+ "shape": "ValidationException"
378
+ },
379
+ {
380
+ "shape": "AccessDeniedException"
381
+ }
382
+ ],
383
+ "documentation": "<p>Lists the findings from a particular code analysis job.</p>"
188
384
  },
189
385
  "ListFeatureEvaluations": {
190
386
  "name": "ListFeatureEvaluations",
@@ -192,14 +388,58 @@
192
388
  "method": "POST",
193
389
  "requestUri": "/"
194
390
  },
195
- "input": { "shape": "ListFeatureEvaluationsRequest" },
196
- "output": { "shape": "ListFeatureEvaluationsResponse" },
391
+ "input": {
392
+ "shape": "ListFeatureEvaluationsRequest"
393
+ },
394
+ "output": {
395
+ "shape": "ListFeatureEvaluationsResponse"
396
+ },
197
397
  "errors": [
198
- { "shape": "ThrottlingException" },
199
- { "shape": "InternalServerException" },
200
- { "shape": "ValidationException" },
201
- { "shape": "AccessDeniedException" }
202
- ]
398
+ {
399
+ "shape": "ThrottlingException"
400
+ },
401
+ {
402
+ "shape": "InternalServerException"
403
+ },
404
+ {
405
+ "shape": "ValidationException"
406
+ },
407
+ {
408
+ "shape": "AccessDeniedException"
409
+ }
410
+ ],
411
+ "documentation": "<p>Return configruations for each feature that has been setup for A/B testing.</p>"
412
+ },
413
+ "ResumeTransformation": {
414
+ "name": "ResumeTransformation",
415
+ "http": {
416
+ "method": "POST",
417
+ "requestUri": "/"
418
+ },
419
+ "input": {
420
+ "shape": "ResumeTransformationRequest"
421
+ },
422
+ "output": {
423
+ "shape": "ResumeTransformationResponse"
424
+ },
425
+ "errors": [
426
+ {
427
+ "shape": "ThrottlingException"
428
+ },
429
+ {
430
+ "shape": "ResourceNotFoundException"
431
+ },
432
+ {
433
+ "shape": "InternalServerException"
434
+ },
435
+ {
436
+ "shape": "ValidationException"
437
+ },
438
+ {
439
+ "shape": "AccessDeniedException"
440
+ }
441
+ ],
442
+ "documentation": "<p>API to resume transformation job.</p>"
203
443
  },
204
444
  "SendTelemetryEvent": {
205
445
  "name": "SendTelemetryEvent",
@@ -207,14 +447,27 @@
207
447
  "method": "POST",
208
448
  "requestUri": "/"
209
449
  },
210
- "input": { "shape": "SendTelemetryEventRequest" },
211
- "output": { "shape": "SendTelemetryEventResponse" },
450
+ "input": {
451
+ "shape": "SendTelemetryEventRequest"
452
+ },
453
+ "output": {
454
+ "shape": "SendTelemetryEventResponse"
455
+ },
212
456
  "errors": [
213
- { "shape": "ThrottlingException" },
214
- { "shape": "InternalServerException" },
215
- { "shape": "ValidationException" },
216
- { "shape": "AccessDeniedException" }
457
+ {
458
+ "shape": "ThrottlingException"
459
+ },
460
+ {
461
+ "shape": "InternalServerException"
462
+ },
463
+ {
464
+ "shape": "ValidationException"
465
+ },
466
+ {
467
+ "shape": "AccessDeniedException"
468
+ }
217
469
  ],
470
+ "documentation": "<p>API to record telemetry events.</p>",
218
471
  "idempotent": true
219
472
  },
220
473
  "StartCodeAnalysis": {
@@ -223,16 +476,33 @@
223
476
  "method": "POST",
224
477
  "requestUri": "/"
225
478
  },
226
- "input": { "shape": "StartCodeAnalysisRequest" },
227
- "output": { "shape": "StartCodeAnalysisResponse" },
479
+ "input": {
480
+ "shape": "StartCodeAnalysisRequest"
481
+ },
482
+ "output": {
483
+ "shape": "StartCodeAnalysisResponse"
484
+ },
228
485
  "errors": [
229
- { "shape": "ThrottlingException" },
230
- { "shape": "ConflictException" },
231
- { "shape": "ResourceNotFoundException" },
232
- { "shape": "InternalServerException" },
233
- { "shape": "ValidationException" },
234
- { "shape": "AccessDeniedException" }
486
+ {
487
+ "shape": "ThrottlingException"
488
+ },
489
+ {
490
+ "shape": "ConflictException"
491
+ },
492
+ {
493
+ "shape": "ResourceNotFoundException"
494
+ },
495
+ {
496
+ "shape": "InternalServerException"
497
+ },
498
+ {
499
+ "shape": "ValidationException"
500
+ },
501
+ {
502
+ "shape": "AccessDeniedException"
503
+ }
235
504
  ],
505
+ "documentation": "<p>Starts a code analysis job</p>",
236
506
  "idempotent": true
237
507
  },
238
508
  "StartTaskAssistCodeGeneration": {
@@ -241,16 +511,68 @@
241
511
  "method": "POST",
242
512
  "requestUri": "/"
243
513
  },
244
- "input": { "shape": "StartTaskAssistCodeGenerationRequest" },
245
- "output": { "shape": "StartTaskAssistCodeGenerationResponse" },
514
+ "input": {
515
+ "shape": "StartTaskAssistCodeGenerationRequest"
516
+ },
517
+ "output": {
518
+ "shape": "StartTaskAssistCodeGenerationResponse"
519
+ },
246
520
  "errors": [
247
- { "shape": "ThrottlingException" },
248
- { "shape": "ConflictException" },
249
- { "shape": "ResourceNotFoundException" },
250
- { "shape": "InternalServerException" },
251
- { "shape": "ValidationException" },
252
- { "shape": "AccessDeniedException" }
253
- ]
521
+ {
522
+ "shape": "ThrottlingException"
523
+ },
524
+ {
525
+ "shape": "ConflictException"
526
+ },
527
+ {
528
+ "shape": "ServiceQuotaExceededException"
529
+ },
530
+ {
531
+ "shape": "ResourceNotFoundException"
532
+ },
533
+ {
534
+ "shape": "InternalServerException"
535
+ },
536
+ {
537
+ "shape": "ValidationException"
538
+ },
539
+ {
540
+ "shape": "AccessDeniedException"
541
+ }
542
+ ],
543
+ "documentation": "<p>API to start task assist code generation.</p>"
544
+ },
545
+ "StartTestGeneration": {
546
+ "name": "StartTestGeneration",
547
+ "http": {
548
+ "method": "POST",
549
+ "requestUri": "/"
550
+ },
551
+ "input": {
552
+ "shape": "StartTestGenerationRequest"
553
+ },
554
+ "output": {
555
+ "shape": "StartTestGenerationResponse"
556
+ },
557
+ "errors": [
558
+ {
559
+ "shape": "ThrottlingException"
560
+ },
561
+ {
562
+ "shape": "ConflictException"
563
+ },
564
+ {
565
+ "shape": "InternalServerException"
566
+ },
567
+ {
568
+ "shape": "ValidationException"
569
+ },
570
+ {
571
+ "shape": "AccessDeniedException"
572
+ }
573
+ ],
574
+ "documentation": "<p>API to start test generation.</p>",
575
+ "idempotent": true
254
576
  },
255
577
  "StartTransformation": {
256
578
  "name": "StartTransformation",
@@ -258,14 +580,30 @@
258
580
  "method": "POST",
259
581
  "requestUri": "/"
260
582
  },
261
- "input": { "shape": "StartTransformationRequest" },
262
- "output": { "shape": "StartTransformationResponse" },
583
+ "input": {
584
+ "shape": "StartTransformationRequest"
585
+ },
586
+ "output": {
587
+ "shape": "StartTransformationResponse"
588
+ },
263
589
  "errors": [
264
- { "shape": "ThrottlingException" },
265
- { "shape": "InternalServerException" },
266
- { "shape": "ValidationException" },
267
- { "shape": "AccessDeniedException" }
268
- ]
590
+ {
591
+ "shape": "ThrottlingException"
592
+ },
593
+ {
594
+ "shape": "ConflictException"
595
+ },
596
+ {
597
+ "shape": "InternalServerException"
598
+ },
599
+ {
600
+ "shape": "ValidationException"
601
+ },
602
+ {
603
+ "shape": "AccessDeniedException"
604
+ }
605
+ ],
606
+ "documentation": "<p>API to start code translation.</p>"
269
607
  },
270
608
  "StopTransformation": {
271
609
  "name": "StopTransformation",
@@ -273,14 +611,30 @@
273
611
  "method": "POST",
274
612
  "requestUri": "/"
275
613
  },
276
- "input": { "shape": "StopTransformationRequest" },
277
- "output": { "shape": "StopTransformationResponse" },
614
+ "input": {
615
+ "shape": "StopTransformationRequest"
616
+ },
617
+ "output": {
618
+ "shape": "StopTransformationResponse"
619
+ },
278
620
  "errors": [
279
- { "shape": "ThrottlingException" },
280
- { "shape": "InternalServerException" },
281
- { "shape": "ValidationException" },
282
- { "shape": "AccessDeniedException" }
283
- ]
621
+ {
622
+ "shape": "ThrottlingException"
623
+ },
624
+ {
625
+ "shape": "ResourceNotFoundException"
626
+ },
627
+ {
628
+ "shape": "InternalServerException"
629
+ },
630
+ {
631
+ "shape": "ValidationException"
632
+ },
633
+ {
634
+ "shape": "AccessDeniedException"
635
+ }
636
+ ],
637
+ "documentation": "<p>API to stop code transformation status.</p>"
284
638
  }
285
639
  },
286
640
  "shapes": {
@@ -288,14 +642,82 @@
288
642
  "type": "structure",
289
643
  "required": ["message"],
290
644
  "members": {
291
- "message": { "shape": "String" }
645
+ "message": {
646
+ "shape": "String"
647
+ },
648
+ "reason": {
649
+ "shape": "AccessDeniedExceptionReason"
650
+ }
292
651
  },
652
+ "documentation": "<p>This exception is thrown when the user does not have sufficient access to perform this action.</p>",
293
653
  "exception": true
294
654
  },
655
+ "AccessDeniedExceptionReason": {
656
+ "type": "string",
657
+ "documentation": "<p>Reason for AccessDeniedException</p>",
658
+ "enum": ["UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS"]
659
+ },
660
+ "AppStudioState": {
661
+ "type": "structure",
662
+ "required": ["namespace", "propertyName", "propertyContext"],
663
+ "members": {
664
+ "namespace": {
665
+ "shape": "AppStudioStateNamespaceString",
666
+ "documentation": "<p>The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript'</p>"
667
+ },
668
+ "propertyName": {
669
+ "shape": "AppStudioStatePropertyNameString",
670
+ "documentation": "<p>The name of the property. Examples: 'visibility', 'disability', 'value', 'code'</p>"
671
+ },
672
+ "propertyValue": {
673
+ "shape": "AppStudioStatePropertyValueString",
674
+ "documentation": "<p>The value of the property.</p>"
675
+ },
676
+ "propertyContext": {
677
+ "shape": "AppStudioStatePropertyContextString",
678
+ "documentation": "<p>Context about how the property is used</p>"
679
+ }
680
+ },
681
+ "documentation": "<p>Description of a user's context when they are calling Q Chat from AppStudio</p>"
682
+ },
683
+ "AppStudioStateNamespaceString": {
684
+ "type": "string",
685
+ "max": 1024,
686
+ "min": 1,
687
+ "sensitive": true
688
+ },
689
+ "AppStudioStatePropertyContextString": {
690
+ "type": "string",
691
+ "max": 1024,
692
+ "min": 1,
693
+ "sensitive": true
694
+ },
695
+ "AppStudioStatePropertyNameString": {
696
+ "type": "string",
697
+ "max": 1024,
698
+ "min": 1,
699
+ "sensitive": true
700
+ },
701
+ "AppStudioStatePropertyValueString": {
702
+ "type": "string",
703
+ "max": 10240,
704
+ "min": 0,
705
+ "sensitive": true
706
+ },
707
+ "ArtifactId": {
708
+ "type": "string",
709
+ "max": 126,
710
+ "min": 1,
711
+ "pattern": "[a-zA-Z0-9-_]+"
712
+ },
295
713
  "ArtifactMap": {
296
714
  "type": "map",
297
- "key": { "shape": "ArtifactType" },
298
- "value": { "shape": "UploadId" },
715
+ "key": {
716
+ "shape": "ArtifactType"
717
+ },
718
+ "value": {
719
+ "shape": "UploadId"
720
+ },
299
721
  "max": 64,
300
722
  "min": 1
301
723
  },
@@ -307,12 +729,27 @@
307
729
  "type": "structure",
308
730
  "required": ["content"],
309
731
  "members": {
310
- "messageId": { "shape": "MessageId" },
311
- "content": { "shape": "AssistantResponseMessageContentString" },
312
- "supplementaryWebLinks": { "shape": "SupplementaryWebLinks" },
313
- "references": { "shape": "References" },
314
- "followupPrompt": { "shape": "FollowupPrompt" }
315
- }
732
+ "messageId": {
733
+ "shape": "MessageId"
734
+ },
735
+ "content": {
736
+ "shape": "AssistantResponseMessageContentString",
737
+ "documentation": "<p>The content of the text message in markdown format.</p>"
738
+ },
739
+ "supplementaryWebLinks": {
740
+ "shape": "SupplementaryWebLinks",
741
+ "documentation": "<p>Web References</p>"
742
+ },
743
+ "references": {
744
+ "shape": "References",
745
+ "documentation": "<p>Code References</p>"
746
+ },
747
+ "followupPrompt": {
748
+ "shape": "FollowupPrompt",
749
+ "documentation": "<p>Followup Prompt</p>"
750
+ }
751
+ },
752
+ "documentation": "<p>Markdown text message.</p>"
316
753
  },
317
754
  "AssistantResponseMessageContentString": {
318
755
  "type": "string",
@@ -334,22 +771,56 @@
334
771
  "type": "structure",
335
772
  "required": ["conversationId", "messageId"],
336
773
  "members": {
337
- "conversationId": { "shape": "ConversationId" },
338
- "messageId": { "shape": "MessageId" },
339
- "userIntent": { "shape": "UserIntent" },
340
- "hasCodeSnippet": { "shape": "Boolean" },
341
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
342
- "activeEditorTotalCharacters": { "shape": "Integer" },
343
- "timeToFirstChunkMilliseconds": { "shape": "Double" },
344
- "timeBetweenChunks": { "shape": "TimeBetweenChunks" },
345
- "fullResponselatency": { "shape": "Double" },
346
- "requestLength": { "shape": "Integer" },
347
- "responseLength": { "shape": "Integer" }
774
+ "conversationId": {
775
+ "shape": "ConversationId"
776
+ },
777
+ "messageId": {
778
+ "shape": "MessageId"
779
+ },
780
+ "customizationArn": {
781
+ "shape": "CustomizationArn"
782
+ },
783
+ "userIntent": {
784
+ "shape": "UserIntent"
785
+ },
786
+ "hasCodeSnippet": {
787
+ "shape": "Boolean"
788
+ },
789
+ "programmingLanguage": {
790
+ "shape": "ProgrammingLanguage"
791
+ },
792
+ "activeEditorTotalCharacters": {
793
+ "shape": "Integer"
794
+ },
795
+ "timeToFirstChunkMilliseconds": {
796
+ "shape": "Double"
797
+ },
798
+ "timeBetweenChunks": {
799
+ "shape": "timeBetweenChunks"
800
+ },
801
+ "fullResponselatency": {
802
+ "shape": "Double"
803
+ },
804
+ "requestLength": {
805
+ "shape": "Integer"
806
+ },
807
+ "responseLength": {
808
+ "shape": "Integer"
809
+ },
810
+ "numberOfCodeBlocks": {
811
+ "shape": "Integer"
812
+ },
813
+ "hasProjectLevelContext": {
814
+ "shape": "Boolean"
815
+ }
348
816
  }
349
817
  },
350
818
  "ChatHistory": {
351
819
  "type": "list",
352
- "member": { "shape": "ChatMessage" },
820
+ "member": {
821
+ "shape": "ChatMessage"
822
+ },
823
+ "documentation": "<p>Indicates Participant in Chat conversation</p>",
353
824
  "max": 10,
354
825
  "min": 0
355
826
  },
@@ -357,24 +828,58 @@
357
828
  "type": "structure",
358
829
  "required": ["conversationId", "messageId"],
359
830
  "members": {
360
- "conversationId": { "shape": "ConversationId" },
361
- "messageId": { "shape": "MessageId" },
362
- "interactionType": { "shape": "ChatMessageInteractionType" },
363
- "interactionTarget": { "shape": "String" },
364
- "acceptedCharacterCount": { "shape": "Integer" },
365
- "acceptedSnippetHasReference": { "shape": "Boolean" }
831
+ "conversationId": {
832
+ "shape": "ConversationId"
833
+ },
834
+ "messageId": {
835
+ "shape": "MessageId"
836
+ },
837
+ "customizationArn": {
838
+ "shape": "CustomizationArn"
839
+ },
840
+ "interactionType": {
841
+ "shape": "ChatMessageInteractionType"
842
+ },
843
+ "interactionTarget": {
844
+ "shape": "ChatInteractWithMessageEventInteractionTargetString"
845
+ },
846
+ "acceptedCharacterCount": {
847
+ "shape": "Integer"
848
+ },
849
+ "acceptedLineCount": {
850
+ "shape": "Integer"
851
+ },
852
+ "acceptedSnippetHasReference": {
853
+ "shape": "Boolean"
854
+ },
855
+ "hasProjectLevelContext": {
856
+ "shape": "Boolean"
857
+ },
858
+ "userIntent": {
859
+ "shape": "UserIntent"
860
+ }
366
861
  }
367
862
  },
863
+ "ChatInteractWithMessageEventInteractionTargetString": {
864
+ "type": "string",
865
+ "max": 1024,
866
+ "min": 1
867
+ },
368
868
  "ChatMessage": {
369
869
  "type": "structure",
370
870
  "members": {
371
- "userInputMessage": { "shape": "UserInputMessage" },
372
- "assistantResponseMessage": { "shape": "AssistantResponseMessage" }
871
+ "userInputMessage": {
872
+ "shape": "UserInputMessage"
873
+ },
874
+ "assistantResponseMessage": {
875
+ "shape": "AssistantResponseMessage"
876
+ }
373
877
  },
374
878
  "union": true
375
879
  },
376
880
  "ChatMessageInteractionType": {
377
881
  "type": "string",
882
+ "documentation": "<p>Chat Message Interaction Type</p>",
378
883
  "enum": [
379
884
  "INSERT_AT_CURSOR",
380
885
  "COPY_SNIPPET",
@@ -387,42 +892,83 @@
387
892
  "DOWNVOTE"
388
893
  ]
389
894
  },
895
+ "ChatTriggerType": {
896
+ "type": "string",
897
+ "documentation": "<p>Trigger Reason for Chat</p>",
898
+ "enum": ["MANUAL", "DIAGNOSTIC", "INLINE_CHAT"]
899
+ },
390
900
  "ChatUserModificationEvent": {
391
901
  "type": "structure",
392
902
  "required": ["conversationId", "messageId", "modificationPercentage"],
393
903
  "members": {
394
- "conversationId": { "shape": "ConversationId" },
395
- "messageId": { "shape": "MessageId" },
396
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
397
- "modificationPercentage": { "shape": "Double" }
904
+ "conversationId": {
905
+ "shape": "ConversationId"
906
+ },
907
+ "customizationArn": {
908
+ "shape": "CustomizationArn"
909
+ },
910
+ "messageId": {
911
+ "shape": "MessageId"
912
+ },
913
+ "programmingLanguage": {
914
+ "shape": "ProgrammingLanguage"
915
+ },
916
+ "modificationPercentage": {
917
+ "shape": "Double"
918
+ },
919
+ "hasProjectLevelContext": {
920
+ "shape": "Boolean"
921
+ }
398
922
  }
399
923
  },
400
- "ChatTriggerType": {
401
- "type": "string",
402
- "enum": ["MANUAL", "DIAGNOSTIC"]
403
- },
404
924
  "CodeAnalysisFindingsSchema": {
405
925
  "type": "string",
406
926
  "enum": ["codeanalysis/findings/1.0"]
407
927
  },
928
+ "CodeAnalysisScope": {
929
+ "type": "string",
930
+ "enum": ["FILE", "PROJECT"]
931
+ },
408
932
  "CodeAnalysisStatus": {
409
933
  "type": "string",
410
934
  "enum": ["Completed", "Pending", "Failed"]
411
935
  },
936
+ "CodeAnalysisUploadContext": {
937
+ "type": "structure",
938
+ "required": ["codeScanName"],
939
+ "members": {
940
+ "codeScanName": {
941
+ "shape": "CodeScanName"
942
+ }
943
+ }
944
+ },
412
945
  "CodeCoverageEvent": {
413
946
  "type": "structure",
414
947
  "required": ["programmingLanguage", "acceptedCharacterCount", "totalCharacterCount", "timestamp"],
415
948
  "members": {
416
- "customizationArn": { "shape": "CustomizationArn" },
417
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
418
- "acceptedCharacterCount": { "shape": "PrimitiveInteger" },
419
- "totalCharacterCount": { "shape": "PrimitiveInteger" },
420
- "timestamp": { "shape": "Timestamp" },
421
- "unmodifiedAcceptedCharacterCount": { "shape": "PrimitiveInteger" }
949
+ "customizationArn": {
950
+ "shape": "CustomizationArn"
951
+ },
952
+ "programmingLanguage": {
953
+ "shape": "ProgrammingLanguage"
954
+ },
955
+ "acceptedCharacterCount": {
956
+ "shape": "PrimitiveInteger"
957
+ },
958
+ "totalCharacterCount": {
959
+ "shape": "PrimitiveInteger"
960
+ },
961
+ "timestamp": {
962
+ "shape": "Timestamp"
963
+ },
964
+ "unmodifiedAcceptedCharacterCount": {
965
+ "shape": "PrimitiveInteger"
966
+ }
422
967
  }
423
968
  },
424
969
  "CodeGenerationId": {
425
970
  "type": "string",
971
+ "documentation": "<p>ID which represents a single code generation in a conversation</p>",
426
972
  "max": 128,
427
973
  "min": 1
428
974
  },
@@ -430,10 +976,19 @@
430
976
  "type": "structure",
431
977
  "required": ["status", "currentStage"],
432
978
  "members": {
433
- "status": { "shape": "CodeGenerationWorkflowStatus" },
434
- "currentStage": { "shape": "CodeGenerationWorkflowStage" }
979
+ "status": {
980
+ "shape": "CodeGenerationWorkflowStatus"
981
+ },
982
+ "currentStage": {
983
+ "shape": "CodeGenerationWorkflowStage"
984
+ }
435
985
  }
436
986
  },
987
+ "CodeGenerationStatusDetail": {
988
+ "type": "string",
989
+ "documentation": "<p>Detailed message about the code generation status</p>",
990
+ "sensitive": true
991
+ },
437
992
  "CodeGenerationWorkflowStage": {
438
993
  "type": "string",
439
994
  "enum": ["InitialCodeGeneration", "CodeRefinement"]
@@ -446,23 +1001,84 @@
446
1001
  "type": "structure",
447
1002
  "required": ["programmingLanguage", "codeScanJobId", "timestamp"],
448
1003
  "members": {
449
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
450
- "codeScanJobId": { "shape": "CodeScanJobId" },
451
- "timestamp": { "shape": "Timestamp" }
1004
+ "programmingLanguage": {
1005
+ "shape": "ProgrammingLanguage"
1006
+ },
1007
+ "codeScanJobId": {
1008
+ "shape": "CodeScanJobId"
1009
+ },
1010
+ "timestamp": {
1011
+ "shape": "Timestamp"
1012
+ },
1013
+ "codeAnalysisScope": {
1014
+ "shape": "CodeAnalysisScope"
1015
+ }
1016
+ }
1017
+ },
1018
+ "CodeScanJobId": {
1019
+ "type": "string",
1020
+ "max": 128,
1021
+ "min": 1
1022
+ },
1023
+ "CodeScanName": {
1024
+ "type": "string",
1025
+ "documentation": "<p>Code analysis scan name</p>",
1026
+ "max": 128,
1027
+ "min": 1
1028
+ },
1029
+ "CodeScanRemediationsEvent": {
1030
+ "type": "structure",
1031
+ "members": {
1032
+ "programmingLanguage": {
1033
+ "shape": "ProgrammingLanguage"
1034
+ },
1035
+ "CodeScanRemediationsEventType": {
1036
+ "shape": "CodeScanRemediationsEventType"
1037
+ },
1038
+ "timestamp": {
1039
+ "shape": "Timestamp"
1040
+ },
1041
+ "detectorId": {
1042
+ "shape": "String"
1043
+ },
1044
+ "findingId": {
1045
+ "shape": "String"
1046
+ },
1047
+ "ruleId": {
1048
+ "shape": "String"
1049
+ },
1050
+ "component": {
1051
+ "shape": "String"
1052
+ },
1053
+ "reason": {
1054
+ "shape": "String"
1055
+ },
1056
+ "result": {
1057
+ "shape": "String"
1058
+ },
1059
+ "includesFix": {
1060
+ "shape": "Boolean"
1061
+ }
452
1062
  }
453
1063
  },
454
- "CodeScanJobId": {
1064
+ "CodeScanRemediationsEventType": {
455
1065
  "type": "string",
456
- "max": 128,
457
- "min": 1
1066
+ "documentation": "<p>Code Scan Remediations Interaction Type</p>",
1067
+ "enum": ["CODESCAN_ISSUE_HOVER", "CODESCAN_ISSUE_APPLY_FIX", "CODESCAN_ISSUE_VIEW_DETAILS"]
458
1068
  },
459
1069
  "Completion": {
460
1070
  "type": "structure",
461
1071
  "required": ["content"],
462
1072
  "members": {
463
- "content": { "shape": "CompletionContentString" },
464
- "references": { "shape": "References" },
465
- "mostRelevantMissingImports": { "shape": "Imports" }
1073
+ "content": {
1074
+ "shape": "CompletionContentString"
1075
+ },
1076
+ "references": {
1077
+ "shape": "References"
1078
+ },
1079
+ "mostRelevantMissingImports": {
1080
+ "shape": "Imports"
1081
+ }
466
1082
  }
467
1083
  },
468
1084
  "CompletionContentString": {
@@ -477,7 +1093,9 @@
477
1093
  },
478
1094
  "Completions": {
479
1095
  "type": "list",
480
- "member": { "shape": "Completion" },
1096
+ "member": {
1097
+ "shape": "Completion"
1098
+ },
481
1099
  "max": 10,
482
1100
  "min": 0
483
1101
  },
@@ -485,20 +1103,57 @@
485
1103
  "type": "structure",
486
1104
  "required": ["message"],
487
1105
  "members": {
488
- "message": { "shape": "String" }
1106
+ "message": {
1107
+ "shape": "String"
1108
+ },
1109
+ "reason": {
1110
+ "shape": "ConflictExceptionReason"
1111
+ }
489
1112
  },
1113
+ "documentation": "<p>This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state.</p>",
490
1114
  "exception": true
491
1115
  },
1116
+ "ConflictExceptionReason": {
1117
+ "type": "string",
1118
+ "documentation": "<p>Reason for ConflictException</p>",
1119
+ "enum": ["CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", "CUSTOMER_KMS_KEY_DISABLED", "MISMATCHED_KMS_KEY"]
1120
+ },
1121
+ "ConsoleState": {
1122
+ "type": "structure",
1123
+ "members": {
1124
+ "region": {
1125
+ "shape": "String"
1126
+ },
1127
+ "consoleUrl": {
1128
+ "shape": "SensitiveString"
1129
+ },
1130
+ "serviceId": {
1131
+ "shape": "String"
1132
+ },
1133
+ "serviceConsolePage": {
1134
+ "shape": "String"
1135
+ },
1136
+ "serviceSubconsolePage": {
1137
+ "shape": "String"
1138
+ },
1139
+ "taskName": {
1140
+ "shape": "SensitiveString"
1141
+ }
1142
+ },
1143
+ "documentation": "<p>Information about the state of the AWS management console page from which the user is calling</p>"
1144
+ },
492
1145
  "ContentChecksumType": {
493
1146
  "type": "string",
494
1147
  "enum": ["SHA_256"]
495
1148
  },
496
1149
  "ContextTruncationScheme": {
497
1150
  "type": "string",
1151
+ "documentation": "<p>Workspace context truncation schemes based on usecase</p>",
498
1152
  "enum": ["ANALYSIS", "GUMBY"]
499
1153
  },
500
1154
  "ConversationId": {
501
1155
  "type": "string",
1156
+ "documentation": "<p>ID which represents a multi-turn conversation</p>",
502
1157
  "max": 128,
503
1158
  "min": 1
504
1159
  },
@@ -506,33 +1161,70 @@
506
1161
  "type": "structure",
507
1162
  "required": ["currentMessage", "chatTriggerType"],
508
1163
  "members": {
509
- "conversationId": { "shape": "ConversationId" },
510
- "history": { "shape": "ChatHistory" },
511
- "currentMessage": { "shape": "ChatMessage" },
512
- "chatTriggerType": { "shape": "ChatTriggerType" }
513
- }
1164
+ "conversationId": {
1165
+ "shape": "ConversationId",
1166
+ "documentation": "<p>Unique identifier for the chat conversation stream</p>"
1167
+ },
1168
+ "history": {
1169
+ "shape": "ChatHistory",
1170
+ "documentation": "<p>Holds the history of chat messages.</p>"
1171
+ },
1172
+ "currentMessage": {
1173
+ "shape": "ChatMessage",
1174
+ "documentation": "<p>Holds the current message being processed or displayed.</p>"
1175
+ },
1176
+ "chatTriggerType": {
1177
+ "shape": "ChatTriggerType",
1178
+ "documentation": "<p>Trigger Reason for Chat</p>"
1179
+ },
1180
+ "customizationArn": {
1181
+ "shape": "ResourceArn"
1182
+ }
1183
+ },
1184
+ "documentation": "<p>Structure to represent the current state of a chat conversation.</p>"
514
1185
  },
515
1186
  "CreateTaskAssistConversationRequest": {
516
1187
  "type": "structure",
517
- "members": {}
1188
+ "members": {},
1189
+ "documentation": "<p>Structure to represent bootstrap conversation request.</p>"
518
1190
  },
519
1191
  "CreateTaskAssistConversationResponse": {
520
1192
  "type": "structure",
521
1193
  "required": ["conversationId"],
522
1194
  "members": {
523
- "conversationId": { "shape": "ConversationId" }
524
- }
1195
+ "conversationId": {
1196
+ "shape": "ConversationId"
1197
+ }
1198
+ },
1199
+ "documentation": "<p>Structure to represent bootstrap conversation response.</p>"
525
1200
  },
526
1201
  "CreateUploadUrlRequest": {
527
1202
  "type": "structure",
528
1203
  "members": {
529
- "contentMd5": { "shape": "CreateUploadUrlRequestContentMd5String" },
530
- "contentChecksum": { "shape": "CreateUploadUrlRequestContentChecksumString" },
531
- "contentChecksumType": { "shape": "ContentChecksumType" },
532
- "contentLength": { "shape": "CreateUploadUrlRequestContentLengthLong" },
533
- "artifactType": { "shape": "ArtifactType" },
534
- "uploadIntent": { "shape": "UploadIntent" },
535
- "uploadContext": { "shape": "UploadContext" }
1204
+ "contentMd5": {
1205
+ "shape": "CreateUploadUrlRequestContentMd5String"
1206
+ },
1207
+ "contentChecksum": {
1208
+ "shape": "CreateUploadUrlRequestContentChecksumString"
1209
+ },
1210
+ "contentChecksumType": {
1211
+ "shape": "ContentChecksumType"
1212
+ },
1213
+ "contentLength": {
1214
+ "shape": "CreateUploadUrlRequestContentLengthLong"
1215
+ },
1216
+ "artifactType": {
1217
+ "shape": "ArtifactType"
1218
+ },
1219
+ "uploadIntent": {
1220
+ "shape": "UploadIntent"
1221
+ },
1222
+ "uploadContext": {
1223
+ "shape": "UploadContext"
1224
+ },
1225
+ "uploadId": {
1226
+ "shape": "UploadId"
1227
+ }
536
1228
  }
537
1229
  },
538
1230
  "CreateUploadUrlRequestContentChecksumString": {
@@ -556,26 +1248,48 @@
556
1248
  "type": "structure",
557
1249
  "required": ["uploadId", "uploadUrl"],
558
1250
  "members": {
559
- "uploadId": { "shape": "UploadId" },
560
- "uploadUrl": { "shape": "PreSignedUrl" },
561
- "kmsKeyArn": { "shape": "ResourceArn" }
1251
+ "uploadId": {
1252
+ "shape": "UploadId"
1253
+ },
1254
+ "uploadUrl": {
1255
+ "shape": "PreSignedUrl"
1256
+ },
1257
+ "kmsKeyArn": {
1258
+ "shape": "ResourceArn"
1259
+ },
1260
+ "requestHeaders": {
1261
+ "shape": "RequestHeaders"
1262
+ }
562
1263
  }
563
1264
  },
564
1265
  "CursorState": {
565
1266
  "type": "structure",
566
1267
  "members": {
567
- "position": { "shape": "Position" },
568
- "range": { "shape": "Range" }
1268
+ "position": {
1269
+ "shape": "Position",
1270
+ "documentation": "<p>Represents a cursor position in a Text Document</p>"
1271
+ },
1272
+ "range": {
1273
+ "shape": "Range",
1274
+ "documentation": "<p>Represents a text selection in a Text Document</p>"
1275
+ }
569
1276
  },
1277
+ "documentation": "<p>Represents the state of the Cursor in an Editor</p>",
570
1278
  "union": true
571
1279
  },
572
1280
  "Customization": {
573
1281
  "type": "structure",
574
1282
  "required": ["arn"],
575
1283
  "members": {
576
- "arn": { "shape": "CustomizationArn" },
577
- "name": { "shape": "CustomizationName" },
578
- "description": { "shape": "Description" }
1284
+ "arn": {
1285
+ "shape": "CustomizationArn"
1286
+ },
1287
+ "name": {
1288
+ "shape": "CustomizationName"
1289
+ },
1290
+ "description": {
1291
+ "shape": "Description"
1292
+ }
579
1293
  }
580
1294
  },
581
1295
  "CustomizationArn": {
@@ -592,21 +1306,29 @@
592
1306
  },
593
1307
  "Customizations": {
594
1308
  "type": "list",
595
- "member": { "shape": "Customization" }
1309
+ "member": {
1310
+ "shape": "Customization"
1311
+ }
596
1312
  },
597
1313
  "DeleteTaskAssistConversationRequest": {
598
1314
  "type": "structure",
599
1315
  "required": ["conversationId"],
600
1316
  "members": {
601
- "conversationId": { "shape": "ConversationId" }
602
- }
1317
+ "conversationId": {
1318
+ "shape": "ConversationId"
1319
+ }
1320
+ },
1321
+ "documentation": "<p>Structure to represent bootstrap conversation request.</p>"
603
1322
  },
604
1323
  "DeleteTaskAssistConversationResponse": {
605
1324
  "type": "structure",
606
1325
  "required": ["conversationId"],
607
1326
  "members": {
608
- "conversationId": { "shape": "ConversationId" }
609
- }
1327
+ "conversationId": {
1328
+ "shape": "ConversationId"
1329
+ }
1330
+ },
1331
+ "documentation": "<p>Structure to represent bootstrap conversation response.</p>"
610
1332
  },
611
1333
  "Description": {
612
1334
  "type": "string",
@@ -617,25 +1339,39 @@
617
1339
  "Diagnostic": {
618
1340
  "type": "structure",
619
1341
  "members": {
620
- "textDocumentDiagnostic": { "shape": "TextDocumentDiagnostic" },
621
- "runtimeDiagnostic": { "shape": "RuntimeDiagnostic" }
1342
+ "textDocumentDiagnostic": {
1343
+ "shape": "TextDocumentDiagnostic",
1344
+ "documentation": "<p>Diagnostics originating from a TextDocument</p>"
1345
+ },
1346
+ "runtimeDiagnostic": {
1347
+ "shape": "RuntimeDiagnostic",
1348
+ "documentation": "<p>Diagnostics originating from a Runtime</p>"
1349
+ }
622
1350
  },
1351
+ "documentation": "<p>Represents a Diagnostic message</p>",
623
1352
  "union": true
624
1353
  },
625
1354
  "DiagnosticSeverity": {
626
1355
  "type": "string",
1356
+ "documentation": "<p>Diagnostic Error types</p>",
627
1357
  "enum": ["ERROR", "WARNING", "INFORMATION", "HINT"]
628
1358
  },
629
1359
  "Dimension": {
630
1360
  "type": "structure",
631
1361
  "members": {
632
- "name": { "shape": "DimensionNameString" },
633
- "value": { "shape": "DimensionValueString" }
1362
+ "name": {
1363
+ "shape": "DimensionNameString"
1364
+ },
1365
+ "value": {
1366
+ "shape": "DimensionValueString"
1367
+ }
634
1368
  }
635
1369
  },
636
1370
  "DimensionList": {
637
1371
  "type": "list",
638
- "member": { "shape": "Dimension" },
1372
+ "member": {
1373
+ "shape": "Dimension"
1374
+ },
639
1375
  "max": 30,
640
1376
  "min": 0
641
1377
  },
@@ -655,9 +1391,18 @@
655
1391
  "type": "structure",
656
1392
  "required": ["name", "type"],
657
1393
  "members": {
658
- "name": { "shape": "DocumentSymbolNameString" },
659
- "type": { "shape": "SymbolType" },
660
- "source": { "shape": "DocumentSymbolSourceString" }
1394
+ "name": {
1395
+ "shape": "DocumentSymbolNameString",
1396
+ "documentation": "<p>Name of the Document Symbol</p>"
1397
+ },
1398
+ "type": {
1399
+ "shape": "SymbolType",
1400
+ "documentation": "<p>Symbol type - DECLARATION / USAGE</p>"
1401
+ },
1402
+ "source": {
1403
+ "shape": "DocumentSymbolSourceString",
1404
+ "documentation": "<p>Symbol package / source for FullyQualified names</p>"
1405
+ }
661
1406
  }
662
1407
  },
663
1408
  "DocumentSymbolNameString": {
@@ -672,10 +1417,28 @@
672
1417
  },
673
1418
  "DocumentSymbols": {
674
1419
  "type": "list",
675
- "member": { "shape": "DocumentSymbol" },
1420
+ "member": {
1421
+ "shape": "DocumentSymbol"
1422
+ },
676
1423
  "max": 1000,
677
1424
  "min": 0
678
1425
  },
1426
+ "DocumentationIntentContext": {
1427
+ "type": "structure",
1428
+ "required": ["type"],
1429
+ "members": {
1430
+ "scope": {
1431
+ "shape": "String"
1432
+ },
1433
+ "type": {
1434
+ "shape": "DocumentationType"
1435
+ }
1436
+ }
1437
+ },
1438
+ "DocumentationType": {
1439
+ "type": "string",
1440
+ "enum": ["README"]
1441
+ },
679
1442
  "Double": {
680
1443
  "type": "double",
681
1444
  "box": true
@@ -683,22 +1446,119 @@
683
1446
  "EditorState": {
684
1447
  "type": "structure",
685
1448
  "members": {
686
- "document": { "shape": "TextDocument" },
687
- "cursorState": { "shape": "CursorState" }
1449
+ "document": {
1450
+ "shape": "TextDocument",
1451
+ "documentation": "<p>Represents currently edited file</p>"
1452
+ },
1453
+ "cursorState": {
1454
+ "shape": "CursorState",
1455
+ "documentation": "<p>Position of the cursor</p>"
1456
+ },
1457
+ "relevantDocuments": {
1458
+ "shape": "RelevantDocumentList",
1459
+ "documentation": "<p>Represents IDE provided relevant files</p>"
1460
+ },
1461
+ "useRelevantDocuments": {
1462
+ "shape": "Boolean",
1463
+ "documentation": "<p>Whether service should use relevant document in prompt</p>"
1464
+ }
1465
+ },
1466
+ "documentation": "<p>Represents the state of an Editor</p>"
1467
+ },
1468
+ "EnvState": {
1469
+ "type": "structure",
1470
+ "members": {
1471
+ "operatingSystem": {
1472
+ "shape": "EnvStateOperatingSystemString",
1473
+ "documentation": "<p>The name of the operating system in use</p>"
1474
+ },
1475
+ "currentWorkingDirectory": {
1476
+ "shape": "EnvStateCurrentWorkingDirectoryString",
1477
+ "documentation": "<p>The current working directory of the environment</p>"
1478
+ },
1479
+ "environmentVariables": {
1480
+ "shape": "EnvironmentVariables",
1481
+ "documentation": "<p>The environment variables set in the current environment</p>"
1482
+ }
1483
+ },
1484
+ "documentation": "<p>State related to the user's environment</p>"
1485
+ },
1486
+ "EnvStateCurrentWorkingDirectoryString": {
1487
+ "type": "string",
1488
+ "max": 256,
1489
+ "min": 1,
1490
+ "sensitive": true
1491
+ },
1492
+ "EnvStateOperatingSystemString": {
1493
+ "type": "string",
1494
+ "max": 32,
1495
+ "min": 1,
1496
+ "pattern": "(macos|linux|windows)"
1497
+ },
1498
+ "EnvironmentVariable": {
1499
+ "type": "structure",
1500
+ "members": {
1501
+ "key": {
1502
+ "shape": "EnvironmentVariableKeyString",
1503
+ "documentation": "<p>The key of an environment variable</p>"
1504
+ },
1505
+ "value": {
1506
+ "shape": "EnvironmentVariableValueString",
1507
+ "documentation": "<p>The value of an environment variable</p>"
1508
+ }
1509
+ },
1510
+ "documentation": "<p>An environment variable</p>"
1511
+ },
1512
+ "EnvironmentVariableKeyString": {
1513
+ "type": "string",
1514
+ "max": 256,
1515
+ "min": 1,
1516
+ "sensitive": true
1517
+ },
1518
+ "EnvironmentVariableValueString": {
1519
+ "type": "string",
1520
+ "max": 1024,
1521
+ "min": 1,
1522
+ "sensitive": true
1523
+ },
1524
+ "EnvironmentVariables": {
1525
+ "type": "list",
1526
+ "member": {
1527
+ "shape": "EnvironmentVariable"
1528
+ },
1529
+ "documentation": "<p>A list of environment variables</p>",
1530
+ "max": 100,
1531
+ "min": 0
1532
+ },
1533
+ "FeatureDevEvent": {
1534
+ "type": "structure",
1535
+ "required": ["conversationId"],
1536
+ "members": {
1537
+ "conversationId": {
1538
+ "shape": "ConversationId"
1539
+ }
688
1540
  }
689
1541
  },
690
1542
  "FeatureEvaluation": {
691
1543
  "type": "structure",
692
1544
  "required": ["feature", "variation", "value"],
693
1545
  "members": {
694
- "feature": { "shape": "FeatureName" },
695
- "variation": { "shape": "FeatureVariation" },
696
- "value": { "shape": "FeatureValue" }
1546
+ "feature": {
1547
+ "shape": "FeatureName"
1548
+ },
1549
+ "variation": {
1550
+ "shape": "FeatureVariation"
1551
+ },
1552
+ "value": {
1553
+ "shape": "FeatureValue"
1554
+ }
697
1555
  }
698
1556
  },
699
1557
  "FeatureEvaluationsList": {
700
1558
  "type": "list",
701
- "member": { "shape": "FeatureEvaluation" },
1559
+ "member": {
1560
+ "shape": "FeatureEvaluation"
1561
+ },
702
1562
  "max": 50,
703
1563
  "min": 0
704
1564
  },
@@ -711,10 +1571,18 @@
711
1571
  "FeatureValue": {
712
1572
  "type": "structure",
713
1573
  "members": {
714
- "boolValue": { "shape": "Boolean" },
715
- "doubleValue": { "shape": "Double" },
716
- "longValue": { "shape": "Long" },
717
- "stringValue": { "shape": "FeatureValueStringType" }
1574
+ "boolValue": {
1575
+ "shape": "Boolean"
1576
+ },
1577
+ "doubleValue": {
1578
+ "shape": "Double"
1579
+ },
1580
+ "longValue": {
1581
+ "shape": "Long"
1582
+ },
1583
+ "stringValue": {
1584
+ "shape": "FeatureValueStringType"
1585
+ }
718
1586
  },
719
1587
  "union": true
720
1588
  },
@@ -733,10 +1601,18 @@
733
1601
  "type": "structure",
734
1602
  "required": ["leftFileContent", "rightFileContent", "filename", "programmingLanguage"],
735
1603
  "members": {
736
- "leftFileContent": { "shape": "FileContextLeftFileContentString" },
737
- "rightFileContent": { "shape": "FileContextRightFileContentString" },
738
- "filename": { "shape": "FileContextFilenameString" },
739
- "programmingLanguage": { "shape": "ProgrammingLanguage" }
1604
+ "leftFileContent": {
1605
+ "shape": "FileContextLeftFileContentString"
1606
+ },
1607
+ "rightFileContent": {
1608
+ "shape": "FileContextRightFileContentString"
1609
+ },
1610
+ "filename": {
1611
+ "shape": "FileContextFilenameString"
1612
+ },
1613
+ "programmingLanguage": {
1614
+ "shape": "ProgrammingLanguage"
1615
+ }
740
1616
  }
741
1617
  },
742
1618
  "FileContextFilenameString": {
@@ -761,9 +1637,16 @@
761
1637
  "type": "structure",
762
1638
  "required": ["content"],
763
1639
  "members": {
764
- "content": { "shape": "FollowupPromptContentString" },
765
- "userIntent": { "shape": "UserIntent" }
766
- }
1640
+ "content": {
1641
+ "shape": "FollowupPromptContentString",
1642
+ "documentation": "<p>The content of the text message in markdown format.</p>"
1643
+ },
1644
+ "userIntent": {
1645
+ "shape": "UserIntent",
1646
+ "documentation": "<p>User Intent</p>"
1647
+ }
1648
+ },
1649
+ "documentation": "<p>Followup Prompt for the Assistant Response</p>"
767
1650
  },
768
1651
  "FollowupPromptContentString": {
769
1652
  "type": "string",
@@ -775,14 +1658,33 @@
775
1658
  "type": "structure",
776
1659
  "required": ["fileContext"],
777
1660
  "members": {
778
- "fileContext": { "shape": "FileContext" },
779
- "maxResults": { "shape": "GenerateCompletionsRequestMaxResultsInteger" },
780
- "nextToken": { "shape": "GenerateCompletionsRequestNextTokenString" },
781
- "referenceTrackerConfiguration": { "shape": "ReferenceTrackerConfiguration" },
782
- "supplementalContexts": { "shape": "SupplementalContextList" },
783
- "customizationArn": { "shape": "CustomizationArn" },
784
- "optOutPreference": { "shape": "OptOutPreference" },
785
- "userContext": { "shape": "UserContext" }
1661
+ "fileContext": {
1662
+ "shape": "FileContext"
1663
+ },
1664
+ "maxResults": {
1665
+ "shape": "GenerateCompletionsRequestMaxResultsInteger"
1666
+ },
1667
+ "nextToken": {
1668
+ "shape": "GenerateCompletionsRequestNextTokenString"
1669
+ },
1670
+ "referenceTrackerConfiguration": {
1671
+ "shape": "ReferenceTrackerConfiguration"
1672
+ },
1673
+ "supplementalContexts": {
1674
+ "shape": "SupplementalContextList"
1675
+ },
1676
+ "customizationArn": {
1677
+ "shape": "CustomizationArn"
1678
+ },
1679
+ "optOutPreference": {
1680
+ "shape": "OptOutPreference"
1681
+ },
1682
+ "userContext": {
1683
+ "shape": "UserContext"
1684
+ },
1685
+ "profileArn": {
1686
+ "shape": "ProfileArn"
1687
+ }
786
1688
  }
787
1689
  },
788
1690
  "GenerateCompletionsRequestMaxResultsInteger": {
@@ -801,15 +1703,21 @@
801
1703
  "GenerateCompletionsResponse": {
802
1704
  "type": "structure",
803
1705
  "members": {
804
- "completions": { "shape": "Completions" },
805
- "nextToken": { "shape": "SensitiveString" }
1706
+ "completions": {
1707
+ "shape": "Completions"
1708
+ },
1709
+ "nextToken": {
1710
+ "shape": "SensitiveString"
1711
+ }
806
1712
  }
807
1713
  },
808
1714
  "GetCodeAnalysisRequest": {
809
1715
  "type": "structure",
810
1716
  "required": ["jobId"],
811
1717
  "members": {
812
- "jobId": { "shape": "GetCodeAnalysisRequestJobIdString" }
1718
+ "jobId": {
1719
+ "shape": "GetCodeAnalysisRequestJobIdString"
1720
+ }
813
1721
  }
814
1722
  },
815
1723
  "GetCodeAnalysisRequestJobIdString": {
@@ -821,57 +1729,130 @@
821
1729
  "type": "structure",
822
1730
  "required": ["status"],
823
1731
  "members": {
824
- "status": { "shape": "CodeAnalysisStatus" },
825
- "errorMessage": { "shape": "SensitiveString" }
1732
+ "status": {
1733
+ "shape": "CodeAnalysisStatus"
1734
+ },
1735
+ "errorMessage": {
1736
+ "shape": "SensitiveString"
1737
+ }
826
1738
  }
827
1739
  },
828
1740
  "GetTaskAssistCodeGenerationRequest": {
829
1741
  "type": "structure",
830
1742
  "required": ["conversationId", "codeGenerationId"],
831
1743
  "members": {
832
- "conversationId": { "shape": "ConversationId" },
833
- "codeGenerationId": { "shape": "CodeGenerationId" }
834
- }
1744
+ "conversationId": {
1745
+ "shape": "ConversationId"
1746
+ },
1747
+ "codeGenerationId": {
1748
+ "shape": "CodeGenerationId"
1749
+ }
1750
+ },
1751
+ "documentation": "<p>Request for getting task assist code generation.</p>"
835
1752
  },
836
1753
  "GetTaskAssistCodeGenerationResponse": {
837
1754
  "type": "structure",
838
1755
  "required": ["conversationId", "codeGenerationStatus"],
839
1756
  "members": {
840
- "conversationId": { "shape": "ConversationId" },
841
- "codeGenerationStatus": { "shape": "CodeGenerationStatus" }
842
- }
1757
+ "conversationId": {
1758
+ "shape": "ConversationId"
1759
+ },
1760
+ "codeGenerationStatus": {
1761
+ "shape": "CodeGenerationStatus"
1762
+ },
1763
+ "codeGenerationStatusDetail": {
1764
+ "shape": "CodeGenerationStatusDetail"
1765
+ },
1766
+ "codeGenerationRemainingIterationCount": {
1767
+ "shape": "Integer"
1768
+ },
1769
+ "codeGenerationTotalIterationCount": {
1770
+ "shape": "Integer"
1771
+ }
1772
+ },
1773
+ "documentation": "<p>Response for getting task assist code generation status.</p>"
1774
+ },
1775
+ "GetTestGenerationRequest": {
1776
+ "type": "structure",
1777
+ "required": ["testGenerationJobGroupName", "testGenerationJobId"],
1778
+ "members": {
1779
+ "testGenerationJobGroupName": {
1780
+ "shape": "TestGenerationJobGroupName"
1781
+ },
1782
+ "testGenerationJobId": {
1783
+ "shape": "UUID"
1784
+ }
1785
+ },
1786
+ "documentation": "<p>Structure to represent get test generation request.</p>"
1787
+ },
1788
+ "GetTestGenerationResponse": {
1789
+ "type": "structure",
1790
+ "members": {
1791
+ "testGenerationJob": {
1792
+ "shape": "TestGenerationJob"
1793
+ }
1794
+ },
1795
+ "documentation": "<p>Structure to represent get test generation response.</p>"
843
1796
  },
844
1797
  "GetTransformationPlanRequest": {
845
1798
  "type": "structure",
846
1799
  "required": ["transformationJobId"],
847
1800
  "members": {
848
- "transformationJobId": { "shape": "TransformationJobId" }
849
- }
1801
+ "transformationJobId": {
1802
+ "shape": "TransformationJobId"
1803
+ }
1804
+ },
1805
+ "documentation": "<p>Structure to represent get code transformation plan request.</p>"
850
1806
  },
851
1807
  "GetTransformationPlanResponse": {
852
1808
  "type": "structure",
853
1809
  "required": ["transformationPlan"],
854
1810
  "members": {
855
- "transformationPlan": { "shape": "TransformationPlan" }
856
- }
1811
+ "transformationPlan": {
1812
+ "shape": "TransformationPlan"
1813
+ }
1814
+ },
1815
+ "documentation": "<p>Structure to represent get code transformation plan response.</p>"
857
1816
  },
858
1817
  "GetTransformationRequest": {
859
1818
  "type": "structure",
860
1819
  "required": ["transformationJobId"],
861
1820
  "members": {
862
- "transformationJobId": { "shape": "TransformationJobId" }
863
- }
1821
+ "transformationJobId": {
1822
+ "shape": "TransformationJobId"
1823
+ }
1824
+ },
1825
+ "documentation": "<p>Structure to represent get code transformation request.</p>"
864
1826
  },
865
1827
  "GetTransformationResponse": {
866
1828
  "type": "structure",
867
1829
  "required": ["transformationJob"],
868
1830
  "members": {
869
- "transformationJob": { "shape": "TransformationJob" }
870
- }
1831
+ "transformationJob": {
1832
+ "shape": "TransformationJob"
1833
+ }
1834
+ },
1835
+ "documentation": "<p>Structure to represent get code transformation response.</p>"
1836
+ },
1837
+ "GitState": {
1838
+ "type": "structure",
1839
+ "members": {
1840
+ "status": {
1841
+ "shape": "GitStateStatusString",
1842
+ "documentation": "<p>The output of the command <code>git status --porcelain=v1 -b</code></p>"
1843
+ }
1844
+ },
1845
+ "documentation": "<p>State related to the Git VSC</p>"
1846
+ },
1847
+ "GitStateStatusString": {
1848
+ "type": "string",
1849
+ "max": 4096,
1850
+ "min": 0,
1851
+ "sensitive": true
871
1852
  },
872
1853
  "IdeCategory": {
873
1854
  "type": "string",
874
- "enum": ["JETBRAINS", "VSCODE"],
1855
+ "enum": ["JETBRAINS", "VSCODE", "CLI", "JUPYTER_MD", "JUPYTER_SM", "ECLIPSE", "VISUAL_STUDIO"],
875
1856
  "max": 64,
876
1857
  "min": 1
877
1858
  },
@@ -883,7 +1864,9 @@
883
1864
  "Import": {
884
1865
  "type": "structure",
885
1866
  "members": {
886
- "statement": { "shape": "ImportStatementString" }
1867
+ "statement": {
1868
+ "shape": "ImportStatementString"
1869
+ }
887
1870
  }
888
1871
  },
889
1872
  "ImportStatementString": {
@@ -894,29 +1877,111 @@
894
1877
  },
895
1878
  "Imports": {
896
1879
  "type": "list",
897
- "member": { "shape": "Import" },
1880
+ "member": {
1881
+ "shape": "Import"
1882
+ },
898
1883
  "max": 10,
899
1884
  "min": 0
900
1885
  },
1886
+ "InlineChatEvent": {
1887
+ "type": "structure",
1888
+ "required": ["requestId", "timestamp"],
1889
+ "members": {
1890
+ "requestId": {
1891
+ "shape": "UUID"
1892
+ },
1893
+ "timestamp": {
1894
+ "shape": "Timestamp"
1895
+ },
1896
+ "inputLength": {
1897
+ "shape": "PrimitiveInteger"
1898
+ },
1899
+ "numSelectedLines": {
1900
+ "shape": "PrimitiveInteger"
1901
+ },
1902
+ "numSuggestionAddChars": {
1903
+ "shape": "PrimitiveInteger"
1904
+ },
1905
+ "numSuggestionAddLines": {
1906
+ "shape": "PrimitiveInteger"
1907
+ },
1908
+ "numSuggestionDelChars": {
1909
+ "shape": "PrimitiveInteger"
1910
+ },
1911
+ "numSuggestionDelLines": {
1912
+ "shape": "PrimitiveInteger"
1913
+ },
1914
+ "codeIntent": {
1915
+ "shape": "Boolean"
1916
+ },
1917
+ "userDecision": {
1918
+ "shape": "InlineChatUserDecision"
1919
+ },
1920
+ "responseStartLatency": {
1921
+ "shape": "Double"
1922
+ },
1923
+ "responseEndLatency": {
1924
+ "shape": "Double"
1925
+ },
1926
+ "charactersAdded": {
1927
+ "shape": "PrimitiveInteger"
1928
+ },
1929
+ "charactersRemoved": {
1930
+ "shape": "PrimitiveInteger"
1931
+ }
1932
+ }
1933
+ },
1934
+ "InlineChatUserDecision": {
1935
+ "type": "string",
1936
+ "enum": ["ACCEPT", "REJECT", "DISMISS"]
1937
+ },
901
1938
  "Integer": {
902
1939
  "type": "integer",
903
1940
  "box": true
904
1941
  },
1942
+ "Intent": {
1943
+ "type": "string",
1944
+ "enum": ["DEV", "DOC"]
1945
+ },
1946
+ "IntentContext": {
1947
+ "type": "structure",
1948
+ "members": {
1949
+ "documentation": {
1950
+ "shape": "DocumentationIntentContext"
1951
+ }
1952
+ },
1953
+ "union": true
1954
+ },
905
1955
  "InternalServerException": {
906
1956
  "type": "structure",
907
1957
  "required": ["message"],
908
1958
  "members": {
909
- "message": { "shape": "String" }
1959
+ "message": {
1960
+ "shape": "String"
1961
+ }
910
1962
  },
1963
+ "documentation": "<p>This exception is thrown when an unexpected error occurred during the processing of a request.</p>",
911
1964
  "exception": true,
912
1965
  "fault": true,
913
- "retryable": { "throttling": false }
1966
+ "retryable": {
1967
+ "throttling": false
1968
+ }
1969
+ },
1970
+ "LineRangeList": {
1971
+ "type": "list",
1972
+ "member": {
1973
+ "shape": "Range"
1974
+ }
914
1975
  },
915
1976
  "ListAvailableCustomizationsRequest": {
916
1977
  "type": "structure",
917
1978
  "members": {
918
- "maxResults": { "shape": "ListAvailableCustomizationsRequestMaxResultsInteger" },
919
- "nextToken": { "shape": "Base64EncodedPaginationToken" }
1979
+ "maxResults": {
1980
+ "shape": "ListAvailableCustomizationsRequestMaxResultsInteger"
1981
+ },
1982
+ "nextToken": {
1983
+ "shape": "Base64EncodedPaginationToken"
1984
+ }
920
1985
  }
921
1986
  },
922
1987
  "ListAvailableCustomizationsRequestMaxResultsInteger": {
@@ -929,17 +1994,27 @@
929
1994
  "type": "structure",
930
1995
  "required": ["customizations"],
931
1996
  "members": {
932
- "customizations": { "shape": "Customizations" },
933
- "nextToken": { "shape": "Base64EncodedPaginationToken" }
1997
+ "customizations": {
1998
+ "shape": "Customizations"
1999
+ },
2000
+ "nextToken": {
2001
+ "shape": "Base64EncodedPaginationToken"
2002
+ }
934
2003
  }
935
2004
  },
936
2005
  "ListCodeAnalysisFindingsRequest": {
937
2006
  "type": "structure",
938
2007
  "required": ["jobId", "codeAnalysisFindingsSchema"],
939
2008
  "members": {
940
- "jobId": { "shape": "ListCodeAnalysisFindingsRequestJobIdString" },
941
- "nextToken": { "shape": "PaginationToken" },
942
- "codeAnalysisFindingsSchema": { "shape": "CodeAnalysisFindingsSchema" }
2009
+ "jobId": {
2010
+ "shape": "ListCodeAnalysisFindingsRequestJobIdString"
2011
+ },
2012
+ "nextToken": {
2013
+ "shape": "PaginationToken"
2014
+ },
2015
+ "codeAnalysisFindingsSchema": {
2016
+ "shape": "CodeAnalysisFindingsSchema"
2017
+ }
943
2018
  }
944
2019
  },
945
2020
  "ListCodeAnalysisFindingsRequestJobIdString": {
@@ -951,22 +2026,30 @@
951
2026
  "type": "structure",
952
2027
  "required": ["codeAnalysisFindings"],
953
2028
  "members": {
954
- "nextToken": { "shape": "PaginationToken" },
955
- "codeAnalysisFindings": { "shape": "SensitiveString" }
2029
+ "nextToken": {
2030
+ "shape": "PaginationToken"
2031
+ },
2032
+ "codeAnalysisFindings": {
2033
+ "shape": "SensitiveString"
2034
+ }
956
2035
  }
957
2036
  },
958
2037
  "ListFeatureEvaluationsRequest": {
959
2038
  "type": "structure",
960
2039
  "required": ["userContext"],
961
2040
  "members": {
962
- "userContext": { "shape": "UserContext" }
2041
+ "userContext": {
2042
+ "shape": "UserContext"
2043
+ }
963
2044
  }
964
2045
  },
965
2046
  "ListFeatureEvaluationsResponse": {
966
2047
  "type": "structure",
967
2048
  "required": ["featureEvaluations"],
968
2049
  "members": {
969
- "featureEvaluations": { "shape": "FeatureEvaluationsList" }
2050
+ "featureEvaluations": {
2051
+ "shape": "FeatureEvaluationsList"
2052
+ }
970
2053
  }
971
2054
  },
972
2055
  "Long": {
@@ -975,22 +2058,40 @@
975
2058
  },
976
2059
  "MessageId": {
977
2060
  "type": "string",
2061
+ "documentation": "<p>Unique identifier for the chat message</p>",
978
2062
  "max": 128,
979
2063
  "min": 0
980
2064
  },
981
2065
  "MetricData": {
982
2066
  "type": "structure",
983
- "required": ["metricName", "metricValue", "timestamp"],
2067
+ "required": ["metricName", "metricValue", "timestamp", "product"],
984
2068
  "members": {
985
- "metricName": { "shape": "MetricDataMetricNameString" },
986
- "metricValue": { "shape": "Double" },
987
- "timestamp": { "shape": "Timestamp" },
988
- "dimensions": { "shape": "DimensionList" }
2069
+ "metricName": {
2070
+ "shape": "MetricDataMetricNameString"
2071
+ },
2072
+ "metricValue": {
2073
+ "shape": "Double"
2074
+ },
2075
+ "timestamp": {
2076
+ "shape": "Timestamp"
2077
+ },
2078
+ "product": {
2079
+ "shape": "MetricDataProductString"
2080
+ },
2081
+ "dimensions": {
2082
+ "shape": "DimensionList"
2083
+ }
989
2084
  }
990
2085
  },
991
2086
  "MetricDataMetricNameString": {
992
2087
  "type": "string",
993
- "max": 1024,
2088
+ "max": 1024,
2089
+ "min": 1,
2090
+ "pattern": "[-a-zA-Z0-9._]*"
2091
+ },
2092
+ "MetricDataProductString": {
2093
+ "type": "string",
2094
+ "max": 128,
994
2095
  "min": 1,
995
2096
  "pattern": "[-a-zA-Z0-9._]*"
996
2097
  },
@@ -1014,9 +2115,16 @@
1014
2115
  "type": "structure",
1015
2116
  "required": ["line", "character"],
1016
2117
  "members": {
1017
- "line": { "shape": "Integer" },
1018
- "character": { "shape": "Integer" }
1019
- }
2118
+ "line": {
2119
+ "shape": "Integer",
2120
+ "documentation": "<p>Line position in a document.</p>"
2121
+ },
2122
+ "character": {
2123
+ "shape": "Integer",
2124
+ "documentation": "<p>Character offset on a line in a document (zero-based)</p>"
2125
+ }
2126
+ },
2127
+ "documentation": "<p>Indicates Cursor postion in a Text Document</p>"
1020
2128
  },
1021
2129
  "PreSignedUrl": {
1022
2130
  "type": "string",
@@ -1024,44 +2132,78 @@
1024
2132
  "min": 1,
1025
2133
  "sensitive": true
1026
2134
  },
1027
- "PrimitiveInteger": { "type": "integer" },
2135
+ "PrimitiveInteger": {
2136
+ "type": "integer"
2137
+ },
2138
+ "ProfileArn": {
2139
+ "type": "string",
2140
+ "max": 950,
2141
+ "min": 0,
2142
+ "pattern": "arn:aws:codewhisperer:[-.a-z0-9]{1,63}:\\d{12}:profile/([a-zA-Z0-9]){12}"
2143
+ },
1028
2144
  "ProgrammingLanguage": {
1029
2145
  "type": "structure",
1030
2146
  "required": ["languageName"],
1031
2147
  "members": {
1032
- "languageName": { "shape": "ProgrammingLanguageLanguageNameString" }
1033
- }
2148
+ "languageName": {
2149
+ "shape": "ProgrammingLanguageLanguageNameString"
2150
+ }
2151
+ },
2152
+ "documentation": "<p>Programming Languages supported by CodeWhisperer</p>"
1034
2153
  },
1035
2154
  "ProgrammingLanguageLanguageNameString": {
1036
2155
  "type": "string",
1037
2156
  "max": 128,
1038
2157
  "min": 1,
1039
- "pattern": "(python|javascript|java|csharp|typescript|c|cpp|go|kotlin|php|ruby|rust|scala|shell|sql|json|yaml|vue|tf|tsx|jsx)"
2158
+ "pattern": "(python|javascript|java|csharp|typescript|c|cpp|go|kotlin|php|ruby|rust|scala|shell|sql|json|yaml|vue|tf|tsx|jsx|plaintext|systemverilog|dart|lua|swift|powershell|r)"
1040
2159
  },
1041
2160
  "ProgressUpdates": {
1042
2161
  "type": "list",
1043
- "member": { "shape": "TransformationProgressUpdate" }
2162
+ "member": {
2163
+ "shape": "TransformationProgressUpdate"
2164
+ }
1044
2165
  },
1045
2166
  "Range": {
1046
2167
  "type": "structure",
1047
2168
  "required": ["start", "end"],
1048
2169
  "members": {
1049
- "start": { "shape": "Position" },
1050
- "end": { "shape": "Position" }
1051
- }
2170
+ "start": {
2171
+ "shape": "Position",
2172
+ "documentation": "<p>The range's start position.</p>"
2173
+ },
2174
+ "end": {
2175
+ "shape": "Position",
2176
+ "documentation": "<p>The range's end position.</p>"
2177
+ }
2178
+ },
2179
+ "documentation": "<p>Indicates Range / Span in a Text Document</p>"
1052
2180
  },
1053
2181
  "RecommendationsWithReferencesPreference": {
1054
2182
  "type": "string",
2183
+ "documentation": "<p>Recommendations with references setting for CodeWhisperer</p>",
1055
2184
  "enum": ["BLOCK", "ALLOW"]
1056
2185
  },
1057
2186
  "Reference": {
1058
2187
  "type": "structure",
1059
2188
  "members": {
1060
- "licenseName": { "shape": "ReferenceLicenseNameString" },
1061
- "repository": { "shape": "ReferenceRepositoryString" },
1062
- "url": { "shape": "ReferenceUrlString" },
1063
- "recommendationContentSpan": { "shape": "Span" }
1064
- }
2189
+ "licenseName": {
2190
+ "shape": "ReferenceLicenseNameString",
2191
+ "documentation": "<p>License name</p>"
2192
+ },
2193
+ "repository": {
2194
+ "shape": "ReferenceRepositoryString",
2195
+ "documentation": "<p>Code Repsitory for the associated reference</p>"
2196
+ },
2197
+ "url": {
2198
+ "shape": "ReferenceUrlString",
2199
+ "documentation": "<p>Respository URL</p>"
2200
+ },
2201
+ "recommendationContentSpan": {
2202
+ "shape": "Span",
2203
+ "documentation": "<p>Span / Range for the Reference</p>"
2204
+ }
2205
+ },
2206
+ "documentation": "<p>Code Reference / Repository details</p>"
1065
2207
  },
1066
2208
  "ReferenceLicenseNameString": {
1067
2209
  "type": "string",
@@ -1077,7 +2219,9 @@
1077
2219
  "type": "structure",
1078
2220
  "required": ["recommendationsWithReferences"],
1079
2221
  "members": {
1080
- "recommendationsWithReferences": { "shape": "RecommendationsWithReferencesPreference" }
2222
+ "recommendationsWithReferences": {
2223
+ "shape": "RecommendationsWithReferencesPreference"
2224
+ }
1081
2225
  }
1082
2226
  },
1083
2227
  "ReferenceUrlString": {
@@ -1087,10 +2231,77 @@
1087
2231
  },
1088
2232
  "References": {
1089
2233
  "type": "list",
1090
- "member": { "shape": "Reference" },
2234
+ "member": {
2235
+ "shape": "Reference"
2236
+ },
1091
2237
  "max": 10,
1092
2238
  "min": 0
1093
2239
  },
2240
+ "RelevantDocumentList": {
2241
+ "type": "list",
2242
+ "member": {
2243
+ "shape": "RelevantTextDocument"
2244
+ },
2245
+ "max": 5,
2246
+ "min": 0
2247
+ },
2248
+ "RelevantTextDocument": {
2249
+ "type": "structure",
2250
+ "required": ["relativeFilePath"],
2251
+ "members": {
2252
+ "relativeFilePath": {
2253
+ "shape": "RelevantTextDocumentRelativeFilePathString",
2254
+ "documentation": "<p>Filepath relative to the root of the workspace</p>"
2255
+ },
2256
+ "programmingLanguage": {
2257
+ "shape": "ProgrammingLanguage",
2258
+ "documentation": "<p>The text document's language identifier.</p>"
2259
+ },
2260
+ "text": {
2261
+ "shape": "RelevantTextDocumentTextString",
2262
+ "documentation": "<p>Content of the text document</p>"
2263
+ },
2264
+ "documentSymbols": {
2265
+ "shape": "DocumentSymbols",
2266
+ "documentation": "<p>DocumentSymbols parsed from a text document</p>"
2267
+ }
2268
+ },
2269
+ "documentation": "<p>Represents an IDE retrieved relevant Text Document / File</p>"
2270
+ },
2271
+ "RelevantTextDocumentRelativeFilePathString": {
2272
+ "type": "string",
2273
+ "max": 4096,
2274
+ "min": 1,
2275
+ "sensitive": true
2276
+ },
2277
+ "RelevantTextDocumentTextString": {
2278
+ "type": "string",
2279
+ "max": 10240,
2280
+ "min": 0,
2281
+ "sensitive": true
2282
+ },
2283
+ "RequestHeaderKey": {
2284
+ "type": "string",
2285
+ "max": 64,
2286
+ "min": 1
2287
+ },
2288
+ "RequestHeaderValue": {
2289
+ "type": "string",
2290
+ "max": 256,
2291
+ "min": 1
2292
+ },
2293
+ "RequestHeaders": {
2294
+ "type": "map",
2295
+ "key": {
2296
+ "shape": "RequestHeaderKey"
2297
+ },
2298
+ "value": {
2299
+ "shape": "RequestHeaderValue"
2300
+ },
2301
+ "max": 16,
2302
+ "min": 1,
2303
+ "sensitive": true
2304
+ },
1094
2305
  "ResourceArn": {
1095
2306
  "type": "string",
1096
2307
  "max": 1224,
@@ -1101,18 +2312,54 @@
1101
2312
  "type": "structure",
1102
2313
  "required": ["message"],
1103
2314
  "members": {
1104
- "message": { "shape": "String" }
2315
+ "message": {
2316
+ "shape": "String"
2317
+ }
1105
2318
  },
2319
+ "documentation": "<p>This exception is thrown when describing a resource that does not exist.</p>",
1106
2320
  "exception": true
1107
2321
  },
2322
+ "ResumeTransformationRequest": {
2323
+ "type": "structure",
2324
+ "required": ["transformationJobId"],
2325
+ "members": {
2326
+ "transformationJobId": {
2327
+ "shape": "TransformationJobId"
2328
+ },
2329
+ "userActionStatus": {
2330
+ "shape": "TransformationUserActionStatus"
2331
+ }
2332
+ },
2333
+ "documentation": "<p>Structure to represent stop code transformation request.</p>"
2334
+ },
2335
+ "ResumeTransformationResponse": {
2336
+ "type": "structure",
2337
+ "required": ["transformationStatus"],
2338
+ "members": {
2339
+ "transformationStatus": {
2340
+ "shape": "TransformationStatus"
2341
+ }
2342
+ },
2343
+ "documentation": "<p>Structure to represent stop code transformation response.</p>"
2344
+ },
1108
2345
  "RuntimeDiagnostic": {
1109
2346
  "type": "structure",
1110
2347
  "required": ["source", "severity", "message"],
1111
2348
  "members": {
1112
- "source": { "shape": "RuntimeDiagnosticSourceString" },
1113
- "severity": { "shape": "DiagnosticSeverity" },
1114
- "message": { "shape": "RuntimeDiagnosticMessageString" }
1115
- }
2349
+ "source": {
2350
+ "shape": "RuntimeDiagnosticSourceString",
2351
+ "documentation": "<p>A human-readable string describing the source of the diagnostic</p>"
2352
+ },
2353
+ "severity": {
2354
+ "shape": "DiagnosticSeverity",
2355
+ "documentation": "<p>Diagnostic Error type</p>"
2356
+ },
2357
+ "message": {
2358
+ "shape": "RuntimeDiagnosticMessageString",
2359
+ "documentation": "<p>The diagnostic's message.</p>"
2360
+ }
2361
+ },
2362
+ "documentation": "<p>Structure to represent metadata about a Runtime Diagnostics</p>"
1116
2363
  },
1117
2364
  "RuntimeDiagnosticMessageString": {
1118
2365
  "type": "string",
@@ -1134,9 +2381,18 @@
1134
2381
  "shape": "IdempotencyToken",
1135
2382
  "idempotencyToken": true
1136
2383
  },
1137
- "telemetryEvent": { "shape": "TelemetryEvent" },
1138
- "optOutPreference": { "shape": "OptOutPreference" },
1139
- "userContext": { "shape": "UserContext" }
2384
+ "telemetryEvent": {
2385
+ "shape": "TelemetryEvent"
2386
+ },
2387
+ "optOutPreference": {
2388
+ "shape": "OptOutPreference"
2389
+ },
2390
+ "userContext": {
2391
+ "shape": "UserContext"
2392
+ },
2393
+ "profileArn": {
2394
+ "shape": "ProfileArn"
2395
+ }
1140
2396
  }
1141
2397
  },
1142
2398
  "SendTelemetryEventResponse": {
@@ -1147,12 +2403,109 @@
1147
2403
  "type": "string",
1148
2404
  "sensitive": true
1149
2405
  },
2406
+ "ServiceQuotaExceededException": {
2407
+ "type": "structure",
2408
+ "required": ["message"],
2409
+ "members": {
2410
+ "message": {
2411
+ "shape": "String"
2412
+ }
2413
+ },
2414
+ "documentation": "<p>This exception is thrown when request was denied due to caller exceeding their usage limits</p>",
2415
+ "exception": true
2416
+ },
2417
+ "ShellHistory": {
2418
+ "type": "list",
2419
+ "member": {
2420
+ "shape": "ShellHistoryEntry"
2421
+ },
2422
+ "documentation": "<p>A list of shell history entries</p>",
2423
+ "max": 20,
2424
+ "min": 0
2425
+ },
2426
+ "ShellHistoryEntry": {
2427
+ "type": "structure",
2428
+ "required": ["command"],
2429
+ "members": {
2430
+ "command": {
2431
+ "shape": "ShellHistoryEntryCommandString",
2432
+ "documentation": "<p>The shell command that was run</p>"
2433
+ },
2434
+ "directory": {
2435
+ "shape": "ShellHistoryEntryDirectoryString",
2436
+ "documentation": "<p>The directory the command was ran in</p>"
2437
+ },
2438
+ "exitCode": {
2439
+ "shape": "Integer",
2440
+ "documentation": "<p>The exit code of the command after it finished</p>"
2441
+ },
2442
+ "stdout": {
2443
+ "shape": "ShellHistoryEntryStdoutString",
2444
+ "documentation": "<p>The stdout from the command</p>"
2445
+ },
2446
+ "stderr": {
2447
+ "shape": "ShellHistoryEntryStderrString",
2448
+ "documentation": "<p>The stderr from the command</p>"
2449
+ }
2450
+ },
2451
+ "documentation": "<p>An single entry in the shell history</p>"
2452
+ },
2453
+ "ShellHistoryEntryCommandString": {
2454
+ "type": "string",
2455
+ "max": 1024,
2456
+ "min": 1,
2457
+ "sensitive": true
2458
+ },
2459
+ "ShellHistoryEntryDirectoryString": {
2460
+ "type": "string",
2461
+ "max": 256,
2462
+ "min": 1,
2463
+ "sensitive": true
2464
+ },
2465
+ "ShellHistoryEntryStderrString": {
2466
+ "type": "string",
2467
+ "max": 4096,
2468
+ "min": 0,
2469
+ "sensitive": true
2470
+ },
2471
+ "ShellHistoryEntryStdoutString": {
2472
+ "type": "string",
2473
+ "max": 4096,
2474
+ "min": 0,
2475
+ "sensitive": true
2476
+ },
2477
+ "ShellState": {
2478
+ "type": "structure",
2479
+ "required": ["shellName"],
2480
+ "members": {
2481
+ "shellName": {
2482
+ "shape": "ShellStateShellNameString",
2483
+ "documentation": "<p>The name of the current shell</p>"
2484
+ },
2485
+ "shellHistory": {
2486
+ "shape": "ShellHistory",
2487
+ "documentation": "<p>The history previous shell commands for the current shell</p>"
2488
+ }
2489
+ },
2490
+ "documentation": "<p>Represents the state of a shell</p>"
2491
+ },
2492
+ "ShellStateShellNameString": {
2493
+ "type": "string",
2494
+ "max": 32,
2495
+ "min": 1,
2496
+ "pattern": "(zsh|bash|fish|pwsh|nu)"
2497
+ },
1150
2498
  "Span": {
1151
2499
  "type": "structure",
1152
2500
  "members": {
1153
- "start": { "shape": "SpanStartInteger" },
1154
- "end": { "shape": "SpanEndInteger" }
1155
- }
2501
+ "start": {
2502
+ "shape": "SpanStartInteger"
2503
+ },
2504
+ "end": {
2505
+ "shape": "SpanEndInteger"
2506
+ }
2507
+ },
2508
+ "documentation": "<p>Represents span in a text</p>"
1156
2509
  },
1157
2510
  "SpanEndInteger": {
1158
2511
  "type": "integer",
@@ -1168,11 +2521,21 @@
1168
2521
  "type": "structure",
1169
2522
  "required": ["artifacts", "programmingLanguage"],
1170
2523
  "members": {
1171
- "artifacts": { "shape": "ArtifactMap" },
1172
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
2524
+ "artifacts": {
2525
+ "shape": "ArtifactMap"
2526
+ },
2527
+ "programmingLanguage": {
2528
+ "shape": "ProgrammingLanguage"
2529
+ },
1173
2530
  "clientToken": {
1174
2531
  "shape": "StartCodeAnalysisRequestClientTokenString",
1175
2532
  "idempotencyToken": true
2533
+ },
2534
+ "scope": {
2535
+ "shape": "CodeAnalysisScope"
2536
+ },
2537
+ "codeScanName": {
2538
+ "shape": "CodeScanName"
1176
2539
  }
1177
2540
  }
1178
2541
  },
@@ -1185,9 +2548,15 @@
1185
2548
  "type": "structure",
1186
2549
  "required": ["jobId", "status"],
1187
2550
  "members": {
1188
- "jobId": { "shape": "StartCodeAnalysisResponseJobIdString" },
1189
- "status": { "shape": "CodeAnalysisStatus" },
1190
- "errorMessage": { "shape": "SensitiveString" }
2551
+ "jobId": {
2552
+ "shape": "StartCodeAnalysisResponseJobIdString"
2553
+ },
2554
+ "status": {
2555
+ "shape": "CodeAnalysisStatus"
2556
+ },
2557
+ "errorMessage": {
2558
+ "shape": "SensitiveString"
2559
+ }
1191
2560
  }
1192
2561
  },
1193
2562
  "StartCodeAnalysisResponseJobIdString": {
@@ -1199,32 +2568,109 @@
1199
2568
  "type": "structure",
1200
2569
  "required": ["conversationState", "workspaceState"],
1201
2570
  "members": {
1202
- "conversationState": { "shape": "ConversationState" },
1203
- "workspaceState": { "shape": "WorkspaceState" }
1204
- }
2571
+ "conversationState": {
2572
+ "shape": "ConversationState"
2573
+ },
2574
+ "workspaceState": {
2575
+ "shape": "WorkspaceState"
2576
+ },
2577
+ "taskAssistPlan": {
2578
+ "shape": "TaskAssistPlan"
2579
+ },
2580
+ "codeGenerationId": {
2581
+ "shape": "CodeGenerationId"
2582
+ },
2583
+ "currentCodeGenerationId": {
2584
+ "shape": "CodeGenerationId"
2585
+ },
2586
+ "intent": {
2587
+ "shape": "Intent"
2588
+ },
2589
+ "intentContext": {
2590
+ "shape": "IntentContext"
2591
+ }
2592
+ },
2593
+ "documentation": "<p>Structure to represent start code generation request.</p>"
1205
2594
  },
1206
2595
  "StartTaskAssistCodeGenerationResponse": {
1207
2596
  "type": "structure",
1208
2597
  "required": ["conversationId", "codeGenerationId"],
1209
2598
  "members": {
1210
- "conversationId": { "shape": "ConversationId" },
1211
- "codeGenerationId": { "shape": "CodeGenerationId" }
1212
- }
2599
+ "conversationId": {
2600
+ "shape": "ConversationId"
2601
+ },
2602
+ "codeGenerationId": {
2603
+ "shape": "CodeGenerationId"
2604
+ }
2605
+ },
2606
+ "documentation": "<p>Structure to represent start code generation response.</p>"
2607
+ },
2608
+ "StartTestGenerationRequest": {
2609
+ "type": "structure",
2610
+ "required": ["uploadId", "targetCodeList", "userInput"],
2611
+ "members": {
2612
+ "uploadId": {
2613
+ "shape": "UploadId"
2614
+ },
2615
+ "targetCodeList": {
2616
+ "shape": "TargetCodeList"
2617
+ },
2618
+ "userInput": {
2619
+ "shape": "StartTestGenerationRequestUserInputString",
2620
+ "documentation": "<p>The content of user input.</p>"
2621
+ },
2622
+ "testGenerationJobGroupName": {
2623
+ "shape": "TestGenerationJobGroupName"
2624
+ },
2625
+ "clientToken": {
2626
+ "shape": "StartTestGenerationRequestClientTokenString",
2627
+ "idempotencyToken": true
2628
+ }
2629
+ },
2630
+ "documentation": "<p>Structure to represent test generation request.</p>"
2631
+ },
2632
+ "StartTestGenerationRequestClientTokenString": {
2633
+ "type": "string",
2634
+ "max": 256,
2635
+ "min": 1
2636
+ },
2637
+ "StartTestGenerationRequestUserInputString": {
2638
+ "type": "string",
2639
+ "max": 4096,
2640
+ "min": 0,
2641
+ "sensitive": true
2642
+ },
2643
+ "StartTestGenerationResponse": {
2644
+ "type": "structure",
2645
+ "members": {
2646
+ "testGenerationJob": {
2647
+ "shape": "TestGenerationJob"
2648
+ }
2649
+ },
2650
+ "documentation": "<p>Structure to represent code transformation response.</p>"
1213
2651
  },
1214
2652
  "StartTransformationRequest": {
1215
2653
  "type": "structure",
1216
2654
  "required": ["workspaceState", "transformationSpec"],
1217
2655
  "members": {
1218
- "workspaceState": { "shape": "WorkspaceState" },
1219
- "transformationSpec": { "shape": "TransformationSpec" }
1220
- }
2656
+ "workspaceState": {
2657
+ "shape": "WorkspaceState"
2658
+ },
2659
+ "transformationSpec": {
2660
+ "shape": "TransformationSpec"
2661
+ }
2662
+ },
2663
+ "documentation": "<p>Structure to represent code transformation request.</p>"
1221
2664
  },
1222
2665
  "StartTransformationResponse": {
1223
2666
  "type": "structure",
1224
2667
  "required": ["transformationJobId"],
1225
2668
  "members": {
1226
- "transformationJobId": { "shape": "TransformationJobId" }
1227
- }
2669
+ "transformationJobId": {
2670
+ "shape": "TransformationJobId"
2671
+ }
2672
+ },
2673
+ "documentation": "<p>Structure to represent code transformation response.</p>"
1228
2674
  },
1229
2675
  "StepId": {
1230
2676
  "type": "string",
@@ -1235,17 +2681,25 @@
1235
2681
  "type": "structure",
1236
2682
  "required": ["transformationJobId"],
1237
2683
  "members": {
1238
- "transformationJobId": { "shape": "TransformationJobId" }
1239
- }
2684
+ "transformationJobId": {
2685
+ "shape": "TransformationJobId"
2686
+ }
2687
+ },
2688
+ "documentation": "<p>Structure to represent stop code transformation request.</p>"
1240
2689
  },
1241
2690
  "StopTransformationResponse": {
1242
2691
  "type": "structure",
1243
2692
  "required": ["transformationStatus"],
1244
2693
  "members": {
1245
- "transformationStatus": { "shape": "TransformationStatus" }
1246
- }
2694
+ "transformationStatus": {
2695
+ "shape": "TransformationStatus"
2696
+ }
2697
+ },
2698
+ "documentation": "<p>Structure to represent stop code transformation response.</p>"
2699
+ },
2700
+ "String": {
2701
+ "type": "string"
1247
2702
  },
1248
- "String": { "type": "string" },
1249
2703
  "SuggestionState": {
1250
2704
  "type": "string",
1251
2705
  "enum": ["ACCEPT", "REJECT", "DISCARD", "EMPTY"]
@@ -1254,8 +2708,12 @@
1254
2708
  "type": "structure",
1255
2709
  "required": ["filePath", "content"],
1256
2710
  "members": {
1257
- "filePath": { "shape": "SupplementalContextFilePathString" },
1258
- "content": { "shape": "SupplementalContextContentString" }
2711
+ "filePath": {
2712
+ "shape": "SupplementalContextFilePathString"
2713
+ },
2714
+ "content": {
2715
+ "shape": "SupplementalContextContentString"
2716
+ }
1259
2717
  }
1260
2718
  },
1261
2719
  "SupplementalContextContentString": {
@@ -1264,96 +2722,333 @@
1264
2722
  "min": 1,
1265
2723
  "sensitive": true
1266
2724
  },
1267
- "SupplementalContextFilePathString": {
2725
+ "SupplementalContextFilePathString": {
2726
+ "type": "string",
2727
+ "max": 1024,
2728
+ "min": 1,
2729
+ "sensitive": true
2730
+ },
2731
+ "SupplementalContextList": {
2732
+ "type": "list",
2733
+ "member": {
2734
+ "shape": "SupplementalContext"
2735
+ },
2736
+ "max": 5,
2737
+ "min": 0
2738
+ },
2739
+ "SupplementaryWebLink": {
2740
+ "type": "structure",
2741
+ "required": ["url", "title"],
2742
+ "members": {
2743
+ "url": {
2744
+ "shape": "SupplementaryWebLinkUrlString",
2745
+ "documentation": "<p>URL of the web reference link</p>"
2746
+ },
2747
+ "title": {
2748
+ "shape": "SupplementaryWebLinkTitleString",
2749
+ "documentation": "<p>Title of the web reference link</p>"
2750
+ },
2751
+ "snippet": {
2752
+ "shape": "SupplementaryWebLinkSnippetString",
2753
+ "documentation": "<p>Relevant text snippet from the link</p>"
2754
+ }
2755
+ },
2756
+ "documentation": "<p>Represents an additional reference link retured with the Chat message</p>"
2757
+ },
2758
+ "SupplementaryWebLinkSnippetString": {
2759
+ "type": "string",
2760
+ "max": 1024,
2761
+ "min": 1,
2762
+ "sensitive": true
2763
+ },
2764
+ "SupplementaryWebLinkTitleString": {
2765
+ "type": "string",
2766
+ "max": 1024,
2767
+ "min": 1,
2768
+ "sensitive": true
2769
+ },
2770
+ "SupplementaryWebLinkUrlString": {
2771
+ "type": "string",
2772
+ "max": 1024,
2773
+ "min": 1,
2774
+ "sensitive": true
2775
+ },
2776
+ "SupplementaryWebLinks": {
2777
+ "type": "list",
2778
+ "member": {
2779
+ "shape": "SupplementaryWebLink"
2780
+ },
2781
+ "max": 10,
2782
+ "min": 0
2783
+ },
2784
+ "SymbolType": {
2785
+ "type": "string",
2786
+ "enum": ["DECLARATION", "USAGE"]
2787
+ },
2788
+ "TargetCode": {
2789
+ "type": "structure",
2790
+ "required": ["relativeTargetPath"],
2791
+ "members": {
2792
+ "relativeTargetPath": {
2793
+ "shape": "TargetCodeRelativeTargetPathString",
2794
+ "documentation": "<p>The file path relative to the root of the workspace, could be a single file or a folder.</p>"
2795
+ },
2796
+ "targetLineRangeList": {
2797
+ "shape": "LineRangeList"
2798
+ }
2799
+ }
2800
+ },
2801
+ "TargetCodeList": {
2802
+ "type": "list",
2803
+ "member": {
2804
+ "shape": "TargetCode"
2805
+ },
2806
+ "min": 1
2807
+ },
2808
+ "TargetCodeRelativeTargetPathString": {
1268
2809
  "type": "string",
1269
- "max": 1024,
2810
+ "max": 4096,
1270
2811
  "min": 1,
1271
2812
  "sensitive": true
1272
2813
  },
1273
- "SupplementalContextList": {
2814
+ "TaskAssistPlan": {
1274
2815
  "type": "list",
1275
- "member": { "shape": "SupplementalContext" },
1276
- "max": 5,
2816
+ "member": {
2817
+ "shape": "TaskAssistPlanStep"
2818
+ },
1277
2819
  "min": 0
1278
2820
  },
1279
- "SupplementaryWebLink": {
2821
+ "TaskAssistPlanStep": {
1280
2822
  "type": "structure",
1281
- "required": ["url", "title"],
2823
+ "required": ["filePath", "description"],
1282
2824
  "members": {
1283
- "url": { "shape": "SupplementaryWebLinkUrlString" },
1284
- "title": { "shape": "SupplementaryWebLinkTitleString" },
1285
- "snippet": { "shape": "SupplementaryWebLinkSnippetString" }
1286
- }
2825
+ "filePath": {
2826
+ "shape": "TaskAssistPlanStepFilePathString",
2827
+ "documentation": "<p>File path on which the step is working on.</p>"
2828
+ },
2829
+ "description": {
2830
+ "shape": "TaskAssistPlanStepDescriptionString",
2831
+ "documentation": "<p>Description on the step.</p>"
2832
+ },
2833
+ "startLine": {
2834
+ "shape": "TaskAssistPlanStepStartLineInteger",
2835
+ "documentation": "<p>Start line number of the related changes.</p>"
2836
+ },
2837
+ "endLine": {
2838
+ "shape": "TaskAssistPlanStepEndLineInteger",
2839
+ "documentation": "<p>End line number of the related changes.</p>"
2840
+ },
2841
+ "action": {
2842
+ "shape": "TaskAssistPlanStepAction",
2843
+ "documentation": "<p>Type of the action.</p>"
2844
+ }
2845
+ },
2846
+ "documentation": "<p>Structured plan step for a task assist plan.</p>"
1287
2847
  },
1288
- "SupplementaryWebLinkSnippetString": {
2848
+ "TaskAssistPlanStepAction": {
1289
2849
  "type": "string",
1290
- "max": 1024,
1291
- "min": 1,
1292
- "sensitive": true
2850
+ "documentation": "<p>Action for task assist plan step</p>",
2851
+ "enum": ["MODIFY", "CREATE", "DELETE", "UNKNOWN"]
1293
2852
  },
1294
- "SupplementaryWebLinkTitleString": {
2853
+ "TaskAssistPlanStepDescriptionString": {
1295
2854
  "type": "string",
1296
2855
  "max": 1024,
1297
- "min": 1,
1298
- "sensitive": true
2856
+ "min": 1
1299
2857
  },
1300
- "SupplementaryWebLinkUrlString": {
2858
+ "TaskAssistPlanStepEndLineInteger": {
2859
+ "type": "integer",
2860
+ "box": true,
2861
+ "min": 0
2862
+ },
2863
+ "TaskAssistPlanStepFilePathString": {
1301
2864
  "type": "string",
1302
2865
  "max": 1024,
1303
- "min": 1,
1304
- "sensitive": true
2866
+ "min": 1
1305
2867
  },
1306
- "SupplementaryWebLinks": {
1307
- "type": "list",
1308
- "member": { "shape": "SupplementaryWebLink" },
1309
- "max": 10,
2868
+ "TaskAssistPlanStepStartLineInteger": {
2869
+ "type": "integer",
2870
+ "box": true,
1310
2871
  "min": 0
1311
2872
  },
1312
- "SymbolType": {
1313
- "type": "string",
1314
- "enum": ["DECLARATION", "USAGE"]
1315
- },
1316
2873
  "TaskAssistPlanningUploadContext": {
1317
2874
  "type": "structure",
1318
2875
  "required": ["conversationId"],
1319
2876
  "members": {
1320
- "conversationId": { "shape": "ConversationId" }
2877
+ "conversationId": {
2878
+ "shape": "ConversationId"
2879
+ }
1321
2880
  }
1322
2881
  },
1323
2882
  "TelemetryEvent": {
1324
2883
  "type": "structure",
1325
2884
  "members": {
1326
- "userTriggerDecisionEvent": { "shape": "UserTriggerDecisionEvent" },
1327
- "codeCoverageEvent": { "shape": "CodeCoverageEvent" },
1328
- "userModificationEvent": { "shape": "UserModificationEvent" },
1329
- "codeScanEvent": { "shape": "CodeScanEvent" },
1330
- "metricData": { "shape": "MetricData" },
1331
- "chatAddMessageEvent": { "shape": "ChatAddMessageEvent" },
1332
- "chatInteractWithMessageEvent": { "shape": "ChatInteractWithMessageEvent" },
1333
- "chatUserModificationEvent": { "shape": "ChatUserModificationEvent" }
2885
+ "userTriggerDecisionEvent": {
2886
+ "shape": "UserTriggerDecisionEvent"
2887
+ },
2888
+ "codeCoverageEvent": {
2889
+ "shape": "CodeCoverageEvent"
2890
+ },
2891
+ "userModificationEvent": {
2892
+ "shape": "UserModificationEvent"
2893
+ },
2894
+ "codeScanEvent": {
2895
+ "shape": "CodeScanEvent"
2896
+ },
2897
+ "codeScanRemediationsEvent": {
2898
+ "shape": "CodeScanRemediationsEvent"
2899
+ },
2900
+ "metricData": {
2901
+ "shape": "MetricData"
2902
+ },
2903
+ "chatAddMessageEvent": {
2904
+ "shape": "ChatAddMessageEvent"
2905
+ },
2906
+ "chatInteractWithMessageEvent": {
2907
+ "shape": "ChatInteractWithMessageEvent"
2908
+ },
2909
+ "chatUserModificationEvent": {
2910
+ "shape": "ChatUserModificationEvent"
2911
+ },
2912
+ "terminalUserInteractionEvent": {
2913
+ "shape": "TerminalUserInteractionEvent"
2914
+ },
2915
+ "featureDevEvent": {
2916
+ "shape": "FeatureDevEvent"
2917
+ },
2918
+ "inlineChatEvent": {
2919
+ "shape": "InlineChatEvent"
2920
+ }
1334
2921
  },
1335
2922
  "union": true
1336
2923
  },
2924
+ "TerminalUserInteractionEvent": {
2925
+ "type": "structure",
2926
+ "members": {
2927
+ "terminalUserInteractionEventType": {
2928
+ "shape": "TerminalUserInteractionEventType"
2929
+ },
2930
+ "terminal": {
2931
+ "shape": "String"
2932
+ },
2933
+ "terminalVersion": {
2934
+ "shape": "String"
2935
+ },
2936
+ "shell": {
2937
+ "shape": "String"
2938
+ },
2939
+ "shellVersion": {
2940
+ "shape": "String"
2941
+ },
2942
+ "duration": {
2943
+ "shape": "Integer"
2944
+ },
2945
+ "timeToSuggestion": {
2946
+ "shape": "Integer"
2947
+ },
2948
+ "isCompletionAccepted": {
2949
+ "shape": "Boolean"
2950
+ },
2951
+ "cliToolCommand": {
2952
+ "shape": "String"
2953
+ }
2954
+ }
2955
+ },
2956
+ "TerminalUserInteractionEventType": {
2957
+ "type": "string",
2958
+ "documentation": "<p>CodeWhisperer terminal Interaction Type</p>",
2959
+ "enum": ["CODEWHISPERER_TERMINAL_TRANSLATION_ACTION", "CODEWHISPERER_TERMINAL_COMPLETION_INSERTED"]
2960
+ },
2961
+ "TestGenerationJob": {
2962
+ "type": "structure",
2963
+ "required": ["testGenerationJobId", "testGenerationJobGroupName", "status", "creationTime"],
2964
+ "members": {
2965
+ "testGenerationJobId": {
2966
+ "shape": "UUID"
2967
+ },
2968
+ "testGenerationJobGroupName": {
2969
+ "shape": "TestGenerationJobGroupName"
2970
+ },
2971
+ "status": {
2972
+ "shape": "TestGenerationJobStatus"
2973
+ },
2974
+ "shortAnswer": {
2975
+ "shape": "SensitiveString"
2976
+ },
2977
+ "creationTime": {
2978
+ "shape": "Timestamp"
2979
+ },
2980
+ "progressRate": {
2981
+ "shape": "TestGenerationJobProgressRateInteger"
2982
+ }
2983
+ },
2984
+ "documentation": "<p>Represents a test generation job</p>"
2985
+ },
2986
+ "TestGenerationJobGroupName": {
2987
+ "type": "string",
2988
+ "documentation": "<p>Test generation job group name</p>",
2989
+ "max": 128,
2990
+ "min": 1,
2991
+ "pattern": "[a-zA-Z0-9-_]+"
2992
+ },
2993
+ "TestGenerationJobProgressRateInteger": {
2994
+ "type": "integer",
2995
+ "box": true,
2996
+ "max": 100,
2997
+ "min": 0
2998
+ },
2999
+ "TestGenerationJobStatus": {
3000
+ "type": "string",
3001
+ "enum": ["IN_PROGRESS", "FAILED", "COMPLETED"]
3002
+ },
1337
3003
  "TextDocument": {
1338
3004
  "type": "structure",
1339
3005
  "required": ["relativeFilePath"],
1340
3006
  "members": {
1341
- "relativeFilePath": { "shape": "TextDocumentRelativeFilePathString" },
1342
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
1343
- "text": { "shape": "TextDocumentTextString" },
1344
- "documentSymbols": { "shape": "DocumentSymbols" }
1345
- }
3007
+ "relativeFilePath": {
3008
+ "shape": "TextDocumentRelativeFilePathString",
3009
+ "documentation": "<p>Filepath relative to the root of the workspace</p>"
3010
+ },
3011
+ "programmingLanguage": {
3012
+ "shape": "ProgrammingLanguage",
3013
+ "documentation": "<p>The text document's language identifier.</p>"
3014
+ },
3015
+ "text": {
3016
+ "shape": "TextDocumentTextString",
3017
+ "documentation": "<p>Content of the text document</p>"
3018
+ },
3019
+ "documentSymbols": {
3020
+ "shape": "DocumentSymbols",
3021
+ "documentation": "<p>DocumentSymbols parsed from a text document</p>"
3022
+ }
3023
+ },
3024
+ "documentation": "<p>Represents a Text Document / File</p>"
1346
3025
  },
1347
3026
  "TextDocumentDiagnostic": {
1348
3027
  "type": "structure",
1349
3028
  "required": ["document", "range", "source", "severity", "message"],
1350
3029
  "members": {
1351
- "document": { "shape": "TextDocument" },
1352
- "range": { "shape": "Range" },
1353
- "source": { "shape": "SensitiveString" },
1354
- "severity": { "shape": "DiagnosticSeverity" },
1355
- "message": { "shape": "TextDocumentDiagnosticMessageString" }
1356
- }
3030
+ "document": {
3031
+ "shape": "TextDocument",
3032
+ "documentation": "<p>Represents a Text Document associated with Diagnostic</p>"
3033
+ },
3034
+ "range": {
3035
+ "shape": "Range",
3036
+ "documentation": "<p>The range at which the message applies.</p>"
3037
+ },
3038
+ "source": {
3039
+ "shape": "SensitiveString",
3040
+ "documentation": "<p>A human-readable string describing the source of the diagnostic</p>"
3041
+ },
3042
+ "severity": {
3043
+ "shape": "DiagnosticSeverity",
3044
+ "documentation": "<p>Diagnostic Error type</p>"
3045
+ },
3046
+ "message": {
3047
+ "shape": "TextDocumentDiagnosticMessageString",
3048
+ "documentation": "<p>The diagnostic's message.</p>"
3049
+ }
3050
+ },
3051
+ "documentation": "<p>Structure to represent metadata about a TextDocument Diagnostic</p>"
1357
3052
  },
1358
3053
  "TextDocumentDiagnosticMessageString": {
1359
3054
  "type": "string",
@@ -1377,18 +3072,19 @@
1377
3072
  "type": "structure",
1378
3073
  "required": ["message"],
1379
3074
  "members": {
1380
- "message": { "shape": "String" }
3075
+ "message": {
3076
+ "shape": "String"
3077
+ }
1381
3078
  },
3079
+ "documentation": "<p>This exception is thrown when request was denied due to request throttling.</p>",
1382
3080
  "exception": true,
1383
- "retryable": { "throttling": true }
3081
+ "retryable": {
3082
+ "throttling": true
3083
+ }
1384
3084
  },
1385
- "TimeBetweenChunks": {
1386
- "type": "list",
1387
- "member": { "shape": "Double" },
1388
- "max": 100,
1389
- "min": 0
3085
+ "Timestamp": {
3086
+ "type": "timestamp"
1390
3087
  },
1391
- "Timestamp": { "type": "timestamp" },
1392
3088
  "TransformationDotNetRuntimeEnv": {
1393
3089
  "type": "string",
1394
3090
  "enum": [
@@ -1418,6 +3114,29 @@
1418
3114
  "NET_8_0"
1419
3115
  ]
1420
3116
  },
3117
+ "TransformationDownloadArtifact": {
3118
+ "type": "structure",
3119
+ "members": {
3120
+ "downloadArtifactType": {
3121
+ "shape": "TransformationDownloadArtifactType"
3122
+ },
3123
+ "downloadArtifactId": {
3124
+ "shape": "ArtifactId"
3125
+ }
3126
+ }
3127
+ },
3128
+ "TransformationDownloadArtifactType": {
3129
+ "type": "string",
3130
+ "enum": ["ClientInstructions", "Logs", "GeneratedCode"]
3131
+ },
3132
+ "TransformationDownloadArtifacts": {
3133
+ "type": "list",
3134
+ "member": {
3135
+ "shape": "TransformationDownloadArtifact"
3136
+ },
3137
+ "max": 10,
3138
+ "min": 0
3139
+ },
1421
3140
  "TransformationJavaRuntimeEnv": {
1422
3141
  "type": "string",
1423
3142
  "enum": ["JVM_8", "JVM_11", "JVM_17"]
@@ -1425,23 +3144,49 @@
1425
3144
  "TransformationJob": {
1426
3145
  "type": "structure",
1427
3146
  "members": {
1428
- "jobId": { "shape": "TransformationJobId" },
1429
- "transformationSpec": { "shape": "TransformationSpec" },
1430
- "status": { "shape": "TransformationStatus" },
1431
- "reason": { "shape": "String" },
1432
- "creationTime": { "shape": "Timestamp" },
1433
- "startExecutionTime": { "shape": "Timestamp" },
1434
- "endExecutionTime": { "shape": "Timestamp" }
1435
- }
3147
+ "jobId": {
3148
+ "shape": "TransformationJobId"
3149
+ },
3150
+ "transformationSpec": {
3151
+ "shape": "TransformationSpec"
3152
+ },
3153
+ "status": {
3154
+ "shape": "TransformationStatus"
3155
+ },
3156
+ "reason": {
3157
+ "shape": "String"
3158
+ },
3159
+ "creationTime": {
3160
+ "shape": "Timestamp"
3161
+ },
3162
+ "startExecutionTime": {
3163
+ "shape": "Timestamp"
3164
+ },
3165
+ "endExecutionTime": {
3166
+ "shape": "Timestamp"
3167
+ }
3168
+ },
3169
+ "documentation": "<p>Represent a Transformation Job</p>"
1436
3170
  },
1437
3171
  "TransformationJobId": {
1438
3172
  "type": "string",
3173
+ "documentation": "<p>Identifier for the Transformation Job</p>",
1439
3174
  "max": 128,
1440
3175
  "min": 1
1441
3176
  },
1442
3177
  "TransformationLanguage": {
1443
3178
  "type": "string",
1444
- "enum": ["JAVA_8", "JAVA_11", "JAVA_17", "C_SHARP"]
3179
+ "enum": ["JAVA_8", "JAVA_11", "JAVA_17", "C_SHARP", "COBOL", "PL_I", "JCL"]
3180
+ },
3181
+ "TransformationLanguages": {
3182
+ "type": "list",
3183
+ "member": {
3184
+ "shape": "TransformationLanguage"
3185
+ }
3186
+ },
3187
+ "TransformationMainframeRuntimeEnv": {
3188
+ "type": "string",
3189
+ "enum": ["MAINFRAME"]
1445
3190
  },
1446
3191
  "TransformationOperatingSystemFamily": {
1447
3192
  "type": "string",
@@ -1451,52 +3196,111 @@
1451
3196
  "type": "structure",
1452
3197
  "required": ["transformationSteps"],
1453
3198
  "members": {
1454
- "transformationSteps": { "shape": "TransformationSteps" }
3199
+ "transformationSteps": {
3200
+ "shape": "TransformationSteps"
3201
+ }
1455
3202
  }
1456
3203
  },
1457
3204
  "TransformationPlatformConfig": {
1458
3205
  "type": "structure",
1459
3206
  "members": {
1460
- "operatingSystemFamily": { "shape": "TransformationOperatingSystemFamily" }
3207
+ "operatingSystemFamily": {
3208
+ "shape": "TransformationOperatingSystemFamily"
3209
+ }
1461
3210
  }
1462
3211
  },
1463
3212
  "TransformationProgressUpdate": {
1464
3213
  "type": "structure",
1465
3214
  "required": ["name", "status"],
1466
3215
  "members": {
1467
- "name": { "shape": "String" },
1468
- "status": { "shape": "TransformationProgressUpdateStatus" },
1469
- "description": { "shape": "String" },
1470
- "startTime": { "shape": "Timestamp" },
1471
- "endTime": { "shape": "Timestamp" }
3216
+ "name": {
3217
+ "shape": "String"
3218
+ },
3219
+ "status": {
3220
+ "shape": "TransformationProgressUpdateStatus"
3221
+ },
3222
+ "description": {
3223
+ "shape": "String"
3224
+ },
3225
+ "startTime": {
3226
+ "shape": "Timestamp"
3227
+ },
3228
+ "endTime": {
3229
+ "shape": "Timestamp"
3230
+ },
3231
+ "downloadArtifacts": {
3232
+ "shape": "TransformationDownloadArtifacts"
3233
+ }
1472
3234
  }
1473
3235
  },
1474
3236
  "TransformationProgressUpdateStatus": {
1475
3237
  "type": "string",
1476
- "enum": ["IN_PROGRESS", "COMPLETED", "FAILED"]
3238
+ "enum": ["IN_PROGRESS", "COMPLETED", "FAILED", "PAUSED", "AWAITING_CLIENT_ACTION"]
3239
+ },
3240
+ "TransformationProjectArtifactDescriptor": {
3241
+ "type": "structure",
3242
+ "members": {
3243
+ "sourceCodeArtifact": {
3244
+ "shape": "TransformationSourceCodeArtifactDescriptor"
3245
+ }
3246
+ },
3247
+ "union": true
1477
3248
  },
1478
3249
  "TransformationProjectState": {
1479
3250
  "type": "structure",
1480
3251
  "members": {
1481
- "language": { "shape": "TransformationLanguage" },
1482
- "runtimeEnv": { "shape": "TransformationRuntimeEnv" },
1483
- "platformConfig": { "shape": "TransformationPlatformConfig" }
3252
+ "language": {
3253
+ "shape": "TransformationLanguage"
3254
+ },
3255
+ "runtimeEnv": {
3256
+ "shape": "TransformationRuntimeEnv"
3257
+ },
3258
+ "platformConfig": {
3259
+ "shape": "TransformationPlatformConfig"
3260
+ },
3261
+ "projectArtifact": {
3262
+ "shape": "TransformationProjectArtifactDescriptor"
3263
+ }
1484
3264
  }
1485
3265
  },
1486
3266
  "TransformationRuntimeEnv": {
1487
3267
  "type": "structure",
1488
3268
  "members": {
1489
- "java": { "shape": "TransformationJavaRuntimeEnv" },
1490
- "dotNet": { "shape": "TransformationDotNetRuntimeEnv" }
3269
+ "java": {
3270
+ "shape": "TransformationJavaRuntimeEnv"
3271
+ },
3272
+ "dotNet": {
3273
+ "shape": "TransformationDotNetRuntimeEnv"
3274
+ },
3275
+ "mainframe": {
3276
+ "shape": "TransformationMainframeRuntimeEnv"
3277
+ }
1491
3278
  },
1492
3279
  "union": true
1493
3280
  },
3281
+ "TransformationSourceCodeArtifactDescriptor": {
3282
+ "type": "structure",
3283
+ "members": {
3284
+ "languages": {
3285
+ "shape": "TransformationLanguages"
3286
+ },
3287
+ "runtimeEnv": {
3288
+ "shape": "TransformationRuntimeEnv"
3289
+ }
3290
+ }
3291
+ },
1494
3292
  "TransformationSpec": {
1495
3293
  "type": "structure",
1496
3294
  "members": {
1497
- "transformationType": { "shape": "TransformationType" },
1498
- "source": { "shape": "TransformationProjectState" },
1499
- "target": { "shape": "TransformationProjectState" }
3295
+ "transformationType": {
3296
+ "shape": "TransformationType"
3297
+ },
3298
+ "source": {
3299
+ "shape": "TransformationProjectState"
3300
+ },
3301
+ "target": {
3302
+ "shape": "TransformationProjectState"
3303
+ }
1500
3304
  }
1501
3305
  },
1502
3306
  "TransformationStatus": {
@@ -1516,33 +3320,71 @@
1516
3320
  "COMPLETED",
1517
3321
  "PARTIALLY_COMPLETED",
1518
3322
  "STOPPING",
1519
- "STOPPED"
3323
+ "STOPPED",
3324
+ "PAUSED",
3325
+ "RESUMED"
1520
3326
  ]
1521
3327
  },
1522
3328
  "TransformationStep": {
1523
3329
  "type": "structure",
1524
3330
  "required": ["id", "name", "description", "status"],
1525
3331
  "members": {
1526
- "id": { "shape": "StepId" },
1527
- "name": { "shape": "String" },
1528
- "description": { "shape": "String" },
1529
- "status": { "shape": "TransformationStepStatus" },
1530
- "progressUpdates": { "shape": "ProgressUpdates" },
1531
- "startTime": { "shape": "Timestamp" },
1532
- "endTime": { "shape": "Timestamp" }
3332
+ "id": {
3333
+ "shape": "StepId"
3334
+ },
3335
+ "name": {
3336
+ "shape": "String"
3337
+ },
3338
+ "description": {
3339
+ "shape": "String"
3340
+ },
3341
+ "status": {
3342
+ "shape": "TransformationStepStatus"
3343
+ },
3344
+ "progressUpdates": {
3345
+ "shape": "ProgressUpdates"
3346
+ },
3347
+ "startTime": {
3348
+ "shape": "Timestamp"
3349
+ },
3350
+ "endTime": {
3351
+ "shape": "Timestamp"
3352
+ }
1533
3353
  }
1534
3354
  },
1535
3355
  "TransformationStepStatus": {
1536
3356
  "type": "string",
1537
- "enum": ["CREATED", "COMPLETED", "PARTIALLY_COMPLETED", "STOPPED", "FAILED"]
3357
+ "enum": ["CREATED", "COMPLETED", "PARTIALLY_COMPLETED", "STOPPED", "FAILED", "PAUSED"]
1538
3358
  },
1539
3359
  "TransformationSteps": {
1540
3360
  "type": "list",
1541
- "member": { "shape": "TransformationStep" }
3361
+ "member": {
3362
+ "shape": "TransformationStep"
3363
+ }
1542
3364
  },
1543
3365
  "TransformationType": {
1544
3366
  "type": "string",
1545
- "enum": ["LANGUAGE_UPGRADE"]
3367
+ "enum": ["LANGUAGE_UPGRADE", "DOCUMENT_GENERATION"]
3368
+ },
3369
+ "TransformationUploadArtifactType": {
3370
+ "type": "string",
3371
+ "enum": ["Dependencies", "ClientBuildResult"]
3372
+ },
3373
+ "TransformationUploadContext": {
3374
+ "type": "structure",
3375
+ "required": ["jobId", "uploadArtifactType"],
3376
+ "members": {
3377
+ "jobId": {
3378
+ "shape": "TransformationJobId"
3379
+ },
3380
+ "uploadArtifactType": {
3381
+ "shape": "TransformationUploadArtifactType"
3382
+ }
3383
+ }
3384
+ },
3385
+ "TransformationUserActionStatus": {
3386
+ "type": "string",
3387
+ "enum": ["COMPLETED", "REJECTED"]
1546
3388
  },
1547
3389
  "UUID": {
1548
3390
  "type": "string",
@@ -1552,28 +3394,54 @@
1552
3394
  "UploadContext": {
1553
3395
  "type": "structure",
1554
3396
  "members": {
1555
- "taskAssistPlanningUploadContext": { "shape": "TaskAssistPlanningUploadContext" }
3397
+ "taskAssistPlanningUploadContext": {
3398
+ "shape": "TaskAssistPlanningUploadContext"
3399
+ },
3400
+ "transformationUploadContext": {
3401
+ "shape": "TransformationUploadContext"
3402
+ },
3403
+ "codeAnalysisUploadContext": {
3404
+ "shape": "CodeAnalysisUploadContext"
3405
+ }
1556
3406
  },
1557
3407
  "union": true
1558
3408
  },
1559
3409
  "UploadId": {
1560
3410
  "type": "string",
3411
+ "documentation": "<p>Upload ID returned by CreateUploadUrl API</p>",
1561
3412
  "max": 128,
1562
3413
  "min": 1
1563
3414
  },
1564
3415
  "UploadIntent": {
1565
3416
  "type": "string",
1566
- "enum": ["TRANSFORMATION", "TASK_ASSIST_PLANNING"]
3417
+ "documentation": "<p>Upload Intent</p>",
3418
+ "enum": [
3419
+ "TRANSFORMATION",
3420
+ "TASK_ASSIST_PLANNING",
3421
+ "AUTOMATIC_FILE_SECURITY_SCAN",
3422
+ "FULL_PROJECT_SECURITY_SCAN",
3423
+ "UNIT_TESTS_GENERATION"
3424
+ ]
1567
3425
  },
1568
3426
  "UserContext": {
1569
3427
  "type": "structure",
1570
3428
  "required": ["ideCategory", "operatingSystem", "product"],
1571
3429
  "members": {
1572
- "ideCategory": { "shape": "IdeCategory" },
1573
- "operatingSystem": { "shape": "OperatingSystem" },
1574
- "product": { "shape": "UserContextProductString" },
1575
- "clientId": { "shape": "UUID" },
1576
- "ideVersion": { "shape": "String" }
3430
+ "ideCategory": {
3431
+ "shape": "IdeCategory"
3432
+ },
3433
+ "operatingSystem": {
3434
+ "shape": "OperatingSystem"
3435
+ },
3436
+ "product": {
3437
+ "shape": "UserContextProductString"
3438
+ },
3439
+ "clientId": {
3440
+ "shape": "UUID"
3441
+ },
3442
+ "ideVersion": {
3443
+ "shape": "String"
3444
+ }
1577
3445
  }
1578
3446
  },
1579
3447
  "UserContextProductString": {
@@ -1586,10 +3454,20 @@
1586
3454
  "type": "structure",
1587
3455
  "required": ["content"],
1588
3456
  "members": {
1589
- "content": { "shape": "UserInputMessageContentString" },
1590
- "userInputMessageContext": { "shape": "UserInputMessageContext" },
1591
- "userIntent": { "shape": "UserIntent" }
1592
- }
3457
+ "content": {
3458
+ "shape": "UserInputMessageContentString",
3459
+ "documentation": "<p>The content of the chat message.</p>"
3460
+ },
3461
+ "userInputMessageContext": {
3462
+ "shape": "UserInputMessageContext",
3463
+ "documentation": "<p>Chat message context associated with the Chat Message</p>"
3464
+ },
3465
+ "userIntent": {
3466
+ "shape": "UserIntent",
3467
+ "documentation": "<p>User Intent</p>"
3468
+ }
3469
+ },
3470
+ "documentation": "<p>Structure to represent a chat input message from User</p>"
1593
3471
  },
1594
3472
  "UserInputMessageContentString": {
1595
3473
  "type": "string",
@@ -1600,12 +3478,44 @@
1600
3478
  "UserInputMessageContext": {
1601
3479
  "type": "structure",
1602
3480
  "members": {
1603
- "editorState": { "shape": "EditorState" },
1604
- "diagnostic": { "shape": "Diagnostic" }
1605
- }
3481
+ "editorState": {
3482
+ "shape": "EditorState",
3483
+ "documentation": "<p>Editor state chat message context.</p>"
3484
+ },
3485
+ "shellState": {
3486
+ "shape": "ShellState",
3487
+ "documentation": "<p>Shell state chat message context.</p>"
3488
+ },
3489
+ "gitState": {
3490
+ "shape": "GitState",
3491
+ "documentation": "<p>Git state chat message context.</p>"
3492
+ },
3493
+ "envState": {
3494
+ "shape": "EnvState",
3495
+ "documentation": "<p>Environment state chat message context.</p>"
3496
+ },
3497
+ "appStudioContext": {
3498
+ "shape": "AppStudioState",
3499
+ "documentation": "<p>The state of a user's AppStudio UI when sending a message.</p>"
3500
+ },
3501
+ "diagnostic": {
3502
+ "shape": "Diagnostic",
3503
+ "documentation": "<p>Diagnostic chat message context.</p>"
3504
+ },
3505
+ "consoleState": {
3506
+ "shape": "ConsoleState",
3507
+ "documentation": "<p>Contextual information about the environment from which the user is calling.</p>"
3508
+ },
3509
+ "userSettings": {
3510
+ "shape": "UserSettings",
3511
+ "documentation": "<p>Settings information, e.g., whether the user has enabled cross-region API calls.</p>"
3512
+ }
3513
+ },
3514
+ "documentation": "<p>Additional Chat message context associated with the Chat Message</p>"
1606
3515
  },
1607
3516
  "UserIntent": {
1608
3517
  "type": "string",
3518
+ "documentation": "<p>User Intent</p>",
1609
3519
  "enum": [
1610
3520
  "SUGGEST_ALTERNATE_IMPLEMENTATION",
1611
3521
  "APPLY_COMMON_BEST_PRACTICES",
@@ -1613,21 +3523,59 @@
1613
3523
  "SHOW_EXAMPLES",
1614
3524
  "CITE_SOURCES",
1615
3525
  "EXPLAIN_LINE_BY_LINE",
1616
- "EXPLAIN_CODE_SELECTION"
3526
+ "EXPLAIN_CODE_SELECTION",
3527
+ "GENERATE_CLOUDFORMATION_TEMPLATE",
3528
+ "GENERATE_UNIT_TESTS",
3529
+ "CODE_GENERATION"
1617
3530
  ]
1618
3531
  },
1619
3532
  "UserModificationEvent": {
1620
3533
  "type": "structure",
1621
- "required": ["sessionId", "requestId", "programmingLanguage", "modificationPercentage", "timestamp"],
3534
+ "required": [
3535
+ "sessionId",
3536
+ "requestId",
3537
+ "programmingLanguage",
3538
+ "modificationPercentage",
3539
+ "timestamp",
3540
+ "acceptedCharacterCount",
3541
+ "unmodifiedAcceptedCharacterCount"
3542
+ ],
1622
3543
  "members": {
1623
- "sessionId": { "shape": "UUID" },
1624
- "requestId": { "shape": "UUID" },
1625
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
1626
- "modificationPercentage": { "shape": "Double" },
1627
- "customizationArn": { "shape": "CustomizationArn" },
1628
- "timestamp": { "shape": "Timestamp" }
3544
+ "sessionId": {
3545
+ "shape": "UUID"
3546
+ },
3547
+ "requestId": {
3548
+ "shape": "UUID"
3549
+ },
3550
+ "programmingLanguage": {
3551
+ "shape": "ProgrammingLanguage"
3552
+ },
3553
+ "modificationPercentage": {
3554
+ "shape": "Double"
3555
+ },
3556
+ "customizationArn": {
3557
+ "shape": "CustomizationArn"
3558
+ },
3559
+ "timestamp": {
3560
+ "shape": "Timestamp"
3561
+ },
3562
+ "acceptedCharacterCount": {
3563
+ "shape": "PrimitiveInteger"
3564
+ },
3565
+ "unmodifiedAcceptedCharacterCount": {
3566
+ "shape": "PrimitiveInteger"
3567
+ }
1629
3568
  }
1630
3569
  },
3570
+ "UserSettings": {
3571
+ "type": "structure",
3572
+ "members": {
3573
+ "hasConsentedToCrossRegionCalls": {
3574
+ "shape": "Boolean"
3575
+ }
3576
+ },
3577
+ "documentation": "<p>Settings information passed by the Q widget</p>"
3578
+ },
1631
3579
  "UserTriggerDecisionEvent": {
1632
3580
  "type": "structure",
1633
3581
  "required": [
@@ -1640,41 +3588,95 @@
1640
3588
  "timestamp"
1641
3589
  ],
1642
3590
  "members": {
1643
- "sessionId": { "shape": "UUID" },
1644
- "requestId": { "shape": "UUID" },
1645
- "customizationArn": { "shape": "CustomizationArn" },
1646
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
1647
- "completionType": { "shape": "CompletionType" },
1648
- "suggestionState": { "shape": "SuggestionState" },
1649
- "recommendationLatencyMilliseconds": { "shape": "Double" },
1650
- "timestamp": { "shape": "Timestamp" },
1651
- "triggerToResponseLatencyMilliseconds": { "shape": "Double" },
1652
- "suggestionReferenceCount": { "shape": "PrimitiveInteger" },
1653
- "generatedLine": { "shape": "PrimitiveInteger" },
1654
- "numberOfRecommendations": { "shape": "PrimitiveInteger" }
3591
+ "sessionId": {
3592
+ "shape": "UUID"
3593
+ },
3594
+ "requestId": {
3595
+ "shape": "UUID"
3596
+ },
3597
+ "customizationArn": {
3598
+ "shape": "CustomizationArn"
3599
+ },
3600
+ "programmingLanguage": {
3601
+ "shape": "ProgrammingLanguage"
3602
+ },
3603
+ "completionType": {
3604
+ "shape": "CompletionType"
3605
+ },
3606
+ "suggestionState": {
3607
+ "shape": "SuggestionState"
3608
+ },
3609
+ "recommendationLatencyMilliseconds": {
3610
+ "shape": "Double"
3611
+ },
3612
+ "timestamp": {
3613
+ "shape": "Timestamp"
3614
+ },
3615
+ "triggerToResponseLatencyMilliseconds": {
3616
+ "shape": "Double"
3617
+ },
3618
+ "suggestionReferenceCount": {
3619
+ "shape": "PrimitiveInteger"
3620
+ },
3621
+ "generatedLine": {
3622
+ "shape": "PrimitiveInteger"
3623
+ },
3624
+ "numberOfRecommendations": {
3625
+ "shape": "PrimitiveInteger"
3626
+ },
3627
+ "perceivedLatencyMilliseconds": {
3628
+ "shape": "Double"
3629
+ },
3630
+ "acceptedCharacterCount": {
3631
+ "shape": "PrimitiveInteger"
3632
+ }
1655
3633
  }
1656
3634
  },
1657
3635
  "ValidationException": {
1658
3636
  "type": "structure",
1659
3637
  "required": ["message"],
1660
3638
  "members": {
1661
- "message": { "shape": "String" },
1662
- "reason": { "shape": "ValidationExceptionReason" }
3639
+ "message": {
3640
+ "shape": "String"
3641
+ },
3642
+ "reason": {
3643
+ "shape": "ValidationExceptionReason"
3644
+ }
1663
3645
  },
3646
+ "documentation": "<p>This exception is thrown when the input fails to satisfy the constraints specified by the service.</p>",
1664
3647
  "exception": true
1665
3648
  },
1666
3649
  "ValidationExceptionReason": {
1667
3650
  "type": "string",
1668
- "enum": ["INVALID_CONVERSATION_ID"]
3651
+ "documentation": "<p>Reason for ValidationException</p>",
3652
+ "enum": ["INVALID_CONVERSATION_ID", "CONTENT_LENGTH_EXCEEDS_THRESHOLD", "INVALID_KMS_GRANT"]
1669
3653
  },
1670
3654
  "WorkspaceState": {
1671
3655
  "type": "structure",
1672
3656
  "required": ["uploadId", "programmingLanguage"],
1673
3657
  "members": {
1674
- "uploadId": { "shape": "UploadId" },
1675
- "programmingLanguage": { "shape": "ProgrammingLanguage" },
1676
- "contextTruncationScheme": { "shape": "ContextTruncationScheme" }
1677
- }
3658
+ "uploadId": {
3659
+ "shape": "UploadId",
3660
+ "documentation": "<p>Upload ID representing an Upload using a PreSigned URL</p>"
3661
+ },
3662
+ "programmingLanguage": {
3663
+ "shape": "ProgrammingLanguage",
3664
+ "documentation": "<p>Primary programming language of the Workspace</p>"
3665
+ },
3666
+ "contextTruncationScheme": {
3667
+ "shape": "ContextTruncationScheme",
3668
+ "documentation": "<p>Workspace context truncation schemes based on usecase</p>"
3669
+ }
3670
+ },
3671
+ "documentation": "<p>Represents a Workspace state uploaded to S3 for Async Code Actions</p>"
3672
+ },
3673
+ "timeBetweenChunks": {
3674
+ "type": "list",
3675
+ "member": {
3676
+ "shape": "Double"
3677
+ },
3678
+ "max": 100,
3679
+ "min": 0
1678
3680
  }
1679
3681
  }
1680
3682
  }