@cdklabs/cdk-ssm-documents 0.0.62 → 0.0.63

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 (345) hide show
  1. package/.jsii +13 -13
  2. package/lib/construct/synth-utils.js +1 -1
  3. package/lib/document/automation-document.js +1 -1
  4. package/lib/document/command-document.js +1 -1
  5. package/lib/document/document-builder.js +2 -2
  6. package/lib/document/ssm-document.js +1 -1
  7. package/lib/domain/aws-service.js +1 -1
  8. package/lib/domain/choice.js +1 -1
  9. package/lib/domain/data-type.js +1 -1
  10. package/lib/domain/enum/install-action.js +2 -2
  11. package/lib/domain/enum/install-uninstall-repair.js +2 -2
  12. package/lib/domain/enum/installation-type.js +2 -2
  13. package/lib/domain/enum/package-name.js +2 -2
  14. package/lib/domain/input.js +1 -1
  15. package/lib/domain/operation.js +1 -1
  16. package/lib/domain/platform.js +1 -1
  17. package/lib/domain/precondition.js +1 -1
  18. package/lib/incident-response/incident-response.js +3 -3
  19. package/lib/interface/approve-hook.js +2 -2
  20. package/lib/interface/auth-method.js +3 -3
  21. package/lib/interface/aws-invoker.js +2 -2
  22. package/lib/interface/downloadable-content.js +8 -8
  23. package/lib/interface/environment.js +3 -3
  24. package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
  25. package/lib/interface/observer.js +1 -1
  26. package/lib/interface/on-failure.js +6 -6
  27. package/lib/interface/pause-hook.js +2 -2
  28. package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
  29. package/lib/interface/run-document-location.js +2 -2
  30. package/lib/interface/sleep-hook.js +2 -2
  31. package/lib/interface/step-ref.js +1 -1
  32. package/lib/interface/variables/boolean-variable.js +2 -2
  33. package/lib/interface/variables/map-list-variable.js +2 -2
  34. package/lib/interface/variables/number-variable.js +2 -2
  35. package/lib/interface/variables/secure-string-variable.js +4 -4
  36. package/lib/interface/variables/string-list-variable.js +2 -2
  37. package/lib/interface/variables/string-map-variable.js +2 -2
  38. package/lib/interface/variables/string-variable.js +4 -4
  39. package/lib/interface/variables/variable.js +2 -2
  40. package/lib/interface/webhook.js +1 -1
  41. package/lib/parent-steps/automation/approve-step.js +1 -1
  42. package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
  43. package/lib/parent-steps/automation/aws-api-step.js +1 -1
  44. package/lib/parent-steps/automation/branch-step.js +1 -1
  45. package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
  46. package/lib/parent-steps/automation/copy-image-step.js +1 -1
  47. package/lib/parent-steps/automation/create-image-step.js +1 -1
  48. package/lib/parent-steps/automation/create-stack-step.js +3 -3
  49. package/lib/parent-steps/automation/create-tags-step.js +3 -3
  50. package/lib/parent-steps/automation/delete-image-step.js +1 -1
  51. package/lib/parent-steps/automation/delete-stack-step.js +1 -1
  52. package/lib/parent-steps/automation/execute-automation-step.js +1 -1
  53. package/lib/parent-steps/automation/execute-script-step.js +5 -5
  54. package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
  55. package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
  56. package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
  57. package/lib/parent-steps/automation/pause-step.js +1 -1
  58. package/lib/parent-steps/automation/run-command-step.js +3 -3
  59. package/lib/parent-steps/automation/run-instance-step.js +1 -1
  60. package/lib/parent-steps/automation/sleep-step.js +1 -1
  61. package/lib/parent-steps/automation/update-variable.js +1 -1
  62. package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
  63. package/lib/parent-steps/automation-step.js +1 -1
  64. package/lib/parent-steps/command/applications-step.js +1 -1
  65. package/lib/parent-steps/command/configure-docker-step.js +1 -1
  66. package/lib/parent-steps/command/configure-package-step.js +1 -1
  67. package/lib/parent-steps/command/domain-join-step.js +1 -1
  68. package/lib/parent-steps/command/download-content-step.js +1 -1
  69. package/lib/parent-steps/command/ps-module-step.js +1 -1
  70. package/lib/parent-steps/command/run-docker-action-step.js +1 -1
  71. package/lib/parent-steps/command/run-document-step.js +1 -1
  72. package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
  73. package/lib/parent-steps/command/run-shell-script-step.js +1 -1
  74. package/lib/parent-steps/command/software-inventory-step.js +1 -1
  75. package/lib/parent-steps/command/update-agent-step.js +1 -1
  76. package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
  77. package/lib/parent-steps/command-step.js +1 -1
  78. package/lib/parent-steps/step.js +1 -1
  79. package/lib/patterns/automation/composite-step.js +2 -2
  80. package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
  81. package/lib/patterns/automation/string-step.js +1 -1
  82. package/lib/patterns/document/string-document.js +1 -1
  83. package/lib/patterns/document/timed-document.js +1 -1
  84. package/lib/samples/hello-world.js +1 -1
  85. package/lib/simulation/automation/approve-simulation.js +1 -1
  86. package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
  87. package/lib/simulation/automation/automation-simulation-base.js +1 -1
  88. package/lib/simulation/automation/aws-api-simulation.js +1 -1
  89. package/lib/simulation/automation/branch-simulation.js +1 -1
  90. package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
  91. package/lib/simulation/automation/copy-image-simulation.js +1 -1
  92. package/lib/simulation/automation/create-image-simulation.js +1 -1
  93. package/lib/simulation/automation/create-stack-simulation.js +1 -1
  94. package/lib/simulation/automation/create-tags-simulation.js +1 -1
  95. package/lib/simulation/automation/delete-image-simulation.js +1 -1
  96. package/lib/simulation/automation/delete-stack-simulation.js +1 -1
  97. package/lib/simulation/automation/execute-script-simulation.js +1 -1
  98. package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
  99. package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
  100. package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
  101. package/lib/simulation/automation/pause-simulation.js +1 -1
  102. package/lib/simulation/automation/run-command-simulation.js +1 -1
  103. package/lib/simulation/automation/run-instance-simulation.js +1 -1
  104. package/lib/simulation/automation/sleep-simulation.js +1 -1
  105. package/lib/simulation/automation/update-variable-simulation.js +1 -1
  106. package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
  107. package/lib/simulation/automation-step-simulation.js +1 -1
  108. package/lib/simulation/command/command-simulation-base.js +1 -1
  109. package/lib/simulation/command/ps-module-simulation.js +1 -1
  110. package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
  111. package/lib/simulation/command/run-shell-script-simulation.js +1 -1
  112. package/lib/simulation/command-step-simulation.js +1 -1
  113. package/lib/simulation/document/automation-simulation.js +1 -1
  114. package/lib/simulation/document/command-simulation.js +1 -1
  115. package/lib/simulation/simulation.js +1 -1
  116. package/node_modules/@aws-sdk/client-cloudformation/package.json +6 -6
  117. package/node_modules/@aws-sdk/client-cloudwatch/package.json +8 -8
  118. package/node_modules/@aws-sdk/client-ec2/package.json +8 -8
  119. package/node_modules/@aws-sdk/client-iam/package.json +7 -7
  120. package/node_modules/@aws-sdk/client-lambda/package.json +7 -7
  121. package/node_modules/@aws-sdk/client-s3/package.json +13 -13
  122. package/node_modules/@aws-sdk/client-sns/package.json +6 -6
  123. package/node_modules/@aws-sdk/client-sqs/package.json +8 -8
  124. package/node_modules/@aws-sdk/client-ssm/package.json +6 -6
  125. package/node_modules/@aws-sdk/core/package.json +4 -4
  126. package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
  127. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +12 -6
  128. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +12 -6
  129. package/node_modules/@aws-sdk/credential-provider-http/package.json +6 -5
  130. package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
  131. package/node_modules/@aws-sdk/credential-provider-login/package.json +4 -4
  132. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +12 -1
  133. package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
  134. package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -9
  135. package/node_modules/@aws-sdk/credential-provider-process/package.json +3 -3
  136. package/node_modules/@aws-sdk/credential-provider-sso/package.json +5 -5
  137. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +4 -4
  138. package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +3 -3
  139. package/node_modules/@aws-sdk/middleware-expect-continue/package.json +2 -2
  140. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -4
  141. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +4 -4
  142. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +4 -5
  143. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -2
  144. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
  145. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
  146. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
  147. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
  148. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
  149. package/node_modules/@aws-sdk/nested-clients/package.json +6 -6
  150. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -3
  151. package/node_modules/@aws-sdk/token-providers/package.json +4 -4
  152. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  153. package/node_modules/@nodable/entities/package.json +1 -1
  154. package/node_modules/@nodable/entities/src/EntityDecoder.js +1 -1
  155. package/node_modules/@nodable/entities/src/entities.js +0 -18
  156. package/node_modules/@smithy/core/dist-cjs/index.js +3 -4
  157. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +3 -11
  158. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +2 -2
  159. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +2 -2
  160. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +2 -2
  161. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +9 -40
  162. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +9 -40
  163. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +12 -142
  164. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +39 -22
  165. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +39 -22
  166. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +7 -9
  167. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +2 -2
  168. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +2 -2
  169. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +2 -2
  170. package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +184 -0
  171. package/node_modules/@smithy/core/dist-es/index.js +6 -6
  172. package/node_modules/@smithy/core/dist-es/submodules/client/index.js +2 -2
  173. package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +1 -1
  174. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +2 -2
  175. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +2 -2
  176. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -1
  177. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +1 -1
  178. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +1 -1
  179. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -1
  180. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +1 -2
  181. package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +1 -1
  182. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +5 -5
  183. package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +1 -1
  184. package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
  185. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +19 -6
  186. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +4 -5
  187. package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +1 -1
  188. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +4 -5
  189. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +3 -0
  190. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +9 -5
  191. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -4
  192. package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -2
  193. package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +1 -1
  194. package/node_modules/@smithy/core/dist-es/submodules/transport/index.js +9 -0
  195. package/node_modules/@smithy/core/dist-es/submodules/{protocols/url-parser → transport}/parseUrl.js +1 -1
  196. package/node_modules/@smithy/core/dist-es/submodules/{endpoints → transport}/toEndpointV1.js +1 -1
  197. package/node_modules/@smithy/core/dist-types/index.d.ts +10 -6
  198. package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +2 -2
  199. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +2 -2
  200. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +2 -2
  201. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +2 -2
  202. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +1 -1
  203. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +1 -1
  204. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +5 -5
  205. package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +1 -2
  206. package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +1 -1
  207. package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +4 -1
  208. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +1 -2
  209. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +3 -0
  210. package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +1 -1
  211. package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +9 -0
  212. package/node_modules/@smithy/core/package.json +20 -11
  213. package/node_modules/@smithy/core/transport.d.ts +5 -0
  214. package/node_modules/@smithy/core/transport.js +5 -0
  215. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +14 -13
  216. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +14 -13
  217. package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
  218. package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
  219. package/node_modules/@smithy/middleware-compression/package.json +3 -3
  220. package/node_modules/@smithy/node-http-handler/package.json +4 -4
  221. package/node_modules/@smithy/signature-v4/package.json +3 -3
  222. package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
  223. package/node_modules/@smithy/types/package.json +1 -1
  224. package/node_modules/js-yaml/README.md +4 -20
  225. package/node_modules/js-yaml/bin/js-yaml.js +53 -62
  226. package/node_modules/js-yaml/dist/js-yaml.js +2404 -3880
  227. package/node_modules/js-yaml/dist/js-yaml.js.map +1 -0
  228. package/node_modules/js-yaml/dist/js-yaml.min.js +33 -2
  229. package/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -0
  230. package/node_modules/js-yaml/dist/js-yaml.mjs +2381 -3855
  231. package/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -0
  232. package/node_modules/js-yaml/index.js +32 -35
  233. package/node_modules/js-yaml/lib/common.js +28 -37
  234. package/node_modules/js-yaml/lib/dumper.js +450 -478
  235. package/node_modules/js-yaml/lib/exception.js +23 -27
  236. package/node_modules/js-yaml/lib/index_vite_proxy.tmp.mjs +37 -0
  237. package/node_modules/js-yaml/lib/loader.js +927 -866
  238. package/node_modules/js-yaml/lib/schema/core.js +2 -4
  239. package/node_modules/js-yaml/lib/schema/default.js +2 -4
  240. package/node_modules/js-yaml/lib/schema/failsafe.js +3 -6
  241. package/node_modules/js-yaml/lib/schema/json.js +2 -4
  242. package/node_modules/js-yaml/lib/schema.js +56 -68
  243. package/node_modules/js-yaml/lib/snippet.js +47 -52
  244. package/node_modules/js-yaml/lib/type/binary.js +61 -64
  245. package/node_modules/js-yaml/lib/type/bool.js +14 -14
  246. package/node_modules/js-yaml/lib/type/float.js +47 -45
  247. package/node_modules/js-yaml/lib/type/int.js +65 -79
  248. package/node_modules/js-yaml/lib/type/map.js +4 -4
  249. package/node_modules/js-yaml/lib/type/merge.js +5 -5
  250. package/node_modules/js-yaml/lib/type/null.js +16 -16
  251. package/node_modules/js-yaml/lib/type/omap.js +22 -21
  252. package/node_modules/js-yaml/lib/type/pairs.js +24 -27
  253. package/node_modules/js-yaml/lib/type/seq.js +4 -4
  254. package/node_modules/js-yaml/lib/type/set.js +12 -12
  255. package/node_modules/js-yaml/lib/type/str.js +4 -4
  256. package/node_modules/js-yaml/lib/type/timestamp.js +53 -53
  257. package/node_modules/js-yaml/lib/type.js +30 -30
  258. package/node_modules/js-yaml/package.json +32 -21
  259. package/package.json +11 -11
  260. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -6
  261. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -21
  262. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -21
  263. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -46
  264. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -6
  265. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -24
  266. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -19
  267. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -27
  268. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -5
  269. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -10
  270. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -44
  271. package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +0 -5
  272. package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -14
  273. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -18
  274. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -38
  275. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -15
  276. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -6
  277. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -9
  278. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -6
  279. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -61
  280. package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +0 -1
  281. package/node_modules/@smithy/core/dist-es/submodules/client/util-middleware/getSmithyContext.js +0 -2
  282. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/TestVectors.fixture.js +0 -146
  283. package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/vectorTypes.fixture.js +0 -1
  284. package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +0 -6
  285. package/node_modules/@smithy/core/dist-types/submodules/client/util-middleware/getSmithyContext.d.ts +0 -5
  286. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/TestVectors.fixture.d.ts +0 -2
  287. package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/vectorTypes.fixture.d.ts +0 -12
  288. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
  289. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
  290. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
  291. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  292. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
  293. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
  294. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  295. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
  296. package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +0 -399
  297. package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +0 -14
  298. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -0
  299. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.js +0 -0
  300. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/httpAuthSchemeMiddleware.js +0 -0
  301. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/index.js +0 -0
  302. /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.js +0 -0
  303. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.js +0 -0
  304. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.js +0 -0
  305. /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/index.js +0 -0
  306. /package/node_modules/@smithy/core/dist-es/{pagination → legacy-root-exports/pagination}/createPaginator.js +0 -0
  307. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.js +0 -0
  308. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpApiKeyAuth.js +0 -0
  309. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpBearerAuth.js +0 -0
  310. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/index.js +0 -0
  311. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.js +0 -0
  312. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/index.js +0 -0
  313. /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.js +0 -0
  314. /package/node_modules/@smithy/core/dist-es/{getSmithyContext.js → submodules/transport/getSmithyContext.js} +0 -0
  315. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/httpRequest.js +0 -0
  316. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/httpResponse.js +0 -0
  317. /package/node_modules/@smithy/core/dist-es/submodules/{endpoints/util-endpoints/lib → transport}/isValidHostLabel.js +0 -0
  318. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/protocol-http → transport}/isValidHostname.js +0 -0
  319. /package/node_modules/@smithy/core/dist-es/submodules/{client/util-middleware → transport}/normalizeProvider.js +0 -0
  320. /package/node_modules/@smithy/core/dist-es/submodules/{protocols/querystring-parser → transport}/parseQueryString.js +0 -0
  321. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -0
  322. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.d.ts +0 -0
  323. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/httpAuthSchemeMiddleware.d.ts +0 -0
  324. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/index.d.ts +0 -0
  325. /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.d.ts +0 -0
  326. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.d.ts +0 -0
  327. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.d.ts +0 -0
  328. /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/index.d.ts +0 -0
  329. /package/node_modules/@smithy/core/dist-types/{pagination → legacy-root-exports/pagination}/createPaginator.d.ts +0 -0
  330. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.d.ts +0 -0
  331. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -0
  332. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/httpBearerAuth.d.ts +0 -0
  333. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/index.d.ts +0 -0
  334. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.d.ts +0 -0
  335. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/index.d.ts +0 -0
  336. /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.d.ts +0 -0
  337. /package/node_modules/@smithy/core/dist-types/{getSmithyContext.d.ts → submodules/transport/getSmithyContext.d.ts} +0 -0
  338. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/httpRequest.d.ts +0 -0
  339. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/httpResponse.d.ts +0 -0
  340. /package/node_modules/@smithy/core/dist-types/submodules/{endpoints/util-endpoints/lib → transport}/isValidHostLabel.d.ts +0 -0
  341. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/protocol-http → transport}/isValidHostname.d.ts +0 -0
  342. /package/node_modules/@smithy/core/dist-types/submodules/{client/util-middleware → transport}/normalizeProvider.d.ts +0 -0
  343. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/querystring-parser → transport}/parseQueryString.d.ts +0 -0
  344. /package/node_modules/@smithy/core/dist-types/submodules/{protocols/url-parser → transport}/parseUrl.d.ts +0 -0
  345. /package/node_modules/@smithy/core/dist-types/submodules/{endpoints → transport}/toEndpointV1.d.ts +0 -0
