@cdklabs/cdk-ssm-documents 0.0.68 → 0.0.69

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 (996) hide show
  1. package/.jsii +11 -11
  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/checksums/package.json +5 -5
  117. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +1 -1
  118. package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
  119. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +11 -9
  120. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +11 -8
  121. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +1 -0
  122. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +4 -0
  123. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAnomalyDetectorCommand.d.ts +4 -2
  124. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +29 -0
  125. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +1 -1
  126. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +6 -1
  127. package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -10
  128. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +236 -12
  129. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +201 -0
  130. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +30 -11
  131. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
  132. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +18 -4
  133. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
  134. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
  135. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +4 -2
  136. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +1 -2
  137. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteTableCommand.d.ts +1 -1
  138. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +1 -2
  139. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
  140. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +4 -4
  141. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +1 -0
  142. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -1
  143. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
  144. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +2 -2
  145. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
  146. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
  147. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesCommand.d.ts +1 -1
  148. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -1
  149. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +2 -2
  150. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
  151. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -1
  152. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -2
  153. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +2 -1
  154. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
  155. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportInstanceCommand.d.ts +1 -1
  156. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +12 -1
  157. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +1 -1
  158. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
  159. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
  160. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
  161. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +2 -2
  162. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +2 -2
  163. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +1 -1
  164. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +217 -0
  165. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +136 -66
  166. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +59 -37
  167. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +86 -86
  168. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +89 -310
  169. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +309 -40
  170. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +38 -32
  171. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +36 -50
  172. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_8.d.ts +47 -1
  173. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +2 -0
  174. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +4 -2
  175. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +1 -1
  176. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +4 -2
  177. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +2 -4
  178. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +1 -1
  179. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +1 -1
  180. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +205 -0
  181. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +19 -12
  182. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +11 -9
  183. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +10 -15
  184. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +16 -39
  185. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +40 -10
  186. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +9 -8
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +10 -11
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_8.d.ts +10 -0
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  190. package/node_modules/@aws-sdk/client-ec2/package.json +10 -10
  191. package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +1 -1
  192. package/node_modules/@aws-sdk/client-iam/package.json +9 -9
  193. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +107 -91
  194. package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +5 -5
  195. package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +64 -64
  196. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +35 -21
  197. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +12 -0
  198. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +12 -0
  199. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +2 -0
  200. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -0
  201. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +6 -0
  202. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionCommand.d.ts +19 -0
  203. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +12 -0
  204. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +12 -0
  205. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +1 -0
  206. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -0
  207. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +1 -1
  208. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +6 -0
  209. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +1 -0
  210. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +1 -0
  211. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -0
  212. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +1 -0
  213. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +12 -0
  214. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +12 -0
  215. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +12 -0
  216. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +12 -0
  217. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -0
  218. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -0
  219. package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +13 -13
  220. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +56 -56
  221. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +75 -8
  222. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +2 -0
  223. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +7 -7
  224. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +36 -36
  225. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +16 -1
  226. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  227. package/node_modules/@aws-sdk/client-lambda/package.json +9 -9
  228. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -1
  229. package/node_modules/@aws-sdk/client-s3/package.json +13 -13
  230. package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +1 -1
  231. package/node_modules/@aws-sdk/client-sns/package.json +8 -8
  232. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1 -1
  233. package/node_modules/@aws-sdk/client-sqs/package.json +10 -10
  234. package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
  235. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +385 -81
  236. package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +16 -0
  237. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
  238. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
  239. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
  240. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
  241. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
  242. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
  243. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
  244. package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
  245. package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
  246. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
  247. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
  248. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
  249. package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
  250. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +57 -0
  251. package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +8 -2
  252. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +1 -1
  253. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
  254. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
  255. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +2 -1
  256. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +3 -1
  257. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
  258. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +14 -0
  259. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +1 -1
  260. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +14 -0
  261. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +1 -1
  262. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
  263. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +1 -1
  264. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +1 -2
  265. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +1 -1
  266. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
  267. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +7 -1
  268. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +3 -3
  269. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  270. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +14 -0
  271. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +1 -1
  272. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
  273. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
  274. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
  275. package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
  276. package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +61 -47
  277. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
  278. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
  279. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
  280. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
  281. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
  282. package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
  283. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +117 -0
  284. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +38 -2
  285. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
  286. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
  287. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
  288. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +1 -1
  289. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +1 -1
  290. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +1 -1
  291. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +1 -1
  292. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +4 -2
  293. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
  294. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
  295. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
  296. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
  297. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
  298. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +26 -20
  299. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
  300. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
  301. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
  302. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
  303. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
  304. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
  305. package/node_modules/@aws-sdk/client-ssm/package.json +8 -8
  306. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +55 -141
  307. package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -3
  308. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +1 -1
  309. package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +48 -19
  310. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -1
  311. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +0 -5
  312. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
  313. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
  314. package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
  315. package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
  316. package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
  317. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +5 -5
  318. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +5 -5
  319. package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +5 -5
  320. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +1 -0
  321. package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +5 -1
  322. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -1
  323. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -1
  324. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -1
  325. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -1
  326. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -1
  327. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -1
  328. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -3
  329. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
  330. package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
  331. package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
  332. package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +2 -1
  333. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
  334. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -1
  335. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
  336. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
  337. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
  338. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
  339. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +2 -1
  340. package/node_modules/@aws-sdk/core/package.json +7 -7
  341. package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
  342. package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
  343. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
  344. package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
  345. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +16 -10
  346. package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +16 -10
  347. package/node_modules/@aws-sdk/credential-provider-http/package.json +7 -7
  348. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +1 -1
  349. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
  350. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
  351. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
  352. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
  353. package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
  354. package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
  355. package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
  356. package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
  357. package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
  358. package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
  359. package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
  360. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
  361. package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
  362. package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
  363. package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +2 -4
  364. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
  365. package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
  366. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
  367. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +4 -4
  368. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
  369. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
  370. package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
  371. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
  372. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
  373. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
  374. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
  375. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
  376. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +6 -6
  377. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-es/index.js +4 -4
  378. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/index.d.ts +5 -4
  379. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +26 -4
  380. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
  381. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
  382. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
  383. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
  384. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
  385. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
  386. package/node_modules/@aws-sdk/nested-clients/package.json +8 -8
  387. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -4
  388. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
  389. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
  390. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
  391. package/node_modules/@aws-sdk/token-providers/package.json +6 -6
  392. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
  393. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
  394. package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
  395. package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
  396. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
  397. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
  398. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
  399. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
  400. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
  401. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
  402. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
  403. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
  404. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
  405. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
  406. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
  407. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
  408. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
  409. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
  410. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
  411. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
  412. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
  413. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
  414. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
  415. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
  416. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
  417. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
  418. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
  419. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
  420. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
  421. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
  422. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
  423. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
  424. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
  425. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
  426. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
  427. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
  428. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
  429. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
  430. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
  431. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
  432. package/node_modules/@aws-sdk/types/package.json +2 -2
  433. package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
  434. package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
  435. package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
  436. package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
  437. package/node_modules/@smithy/core/dist-es/index.js +5 -5
  438. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -3
  439. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -2
  440. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -3
  441. package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -3
  442. package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
  443. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +1 -1
  444. package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -1
  445. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -1
  446. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -2
  447. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +11 -11
  448. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -7
  449. package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -2
  450. package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -13
  451. package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
  452. package/node_modules/@smithy/core/dist-types/index.d.ts +7 -5
  453. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -3
  454. package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -2
  455. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -3
  456. package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -3
  457. package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
  458. package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +1 -1
  459. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +2 -1
  460. package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +2 -1
  461. package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +1 -1
  462. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -2
  463. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +12 -11
  464. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -7
  465. package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -2
  466. package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -13
  467. package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
  468. package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +2 -2
  469. package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +2 -1
  470. package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +14 -0
  471. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  472. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  473. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
  474. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
  475. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
  476. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
  477. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
  478. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
  479. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
  480. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
  481. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  482. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  483. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  484. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
  485. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
  486. package/node_modules/@smithy/core/dist-types/ts3.4/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
  487. package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
  488. package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
  489. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
  490. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +28 -0
  491. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
  492. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +22 -0
  493. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +13 -0
  494. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
  495. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +25 -0
  496. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
  497. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
  498. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
  499. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts +4 -0
  500. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
  501. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
  502. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-blob-browser/blobHasher.d.ts +5 -0
  503. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
  504. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
  505. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
  506. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.browser.d.ts +11 -0
  507. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.d.ts +11 -0
  508. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/index.native.d.ts +11 -0
  509. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Js.d.ts +19 -0
  510. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/md5/Md5Node.d.ts +17 -0
  511. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
  512. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
  513. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
  514. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/index.d.ts +27 -0
  515. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidFunction.d.ts +4 -0
  516. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/invalid-dependency/invalidProvider.d.ts +5 -0
  517. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/MiddlewareStack.d.ts +5 -0
  518. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/middleware-stack/types.d.ts +22 -0
  519. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/NoOpLogger.d.ts +11 -0
  520. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
  521. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/client.d.ts +84 -0
  522. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/command.d.ts +118 -0
  523. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/constants.d.ts +4 -0
  524. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
  525. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
  526. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/defaults-mode.d.ts +28 -0
  527. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
  528. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/exceptions.d.ts +42 -0
  529. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
  530. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
  531. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/extensions/retry.d.ts +18 -0
  532. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
  533. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
  534. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/is-serializable-header-value.d.ts +5 -0
  535. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/object-mapping.d.ts +179 -0
  536. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/schemaLogFilter.d.ts +9 -0
  537. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/ser-utils.d.ts +14 -0
  538. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/smithy-client/serde-json.d.ts +10 -0
  539. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/circularReplacer.d.ts +6 -0
  540. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/createWaiter.d.ts +11 -0
  541. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/poller.d.ts +11 -0
  542. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/sleep.d.ts +4 -0
  543. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/utils/validate.d.ts +8 -0
  544. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/client/util-waiter/waiter.d.ts +49 -0
  545. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
  546. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
  547. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
  548. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
  549. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  550. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/checkRegion.d.ts +9 -0
  551. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
  552. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
  553. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/getRealRegion.d.ts +4 -0
  554. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/isFipsRegion.d.ts +4 -0
  555. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionConfig/resolveRegionConfig.d.ts +34 -0
  556. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariant.d.ts +11 -0
  557. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/EndpointVariantTag.d.ts +10 -0
  558. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/PartitionHash.d.ts +15 -0
  559. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/RegionHash.d.ts +13 -0
  560. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getHostnameFromVariants.d.ts +14 -0
  561. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getRegionInfo.d.ts +19 -0
  562. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedHostname.d.ts +13 -0
  563. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedPartition.d.ts +13 -0
  564. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/config-resolver/regionInfo/getResolvedSigningRegion.d.ts +14 -0
  565. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/constants.d.ts +36 -0
  566. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
  567. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
  568. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
  569. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
  570. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.browser.d.ts +55 -0
  571. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.d.ts +36 -0
  572. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/index.native.d.ts +55 -0
  573. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/configLoader.d.ts +31 -0
  574. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromEnv.d.ts +20 -0
  575. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
  576. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/fromStatic.d.ts +9 -0
  577. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/node-config-provider/getSelectorName.d.ts +9 -0
  578. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
  579. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/ProviderError.d.ts +38 -0
  580. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
  581. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/chain.d.ts +12 -0
  582. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/fromValue.d.ts +5 -0
  583. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/property-provider/memoize.d.ts +40 -0
  584. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/constants.d.ts +4 -0
  585. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/externalDataInterceptor.d.ts +9 -0
  586. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
  587. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getConfigFilepath.d.ts +2 -0
  588. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getCredentialsFilepath.d.ts +2 -0
  589. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getHomeDir.d.ts +6 -0
  590. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getProfileName.d.ts +15 -0
  591. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.d.ts +5 -0
  592. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
  593. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
  594. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.d.ts +33 -0
  595. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/loadSsoSessionData.d.ts +17 -0
  596. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/mergeConfigFiles.d.ts +7 -0
  597. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
  598. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
  599. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/readFile.d.ts +21 -0
  600. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/shared-ini-file-loader/types.d.ts +16 -0
  601. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/booleanSelector.d.ts +10 -0
  602. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/numberSelector.d.ts +9 -0
  603. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/config/util-config-provider/types.d.ts +4 -0
  604. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.browser.d.ts +24 -0
  605. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +24 -0
  606. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/createConfigValueProvider.d.ts +14 -0
  607. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  608. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.d.ts +4 -0
  609. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
  610. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
  611. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
  612. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
  613. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
  614. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
  615. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/resolveEndpointRequiredConfig.d.ts +32 -0
  616. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
  617. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/middleware-endpoint/service-customizations/s3.d.ts +26 -0
  618. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +41 -0
  619. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
  620. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/debugId.d.ts +1 -0
  621. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
  622. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/debug/toDebugString.d.ts +9 -0
  623. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
  624. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
  625. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/booleanEquals.d.ts +5 -0
  626. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
  627. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttr.d.ts +7 -0
  628. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/getAttrPathList.d.ts +4 -0
  629. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
  630. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isIpAddress.d.ts +4 -0
  631. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/isSet.d.ts +5 -0
  632. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
  633. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/not.d.ts +5 -0
  634. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
  635. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
  636. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/stringEquals.d.ts +5 -0
  637. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/substring.d.ts +7 -0
  638. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/lib/uriEncode.d.ts +4 -0
  639. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
  640. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointError.d.ts +3 -0
  641. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointFunctions.d.ts +2 -0
  642. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/EndpointRuleObject.d.ts +5 -0
  643. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/ErrorRuleObject.d.ts +2 -0
  644. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/RuleSetObject.d.ts +4 -0
  645. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/TreeRuleObject.d.ts +3 -0
  646. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
  647. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
  648. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/callFunction.d.ts +1 -0
  649. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/customEndpointFunctions.d.ts +4 -0
  650. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
  651. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
  652. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
  653. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.d.ts +3 -0
  654. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
  655. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
  656. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
  657. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTemplate.d.ts +2 -0
  658. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/evaluateTreeRule.d.ts +1 -0
  659. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
  660. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
  661. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointProperty.d.ts +1 -0
  662. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
  663. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
  664. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
  665. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
  666. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
  667. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/HeaderMarshaller.d.ts +12 -0
  668. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Int64.d.ts +20 -0
  669. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/Message.d.ts +26 -0
  670. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageDecoderStream.d.ts +17 -0
  671. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/MessageEncoderStream.d.ts +18 -0
  672. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageDecoderStream.d.ts +17 -0
  673. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/SmithyMessageEncoderStream.d.ts +17 -0
  674. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-codec/splitMessage.d.ts +11 -0
  675. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
  676. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
  677. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
  678. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-config-resolver/EventStreamSerdeConfig.d.ts +27 -0
  679. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
  680. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getChunkedStream.d.ts +4 -0
  681. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
  682. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.browser.d.ts +23 -0
  683. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +23 -0
  684. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +31 -0
  685. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +95 -0
  686. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +16 -0
  687. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
  688. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
  689. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
  690. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +27 -0
  691. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts +6 -0
  692. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Field.d.ts +49 -0
  693. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/Fields.d.ts +44 -0
  694. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
  695. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
  696. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/protocol-http/types.d.ts +21 -0
  697. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/querystring-builder/buildQueryString.d.ts +5 -0
  698. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +52 -0
  699. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
  700. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
  701. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
  702. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
  703. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
  704. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
  705. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri-path.d.ts +4 -0
  706. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/util-uri-escape/escape-uri.d.ts +4 -0
  707. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.browser.d.ts +26 -0
  708. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/index.d.ts +20 -0
  709. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/configurations.d.ts +71 -0
  710. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  711. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  712. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/longPollMiddleware.d.ts +15 -0
  713. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.d.ts +15 -0
  714. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/parseRetryAfterHeader.d.ts +10 -0
  715. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
  716. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +33 -0
  717. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +26 -0
  718. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.d.ts +6 -0
  719. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.d.ts +6 -0
  720. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retry-pre-sra-deprecated/types.d.ts +65 -0
  721. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
  722. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/middleware-retry/util.d.ts +2 -0
  723. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/constants.d.ts +30 -0
  724. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
  725. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
  726. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
  727. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRateLimiter.d.ts +119 -0
  728. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryBackoffStrategy.d.ts +12 -0
  729. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
  730. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
  731. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/config.d.ts +20 -0
  732. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/constants.d.ts +60 -0
  733. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
  734. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/retry/util-retry/types.d.ts +19 -0
  735. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +71 -0
  736. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
  737. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
  738. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
  739. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
  740. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
  741. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
  742. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
  743. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
  744. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
  745. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +146 -0
  746. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
  747. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
  748. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
  749. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
  750. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
  751. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
  752. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +13 -0
  753. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/concatBytes.d.ts +6 -0
  754. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
  755. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +61 -0
  756. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/hash-node/hash-node.d.ts +13 -0
  757. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.browser.d.ts +41 -0
  758. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +39 -0
  759. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.native.d.ts +39 -0
  760. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/is-array-buffer/is-array-buffer.d.ts +4 -0
  761. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +43 -0
  762. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/deserializerMiddleware.d.ts +6 -0
  763. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serdePlugin.d.ts +24 -0
  764. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/middleware-serde/serializerMiddleware.d.ts +6 -0
  765. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +250 -0
  766. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
  767. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +38 -0
  768. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +10 -0
  769. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
  770. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/constants-for-browser.d.ts +5 -0
  771. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.browser.d.ts +8 -0
  772. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/fromBase64.d.ts +7 -0
  773. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.browser.d.ts +9 -0
  774. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-base64/toBase64.d.ts +8 -0
  775. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts +4 -0
  776. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-body-length/calculateBodyLength.d.ts +4 -0
  777. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
  778. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-hex-encoding/hex-encoding.d.ts +12 -0
  779. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/ByteArrayCollector.d.ts +13 -0
  780. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
  781. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.browser.d.ts +37 -0
  782. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
  783. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
  784. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
  785. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +55 -0
  786. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
  787. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.browser.d.ts +5 -0
  788. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
  789. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.browser.d.ts +7 -0
  790. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/headStream.d.ts +9 -0
  791. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.browser.d.ts +7 -0
  792. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
  793. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.browser.d.ts +8 -0
  794. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/splitStream.d.ts +17 -0
  795. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
  796. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-collector.d.ts +6 -0
  797. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-stream/stream-type-check.d.ts +17 -0
  798. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/fromUtf8.browser.d.ts +1 -0
  799. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/fromUtf8.d.ts +1 -0
  800. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
  801. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUint8Array.d.ts +1 -0
  802. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUtf8.browser.d.ts +7 -0
  803. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/util-utf8/toUtf8.d.ts +7 -0
  804. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/uuid/v4.d.ts +24 -0
  805. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
  806. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/getSmithyContext.d.ts +5 -0
  807. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpRequest.d.ts +52 -0
  808. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/httpResponse.d.ts +29 -0
  809. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/index.d.ts +10 -0
  810. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostLabel.d.ts +7 -0
  811. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/isValidHostname.d.ts +1 -0
  812. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/normalizeProvider.d.ts +7 -0
  813. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseQueryString.d.ts +5 -0
  814. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/parseUrl.d.ts +5 -0
  815. package/node_modules/@smithy/core/dist-types/ts3.4/submodules/transport/toEndpointV1.d.ts +6 -0
  816. package/node_modules/@smithy/core/package.json +2 -2
  817. package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
  818. package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
  819. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
  820. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
  821. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
  822. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
  823. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
  824. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
  825. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
  826. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +26 -0
  827. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
  828. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
  829. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +5 -0
  830. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/node-http.d.ts +2 -0
  831. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
  832. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
  833. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
  834. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
  835. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +15 -0
  836. package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
  837. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +1 -1
  838. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +7 -0
  839. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +38 -0
  840. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  841. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  842. package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
  843. package/node_modules/@smithy/middleware-compression/dist-es/index.js +5 -6
  844. package/node_modules/@smithy/middleware-compression/dist-types/index.d.ts +7 -6
  845. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_DISABLE_REQUEST_COMPRESSION_CONFIG_OPTIONS.d.ts +17 -0
  846. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES_CONFIG_OPTIONS.d.ts +17 -0
  847. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.browser.d.ts +1 -0
  848. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressStream.d.ts +2 -0
  849. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.browser.d.ts +1 -0
  850. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressString.d.ts +1 -0
  851. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/compressionMiddleware.d.ts +21 -0
  852. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/configurations.d.ts +37 -0
  853. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/constants.d.ts +7 -0
  854. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/getCompressionPlugin.d.ts +7 -0
  855. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/index.d.ts +7 -0
  856. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/isStreaming.d.ts +4 -0
  857. package/node_modules/@smithy/middleware-compression/dist-types/ts3.4/resolveCompressionConfig.d.ts +5 -0
  858. package/node_modules/@smithy/middleware-compression/package.json +3 -3
  859. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +1 -1
  860. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +10 -0
  861. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  862. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  863. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/http2/ClientHttp2SessionRef.d.ts +46 -0
  864. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  865. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +47 -0
  866. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +46 -0
  867. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +36 -0
  868. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +76 -0
  869. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2.d.ts +2 -0
  870. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-https.d.ts +2 -0
  871. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  872. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
  873. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  874. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  875. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +9 -0
  876. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  877. package/node_modules/@smithy/node-http-handler/package.json +4 -4
  878. package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
  879. package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +5 -4
  880. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +25 -0
  881. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +20 -0
  882. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
  883. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
  884. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
  885. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
  886. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
  887. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
  888. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
  889. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +12 -0
  890. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
  891. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
  892. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +23 -0
  893. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
  894. package/node_modules/@smithy/signature-v4/package.json +3 -3
  895. package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
  896. package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
  897. package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
  898. package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
  899. package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
  900. package/node_modules/@smithy/types/dist-es/index.js +7 -43
  901. package/node_modules/@smithy/types/dist-es/metrics.js +1 -0
  902. package/node_modules/@smithy/types/dist-types/abort.d.ts +1 -1
  903. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
  904. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -3
  905. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
  906. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
  907. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
  908. package/node_modules/@smithy/types/dist-types/index.d.ts +51 -43
  909. package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
  910. package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
  911. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +45 -0
  912. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  913. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  914. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  915. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  916. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  917. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +59 -0
  918. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +7 -0
  919. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +37 -0
  920. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +61 -0
  921. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
  922. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
  923. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +15 -0
  924. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  925. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
  926. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
  927. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +58 -0
  928. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +40 -0
  929. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
  930. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  931. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointParameterInstructions.d.ts +41 -0
  932. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
  933. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
  934. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
  935. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
  936. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  937. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
  938. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
  939. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
  940. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +32 -0
  941. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  942. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +6 -0
  943. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  944. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  945. package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
  946. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
  947. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +110 -0
  948. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  949. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
  950. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  951. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  952. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  953. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +52 -0
  954. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  955. package/node_modules/@smithy/types/dist-types/ts3.4/metrics.d.ts +93 -0
  956. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +541 -0
  957. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
  958. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  959. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  960. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +162 -0
  961. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
  962. package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
  963. package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
  964. package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
  965. package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
  966. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
  967. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +79 -0
  968. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +172 -0
  969. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  970. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +28 -0
  971. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +54 -0
  972. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +41 -0
  973. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +42 -0
  974. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  975. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +77 -0
  976. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  977. package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
  978. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
  979. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +40 -0
  980. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  981. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
  982. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  983. package/node_modules/@smithy/types/package.json +2 -2
  984. package/package.json +10 -10
  985. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getNodeModulesParentDirs.js +0 -15
  986. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.js +0 -14
  987. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.js +0 -9
  988. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.js +0 -75
  989. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -10
  990. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -8
  991. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -8
  992. package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -6
  993. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getNodeModulesParentDirs.d.ts +0 -1
  994. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedDevTypeScriptVersion.d.ts +0 -3
  995. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getSanitizedTypeScriptVersion.d.ts +0 -3
  996. package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/getTypeScriptUserAgentPair.d.ts +0 -4