@@ -1,399 +0,0 @@
1
- export const region = "us-east-1";
2
- export const service = "service";
3
- export const credentials = {
4
- accessKeyId: "AKIDEXAMPLE",
5
- secretAccessKey: "wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY",
6
- };
7
- export const signingDate = new Date("2015-08-30T12:36:00Z");
8
- export const requests = [
9
- {
10
- name: "get-header-key-duplicate",
11
- request: {
12
- protocol: "https:",
13
- method: "GET",
14
- hostname: "example.amazonaws.com",
15
- query: {},
16
- headers: {
17
- host: "example.amazonaws.com",
18
- "my-header1": "value2,value2,value1",
19
- "x-amz-date": "20150830T123600Z",
20
- },
21
- path: "/",
22
- },
23
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;x-amz-date, Signature=c9d5ea9f3f72853aea855b47ea873832890dbdd183b4468f858259531a5138ea",
24
- },
25
- {
26
- name: "get-header-value-multiline",
27
- request: {
28
- protocol: "https:",
29
- method: "GET",
30
- hostname: "example.amazonaws.com",
31
- query: {},
32
- headers: {
33
- host: "example.amazonaws.com",
34
- "my-header1": "value1,value2,value3",
35
- "x-amz-date": "20150830T123600Z",
36
- },
37
- path: "/",
38
- },
39
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;x-amz-date, Signature=ba17b383a53190154eb5fa66a1b836cc297cc0a3d70a5d00705980573d8ff790",
40
- },
41
- {
42
- name: "get-header-value-order",
43
- request: {
44
- protocol: "https:",
45
- method: "GET",
46
- hostname: "example.amazonaws.com",
47
- query: {},
48
- headers: {
49
- host: "example.amazonaws.com",
50
- "my-header1": "value4,value1,value3,value2",
51
- "x-amz-date": "20150830T123600Z",
52
- },
53
- path: "/",
54
- },
55
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;x-amz-date, Signature=08c7e5a9acfcfeb3ab6b2185e75ce8b1deb5e634ec47601a50643f830c755c01",
56
- },
57
- {
58
- name: "get-header-value-trim",
59
- request: {
60
- protocol: "https:",
61
- method: "GET",
62
- hostname: "example.amazonaws.com",
63
- query: {},
64
- headers: {
65
- host: "example.amazonaws.com",
66
- "my-header1": "value1",
67
- "my-header2": '"a b c"',
68
- "x-amz-date": "20150830T123600Z",
69
- },
70
- path: "/",
71
- },
72
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;my-header2;x-amz-date, Signature=acc3ed3afb60bb290fc8d2dd0098b9911fcaa05412b367055dee359757a9c736",
73
- },
74
- {
75
- name: "get-unreserved",
76
- request: {
77
- protocol: "https:",
78
- method: "GET",
79
- hostname: "example.amazonaws.com",
80
- query: {},
81
- headers: {
82
- host: "example.amazonaws.com",
83
- "x-amz-date": "20150830T123600Z",
84
- },
85
- path: "/-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
86
- },
87
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=07ef7494c76fa4850883e2b006601f940f8a34d404d0cfa977f52a65bbf5f24f",
88
- },
89
- {
90
- name: "get-utf8",
91
- request: {
92
- protocol: "https:",
93
- method: "GET",
94
- hostname: "example.amazonaws.com",
95
- query: {},
96
- headers: {
97
- host: "example.amazonaws.com",
98
- "x-amz-date": "20150830T123600Z",
99
- },
100
- path: "/ሴ",
101
- },
102
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=8318018e0b0f223aa2bbf98705b62bb787dc9c0e678f255a891fd03141be5d85",
103
- },
104
- {
105
- name: "get-vanilla",
106
- request: {
107
- protocol: "https:",
108
- method: "GET",
109
- hostname: "example.amazonaws.com",
110
- query: {},
111
- headers: {
112
- host: "example.amazonaws.com",
113
- "x-amz-date": "20150830T123600Z",
114
- },
115
- path: "/",
116
- },
117
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=5fa00fa31553b73ebf1942676e86291e8372ff2a2260956d9b8aae1d763fbf31",
118
- },
119
- {
120
- name: "get-vanilla-empty-query-key",
121
- request: {
122
- protocol: "https:",
123
- method: "GET",
124
- hostname: "example.amazonaws.com",
125
- query: {
126
- Param1: "value1",
127
- },
128
- headers: {
129
- host: "example.amazonaws.com",
130
- "x-amz-date": "20150830T123600Z",
131
- },
132
- path: "/",
133
- },
134
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=a67d582fa61cc504c4bae71f336f98b97f1ea3c7a6bfe1b6e45aec72011b9aeb",
135
- },
136
- {
137
- name: "get-vanilla-query",
138
- request: {
139
- protocol: "https:",
140
- method: "GET",
141
- hostname: "example.amazonaws.com",
142
- query: {},
143
- headers: {
144
- host: "example.amazonaws.com",
145
- "x-amz-date": "20150830T123600Z",
146
- },
147
- path: "/",
148
- },
149
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=5fa00fa31553b73ebf1942676e86291e8372ff2a2260956d9b8aae1d763fbf31",
150
- },
151
- {
152
- name: "get-vanilla-query-order-key-case",
153
- request: {
154
- protocol: "https:",
155
- method: "GET",
156
- hostname: "example.amazonaws.com",
157
- query: {
158
- Param2: "value2",
159
- Param1: "value1",
160
- },
161
- headers: {
162
- host: "example.amazonaws.com",
163
- "x-amz-date": "20150830T123600Z",
164
- },
165
- path: "/",
166
- },
167
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=b97d918cfa904a5beff61c982a1b6f458b799221646efd99d3219ec94cdf2500",
168
- },
169
- {
170
- name: "get-vanilla-query-unreserved",
171
- request: {
172
- protocol: "https:",
173
- method: "GET",
174
- hostname: "example.amazonaws.com",
175
- query: {
176
- "-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz": "-._~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
177
- },
178
- headers: {
179
- host: "example.amazonaws.com",
180
- "x-amz-date": "20150830T123600Z",
181
- },
182
- path: "/",
183
- },
184
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=9c3e54bfcdf0b19771a7f523ee5669cdf59bc7cc0884027167c21bb143a40197",
185
- },
186
- {
187
- name: "get-vanilla-utf8-query",
188
- request: {
189
- protocol: "https:",
190
- method: "GET",
191
- hostname: "example.amazonaws.com",
192
- query: {
193
- ሴ: "bar",
194
- },
195
- headers: {
196
- host: "example.amazonaws.com",
197
- "x-amz-date": "20150830T123600Z",
198
- },
199
- path: "/",
200
- },
201
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=2cdec8eed098649ff3a119c94853b13c643bcf08f8b0a1d91e12c9027818dd04",
202
- },
203
- {
204
- name: "post-header-key-case",
205
- request: {
206
- protocol: "https:",
207
- method: "POST",
208
- hostname: "example.amazonaws.com",
209
- query: {},
210
- headers: {
211
- host: "example.amazonaws.com",
212
- "x-amz-date": "20150830T123600Z",
213
- },
214
- path: "/",
215
- },
216
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=5da7c1a2acd57cee7505fc6676e4e544621c30862966e37dddb68e92efbe5d6b",
217
- },
218
- {
219
- name: "post-header-key-sort",
220
- request: {
221
- protocol: "https:",
222
- method: "POST",
223
- hostname: "example.amazonaws.com",
224
- query: {},
225
- headers: {
226
- host: "example.amazonaws.com",
227
- "my-header1": "value1",
228
- "x-amz-date": "20150830T123600Z",
229
- },
230
- path: "/",
231
- },
232
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;x-amz-date, Signature=c5410059b04c1ee005303aed430f6e6645f61f4dc9e1461ec8f8916fdf18852c",
233
- },
234
- {
235
- name: "post-header-value-case",
236
- request: {
237
- protocol: "https:",
238
- method: "POST",
239
- hostname: "example.amazonaws.com",
240
- query: {},
241
- headers: {
242
- host: "example.amazonaws.com",
243
- "my-header1": "VALUE1",
244
- "x-amz-date": "20150830T123600Z",
245
- },
246
- path: "/",
247
- },
248
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;my-header1;x-amz-date, Signature=cdbc9802e29d2942e5e10b5bccfdd67c5f22c7c4e8ae67b53629efa58b974b7d",
249
- },
250
- {
251
- name: "post-sts-header-after",
252
- request: {
253
- protocol: "https:",
254
- method: "POST",
255
- hostname: "example.amazonaws.com",
256
- query: {},
257
- headers: {
258
- host: "example.amazonaws.com",
259
- "x-amz-date": "20150830T123600Z",
260
- },
261
- path: "/",
262
- },
263
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=5da7c1a2acd57cee7505fc6676e4e544621c30862966e37dddb68e92efbe5d6b",
264
- },
265
- {
266
- name: "post-sts-header-before",
267
- request: {
268
- protocol: "https:",
269
- method: "POST",
270
- hostname: "example.amazonaws.com",
271
- query: {},
272
- headers: {
273
- host: "example.amazonaws.com",
274
- "x-amz-date": "20150830T123600Z",
275
- "x-amz-security-token": "AQoDYXdzEPT//////////wEXAMPLEtc764bNrC9SAPBSM22wDOk4x4HIZ8j4FZTwdQWLWsKWHGBuFqwAeMicRXmxfpSPfIeoIYRqTflfKD8YUuwthAx7mSEI/qkPpKPi/kMcGdQrmGdeehM4IC1NtBmUpp2wUE8phUZampKsburEDy0KPkyQDYwT7WZ0wq5VSXDvp75YU9HFvlRd8Tx6q6fE8YQcHNVXAkiY9q6d+xo0rKwT38xVqr7ZD0u0iPPkUL64lIZbqBAz+scqKmlzm8FDrypNC9Yjc8fPOLn9FX9KSYvKTr4rvx3iSIlTJabIQwj2ICCR/oLxBA==",
276
- },
277
- path: "/",
278
- },
279
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date;x-amz-security-token, Signature=85d96828115b5dc0cfc3bd16ad9e210dd772bbebba041836c64533a82be05ead",
280
- },
281
- {
282
- name: "post-vanilla",
283
- request: {
284
- protocol: "https:",
285
- method: "POST",
286
- hostname: "example.amazonaws.com",
287
- query: {},
288
- headers: {
289
- host: "example.amazonaws.com",
290
- "x-amz-date": "20150830T123600Z",
291
- },
292
- path: "/",
293
- },
294
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=5da7c1a2acd57cee7505fc6676e4e544621c30862966e37dddb68e92efbe5d6b",
295
- },
296
- {
297
- name: "post-vanilla-empty-query-value",
298
- request: {
299
- protocol: "https:",
300
- method: "POST",
301
- hostname: "example.amazonaws.com",
302
- query: {
303
- Param1: "value1",
304
- },
305
- headers: {
306
- host: "example.amazonaws.com",
307
- "x-amz-date": "20150830T123600Z",
308
- },
309
- path: "/",
310
- },
311
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=28038455d6de14eafc1f9222cf5aa6f1a96197d7deb8263271d420d138af7f11",
312
- },
313
- {
314
- name: "post-vanilla-query",
315
- request: {
316
- protocol: "https:",
317
- method: "POST",
318
- hostname: "example.amazonaws.com",
319
- query: {
320
- Param1: "value1",
321
- },
322
- headers: {
323
- host: "example.amazonaws.com",
324
- "x-amz-date": "20150830T123600Z",
325
- },
326
- path: "/",
327
- },
328
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=28038455d6de14eafc1f9222cf5aa6f1a96197d7deb8263271d420d138af7f11",
329
- },
330
- {
331
- name: "post-vanilla-query-nonunreserved",
332
- request: {
333
- protocol: "https:",
334
- method: "POST",
335
- hostname: "example.amazonaws.com",
336
- query: {
337
- "@#$%^": "",
338
- "+": '/,?><`";:\\|][{}',
339
- },
340
- headers: {
341
- host: "example.amazonaws.com",
342
- "x-amz-date": "20150830T123600Z",
343
- },
344
- path: "/",
345
- },
346
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=66c82657c86e26fb25238d0e69f011edc4c6df5ae71119d7cb98ed9b87393c1e",
347
- },
348
- {
349
- name: "post-vanilla-query-space",
350
- request: {
351
- protocol: "https:",
352
- method: "POST",
353
- hostname: "example.amazonaws.com",
354
- query: {
355
- p: "",
356
- },
357
- headers: {
358
- host: "example.amazonaws.com",
359
- "x-amz-date": "20150830T123600Z",
360
- },
361
- path: "/",
362
- },
363
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=host;x-amz-date, Signature=e71688addb58a26418614085fb730ba3faa623b461c17f48f2fbdb9361b94a9b",
364
- },
365
- {
366
- name: "post-x-www-form-urlencoded",
367
- request: {
368
- protocol: "https:",
369
- method: "POST",
370
- hostname: "example.amazonaws.com",
371
- query: {},
372
- headers: {
373
- "content-type": "application/x-www-form-urlencoded",
374
- host: "example.amazonaws.com",
375
- "x-amz-date": "20150830T123600Z",
376
- },
377
- body: "Param1=value1",
378
- path: "/",
379
- },
380
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=ff11897932ad3f4e8b18135d722051e5ac45fc38421b1da7b9d196a0fe09473a",
381
- },
382
- {
383
- name: "post-x-www-form-urlencoded-parameters",
384
- request: {
385
- protocol: "https:",
386
- method: "POST",
387
- hostname: "example.amazonaws.com",
388
- query: {},
389
- headers: {
390
- "content-type": "application/x-www-form-urlencoded; charset=utf8",
391
- host: "example.amazonaws.com",
392
- "x-amz-date": "20150830T123600Z",
393
- },
394
- body: "Param1=value1",
395
- path: "/",
396
- },
397
- authorization: "AWS4-HMAC-SHA256 Credential=AKIDEXAMPLE/20150830/us-east-1/service/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=1a72ec8f64bd914b0e42e42607c7fbce7fb2c7465f63e3092b3b0d39fa77a6fe",
398
- },
399
- ];
@@ -1,14 +0,0 @@
1
- import type { HttpRequest } from "@smithy/types";
2
- export interface TestCase {
3
- name: string;
4
- request: HttpRequest;
5
- authorization: string;
6
- }
7
- export declare const region = "us-east-1";
8
- export declare const service = "service";
9
- export declare const credentials: {
10
- accessKeyId: string;
11
- secretAccessKey: string;
12
- };
13
- export declare const signingDate: Date;
14
- export declare const requests: Array<TestCase>;