@@ -46,5 +46,5 @@ class AutomationSimulation {
46
46
  }
47
47
  exports.AutomationSimulation = AutomationSimulation;
48
48
  _a = JSII_RTTI_SYMBOL_1;
49
- AutomationSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.AutomationSimulation", version: "0.0.68" };
49
+ AutomationSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.AutomationSimulation", version: "0.0.69" };
50
50
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0b21hdGlvbi1zaW11bGF0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3NpbXVsYXRpb24vZG9jdW1lbnQvYXV0b21hdGlvbi1zaW11bGF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBR0EsOEVBQXlFO0FBR3pFLE1BQWEsb0JBQW9CO0lBSS9CLFlBQVksa0JBQXNDLEVBQUUsS0FBc0I7UUFDeEUsSUFBSSxDQUFDLGtCQUFrQixHQUFHLGtCQUFrQixDQUFDO1FBQzdDLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFFRDs7Ozs7T0FLRztJQUNJLEtBQUssQ0FBQyxNQUErQjtRQUMxQyxNQUFNLFVBQVUsR0FBRyxJQUFJLElBQUksRUFBRSxDQUFDLFdBQVcsRUFBRSxDQUFDLENBQUMsbUNBQW1DO1FBQ2hGLE1BQU0sQ0FBQyxhQUFhLENBQUMsR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQ2pELE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLFVBQVUsQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxDQUFDO2FBQ2xELE9BQU8sQ0FBQyxHQUFHLEVBQUUsR0FBRyxDQUFDLENBQUMsOEJBQThCO2FBQ2hELE9BQU8sQ0FBQyxJQUFJLEVBQUUsR0FBRyxDQUFDLENBQUM7UUFDdEIsTUFBTSxNQUFNLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLEdBQUcsTUFBTSxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsUUFBUSxDQUFDLENBQUMsRUFBRSxHQUFHLENBQUMsQ0FBQztRQUM5RSxNQUFNLENBQUMseUJBQXlCLENBQUMsR0FBRyxNQUFNLEdBQUcsbUNBQW1DLENBQUM7UUFFakYsSUFBSSxDQUFDLGtCQUFrQixDQUFDLFlBQVksRUFBRSxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDaEQsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLEdBQUcsQ0FBQyxDQUFDLFlBQVksQ0FBQztRQUNoRCxDQUFDLENBQUMsQ0FBQztRQUVILE9BQU8sSUFBSSxxREFBd0IsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLEVBQUUsQ0FBQyxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDN0gsQ0FBQztJQUVEOzs7O09BSUc7SUFDSyxXQUFXLENBQUMsS0FBdUI7UUFDekMsTUFBTSxTQUFTLEdBQUcsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQzNCLElBQUksWUFBWSxHQUFtQixTQUFTLENBQUM7UUFDN0MsS0FBSyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDekIsWUFBWSxDQUFDLFFBQVEsR0FBRyxZQUFZLENBQUMsZ0JBQWdCLEVBQUUsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUMzRSxZQUFZLENBQUMsbUJBQW1CLEdBQUcsS0FBSyxDQUFDO1lBQ3pDLFlBQVksR0FBRyxDQUFDLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFDSCxPQUFPLFNBQVMsQ0FBQztJQUNuQixDQUFDOztBQTdDSCxvREE4Q0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBdXRvbWF0aW9uRG9jdW1lbnQgfSBmcm9tICcuLi8uLi9kb2N1bWVudC9hdXRvbWF0aW9uLWRvY3VtZW50JztcbmltcG9ydCB7IFNpbXVsYXRpb25SZXN1bHQgfSBmcm9tICcuLi8uLi9kb21haW4vc2ltdWxhdGlvbi1yZXN1bHQnO1xuaW1wb3J0IHsgQXV0b21hdGlvblN0ZXAgfSBmcm9tICcuLi8uLi9wYXJlbnQtc3RlcHMvYXV0b21hdGlvbi1zdGVwJztcbmltcG9ydCB7IEF1dG9tYXRpb25TdGVwU2ltdWxhdGlvbiB9IGZyb20gJy4uL2F1dG9tYXRpb24tc3RlcC1zaW11bGF0aW9uJztcbmltcG9ydCB7IFNpbXVsYXRpb25Qcm9wcyB9IGZyb20gJy4uL3NpbXVsYXRpb24nO1xuXG5leHBvcnQgY2xhc3MgQXV0b21hdGlvblNpbXVsYXRpb24ge1xuICBwcml2YXRlIGF1dG9tYXRpb25Eb2N1bWVudDogQXV0b21hdGlvbkRvY3VtZW50O1xuICBwcml2YXRlIHByb3BzOiBTaW11bGF0aW9uUHJvcHM7XG5cbiAgY29uc3RydWN0b3IoYXV0b21hdGlvbkRvY3VtZW50OiBBdXRvbWF0aW9uRG9jdW1lbnQsIHByb3BzOiBTaW11bGF0aW9uUHJvcHMpIHtcbiAgICB0aGlzLmF1dG9tYXRpb25Eb2N1bWVudCA9IGF1dG9tYXRpb25Eb2N1bWVudDtcbiAgICB0aGlzLnByb3BzID0gcHJvcHM7XG4gIH1cblxuICAvKipcbiAgICogU3RhcnRzIHRoZSBleGVjdXRpb24gb2YgdGhlIHN0ZXBzIGJ5IGludm9raW5nIHRoZSBmaXJzdCBzdGVwLlxuICAgKiBUaGUgc3Vic2VxdWVudCBzdGVwcyB3aWxsIGJlIGludm9rZWQgYnkgdGhlIHN0ZXBzIHRoZW1zZWx2ZXMuXG4gICAqIEBwYXJhbSBpbnB1dHMgYWxsIG9mIHRoZSBpbnB1dHMgbmVjZXNzYXJ5IGZvciB0aGUgZG9jdW1lbnQgdG8gZXhlY3V0ZS5cbiAgICogQHJldHVybnMgdGhlIG91dHB1dHMgc3BlY2lmaWVkIGJ5IGFsbCB0aGUgc3RlcHMuXG4gICAqL1xuICBwdWJsaWMgc3RhcnQoaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSk6IFNpbXVsYXRpb25SZXN1bHQge1xuICAgIGNvbnN0IGRhdGVTdHJpbmcgPSBuZXcgRGF0ZSgpLnRvSVNPU3RyaW5nKCk7IC8vIEV4YW1wbGUgMjAyMS0xMC0wOFQwODo0NDowMi4xMDZaXG4gICAgaW5wdXRzWydnbG9iYWw6REFURSddID0gZGF0ZVN0cmluZy5zcGxpdCgnVCcpWzBdO1xuICAgIGlucHV0c1snZ2xvYmFsOkRBVEVfVElNRSddID0gZGF0ZVN0cmluZy5zcGxpdCgnLicpWzBdXG4gICAgICAucmVwbGFjZSgnVCcsICdfJykgLy8gRXhhbXBsZSAyMDIxLTEwLTA4XzA4OjQ0OjAyXG4gICAgICAucmVwbGFjZSgvOi9nLCAnLicpO1xuICAgIGNvbnN0IHByZWZpeCA9IE1hdGguZmxvb3IoTWF0aC5yYW5kb20oKSAqIDk5OTk5OSkudG9TdHJpbmcoKS5wYWRTdGFydCg2LCAnMCcpO1xuICAgIGlucHV0c1snYXV0b21hdGlvbjpFWEVDVVRJT05fSUQnXSA9IHByZWZpeCArICctMWEyYjNjLTFhMmIzYy0xYTJiM2MxYTJiM2MxYTJiM2MnO1xuXG4gICAgdGhpcy5hdXRvbWF0aW9uRG9jdW1lbnQuZG9jVmFyaWFibGVzPy5mb3JFYWNoKHYgPT4ge1xuICAgICAgaW5wdXRzW2B2YXJpYWJsZToke3YubmFtZX1gXSA9IHYuZGVmYXVsdFZhbHVlO1xuICAgIH0pO1xuXG4gICAgcmV0dXJuIG5ldyBBdXRvbWF0aW9uU3RlcFNpbXVsYXRpb24odGhpcy5jcmVhdGVDaGFpbih0aGlzLmF1dG9tYXRpb25Eb2N1bWVudC5jb2xsZWN0ZWRTdGVwcygpKSwgdGhpcy5wcm9wcykuaW52b2tlKGlucHV0cyk7XG4gIH1cblxuICAvKipcbiAgICogQ2hhaW5zIHRoZSBzdGVwcyB0b2dldGhlciBpbiB0aGVpciBkZWZhdWx0IG9yaWVudGF0aW9uIChsaWtlIGEgbGlua2VkIGxpc3QpLlxuICAgKiBUaGUgb3JkZXIgb2Ygc3RlcHMgY2FuIGNoYW5nZSBkZXBlbmRpbmcgb24gdGhlIHByb3BlcnRpZXMgcHJvdmlkZWQgdG8gdGhlIHN0ZXBzLlxuICAgKiBAcmV0dXJucyB0aGUgZmlyc3Qgc3RlcCBvZiB0aGUgY2hhaW5cbiAgICovXG4gIHByaXZhdGUgY3JlYXRlQ2hhaW4oc3RlcHM6IEF1dG9tYXRpb25TdGVwW10pOiBBdXRvbWF0aW9uU3RlcCB7XG4gICAgY29uc3QgZmlyc3RTdGVwID0gc3RlcHNbMF07XG4gICAgbGV0IHByZXZpb3VzU3RlcDogQXV0b21hdGlvblN0ZXAgPSBmaXJzdFN0ZXA7XG4gICAgc3RlcHMuc2xpY2UoMSkuZm9yRWFjaChzID0+IHtcbiAgICAgIHByZXZpb3VzU3RlcC5uZXh0U3RlcCA9IHByZXZpb3VzU3RlcC5leHBsaWNpdE5leHRTdGVwPy5yZXNvbHZlKHN0ZXBzKSA/PyBzO1xuICAgICAgcHJldmlvdXNTdGVwLmFsbFN0ZXBzSW5FeGVjdXRpb24gPSBzdGVwcztcbiAgICAgIHByZXZpb3VzU3RlcCA9IHM7XG4gICAgfSk7XG4gICAgcmV0dXJuIGZpcnN0U3RlcDtcbiAgfVxufVxuIl19
@@ -42,5 +42,5 @@ class CommandSimulation {
42
42
  }
43
43
  exports.CommandSimulation = CommandSimulation;
44
44
  _a = JSII_RTTI_SYMBOL_1;
45
- CommandSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CommandSimulation", version: "0.0.68" };
45
+ CommandSimulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.CommandSimulation", version: "0.0.69" };
46
46
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWFuZC1zaW11bGF0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3NpbXVsYXRpb24vZG9jdW1lbnQvY29tbWFuZC1zaW11bGF0aW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQ0Esb0RBQWlEO0FBRWpELDZEQUFpRTtBQUVqRSx3RUFBbUc7QUFHbkcsTUFBYSxpQkFBaUI7SUFJNUIsWUFBWSxlQUFnQyxFQUFFLEtBQXNCO1FBQ2xFLElBQUksQ0FBQyxlQUFlLEdBQUcsZUFBZSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxLQUFLLEdBQUc7WUFDWCxXQUFXLEVBQUUsS0FBSyxDQUFDLFdBQVcsSUFBSSxJQUFJLGdDQUFrQixFQUFFO1lBQzFELGtCQUFrQixFQUFFLEtBQUssQ0FBQyxrQkFBa0IsSUFBSSxtQkFBUSxDQUFDLEtBQUs7U0FDL0QsQ0FBQztJQUNKLENBQUM7SUFFTSxLQUFLLENBQUMsTUFBK0I7UUFDMUMsTUFBTSxVQUFVLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxDQUFDLG1DQUFtQztRQUNoRixNQUFNLENBQUMsYUFBYSxDQUFDLEdBQUcsVUFBVSxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNqRCxNQUFNLENBQUMsa0JBQWtCLENBQUMsR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQzthQUNsRCxPQUFPLENBQUMsR0FBRyxFQUFFLEdBQUcsQ0FBQyxDQUFDLDhCQUE4QjthQUNoRCxPQUFPLENBQUMsSUFBSSxFQUFFLEdBQUcsQ0FBQyxDQUFDO1FBQ3RCLE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxHQUFHLE1BQU0sQ0FBQyxDQUFDLFFBQVEsRUFBRSxDQUFDLFFBQVEsQ0FBQyxDQUFDLEVBQUUsR0FBRyxDQUFDLENBQUM7UUFDOUUsTUFBTSxDQUFDLHlCQUF5QixDQUFDLEdBQUcsTUFBTSxHQUFHLG1DQUFtQyxDQUFDO1FBQ2pGLE9BQU8sSUFBSSwrQ0FBcUIsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxlQUFlLENBQUMsY0FBYyxFQUFFLENBQUMsRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ3ZILENBQUM7SUFFRDs7OztPQUlHO0lBQ0ssV0FBVyxDQUFDLEtBQW9CO1FBQ3RDLE1BQU0sU0FBUyxHQUFHLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUMzQixJQUFJLFlBQVksR0FBZ0IsU0FBUyxDQUFDO1FBQzFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFO1lBQ3pCLFlBQVksQ0FBQyxRQUFRLEdBQUcsQ0FBQyxDQUFDO1lBQzFCLFlBQVksQ0FBQyxtQkFBbUIsR0FBRyxLQUFLLENBQUM7WUFDekMsWUFBWSxHQUFHLENBQUMsQ0FBQztRQUNuQixDQUFDLENBQUMsQ0FBQztRQUNILE9BQU8sU0FBUyxDQUFDO0lBQ25CLENBQUM7O0FBckNILDhDQXNDQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1hbmREb2N1bWVudCB9IGZyb20gJy4uLy4uL2RvY3VtZW50L2NvbW1hbmQtZG9jdW1lbnQnO1xuaW1wb3J0IHsgUGxhdGZvcm0gfSBmcm9tICcuLi8uLi9kb21haW4vcGxhdGZvcm0nO1xuaW1wb3J0IHsgU2ltdWxhdGlvblJlc3VsdCB9IGZyb20gJy4uLy4uL2RvbWFpbi9zaW11bGF0aW9uLXJlc3VsdCc7XG5pbXBvcnQgeyBMb2dnaW5nRW52aXJvbm1lbnQgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2UvZW52aXJvbm1lbnQnO1xuaW1wb3J0IHsgQ29tbWFuZFN0ZXAgfSBmcm9tICcuLi8uLi9wYXJlbnQtc3RlcHMvY29tbWFuZC1zdGVwJztcbmltcG9ydCB7IENvbW1hbmRTdGVwU2ltdWxhdGlvbiwgUmVxdWlyZWRDb21tYW5kU2ltdWxhdGlvblByb3BzIH0gZnJvbSAnLi4vY29tbWFuZC1zdGVwLXNpbXVsYXRpb24nO1xuaW1wb3J0IHsgU2ltdWxhdGlvblByb3BzIH0gZnJvbSAnLi4vc2ltdWxhdGlvbic7XG5cbmV4cG9ydCBjbGFzcyBDb21tYW5kU2ltdWxhdGlvbiB7XG4gIHByaXZhdGUgY29tbWFuZERvY3VtZW50OiBDb21tYW5kRG9jdW1lbnQ7XG4gIHByaXZhdGUgcHJvcHM6IFJlcXVpcmVkQ29tbWFuZFNpbXVsYXRpb25Qcm9wcztcblxuICBjb25zdHJ1Y3Rvcihjb21tYW5kRG9jdW1lbnQ6IENvbW1hbmREb2N1bWVudCwgcHJvcHM6IFNpbXVsYXRpb25Qcm9wcykge1xuICAgIHRoaXMuY29tbWFuZERvY3VtZW50ID0gY29tbWFuZERvY3VtZW50O1xuICAgIHRoaXMucHJvcHMgPSB7XG4gICAgICBlbnZpcm9ubWVudDogcHJvcHMuZW52aXJvbm1lbnQgPz8gbmV3IExvZ2dpbmdFbnZpcm9ubWVudCgpLFxuICAgICAgc2ltdWxhdGlvblBsYXRmb3JtOiBwcm9wcy5zaW11bGF0aW9uUGxhdGZvcm0gPz8gUGxhdGZvcm0uTElOVVgsXG4gICAgfTtcbiAgfVxuXG4gIHB1YmxpYyBzdGFydChpbnB1dHM6IHsgW25hbWU6IHN0cmluZ106IGFueSB9KTogU2ltdWxhdGlvblJlc3VsdCB7XG4gICAgY29uc3QgZGF0ZVN0cmluZyA9IG5ldyBEYXRlKCkudG9JU09TdHJpbmcoKTsgLy8gRXhhbXBsZSAyMDIxLTEwLTA4VDA4OjQ0OjAyLjEwNlpcbiAgICBpbnB1dHNbJ2dsb2JhbDpEQVRFJ10gPSBkYXRlU3RyaW5nLnNwbGl0KCdUJylbMF07XG4gICAgaW5wdXRzWydnbG9iYWw6REFURV9USU1FJ10gPSBkYXRlU3RyaW5nLnNwbGl0KCcuJylbMF1cbiAgICAgIC5yZXBsYWNlKCdUJywgJ18nKSAvLyBFeGFtcGxlIDIwMjEtMTAtMDhfMDg6NDQ6MDJcbiAgICAgIC5yZXBsYWNlKC86L2csICcuJyk7XG4gICAgY29uc3QgcHJlZml4ID0gTWF0aC5mbG9vcihNYXRoLnJhbmRvbSgpICogOTk5OTk5KS50b1N0cmluZygpLnBhZFN0YXJ0KDYsICcwJyk7XG4gICAgaW5wdXRzWydhdXRvbWF0aW9uOkVYRUNVVElPTl9JRCddID0gcHJlZml4ICsgJy0xYTJiM2MtMWEyYjNjLTFhMmIzYzFhMmIzYzFhMmIzYyc7XG4gICAgcmV0dXJuIG5ldyBDb21tYW5kU3RlcFNpbXVsYXRpb24odGhpcy5jcmVhdGVDaGFpbih0aGlzLmNvbW1hbmREb2N1bWVudC5jb2xsZWN0ZWRTdGVwcygpKSwgdGhpcy5wcm9wcykuaW52b2tlKGlucHV0cyk7XG4gIH1cblxuICAvKipcbiAgICogQ2hhaW5zIHRoZSBzdGVwcyB0b2dldGhlciBpbiB0aGVpciBkZWZhdWx0IG9yaWVudGF0aW9uIChsaWtlIGEgbGlua2VkIGxpc3QpLlxuICAgKiBUaGUgb3JkZXIgb2Ygc3RlcHMgY2FuIGNoYW5nZSBkZXBlbmRpbmcgb24gdGhlIHByb3BlcnRpZXMgcHJvdmlkZWQgdG8gdGhlIHN0ZXBzLlxuICAgKiBAcmV0dXJucyB0aGUgZmlyc3Qgc3RlcCBvZiB0aGUgY2hhaW5cbiAgICovXG4gIHByaXZhdGUgY3JlYXRlQ2hhaW4oc3RlcHM6IENvbW1hbmRTdGVwW10pOiBDb21tYW5kU3RlcCB7XG4gICAgY29uc3QgZmlyc3RTdGVwID0gc3RlcHNbMF07XG4gICAgbGV0IHByZXZpb3VzU3RlcDogQ29tbWFuZFN0ZXAgPSBmaXJzdFN0ZXA7XG4gICAgc3RlcHMuc2xpY2UoMSkuZm9yRWFjaChzID0+IHtcbiAgICAgIHByZXZpb3VzU3RlcC5uZXh0U3RlcCA9IHM7XG4gICAgICBwcmV2aW91c1N0ZXAuYWxsU3RlcHNJbkV4ZWN1dGlvbiA9IHN0ZXBzO1xuICAgICAgcHJldmlvdXNTdGVwID0gcztcbiAgICB9KTtcbiAgICByZXR1cm4gZmlyc3RTdGVwO1xuICB9XG59XG4iXX0=
@@ -83,5 +83,5 @@ class Simulation {
83
83
  }
84
84
  exports.Simulation = Simulation;
85
85
  _a = JSII_RTTI_SYMBOL_1;
86
- Simulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.Simulation", version: "0.0.68" };
86
+ Simulation[_a] = { fqn: "@cdklabs/cdk-ssm-documents.Simulation", version: "0.0.69" };
87
87
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2ltdWxhdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9zaW11bGF0aW9uL3NpbXVsYXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFHQSxtREFBK0M7QUFHL0MsMkRBQXVEO0FBWXZELDRFQUF3RTtBQUN4RSxzRUFBa0U7QUF1R2xFLE1BQWEsVUFBVTtJQUVkLE1BQU0sQ0FBQyxZQUFZLENBQUMsUUFBNEIsRUFBRSxLQUFnQztRQUN2RixPQUFPLElBQUksVUFBVSxDQUFDLFFBQVEsRUFBRSxLQUFLLENBQUMsQ0FBQztJQUN6QyxDQUFDO0lBRU0sTUFBTSxDQUFDLFNBQVMsQ0FBQyxRQUF5QixFQUFFLEtBQTZCO1FBQzlFLE9BQU8sSUFBSSxVQUFVLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBQ3pDLENBQUM7SUFLRCxZQUFvQixRQUFxQixFQUFFLEtBQXNCO1FBQy9ELElBQUksQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO1FBQ3pCLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7SUFHRDs7Ozs7Ozs7OztPQVVHO0lBQ0ksUUFBUSxDQUFDLE1BQStCO1FBQzdDLElBQUksQ0FBQyxRQUFRLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsRUFBRTtZQUN6QyxJQUFJLE1BQU0sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLElBQUksU0FBUyxFQUFFLENBQUM7Z0JBQ3ZDLE1BQU0sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLEdBQUcsUUFBUSxDQUFDLFlBQVksQ0FBQztnQkFDOUMsSUFBSSxRQUFRLENBQUMsWUFBWSxJQUFJLFNBQVMsRUFBRSxDQUFDO29CQUN2QyxNQUFNLElBQUksS0FBSyxDQUFDLDBCQUEwQixRQUFRLENBQUMsSUFBSSxvQ0FBb0MsQ0FBQyxDQUFDO2dCQUMvRixDQUFDO1lBQ0gsQ0FBQztRQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0gsS0FBSyxJQUFJLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztZQUN2QixNQUFNLEtBQUssR0FBRyxNQUFNLENBQUMsR0FBRyxDQUFDLENBQUM7WUFDMUIsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLFFBQVEsQ0FBQyxFQUFFLENBQUMsUUFBUSxDQUFDLElBQUksSUFBSSxHQUFHLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztZQUN6RixJQUFJLFlBQVksSUFBSSxTQUFTLEVBQUUsQ0FBQztnQkFDOUIsTUFBTSxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsR0FBRyxJQUFJLEtBQUssOENBQThDLENBQUMsQ0FBQztZQUMvRyxDQUFDO1lBQ0QsSUFBSSxDQUFDO2dCQUNILFlBQVksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDL0IsQ0FBQztZQUFDLE9BQU8sQ0FBQyxFQUFFLENBQUM7Z0JBQ1gsTUFBTSxPQUFPLEdBQUksQ0FBVyxDQUFDLE9BQU8sQ0FBQztnQkFDckMsTUFBTSxJQUFJLEtBQUssQ0FBQyxpQ0FBaUMsR0FBRyxJQUFJLEtBQUssd0JBQXdCLE9BQU8sRUFBRSxDQUFDLENBQUM7WUFDbEcsQ0FBQztRQUNILENBQUM7UUFDRCxNQUFNLGdCQUFnQixHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDNUMsSUFBSSxZQUFZLEdBQUcsRUFBRSxDQUFDO1FBQ3RCLElBQUksZ0JBQWdCLENBQUMsWUFBWSxJQUFJLDRCQUFZLENBQUMsT0FBTyxFQUFFLENBQUM7WUFDMUQsWUFBWSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUMsRUFBRTtnQkFDdEQsTUFBTSxhQUFhLEdBQUcsQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLElBQUksRUFBRSxDQUFDLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxDQUFDO2dCQUN2RSxJQUFJLENBQUMsSUFBSSxvQkFBUSxDQUFDLFNBQVMsQ0FBQyxVQUFVLENBQUMsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLEVBQUUsQ0FBQztvQkFDcEUsTUFBTSxJQUFJLEtBQUssQ0FBQyxtQkFBbUIsU0FBUyxDQUFDLElBQUksdUJBQXVCLFNBQVMsQ0FBQyxVQUFVLEtBQUssYUFBYSxFQUFFLENBQUMsQ0FBQztnQkFDcEgsQ0FBQztnQkFDRCxPQUFPLGFBQWEsQ0FBQztZQUN2QixDQUFDLENBQUMsQ0FBQztRQUNMLENBQUM7UUFDRCxPQUFPLEVBQUUsR0FBRyxFQUFFLGVBQWUsRUFBRSxZQUFZLEVBQUUsRUFBRSxHQUFHLGdCQUFnQixFQUFFLENBQUM7SUFDdkUsQ0FBQztJQUVEOzs7O09BSUc7SUFDTyxLQUFLLENBQUMsTUFBK0I7UUFDN0MsUUFBUSxJQUFJLENBQUMsUUFBUSxDQUFDLFlBQVksRUFBRSxFQUFFLENBQUM7WUFDckMsS0FBSyxDQUFDLFlBQVksQ0FBQztnQkFDakIsT0FBTyxJQUFJLDRDQUFvQixDQUFzQixJQUFJLENBQUMsUUFBUSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUM7WUFDaEcsS0FBSyxDQUFDLFNBQVMsQ0FBQztnQkFDZCxPQUFPLElBQUksc0NBQWlCLENBQW1CLElBQUksQ0FBQyxRQUFRLEVBQUUsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUMxRjtnQkFDRSxNQUFNLElBQUksS0FBSyxDQUFDLGdEQUFnRCxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsWUFBWSxFQUFFLENBQUMsQ0FBQztRQUNyRyxDQUFDO0lBQ0gsQ0FBQzs7QUFoRkgsZ0NBbUZDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXV0b21hdGlvbkRvY3VtZW50IH0gZnJvbSAnLi4vZG9jdW1lbnQvYXV0b21hdGlvbi1kb2N1bWVudCc7XG5pbXBvcnQgeyBDb21tYW5kRG9jdW1lbnQgfSBmcm9tICcuLi9kb2N1bWVudC9jb21tYW5kLWRvY3VtZW50JztcbmltcG9ydCB7IFNzbURvY3VtZW50IH0gZnJvbSAnLi4vZG9jdW1lbnQvc3NtLWRvY3VtZW50JztcbmltcG9ydCB7IERhdGFUeXBlIH0gZnJvbSAnLi4vZG9tYWluL2RhdGEtdHlwZSc7XG5pbXBvcnQgeyBEb2N1bWVudFJlc3VsdCB9IGZyb20gJy4uL2RvbWFpbi9kb2N1bWVudC1yZXN1bHQnO1xuaW1wb3J0IHsgUGxhdGZvcm0gfSBmcm9tICcuLi9kb21haW4vcGxhdGZvcm0nO1xuaW1wb3J0IHsgUmVzcG9uc2VDb2RlIH0gZnJvbSAnLi4vZG9tYWluL3Jlc3BvbnNlLWNvZGUnO1xuaW1wb3J0IHsgU2ltdWxhdGlvblJlc3VsdCB9IGZyb20gJy4uL2RvbWFpbi9zaW11bGF0aW9uLXJlc3VsdCc7XG5pbXBvcnQgeyBJQXBwcm92ZUhvb2sgfSBmcm9tICcuLi9pbnRlcmZhY2UvYXBwcm92ZS1ob29rJztcbmltcG9ydCB7IElBd3NJbnZva2VyIH0gZnJvbSAnLi4vaW50ZXJmYWNlL2F3cy1pbnZva2VyJztcbmltcG9ydCB7IElFbnZpcm9ubWVudCB9IGZyb20gJy4uL2ludGVyZmFjZS9lbnZpcm9ubWVudCc7XG5pbXBvcnQgeyBJRXhlY3V0ZUF1dG9tYXRpb25Ib29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL2V4ZWN1dGUtYXV0b21hdGlvbi1ob29rJztcbmltcG9ydCB7IElPYnNlcnZlciB9IGZyb20gJy4uL2ludGVyZmFjZS9vYnNlcnZlcic7XG5pbXBvcnQgeyBJUGF1c2VIb29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3BhdXNlLWhvb2snO1xuaW1wb3J0IHsgSVJ1bkNvbW1hbmRIb29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3J1bi1jb21tYW5kLWhvb2snO1xuaW1wb3J0IHsgSVNsZWVwSG9vayB9IGZyb20gJy4uL2ludGVyZmFjZS9zbGVlcC1ob29rJztcbmltcG9ydCB7IElXZWJob29rIH0gZnJvbSAnLi4vaW50ZXJmYWNlL3dlYmhvb2snO1xuaW1wb3J0IHsgSVBhcmFtZXRlclJlc29sdmVyIH0gZnJvbSAnLi4vcGFyZW50LXN0ZXBzL2F1dG9tYXRpb24vY3JlYXRlLXN0YWNrLXN0ZXAnO1xuaW1wb3J0IHsgQXV0b21hdGlvblNpbXVsYXRpb24gfSBmcm9tICcuL2RvY3VtZW50L2F1dG9tYXRpb24tc2ltdWxhdGlvbic7XG5pbXBvcnQgeyBDb21tYW5kU2ltdWxhdGlvbiB9IGZyb20gJy4vZG9jdW1lbnQvY29tbWFuZC1zaW11bGF0aW9uJztcblxuZXhwb3J0IGludGVyZmFjZSBBdXRvbWF0aW9uU2ltdWxhdGlvblByb3BzIHtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBIb29rIHRvIGluamVjdCBhbHRlcm5hdGUgSVNsZWVwZXIgKHRvIG1vY2sgdGhlIHNsZWVwIGJldHdlZW4gZmFpbGVkIGludm9jYXRpb25zKS5cbiAgICogQGRlZmF1bHQgLSByZWFsbHkgcGVyZm9ybSBzbGVlcCB1c2luZyBTbGVlcGVySW1wbCBjbGFzcy5cbiAgICovXG4gIHJlYWRvbmx5IHNsZWVwSG9vaz86IElTbGVlcEhvb2s7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgVXNlIHRoaXMgYXMgYSBob29rIHRvIGluamVjdCBhbiBhbHRlcm5hdGUgSUF3c0ludm9rZXIgKGZvciBtb2NraW5nIHRoZSBBV1MgQVBJIGNhbGwpLlxuICAgKiBAZGVmYXVsdCAtIHdpbGwgcGVyZm9ybSBhIHJlYWwgaW52b2NhdGlvbiBvZiB0aGUgSmF2YVNjcmlwdCBBV1MgU0RLIHVzaW5nIFJlZmxlY3RpdmVBd3NJbnZva2VyIGNsYXNzLlxuICAgKi9cbiAgcmVhZG9ubHkgYXdzSW52b2tlcj86IElBd3NJbnZva2VyO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIFBhdXNlIGhvb2sgdG8gYmUgY2FsbGVkIHRvIHBhdXNlIHRoZSBleGVjdXRpb24uXG4gICAqIFRvIG1vY2sgdGhpcyBpbXBsZW1lbmF0aW9uIGVpdGhlciBpbmplY3QgYW4gaW5zdGFuY2Ugb2YgSVBhdXNlSG9vayBvciB1c2UgdGhlIHByb3ZpZGVkIE1vY2tQYXVzZSBjbGFzcy5cbiAgICogQGRlZmF1bHQgUGF1c2VIb29rIGluc3RhbmNlLiBQYXVzZUhvb2sgbWF5IG5vdCB3b3JrIGluIGV4cG9ydGVkIEpTSUkgbGFuZ3VhZ2VzLiBPdmVycmlkZSBpbnRlcmZhY2UgYXMgbmVlZGVkLlxuICAgKi9cbiAgcmVhZG9ubHkgcGF1c2VIb29rPzogSVBhdXNlSG9vaztcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBBbGxvd3MgZm9yIG9ic2VydmluZyB0aGUgaW5wdXQgdG8gc3RlcHMgYXMgdGhleSBydW4uXG4gICAqIEBkZWZhdWx0IE5vb3BPYnNlcnZlclxuICAgKi9cbiAgcmVhZG9ubHkgaW5wdXRPYnNlcnZlcj86IElPYnNlcnZlcjtcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBBbGxvd3MgZm9yIG9ic2VydmluZyB0aGUgb3V0cHV0IG9mIHN0ZXBzIGFzIHRoZXkgcnVuLlxuICAgKiBAZGVmYXVsdCBOb29wT2JzZXJ2ZXJcbiAgICovXG4gIHJlYWRvbmx5IG91dHB1dE9ic2VydmVyPzogSU9ic2VydmVyO1xuXG4gIC8qKlxuICAgKiAoT3B0aW9uYWwpIEFwcHJvdmUgaG9vayB0byBiZSBjYWxsZWQgdG8gcGF1c2UgdGhlIGV4ZWN1dGlvbi5cbiAgICogVG8gbW9jayB0aGlzIGltcGxlbWVudGF0aW9uIGVpdGhlciBpbmplY3QgYW4gaW5zdGFuY2Ugb2YgSUFwcHJvdmVIb29rIG9yIHVzZSB0aGUgcHJvdmlkZWQgTW9ja0FwcHJvdmUgY2xhc3MuXG4gICAqIEBkZWZhdWx0IEFwcHJvdmVIb29rIGluc3RhbmNlLiBBcHByb3ZlSG9vayBtYXkgbm90IHdvcmsgaW4gZXhwb3J0ZWQgSlNJSSBsYW5ndWFnZXMuIE92ZXJyaWRlIGludGVyZmFjZSBhcyBuZWVkZWQuXG4gICAqL1xuICByZWFkb25seSBhcHByb3ZlSG9vaz86IElBcHByb3ZlSG9vaztcblxuICAvKipcbiAgICogKE9wdGlvbmFsKSBSZXNvbHZlciBmb3Igc2VjdXJlIHN0cmluZ3MgaW4gcGFyYW1ldGVycy5cbiAgICogUmVxdWlyZWQgdG8gc2ltdWxhdGUgaWYgdXNpbmcgdG9rZW5zIGluIHBhcmFtZXRlcnMgaW5wdXQuXG4gICAqIEBkZWZhdWx0IC0gVHJlYXRzIHBhcmFtZXRlcnMgYXMgbGl0ZXJhbFxuICAgKi9cbiAgcmVhZG9ubHkgcGFyYW1ldGVyUmVzb2x2ZXI/OiBJUGFyYW1ldGVyUmVzb2x2ZXI7XG5cbiAgLyoqXG4gICAqIChPcHRpb25hbCkgSG9vayBmb3Igc2ltdWxhdGluZyBhd3M6aW52b2tlV2ViaG9va1xuICAgKiBAZGVmYXVsdCAtIFJldHVybnMgMjA0IHdpdGggYW4gZW1wdHkgcmVzcG9uc2VcbiAgICovXG4gIHJlYWRvbmx5IHdlYmhvb2s/OiBJV2ViaG9vaztcblxuICAvKipcbiAgICogSG9vayBmb3Igc2ltdWxhdGluZyBhd3M6cnVuQ29tbWFuZC5cbiAgICogQGRlZmF1bHQgLSBVc2VzIEFXUyBBUEkgdG8gZXhlY3V0ZSB0aGUgZG9jdW1lbnQgcmVtb3RlbHkuXG4gICAqL1xuICByZWFkb25seSBydW5Db21tYW5kSG9vaz86IElSdW5Db21tYW5kSG9vaztcblxuICAvKipcbiAgICogSG9vayBmb3Igc2ltdWxhdGluZyBhd3M6ZXhlY3V0ZUF1dG9tYXRpb24uXG4gICAqIEBkZWZhdWx0IC0gVXNlcyBBV1MgQVBJIHRvIGV4ZWN1dGUgdGhlIGRvY3VtZW50IHJlbW90ZWx5LlxuICAgKi9cbiAgcmVhZG9ubHkgZXhlY3V0ZUF1dG9tYXRpb25Ib29rPzogSUV4ZWN1dGVBdXRvbWF0aW9uSG9vaztcbn1cblxuXG5leHBvcnQgaW50ZXJmYWNlIENvbW1hbmRTaW11bGF0aW9uUHJvcHMge1xuICAvKipcbiAgICogKE9wdGlvbmFsKSBTcGVjaWZ5IGhlcmUgdGhlIGVudmlyb25tZW50IGluIHdoaWNoIHRvIGV4ZWN1dGUgdGhlIHNjcmlwdHMuXG4gICAqIFVzZSB0aGUgRG9ja2VyRW52aXJvbm1lbnQgdG8gZXhlY3V0ZSB0aGUgY29tbWFuZHMgaW5zaWRlIHRoZSBkb2NrZXIuXG4gICAqIFlvdSBjYW4gYWx0ZXJuYXRpdmVseSB1c2UgdGhlIExvZ2dpbmdFbnZpcm9ubWVudCB3aGljaCBzaW1wbHkgbG9ncyB0aGUgY29tbWFuZHNcbiAgICogb3IgTW9ja0Vudmlyb25tZW50IHdoaWNoIHNhdmVzIHRoZW0gZm9yIHZhbGlkYXRpb24uXG4gICAqIEBkZWZhdWx0IExvZ2dpbmdFbnZpcm9ubWVudFxuICAgKi9cbiAgcmVhZG9ubHkgZW52aXJvbm1lbnQ/OiBJRW52aXJvbm1lbnQ7XG5cbiAgLyoqXG4gICAqIFRoZSBQbGF0Zm9ybSB1c2VkIGluIGV4ZWN1dGluZyB0aGUgY29tbWFuZCBzdGVwLlxuICAgKi9cbiAgcmVhZG9ubHkgc2ltdWxhdGlvblBsYXRmb3JtOiBQbGF0Zm9ybTtcbn1cblxuXG4vKipcbiAqIFVuaXZlcnNlIG9mIEF1dG9tYXRpb24gYW5kIENvbW1hbmQgc2ltdWxhdGlvbiBwcm9wc1xuICovXG5leHBvcnQgaW50ZXJmYWNlIFNpbXVsYXRpb25Qcm9wcyB7XG4gIHJlYWRvbmx5IHNsZWVwSG9vaz86IElTbGVlcEhvb2s7XG4gIHJlYWRvbmx5IGF3c0ludm9rZXI/OiBJQXdzSW52b2tlcjtcbiAgcmVhZG9ubHkgcGF1c2VIb29rPzogSVBhdXNlSG9vaztcbiAgcmVhZG9ubHkgaW5wdXRPYnNlcnZlcj86IElPYnNlcnZlcjtcbiAgcmVhZG9ubHkgb3V0cHV0T2JzZXJ2ZXI/OiBJT2JzZXJ2ZXI7XG4gIHJlYWRvbmx5IGFwcHJvdmVIb29rPzogSUFwcHJvdmVIb29rO1xuICByZWFkb25seSBwYXJhbWV0ZXJSZXNvbHZlcj86IElQYXJhbWV0ZXJSZXNvbHZlcjtcbiAgcmVhZG9ubHkgd2ViaG9vaz86IElXZWJob29rO1xuICByZWFkb25seSBydW5Db21tYW5kSG9vaz86IElSdW5Db21tYW5kSG9vaztcbiAgcmVhZG9ubHkgZW52aXJvbm1lbnQ/OiBJRW52aXJvbm1lbnQ7XG4gIHJlYWRvbmx5IHNpbXVsYXRpb25QbGF0Zm9ybT86IFBsYXRmb3JtO1xufVxuXG5leHBvcnQgY2xhc3MgU2ltdWxhdGlvbiB7XG5cbiAgcHVibGljIHN0YXRpYyBvZkF1dG9tYXRpb24oZG9jdW1lbnQ6IEF1dG9tYXRpb25Eb2N1bWVudCwgcHJvcHM6IEF1dG9tYXRpb25TaW11bGF0aW9uUHJvcHMpIHtcbiAgICByZXR1cm4gbmV3IFNpbXVsYXRpb24oZG9jdW1lbnQsIHByb3BzKTtcbiAgfVxuXG4gIHB1YmxpYyBzdGF0aWMgb2ZDb21tYW5kKGRvY3VtZW50OiBDb21tYW5kRG9jdW1lbnQsIHByb3BzOiBDb21tYW5kU2ltdWxhdGlvblByb3BzKSB7XG4gICAgcmV0dXJuIG5ldyBTaW11bGF0aW9uKGRvY3VtZW50LCBwcm9wcyk7XG4gIH1cblxuICByZWFkb25seSBkb2N1bWVudDogU3NtRG9jdW1lbnQ7XG4gIHJlYWRvbmx5IHByb3BzOiBTaW11bGF0aW9uUHJvcHM7XG5cbiAgcHJpdmF0ZSBjb25zdHJ1Y3Rvcihkb2N1bWVudDogU3NtRG9jdW1lbnQsIHByb3BzOiBTaW11bGF0aW9uUHJvcHMpIHtcbiAgICB0aGlzLmRvY3VtZW50ID0gZG9jdW1lbnQ7XG4gICAgdGhpcy5wcm9wcyA9IHByb3BzO1xuICB9XG5cblxuICAvKipcbiAgICogU3ludGhlc2l6ZSBiZWZvcmUgY2FsbGluZyB0aGlzIGZ1bmN0aW9uIVxuICAgKiBZb3UgY2FuIHVzZSB0aGlzIHRvIFN5bnRoZXNpemU6IFN5bnRoVXRpbHMuc3ludGhlc2l6ZShzdGFjayk7XG4gICAqXG4gICAqIEV4ZWN1dGVzIHRoZSBTU00gRG9jdW1lbnQgaW4gc2ltdWxhdGlvbiBtb2RlLlxuICAgKiBUaGlzIG1ldGhvZCBET0VTIE5PVCByZXN1bHQgaW4gaW52b2NhdGlvbiBvZiBTU00gQVBJcy5cbiAgICogUmF0aGVyLCBhbGwgc3RlcHMgYXJlIGV4ZWN1dGVkIGxvY2FsbHkgYW5kIG1pbWljIHRoZSBiZWhhdmlvciBvZiBTU00uXG4gICAqIElmIGFueSBpbnB1dHMgYXJlIG5vdCBwcm92aWRlZCBpbiB0aGlzIGZ1bmN0aW9uLCB0aGUgc3BlY2lmaWVkIGRlZmF1bHRzIGZvciB0aGUgaW5wdXRzIHdpbGwgYmUgdXNlZC5cbiAgICogQHBhcmFtIGlucHV0cyB0aGUgaW5wdXRzIHRvIGZlZWQgaW50byB0aGUgc2ltdWxhdGVkIGV4ZWN1dGlvbi5cbiAgICogQHJldHVybnMgdGhlIG91dHB1dHMgb2YgYWxsIHRoZSBleGVjdXRlZCBzdGVwcy5cbiAgICovXG4gIHB1YmxpYyBzaW11bGF0ZShpbnB1dHM6IHsgW25hbWU6IHN0cmluZ106IGFueSB9KTogRG9jdW1lbnRSZXN1bHQge1xuICAgIHRoaXMuZG9jdW1lbnQuZG9jSW5wdXRzLmZvckVhY2goZG9jSW5wdXQgPT4ge1xuICAgICAgaWYgKGlucHV0c1tkb2NJbnB1dC5uYW1lXSA9PSB1bmRlZmluZWQpIHtcbiAgICAgICAgaW5wdXRzW2RvY0lucHV0Lm5hbWVdID0gZG9jSW5wdXQuZGVmYXVsdFZhbHVlO1xuICAgICAgICBpZiAoZG9jSW5wdXQuZGVmYXVsdFZhbHVlID09IHVuZGVmaW5lZCkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgVmFsdWUgbm90IHByb3ZpZGVkIGZvciAke2RvY0lucHV0Lm5hbWV9IGFuZCBubyBkZWZhdWx0IHZhbHVlIHdhcyBwcm92aWRlZGApO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfSk7XG4gICAgZm9yIChsZXQga2V5IGluIGlucHV0cykge1xuICAgICAgY29uc3QgdmFsdWUgPSBpbnB1dHNba2V5XTtcbiAgICAgIGNvbnN0IG1hdGNoZWRJbnB1dCA9IHRoaXMuZG9jdW1lbnQuZG9jSW5wdXRzLmZpbHRlcihkb2NJbnB1dCA9PiBkb2NJbnB1dC5uYW1lID09IGtleSlbMF07XG4gICAgICBpZiAobWF0Y2hlZElucHV0ID09IHVuZGVmaW5lZCkge1xuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoYFZhbHVlIHByb3ZpZGVkIHRvIHNpbXVsYXRpb24geyR7a2V5fToke3ZhbHVlfX0gaXMgbm90IGEgc3VwcG9ydGVkIGlucHV0IGZvciB0aGlzIGRvY3VtZW50YCk7XG4gICAgICB9XG4gICAgICB0cnkge1xuICAgICAgICBtYXRjaGVkSW5wdXQudmFsaWRhdGUodmFsdWUpO1xuICAgICAgfSBjYXRjaCAoZSkge1xuICAgICAgICBjb25zdCBtZXNzYWdlID0gKGUgYXMgRXJyb3IpLm1lc3NhZ2U7XG4gICAgICAgIHRocm93IG5ldyBFcnJvcihgVmFsdWUgcHJvdmlkZWQgdG8gc2ltdWxhdGlvbiB7JHtrZXl9OiR7dmFsdWV9fSBmYWlsZWQgdmFsaWRhdGlvbjogJHttZXNzYWdlfWApO1xuICAgICAgfVxuICAgIH1cbiAgICBjb25zdCBzaW11bGF0aW9uUmVzdWx0ID0gdGhpcy5zdGFydChpbnB1dHMpO1xuICAgIHZhciBvdXRwdXRWYWx1ZXMgPSBbXTtcbiAgICBpZiAoc2ltdWxhdGlvblJlc3VsdC5yZXNwb25zZUNvZGUgPT0gUmVzcG9uc2VDb2RlLlNVQ0NFU1MpIHtcbiAgICAgIG91dHB1dFZhbHVlcyA9IHRoaXMuZG9jdW1lbnQuZG9jT3V0cHV0cy5tYXAoZG9jT3V0cHV0ID0+IHtcbiAgICAgICAgY29uc3QgdmFsdWVPZk91dHB1dCA9IChzaW11bGF0aW9uUmVzdWx0Lm91dHB1dHMgPz8ge30pW2RvY091dHB1dC5uYW1lXTtcbiAgICAgICAgaWYgKCFuZXcgRGF0YVR5cGUoZG9jT3V0cHV0Lm91dHB1dFR5cGUpLnZhbGlkYXRlVHlwZSh2YWx1ZU9mT3V0cHV0KSkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcihgRG9jdW1lbnQgb3V0cHV0ICR7ZG9jT3V0cHV0Lm5hbWV9IGRpZCBub3QgbWF0Y2ggdHlwZSAke2RvY091dHB1dC5vdXRwdXRUeXBlfTogJHt2YWx1ZU9mT3V0cHV0fWApO1xuICAgICAgICB9XG4gICAgICAgIHJldHVybiB2YWx1ZU9mT3V0cHV0O1xuICAgICAgfSk7XG4gICAgfVxuICAgIHJldHVybiB7IC4uLnsgZG9jdW1lbnRPdXRwdXRzOiBvdXRwdXRWYWx1ZXMgfSwgLi4uc2ltdWxhdGlvblJlc3VsdCB9O1xuICB9XG5cbiAgLyoqXG4gICAqIERlbGVnYXRlcyB0aGUgZXhlY3V0aW9uIG9mIHRoZSBEb2N1bWVudCB0byB0aGUgc3ViY2xhc3MgKEF1dG9tYXRpb24sIGV0YykuXG4gICAqIEBwYXJhbSBpbnB1dHMgYSBtZXJnZSBvZiB0aGUgZGVmaW5lZCBpbnB1dHMgdG8gdGhlIGRvY3VtZW50IGFuZCB0aGUgZGVmYXVsdCB2YWx1ZXMgaWYgbm90IHN1cHBsaWVkLlxuICAgKiBAcmV0dXJucyB0aGUgb3V0cHV0cyB0aGF0IHdlcmUgZW1pdHRlZCBmcm9tIGFsbCBvZiB0aGUgc3RlcHMuXG4gICAqL1xuICBwcm90ZWN0ZWQgc3RhcnQoaW5wdXRzOiB7IFtuYW1lOiBzdHJpbmddOiBhbnkgfSk6IFNpbXVsYXRpb25SZXN1bHQge1xuICAgIHN3aXRjaCAodGhpcy5kb2N1bWVudC5kb2N1bWVudFR5cGUoKSkge1xuICAgICAgY2FzZSAoJ0F1dG9tYXRpb24nKTpcbiAgICAgICAgcmV0dXJuIG5ldyBBdXRvbWF0aW9uU2ltdWxhdGlvbig8QXV0b21hdGlvbkRvY3VtZW50PiB0aGlzLmRvY3VtZW50LCB0aGlzLnByb3BzKS5zdGFydChpbnB1dHMpO1xuICAgICAgY2FzZSAoJ0NvbW1hbmQnKTpcbiAgICAgICAgcmV0dXJuIG5ldyBDb21tYW5kU2ltdWxhdGlvbig8Q29tbWFuZERvY3VtZW50PiB0aGlzLmRvY3VtZW50LCB0aGlzLnByb3BzKS5zdGFydChpbnB1dHMpO1xuICAgICAgZGVmYXVsdDpcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKCdObyBzaW11bGF0aW9uIGF2YWlsYWJsZSBmb3IgZG9jdW1lbnQgb2YgdHlwZTogJyArIHRoaXMuZG9jdW1lbnQuZG9jdW1lbnRUeXBlKCkpO1xuICAgIH1cbiAgfVxuXG5cbn0iXX0=
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/checksums",
3
- "version": "3.1000.12",
3
+ "version": "3.1000.16",
4
4
  "description": "Checksum algorithms and flexible checksums middleware for the AWS SDK",
5
5
  "scripts": {
6
6
  "benchmark": "node ./scripts/checksum-perf.mjs",
@@ -78,10 +78,10 @@
78
78
  },
79
79
  "license": "Apache-2.0",
80
80
  "dependencies": {
81
- "@aws-sdk/core": "^3.974.27",
82
- "@aws-sdk/types": "^3.973.15",
83
- "@smithy/core": "^3.29.0",
84
- "@smithy/types": "^4.15.1",
81
+ "@aws-sdk/core": "^3.975.1",
82
+ "@aws-sdk/types": "^3.974.0",
83
+ "@smithy/core": "^3.29.2",
84
+ "@smithy/types": "^4.16.0",
85
85
  "tslib": "^2.6.2"
86
86
  },
87
87
  "devDependencies": {
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1078.0";
72
+ var version = "3.1084.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudformation",
3
3
  "description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
4
- "version": "3.1079.0",
4
+ "version": "3.1085.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -21,13 +21,13 @@
21
21
  "module": "./dist-es/index.js",
22
22
  "sideEffects": false,
23
23
  "dependencies": {
24
- "@aws-sdk/core": "^3.974.27",
25
- "@aws-sdk/credential-provider-node": "^3.972.62",
26
- "@aws-sdk/types": "^3.973.15",
27
- "@smithy/core": "^3.29.0",
28
- "@smithy/fetch-http-handler": "^5.6.2",
29
- "@smithy/node-http-handler": "^4.9.2",
30
- "@smithy/types": "^4.15.1",
24
+ "@aws-sdk/core": "^3.975.1",
25
+ "@aws-sdk/credential-provider-node": "^3.972.66",
26
+ "@aws-sdk/types": "^3.974.0",
27
+ "@smithy/core": "^3.29.2",
28
+ "@smithy/fetch-http-handler": "^5.6.4",
29
+ "@smithy/node-http-handler": "^4.9.4",
30
+ "@smithy/types": "^4.16.0",
31
31
  "tslib": "^2.6.2"
32
32
  },
33
33
  "devDependencies": {
@@ -70,7 +70,7 @@ const commonParams = {
70
70
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
71
71
  };
72
72
 
73
- var version = "3.1078.0";
73
+ var version = "3.1084.0";
74
74
  var packageInfo = {
75
75
  version: version};
76
76
 
@@ -393,6 +393,8 @@ const _ACl = "AlarmContributors";
393
393
  const _AD = "AnomalyDetector";
394
394
  const _ADC = "AnomalyDetectorConfiguration";
395
395
  const _ADETR = "AnomalyDetectorExcludedTimeRanges";
396
+ const _ADI = "AnomalyDetectorId";
397
+ const _ADIn = "AnomalyDetectorIds";
396
398
  const _ADKK = "AssociateDatasetKmsKey";
397
399
  const _ADKKI = "AssociateDatasetKmsKeyInput";
398
400
  const _ADKKO = "AssociateDatasetKmsKeyOutput";
@@ -948,8 +950,8 @@ var AlarmPromQLCriteria$ = [3, n0, _APQLC,
948
950
  ];
949
951
  var AnomalyDetector$ = [3, n0, _AD,
950
952
  0,
951
- [_N, _MN, _D, _St, _C, _SV, _MC, _SMAD, _MMAD],
952
- [0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, 0, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
953
+ [_ADI, _N, _MN, _D, _St, _C, _SV, _MC, _SMAD, _MMAD],
954
+ [0, 0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, 0, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
953
955
  ];
954
956
  var AnomalyDetectorConfiguration$ = [3, n0, _ADC,
955
957
  0,
@@ -998,8 +1000,8 @@ var DeleteAlarmsInput$ = [3, n0, _DAI,
998
1000
  ];
999
1001
  var DeleteAnomalyDetectorInput$ = [3, n0, _DADI,
1000
1002
  0,
1001
- [_N, _MN, _D, _St, _SMAD, _MMAD],
1002
- [0, 0, () => Dimensions, 0, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
1003
+ [_ADI, _N, _MN, _D, _St, _SMAD, _MMAD],
1004
+ [0, 0, 0, () => Dimensions, 0, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
1003
1005
  ];
1004
1006
  var DeleteAnomalyDetectorOutput$ = [3, n0, _DADO,
1005
1007
  0,
@@ -1078,8 +1080,8 @@ var DescribeAlarmsOutput$ = [3, n0, _DAO,
1078
1080
  ];
1079
1081
  var DescribeAnomalyDetectorsInput$ = [3, n0, _DADIe,
1080
1082
  0,
1081
- [_NT, _MRa, _N, _MN, _D, _ADT],
1082
- [0, 1, 0, 0, () => Dimensions, 64 | 0]
1083
+ [_ADIn, _NT, _MRa, _N, _MN, _D, _ADT],
1084
+ [64 | 0, 0, 1, 0, 0, () => Dimensions, 64 | 0]
1083
1085
  ];
1084
1086
  var DescribeAnomalyDetectorsOutput$ = [3, n0, _DADOe,
1085
1087
  0,
@@ -1438,8 +1440,8 @@ var PutAnomalyDetectorInput$ = [3, n0, _PADI,
1438
1440
  ];
1439
1441
  var PutAnomalyDetectorOutput$ = [3, n0, _PADO,
1440
1442
  0,
1441
- [],
1442
- []
1443
+ [_ADI],
1444
+ [0]
1443
1445
  ];
1444
1446
  var PutCompositeAlarmInput$ = [3, n0, _PCAI,
1445
1447
  0,
@@ -10,6 +10,8 @@ const _ACl = "AlarmContributors";
10
10
  const _AD = "AnomalyDetector";
11
11
  const _ADC = "AnomalyDetectorConfiguration";
12
12
  const _ADETR = "AnomalyDetectorExcludedTimeRanges";
13
+ const _ADI = "AnomalyDetectorId";
14
+ const _ADIn = "AnomalyDetectorIds";
13
15
  const _ADKK = "AssociateDatasetKmsKey";
14
16
  const _ADKKI = "AssociateDatasetKmsKeyInput";
15
17
  const _ADKKO = "AssociateDatasetKmsKeyOutput";
@@ -568,8 +570,8 @@ export var AlarmPromQLCriteria$ = [3, n0, _APQLC,
568
570
  ];
569
571
  export var AnomalyDetector$ = [3, n0, _AD,
570
572
  0,
571
- [_N, _MN, _D, _St, _C, _SV, _MC, _SMAD, _MMAD],
572
- [0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, 0, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
573
+ [_ADI, _N, _MN, _D, _St, _C, _SV, _MC, _SMAD, _MMAD],
574
+ [0, 0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, 0, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
573
575
  ];
574
576
  export var AnomalyDetectorConfiguration$ = [3, n0, _ADC,
575
577
  0,
@@ -618,8 +620,8 @@ export var DeleteAlarmsInput$ = [3, n0, _DAI,
618
620
  ];
619
621
  export var DeleteAnomalyDetectorInput$ = [3, n0, _DADI,
620
622
  0,
621
- [_N, _MN, _D, _St, _SMAD, _MMAD],
622
- [0, 0, () => Dimensions, 0, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
623
+ [_ADI, _N, _MN, _D, _St, _SMAD, _MMAD],
624
+ [0, 0, 0, () => Dimensions, 0, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
623
625
  ];
624
626
  export var DeleteAnomalyDetectorOutput$ = [3, n0, _DADO,
625
627
  0,
@@ -698,8 +700,8 @@ export var DescribeAlarmsOutput$ = [3, n0, _DAO,
698
700
  ];
699
701
  export var DescribeAnomalyDetectorsInput$ = [3, n0, _DADIe,
700
702
  0,
701
- [_NT, _MRa, _N, _MN, _D, _ADT],
702
- [0, 1, 0, 0, () => Dimensions, 64 | 0]
703
+ [_ADIn, _NT, _MRa, _N, _MN, _D, _ADT],
704
+ [64 | 0, 0, 1, 0, 0, () => Dimensions, 64 | 0]
703
705
  ];
704
706
  export var DescribeAnomalyDetectorsOutput$ = [3, n0, _DADOe,
705
707
  0,
@@ -1058,8 +1060,8 @@ export var PutAnomalyDetectorInput$ = [3, n0, _PADI,
1058
1060
  ];
1059
1061
  export var PutAnomalyDetectorOutput$ = [3, n0, _PADO,
1060
1062
  0,
1061
- [],
1062
- []
1063
+ [_ADI],
1064
+ [0]
1063
1065
  ];
1064
1066
  export var PutCompositeAlarmInput$ = [3, n0, _PCAI,
1065
1067
  0,
@@ -1252,6 +1254,7 @@ var AlarmTypes = 64 | 0;
1252
1254
  var AnomalyDetectorExcludedTimeRanges = [1, n0, _ADETR,
1253
1255
  0, () => Range$
1254
1256
  ];
1257
+ var AnomalyDetectorIds = 64 | 0;
1255
1258
  var AnomalyDetectors = [1, n0, _ADn,
1256
1259
  0, () => AnomalyDetector$
1257
1260
  ];
@@ -36,6 +36,7 @@ declare const DeleteAnomalyDetectorCommand_base: {
36
36
  * const config = {}; // type is CloudWatchClientConfig
37
37
  * const client = new CloudWatchClient(config);
38
38
  * const input = { // DeleteAnomalyDetectorInput
39
+ * AnomalyDetectorId: "STRING_VALUE",
39
40
  * Namespace: "STRING_VALUE",
40
41
  * MetricName: "STRING_VALUE",
41
42
  * Dimensions: [ // Dimensions
@@ -39,6 +39,9 @@ declare const DescribeAnomalyDetectorsCommand_base: {
39
39
  * const config = {}; // type is CloudWatchClientConfig
40
40
  * const client = new CloudWatchClient(config);
41
41
  * const input = { // DescribeAnomalyDetectorsInput
42
+ * AnomalyDetectorIds: [ // AnomalyDetectorIds
43
+ * "STRING_VALUE",
44
+ * ],
42
45
  * NextToken: "STRING_VALUE",
43
46
  * MaxResults: Number("int"),
44
47
  * Namespace: "STRING_VALUE",
@@ -58,6 +61,7 @@ declare const DescribeAnomalyDetectorsCommand_base: {
58
61
  * // { // DescribeAnomalyDetectorsOutput
59
62
  * // AnomalyDetectors: [ // AnomalyDetectors
60
63
  * // { // AnomalyDetector
64
+ * // AnomalyDetectorId: "STRING_VALUE",
61
65
  * // Namespace: "STRING_VALUE",
62
66
  * // MetricName: "STRING_VALUE",
63
67
  * // Dimensions: [ // Dimensions
@@ -98,7 +98,9 @@ declare const PutAnomalyDetectorCommand_base: {
98
98
  * };
99
99
  * const command = new PutAnomalyDetectorCommand(input);
100
100
  * const response = await client.send(command);
101
- * // {};
101
+ * // { // PutAnomalyDetectorOutput
102
+ * // AnomalyDetectorId: "STRING_VALUE",
103
+ * // };
102
104
  *
103
105
  * ```
104
106
  *
@@ -135,7 +137,7 @@ export declare class PutAnomalyDetectorCommand extends PutAnomalyDetectorCommand
135
137
  protected static __types: {
136
138
  api: {
137
139
  input: PutAnomalyDetectorInput;
138
- output: {};
140
+ output: PutAnomalyDetectorOutput;
139
141
  };
140
142
  sdk: {
141
143
  input: PutAnomalyDetectorCommandInput;
@@ -474,6 +474,16 @@ export interface SingleMetricAnomalyDetector {
474
474
  * @public
475
475
  */
476
476
  export interface AnomalyDetector {
477
+ /**
478
+ * <p>The unique identifier of the anomaly detector.</p>
479
+ * <note>
480
+ * <p>The identifier does not restrict access to a specific anomaly detector in an IAM
481
+ * policy. Permissions for anomaly detector operations apply to all anomaly detectors
482
+ * in the account.</p>
483
+ * </note>
484
+ * @public
485
+ */
486
+ AnomalyDetectorId?: string | undefined;
477
487
  /**
478
488
  * <p>The namespace of the metric associated with the anomaly detection model.</p>
479
489
  *
@@ -841,6 +851,12 @@ export interface DeleteAlarmsInput {
841
851
  * @public
842
852
  */
843
853
  export interface DeleteAnomalyDetectorInput {
854
+ /**
855
+ * <p>Specifies the unique identifier of the anomaly detector to delete. If you specify
856
+ * this parameter, you do not need to specify a metric to identify the detector.</p>
857
+ * @public
858
+ */
859
+ AnomalyDetectorId?: string | undefined;
844
860
  /**
845
861
  * <p>The namespace associated with the anomaly detection model to delete.</p>
846
862
  *
@@ -1807,6 +1823,14 @@ export interface DescribeAlarmsForMetricOutput {
1807
1823
  * @public
1808
1824
  */
1809
1825
  export interface DescribeAnomalyDetectorsInput {
1826
+ /**
1827
+ * <p>Specifies the unique identifiers of the anomaly detectors to describe. You can specify
1828
+ * up to 50 identifiers. If you specify this parameter, you cannot also specify the
1829
+ * <code>Namespace</code>, <code>MetricName</code>, <code>Dimensions</code>, or
1830
+ * <code>AnomalyDetectorTypes</code> metric filters.</p>
1831
+ * @public
1832
+ */
1833
+ AnomalyDetectorIds?: string[] | undefined;
1810
1834
  /**
1811
1835
  * <p>Use the token returned by the previous operation to request the next page of
1812
1836
  * results.</p>
@@ -3879,6 +3903,11 @@ export interface PutAnomalyDetectorInput {
3879
3903
  * @public
3880
3904
  */
3881
3905
  export interface PutAnomalyDetectorOutput {
3906
+ /**
3907
+ * <p>The unique identifier of the anomaly detector that you created or updated.</p>
3908
+ * @public
3909
+ */
3910
+ AnomalyDetectorId?: string | undefined;
3882
3911
  }
3883
3912
  /**
3884
3913
  * @public
@@ -34,7 +34,7 @@ export declare class PutAnomalyDetectorCommand extends PutAnomalyDetectorCommand
34
34
  protected static __types: {
35
35
  api: {
36
36
  input: PutAnomalyDetectorInput;
37
- output: {};
37
+ output: PutAnomalyDetectorOutput;
38
38
  };
39
39
  sdk: {
40
40
  input: PutAnomalyDetectorCommandInput;
@@ -90,6 +90,7 @@ export interface SingleMetricAnomalyDetector {
90
90
  Stat?: string | undefined;
91
91
  }
92
92
  export interface AnomalyDetector {
93
+ AnomalyDetectorId?: string | undefined;
93
94
  Namespace?: string | undefined;
94
95
  MetricName?: string | undefined;
95
96
  Dimensions?: Dimension[] | undefined;
@@ -159,6 +160,7 @@ export interface DeleteAlarmsInput {
159
160
  AlarmNames: string[] | undefined;
160
161
  }
161
162
  export interface DeleteAnomalyDetectorInput {
163
+ AnomalyDetectorId?: string | undefined;
162
164
  Namespace?: string | undefined;
163
165
  MetricName?: string | undefined;
164
166
  Dimensions?: Dimension[] | undefined;
@@ -357,6 +359,7 @@ export interface DescribeAlarmsForMetricOutput {
357
359
  MetricAlarms?: MetricAlarm[] | undefined;
358
360
  }
359
361
  export interface DescribeAnomalyDetectorsInput {
362
+ AnomalyDetectorIds?: string[] | undefined;
360
363
  NextToken?: string | undefined;
361
364
  MaxResults?: number | undefined;
362
365
  Namespace?: string | undefined;
@@ -689,7 +692,9 @@ export interface PutAnomalyDetectorInput {
689
692
  SingleMetricAnomalyDetector?: SingleMetricAnomalyDetector | undefined;
690
693
  MetricMathAnomalyDetector?: MetricMathAnomalyDetector | undefined;
691
694
  }
692
- export interface PutAnomalyDetectorOutput {}
695
+ export interface PutAnomalyDetectorOutput {
696
+ AnomalyDetectorId?: string | undefined;
697
+ }
693
698
  export interface PutCompositeAlarmInput {
694
699
  ActionsEnabled?: boolean | undefined;
695
700
  AlarmActions?: string[] | undefined;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudwatch",
3
3
  "description": "AWS SDK for JavaScript Cloudwatch Client for Node.js, Browser and React Native",
4
- "version": "3.1079.0",
4
+ "version": "3.1085.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -25,18 +25,18 @@
25
25
  "module": "./dist-es/index.js",
26
26
  "sideEffects": false,
27
27
  "dependencies": {
28
- "@aws-sdk/core": "^3.974.27",
29
- "@aws-sdk/credential-provider-node": "^3.972.62",
30
- "@aws-sdk/types": "^3.973.15",
31
- "@smithy/core": "^3.29.0",
32
- "@smithy/fetch-http-handler": "^5.6.2",
33
- "@smithy/middleware-compression": "^4.5.5",
34
- "@smithy/node-http-handler": "^4.9.2",
35
- "@smithy/types": "^4.15.1",
28
+ "@aws-sdk/core": "^3.975.1",
29
+ "@aws-sdk/credential-provider-node": "^3.972.66",
30
+ "@aws-sdk/types": "^3.974.0",
31
+ "@smithy/core": "^3.29.2",
32
+ "@smithy/fetch-http-handler": "^5.6.4",
33
+ "@smithy/middleware-compression": "^4.5.7",
34
+ "@smithy/node-http-handler": "^4.9.4",
35
+ "@smithy/types": "^4.16.0",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "devDependencies": {
39
- "@smithy/snapshot-testing": "^2.2.5",
39
+ "@smithy/snapshot-testing": "^2.2.7",
40
40
  "@tsconfig/node20": "20.1.8",
41
41
  "@types/node": "^20.14.8",
42
42
  "concurrently": "7.0.0",