@cdklabs/cdk-ssm-documents 0.0.64 → 0.0.66

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 (601) 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/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
  117. package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
  118. package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
  119. package/node_modules/@aws-sdk/checksums/package.json +7 -7
  120. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  121. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
  122. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
  123. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
  124. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
  125. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
  126. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
  127. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
  128. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
  129. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
  130. package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
  131. package/node_modules/@aws-sdk/client-cloudformation/package.json +9 -9
  132. package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
  133. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  134. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
  135. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
  136. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +255 -233
  137. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
  138. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +93 -68
  139. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
  140. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
  141. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
  142. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
  143. package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +476 -259
  144. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
  145. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
  146. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
  147. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
  148. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
  149. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
  150. package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
  151. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
  152. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
  153. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
  154. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
  155. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
  156. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
  157. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
  158. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
  159. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
  160. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
  161. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
  162. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
  163. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
  164. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
  165. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
  166. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
  167. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
  168. package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
  169. package/node_modules/@aws-sdk/client-cloudwatch/package.json +13 -13
  170. package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
  171. package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  172. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
  173. package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
  174. package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2903 -2879
  175. package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
  176. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
  177. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
  178. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
  179. package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
  180. package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6980 -4554
  181. package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +4 -0
  182. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
  183. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
  184. package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
  185. package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
  186. package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +108 -13
  187. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +14 -0
  188. package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
  189. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
  190. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
  191. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
  192. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
  193. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
  194. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +8 -0
  195. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
  196. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -2
  197. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
  198. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  199. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
  200. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
  201. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
  202. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
  203. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -2
  204. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
  205. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
  206. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
  207. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
  208. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
  209. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
  210. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  211. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
  212. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
  213. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  214. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  215. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -2
  216. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
  217. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
  218. package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
  219. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +38 -23
  220. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +45 -128
  221. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +128 -48
  222. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +109 -161
  223. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +169 -219
  224. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +250 -353
  225. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +351 -182
  226. package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +178 -2
  227. package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +9 -0
  228. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +34 -0
  229. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
  230. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
  231. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
  232. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
  233. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
  234. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +4 -2
  235. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
  236. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
  237. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
  238. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
  239. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +4 -2
  240. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
  241. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
  242. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
  243. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
  244. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
  245. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
  246. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
  247. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
  248. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
  249. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +4 -2
  250. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
  251. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
  252. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +9 -7
  253. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +13 -26
  254. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +29 -12
  255. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +25 -36
  256. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +40 -35
  257. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +49 -67
  258. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +66 -47
  259. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +40 -0
  260. package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  261. package/node_modules/@aws-sdk/client-ec2/package.json +15 -15
  262. package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  263. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
  264. package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
  265. package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
  266. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
  267. package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
  268. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
  269. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
  270. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
  271. package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
  272. package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
  273. package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
  274. package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
  275. package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
  276. package/node_modules/@aws-sdk/client-iam/package.json +14 -14
  277. package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  278. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
  279. package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
  280. package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
  281. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
  282. package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
  283. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
  284. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
  285. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
  286. package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
  287. package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
  288. package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
  289. package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
  290. package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
  291. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
  292. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
  293. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
  294. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
  295. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
  296. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
  297. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
  298. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
  299. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
  300. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
  301. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
  302. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
  303. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
  304. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
  305. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
  306. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
  307. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
  308. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
  309. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
  310. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
  311. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
  312. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
  313. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
  314. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
  315. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
  316. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
  317. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
  318. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
  319. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
  320. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
  321. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
  322. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
  323. package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
  324. package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
  325. package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
  326. package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
  327. package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
  328. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
  329. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
  330. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
  331. package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  332. package/node_modules/@aws-sdk/client-lambda/package.json +13 -13
  333. package/node_modules/@aws-sdk/client-s3/README.md +35 -0
  334. package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
  335. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
  336. package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
  337. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
  338. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
  339. package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
  340. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
  341. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
  342. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
  343. package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
  344. package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
  345. package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
  346. package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
  347. package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
  348. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
  349. package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
  350. package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
  351. package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
  352. package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -1
  353. package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
  354. package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
  355. package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
  356. package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +260 -100
  357. package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
  358. package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
  359. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
  360. package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
  361. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
  362. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
  363. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
  364. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
  365. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
  366. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
  367. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
  368. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
  369. package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
  370. package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
  371. package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
  372. package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
  373. package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
  374. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
  375. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
  376. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
  377. package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
  378. package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
  379. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
  380. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
  381. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
  382. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
  383. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
  384. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
  385. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
  386. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
  387. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
  388. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
  389. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +18 -3
  390. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
  391. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
  392. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -5
  393. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
  394. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
  395. package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
  396. package/node_modules/@aws-sdk/client-s3/package.json +21 -21
  397. package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  398. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
  399. package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
  400. package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
  401. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
  402. package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
  403. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
  404. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
  405. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
  406. package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
  407. package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
  408. package/node_modules/@aws-sdk/client-sns/package.json +10 -10
  409. package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  410. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
  411. package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
  412. package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
  413. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
  414. package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
  415. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
  416. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
  417. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
  418. package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
  419. package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
  420. package/node_modules/@aws-sdk/client-sqs/package.json +16 -16
  421. package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  422. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
  423. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
  424. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
  425. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
  426. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
  427. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
  428. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
  429. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
  430. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
  431. package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
  432. package/node_modules/@aws-sdk/client-ssm/package.json +10 -10
  433. package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2274
  434. package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
  435. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +297 -23
  436. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
  437. package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
  438. package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
  439. package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
  440. package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
  441. package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
  442. package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
  443. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
  444. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
  445. package/node_modules/@aws-sdk/core/package.json +12 -12
  446. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
  447. package/node_modules/@aws-sdk/credential-provider-env/package.json +7 -7
  448. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
  449. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
  450. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
  451. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
  452. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
  453. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
  454. package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
  455. package/node_modules/@aws-sdk/credential-provider-http/package.json +9 -8
  456. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
  457. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
  458. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
  459. package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
  460. package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
  461. package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
  462. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
  463. package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
  464. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
  465. package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -7
  466. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -25
  467. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
  468. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
  469. package/node_modules/@aws-sdk/credential-provider-sso/package.json +12 -10
  470. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
  471. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
  472. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
  473. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -8
  474. package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
  475. package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -6
  476. package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
  477. package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +7 -7
  478. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
  479. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
  480. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
  481. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
  482. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
  483. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
  484. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
  485. package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +17 -14
  486. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
  487. package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
  488. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
  489. package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
  490. package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
  491. package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +7 -7
  492. package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
  493. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +82 -84
  494. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
  495. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
  496. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
  497. package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
  498. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
  499. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
  500. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
  501. package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
  502. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
  503. package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
  504. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
  505. package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
  506. package/node_modules/@aws-sdk/nested-clients/package.json +11 -10
  507. package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
  508. package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +9 -8
  509. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
  510. package/node_modules/@aws-sdk/token-providers/package.json +8 -8
  511. package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
  512. package/node_modules/@aws-sdk/types/package.json +5 -5
  513. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
  514. package/node_modules/@aws-sdk/util-locate-window/package.json +5 -5
  515. package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
  516. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
  517. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
  518. package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
  519. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
  520. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
  521. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +7 -3
  522. package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
  523. package/node_modules/@aws-sdk/xml-builder/package.json +5 -5
  524. package/node_modules/@nodable/entities/package.json +4 -1
  525. package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
  526. package/node_modules/@nodable/entities/src/index.d.ts +77 -0
  527. package/node_modules/@nodable/entities/src/index.js +1 -1
  528. package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
  529. package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +543 -398
  530. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
  531. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
  532. package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
  533. package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +23 -24
  534. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
  535. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
  536. package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
  537. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
  538. package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
  539. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
  540. package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
  541. package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +68 -61
  542. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
  543. package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
  544. package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
  545. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
  546. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
  547. package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
  548. package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
  549. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
  550. package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
  551. package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
  552. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
  553. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
  554. package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
  555. package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
  556. package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
  557. package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
  558. package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
  559. package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
  560. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
  561. package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
  562. package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
  563. package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
  564. package/node_modules/@smithy/core/package.json +18 -17
  565. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
  566. package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
  567. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
  568. package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
  569. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
  570. package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
  571. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
  572. package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
  573. package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
  574. package/node_modules/@smithy/middleware-compression/package.json +6 -6
  575. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +11 -13
  576. package/node_modules/@smithy/node-http-handler/package.json +8 -8
  577. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
  578. package/node_modules/@smithy/signature-v4/package.json +7 -7
  579. package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
  580. package/node_modules/@smithy/types/package.json +10 -10
  581. package/node_modules/anynum/LICENSE +21 -0
  582. package/node_modules/anynum/README.md +142 -0
  583. package/node_modules/anynum/anynum.js +135 -0
  584. package/node_modules/anynum/digitTable.js +116 -0
  585. package/node_modules/anynum/package.json +42 -0
  586. package/node_modules/path-expression-matcher/README.md +82 -7
  587. package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
  588. package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
  589. package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
  590. package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
  591. package/node_modules/path-expression-matcher/package.json +3 -2
  592. package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
  593. package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
  594. package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
  595. package/package.json +10 -10
  596. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
  597. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
  598. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
  599. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
  600. package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
  601. /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
@@ -1,19 +1,22 @@
1
- 'use strict';
2
-
3
- var client$1 = require('@aws-sdk/core/client');
4
- var core = require('@smithy/core');
5
- var client = require('@smithy/core/client');
6
- var config = require('@smithy/core/config');
7
- var endpoints = require('@smithy/core/endpoints');
8
- var eventStreams = require('@smithy/core/event-streams');
9
- var protocols = require('@smithy/core/protocols');
10
- var retry = require('@smithy/core/retry');
11
- var schema = require('@smithy/core/schema');
12
- var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
13
- var runtimeConfig = require('./runtimeConfig');
14
- var schemas_0 = require('./schemas/schemas_0');
15
- var errors = require('./models/errors');
16
- var LambdaServiceException = require('./models/LambdaServiceException');
1
+ var __exportStar = (m, e) => { Object.assign(e, m); };
2
+ const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
+ const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
+ const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
5
+ exports.$Command = Command;
6
+ exports.__Client = Client;
7
+ const { resolveRegionConfig } = require("@smithy/core/config");
8
+ const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
+ const { resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
10
+ const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
11
+ const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
12
+ const { getSchemaSerdePlugin } = require("@smithy/core/schema");
13
+ const { resolveHttpAuthSchemeConfig, defaultLambdaHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
14
+ const { getRuntimeConfig } = require("./runtimeConfig");
15
+ const { AddLayerVersionPermission$, AddPermission$, CheckpointDurableExecution$, CreateAlias$, CreateCapacityProvider$, CreateCodeSigningConfig$, CreateEventSourceMapping$, CreateFunction$, CreateFunctionUrlConfig$, DeleteAlias$, DeleteCapacityProvider$, DeleteCodeSigningConfig$, DeleteEventSourceMapping$, DeleteFunctionCodeSigningConfig$, DeleteFunction$, DeleteFunctionConcurrency$, DeleteFunctionEventInvokeConfig$, DeleteFunctionUrlConfig$, DeleteLayerVersion$, DeleteProvisionedConcurrencyConfig$, GetAccountSettings$, GetAlias$, GetCapacityProvider$, GetCodeSigningConfig$, GetDurableExecution$, GetDurableExecutionHistory$, GetDurableExecutionState$, GetEventSourceMapping$, GetFunctionCodeSigningConfig$, GetFunction$, GetFunctionConcurrency$, GetFunctionConfiguration$, GetFunctionEventInvokeConfig$, GetFunctionRecursionConfig$, GetFunctionScalingConfig$, GetFunctionUrlConfig$, GetLayerVersionByArn$, GetLayerVersion$, GetLayerVersionPolicy$, GetPolicy$, GetProvisionedConcurrencyConfig$, GetRuntimeManagementConfig$, InvokeAsync$, Invoke$, InvokeWithResponseStream$, ListAliases$, ListCapacityProviders$, ListCodeSigningConfigs$, ListDurableExecutionsByFunction$, ListEventSourceMappings$, ListFunctionEventInvokeConfigs$, ListFunctionsByCodeSigningConfig$, ListFunctions$, ListFunctionUrlConfigs$, ListFunctionVersionsByCapacityProvider$, ListLayers$, ListLayerVersions$, ListProvisionedConcurrencyConfigs$, ListTags$, ListVersionsByFunction$, PublishLayerVersion$, PublishVersion$, PutFunctionCodeSigningConfig$, PutFunctionConcurrency$, PutFunctionEventInvokeConfig$, PutFunctionRecursionConfig$, PutFunctionScalingConfig$, PutProvisionedConcurrencyConfig$, PutRuntimeManagementConfig$, RemoveLayerVersionPermission$, RemovePermission$, SendDurableExecutionCallbackFailure$, SendDurableExecutionCallbackHeartbeat$, SendDurableExecutionCallbackSuccess$, StopDurableExecution$, TagResource$, UntagResource$, UpdateAlias$, UpdateCapacityProvider$, UpdateCodeSigningConfig$, UpdateEventSourceMapping$, UpdateFunctionCode$, UpdateFunctionConfiguration$, UpdateFunctionEventInvokeConfig$, UpdateFunctionUrlConfig$ } = require("./schemas/schemas_0");
16
+ __exportStar(require("./schemas/schemas_0"), exports);
17
+ __exportStar(require("./models/errors"), exports);
18
+ const { LambdaServiceException } = require("./models/LambdaServiceException");
19
+ exports.LambdaServiceException = LambdaServiceException;
17
20
 
18
21
  const resolveClientEndpointParameters = (options) => {
19
22
  return Object.assign(options, {
@@ -69,580 +72,580 @@ const resolveHttpAuthRuntimeConfig = (config) => {
69
72
  };
70
73
 
71
74
  const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
72
- const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
75
+ const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
73
76
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
74
- return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
77
+ return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
75
78
  };
76
79
 
77
- class LambdaClient extends client.Client {
80
+ class LambdaClient extends Client {
78
81
  config;
79
82
  constructor(...[configuration]) {
80
- const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
83
+ const _config_0 = getRuntimeConfig(configuration || {});
81
84
  super(_config_0);
82
85
  this.initConfig = _config_0;
83
86
  const _config_1 = resolveClientEndpointParameters(_config_0);
84
- const _config_2 = client$1.resolveUserAgentConfig(_config_1);
85
- const _config_3 = retry.resolveRetryConfig(_config_2);
86
- const _config_4 = config.resolveRegionConfig(_config_3);
87
- const _config_5 = client$1.resolveHostHeaderConfig(_config_4);
88
- const _config_6 = endpoints.resolveEndpointConfig(_config_5);
89
- const _config_7 = eventStreams.resolveEventStreamSerdeConfig(_config_6);
90
- const _config_8 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_7);
87
+ const _config_2 = resolveUserAgentConfig(_config_1);
88
+ const _config_3 = resolveRetryConfig(_config_2);
89
+ const _config_4 = resolveRegionConfig(_config_3);
90
+ const _config_5 = resolveHostHeaderConfig(_config_4);
91
+ const _config_6 = resolveEndpointConfig(_config_5);
92
+ const _config_7 = resolveEventStreamSerdeConfig(_config_6);
93
+ const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
91
94
  const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
92
95
  this.config = _config_9;
93
- this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
- this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));
95
- this.middlewareStack.use(retry.getRetryPlugin(this.config));
96
- this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));
97
- this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));
98
- this.middlewareStack.use(client$1.getLoggerPlugin(this.config));
99
- this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));
100
- this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
101
- httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultLambdaHttpAuthSchemeParametersProvider,
102
- identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
96
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
97
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
98
+ this.middlewareStack.use(getRetryPlugin(this.config));
99
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
100
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
101
+ this.middlewareStack.use(getLoggerPlugin(this.config));
102
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
103
+ this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
104
+ httpAuthSchemeParametersProvider: defaultLambdaHttpAuthSchemeParametersProvider,
105
+ identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
103
106
  "aws.auth#sigv4": config.credentials,
104
107
  }),
105
108
  }));
106
- this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
109
+ this.middlewareStack.use(getHttpSigningPlugin(this.config));
107
110
  }
108
111
  destroy() {
109
112
  super.destroy();
110
113
  }
111
114
  }
112
115
 
113
- class AddLayerVersionPermissionCommand extends client.Command
116
+ class AddLayerVersionPermissionCommand extends Command
114
117
  .classBuilder()
115
118
  .ep(commonParams)
116
119
  .m(function (Command, cs, config, o) {
117
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
120
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
118
121
  })
119
122
  .s("AWSGirApiService", "AddLayerVersionPermission", {})
120
123
  .n("LambdaClient", "AddLayerVersionPermissionCommand")
121
- .sc(schemas_0.AddLayerVersionPermission$)
124
+ .sc(AddLayerVersionPermission$)
122
125
  .build() {
123
126
  }
124
127
 
125
- class AddPermissionCommand extends client.Command
128
+ class AddPermissionCommand extends Command
126
129
  .classBuilder()
127
130
  .ep(commonParams)
128
131
  .m(function (Command, cs, config, o) {
129
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
132
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
130
133
  })
131
134
  .s("AWSGirApiService", "AddPermission", {})
132
135
  .n("LambdaClient", "AddPermissionCommand")
133
- .sc(schemas_0.AddPermission$)
136
+ .sc(AddPermission$)
134
137
  .build() {
135
138
  }
136
139
 
137
- class CheckpointDurableExecutionCommand extends client.Command
140
+ class CheckpointDurableExecutionCommand extends Command
138
141
  .classBuilder()
139
142
  .ep(commonParams)
140
143
  .m(function (Command, cs, config, o) {
141
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
144
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
142
145
  })
143
146
  .s("AWSGirApiService", "CheckpointDurableExecution", {})
144
147
  .n("LambdaClient", "CheckpointDurableExecutionCommand")
145
- .sc(schemas_0.CheckpointDurableExecution$)
148
+ .sc(CheckpointDurableExecution$)
146
149
  .build() {
147
150
  }
148
151
 
149
- class CreateAliasCommand extends client.Command
152
+ class CreateAliasCommand extends Command
150
153
  .classBuilder()
151
154
  .ep(commonParams)
152
155
  .m(function (Command, cs, config, o) {
153
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
156
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
154
157
  })
155
158
  .s("AWSGirApiService", "CreateAlias", {})
156
159
  .n("LambdaClient", "CreateAliasCommand")
157
- .sc(schemas_0.CreateAlias$)
160
+ .sc(CreateAlias$)
158
161
  .build() {
159
162
  }
160
163
 
161
- class CreateCapacityProviderCommand extends client.Command
164
+ class CreateCapacityProviderCommand extends Command
162
165
  .classBuilder()
163
166
  .ep(commonParams)
164
167
  .m(function (Command, cs, config, o) {
165
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
168
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
166
169
  })
167
170
  .s("AWSGirApiService", "CreateCapacityProvider", {})
168
171
  .n("LambdaClient", "CreateCapacityProviderCommand")
169
- .sc(schemas_0.CreateCapacityProvider$)
172
+ .sc(CreateCapacityProvider$)
170
173
  .build() {
171
174
  }
172
175
 
173
- class CreateCodeSigningConfigCommand extends client.Command
176
+ class CreateCodeSigningConfigCommand extends Command
174
177
  .classBuilder()
175
178
  .ep(commonParams)
176
179
  .m(function (Command, cs, config, o) {
177
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
180
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
178
181
  })
179
182
  .s("AWSGirApiService", "CreateCodeSigningConfig", {})
180
183
  .n("LambdaClient", "CreateCodeSigningConfigCommand")
181
- .sc(schemas_0.CreateCodeSigningConfig$)
184
+ .sc(CreateCodeSigningConfig$)
182
185
  .build() {
183
186
  }
184
187
 
185
- class CreateEventSourceMappingCommand extends client.Command
188
+ class CreateEventSourceMappingCommand extends Command
186
189
  .classBuilder()
187
190
  .ep(commonParams)
188
191
  .m(function (Command, cs, config, o) {
189
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
192
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
190
193
  })
191
194
  .s("AWSGirApiService", "CreateEventSourceMapping", {})
192
195
  .n("LambdaClient", "CreateEventSourceMappingCommand")
193
- .sc(schemas_0.CreateEventSourceMapping$)
196
+ .sc(CreateEventSourceMapping$)
194
197
  .build() {
195
198
  }
196
199
 
197
- class CreateFunctionCommand extends client.Command
200
+ class CreateFunctionCommand extends Command
198
201
  .classBuilder()
199
202
  .ep(commonParams)
200
203
  .m(function (Command, cs, config, o) {
201
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
204
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
202
205
  })
203
206
  .s("AWSGirApiService", "CreateFunction", {})
204
207
  .n("LambdaClient", "CreateFunctionCommand")
205
- .sc(schemas_0.CreateFunction$)
208
+ .sc(CreateFunction$)
206
209
  .build() {
207
210
  }
208
211
 
209
- class CreateFunctionUrlConfigCommand extends client.Command
212
+ class CreateFunctionUrlConfigCommand extends Command
210
213
  .classBuilder()
211
214
  .ep(commonParams)
212
215
  .m(function (Command, cs, config, o) {
213
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
216
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
214
217
  })
215
218
  .s("AWSGirApiService", "CreateFunctionUrlConfig", {})
216
219
  .n("LambdaClient", "CreateFunctionUrlConfigCommand")
217
- .sc(schemas_0.CreateFunctionUrlConfig$)
220
+ .sc(CreateFunctionUrlConfig$)
218
221
  .build() {
219
222
  }
220
223
 
221
- class DeleteAliasCommand extends client.Command
224
+ class DeleteAliasCommand extends Command
222
225
  .classBuilder()
223
226
  .ep(commonParams)
224
227
  .m(function (Command, cs, config, o) {
225
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
228
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
226
229
  })
227
230
  .s("AWSGirApiService", "DeleteAlias", {})
228
231
  .n("LambdaClient", "DeleteAliasCommand")
229
- .sc(schemas_0.DeleteAlias$)
232
+ .sc(DeleteAlias$)
230
233
  .build() {
231
234
  }
232
235
 
233
- class DeleteCapacityProviderCommand extends client.Command
236
+ class DeleteCapacityProviderCommand extends Command
234
237
  .classBuilder()
235
238
  .ep(commonParams)
236
239
  .m(function (Command, cs, config, o) {
237
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
240
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
238
241
  })
239
242
  .s("AWSGirApiService", "DeleteCapacityProvider", {})
240
243
  .n("LambdaClient", "DeleteCapacityProviderCommand")
241
- .sc(schemas_0.DeleteCapacityProvider$)
244
+ .sc(DeleteCapacityProvider$)
242
245
  .build() {
243
246
  }
244
247
 
245
- class DeleteCodeSigningConfigCommand extends client.Command
248
+ class DeleteCodeSigningConfigCommand extends Command
246
249
  .classBuilder()
247
250
  .ep(commonParams)
248
251
  .m(function (Command, cs, config, o) {
249
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
252
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
250
253
  })
251
254
  .s("AWSGirApiService", "DeleteCodeSigningConfig", {})
252
255
  .n("LambdaClient", "DeleteCodeSigningConfigCommand")
253
- .sc(schemas_0.DeleteCodeSigningConfig$)
256
+ .sc(DeleteCodeSigningConfig$)
254
257
  .build() {
255
258
  }
256
259
 
257
- class DeleteEventSourceMappingCommand extends client.Command
260
+ class DeleteEventSourceMappingCommand extends Command
258
261
  .classBuilder()
259
262
  .ep(commonParams)
260
263
  .m(function (Command, cs, config, o) {
261
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
264
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
262
265
  })
263
266
  .s("AWSGirApiService", "DeleteEventSourceMapping", {})
264
267
  .n("LambdaClient", "DeleteEventSourceMappingCommand")
265
- .sc(schemas_0.DeleteEventSourceMapping$)
268
+ .sc(DeleteEventSourceMapping$)
266
269
  .build() {
267
270
  }
268
271
 
269
- class DeleteFunctionCodeSigningConfigCommand extends client.Command
272
+ class DeleteFunctionCodeSigningConfigCommand extends Command
270
273
  .classBuilder()
271
274
  .ep(commonParams)
272
275
  .m(function (Command, cs, config, o) {
273
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
276
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
274
277
  })
275
278
  .s("AWSGirApiService", "DeleteFunctionCodeSigningConfig", {})
276
279
  .n("LambdaClient", "DeleteFunctionCodeSigningConfigCommand")
277
- .sc(schemas_0.DeleteFunctionCodeSigningConfig$)
280
+ .sc(DeleteFunctionCodeSigningConfig$)
278
281
  .build() {
279
282
  }
280
283
 
281
- class DeleteFunctionCommand extends client.Command
284
+ class DeleteFunctionCommand extends Command
282
285
  .classBuilder()
283
286
  .ep(commonParams)
284
287
  .m(function (Command, cs, config, o) {
285
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
288
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
286
289
  })
287
290
  .s("AWSGirApiService", "DeleteFunction", {})
288
291
  .n("LambdaClient", "DeleteFunctionCommand")
289
- .sc(schemas_0.DeleteFunction$)
292
+ .sc(DeleteFunction$)
290
293
  .build() {
291
294
  }
292
295
 
293
- class DeleteFunctionConcurrencyCommand extends client.Command
296
+ class DeleteFunctionConcurrencyCommand extends Command
294
297
  .classBuilder()
295
298
  .ep(commonParams)
296
299
  .m(function (Command, cs, config, o) {
297
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
300
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
298
301
  })
299
302
  .s("AWSGirApiService", "DeleteFunctionConcurrency", {})
300
303
  .n("LambdaClient", "DeleteFunctionConcurrencyCommand")
301
- .sc(schemas_0.DeleteFunctionConcurrency$)
304
+ .sc(DeleteFunctionConcurrency$)
302
305
  .build() {
303
306
  }
304
307
 
305
- class DeleteFunctionEventInvokeConfigCommand extends client.Command
308
+ class DeleteFunctionEventInvokeConfigCommand extends Command
306
309
  .classBuilder()
307
310
  .ep(commonParams)
308
311
  .m(function (Command, cs, config, o) {
309
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
312
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
310
313
  })
311
314
  .s("AWSGirApiService", "DeleteFunctionEventInvokeConfig", {})
312
315
  .n("LambdaClient", "DeleteFunctionEventInvokeConfigCommand")
313
- .sc(schemas_0.DeleteFunctionEventInvokeConfig$)
316
+ .sc(DeleteFunctionEventInvokeConfig$)
314
317
  .build() {
315
318
  }
316
319
 
317
- class DeleteFunctionUrlConfigCommand extends client.Command
320
+ class DeleteFunctionUrlConfigCommand extends Command
318
321
  .classBuilder()
319
322
  .ep(commonParams)
320
323
  .m(function (Command, cs, config, o) {
321
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
324
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
322
325
  })
323
326
  .s("AWSGirApiService", "DeleteFunctionUrlConfig", {})
324
327
  .n("LambdaClient", "DeleteFunctionUrlConfigCommand")
325
- .sc(schemas_0.DeleteFunctionUrlConfig$)
328
+ .sc(DeleteFunctionUrlConfig$)
326
329
  .build() {
327
330
  }
328
331
 
329
- class DeleteLayerVersionCommand extends client.Command
332
+ class DeleteLayerVersionCommand extends Command
330
333
  .classBuilder()
331
334
  .ep(commonParams)
332
335
  .m(function (Command, cs, config, o) {
333
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
336
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
334
337
  })
335
338
  .s("AWSGirApiService", "DeleteLayerVersion", {})
336
339
  .n("LambdaClient", "DeleteLayerVersionCommand")
337
- .sc(schemas_0.DeleteLayerVersion$)
340
+ .sc(DeleteLayerVersion$)
338
341
  .build() {
339
342
  }
340
343
 
341
- class DeleteProvisionedConcurrencyConfigCommand extends client.Command
344
+ class DeleteProvisionedConcurrencyConfigCommand extends Command
342
345
  .classBuilder()
343
346
  .ep(commonParams)
344
347
  .m(function (Command, cs, config, o) {
345
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
348
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
346
349
  })
347
350
  .s("AWSGirApiService", "DeleteProvisionedConcurrencyConfig", {})
348
351
  .n("LambdaClient", "DeleteProvisionedConcurrencyConfigCommand")
349
- .sc(schemas_0.DeleteProvisionedConcurrencyConfig$)
352
+ .sc(DeleteProvisionedConcurrencyConfig$)
350
353
  .build() {
351
354
  }
352
355
 
353
- class GetAccountSettingsCommand extends client.Command
356
+ class GetAccountSettingsCommand extends Command
354
357
  .classBuilder()
355
358
  .ep(commonParams)
356
359
  .m(function (Command, cs, config, o) {
357
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
360
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
358
361
  })
359
362
  .s("AWSGirApiService", "GetAccountSettings", {})
360
363
  .n("LambdaClient", "GetAccountSettingsCommand")
361
- .sc(schemas_0.GetAccountSettings$)
364
+ .sc(GetAccountSettings$)
362
365
  .build() {
363
366
  }
364
367
 
365
- class GetAliasCommand extends client.Command
368
+ class GetAliasCommand extends Command
366
369
  .classBuilder()
367
370
  .ep(commonParams)
368
371
  .m(function (Command, cs, config, o) {
369
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
372
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
370
373
  })
371
374
  .s("AWSGirApiService", "GetAlias", {})
372
375
  .n("LambdaClient", "GetAliasCommand")
373
- .sc(schemas_0.GetAlias$)
376
+ .sc(GetAlias$)
374
377
  .build() {
375
378
  }
376
379
 
377
- class GetCapacityProviderCommand extends client.Command
380
+ class GetCapacityProviderCommand extends Command
378
381
  .classBuilder()
379
382
  .ep(commonParams)
380
383
  .m(function (Command, cs, config, o) {
381
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
384
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
382
385
  })
383
386
  .s("AWSGirApiService", "GetCapacityProvider", {})
384
387
  .n("LambdaClient", "GetCapacityProviderCommand")
385
- .sc(schemas_0.GetCapacityProvider$)
388
+ .sc(GetCapacityProvider$)
386
389
  .build() {
387
390
  }
388
391
 
389
- class GetCodeSigningConfigCommand extends client.Command
392
+ class GetCodeSigningConfigCommand extends Command
390
393
  .classBuilder()
391
394
  .ep(commonParams)
392
395
  .m(function (Command, cs, config, o) {
393
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
396
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
394
397
  })
395
398
  .s("AWSGirApiService", "GetCodeSigningConfig", {})
396
399
  .n("LambdaClient", "GetCodeSigningConfigCommand")
397
- .sc(schemas_0.GetCodeSigningConfig$)
400
+ .sc(GetCodeSigningConfig$)
398
401
  .build() {
399
402
  }
400
403
 
401
- class GetDurableExecutionCommand extends client.Command
404
+ class GetDurableExecutionCommand extends Command
402
405
  .classBuilder()
403
406
  .ep(commonParams)
404
407
  .m(function (Command, cs, config, o) {
405
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
408
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
406
409
  })
407
410
  .s("AWSGirApiService", "GetDurableExecution", {})
408
411
  .n("LambdaClient", "GetDurableExecutionCommand")
409
- .sc(schemas_0.GetDurableExecution$)
412
+ .sc(GetDurableExecution$)
410
413
  .build() {
411
414
  }
412
415
 
413
- class GetDurableExecutionHistoryCommand extends client.Command
416
+ class GetDurableExecutionHistoryCommand extends Command
414
417
  .classBuilder()
415
418
  .ep(commonParams)
416
419
  .m(function (Command, cs, config, o) {
417
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
420
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
418
421
  })
419
422
  .s("AWSGirApiService", "GetDurableExecutionHistory", {})
420
423
  .n("LambdaClient", "GetDurableExecutionHistoryCommand")
421
- .sc(schemas_0.GetDurableExecutionHistory$)
424
+ .sc(GetDurableExecutionHistory$)
422
425
  .build() {
423
426
  }
424
427
 
425
- class GetDurableExecutionStateCommand extends client.Command
428
+ class GetDurableExecutionStateCommand extends Command
426
429
  .classBuilder()
427
430
  .ep(commonParams)
428
431
  .m(function (Command, cs, config, o) {
429
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
432
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
430
433
  })
431
434
  .s("AWSGirApiService", "GetDurableExecutionState", {})
432
435
  .n("LambdaClient", "GetDurableExecutionStateCommand")
433
- .sc(schemas_0.GetDurableExecutionState$)
436
+ .sc(GetDurableExecutionState$)
434
437
  .build() {
435
438
  }
436
439
 
437
- class GetEventSourceMappingCommand extends client.Command
440
+ class GetEventSourceMappingCommand extends Command
438
441
  .classBuilder()
439
442
  .ep(commonParams)
440
443
  .m(function (Command, cs, config, o) {
441
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
444
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
442
445
  })
443
446
  .s("AWSGirApiService", "GetEventSourceMapping", {})
444
447
  .n("LambdaClient", "GetEventSourceMappingCommand")
445
- .sc(schemas_0.GetEventSourceMapping$)
448
+ .sc(GetEventSourceMapping$)
446
449
  .build() {
447
450
  }
448
451
 
449
- class GetFunctionCodeSigningConfigCommand extends client.Command
452
+ class GetFunctionCodeSigningConfigCommand extends Command
450
453
  .classBuilder()
451
454
  .ep(commonParams)
452
455
  .m(function (Command, cs, config, o) {
453
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
456
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
454
457
  })
455
458
  .s("AWSGirApiService", "GetFunctionCodeSigningConfig", {})
456
459
  .n("LambdaClient", "GetFunctionCodeSigningConfigCommand")
457
- .sc(schemas_0.GetFunctionCodeSigningConfig$)
460
+ .sc(GetFunctionCodeSigningConfig$)
458
461
  .build() {
459
462
  }
460
463
 
461
- class GetFunctionCommand extends client.Command
464
+ class GetFunctionCommand extends Command
462
465
  .classBuilder()
463
466
  .ep(commonParams)
464
467
  .m(function (Command, cs, config, o) {
465
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
468
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
466
469
  })
467
470
  .s("AWSGirApiService", "GetFunction", {})
468
471
  .n("LambdaClient", "GetFunctionCommand")
469
- .sc(schemas_0.GetFunction$)
472
+ .sc(GetFunction$)
470
473
  .build() {
471
474
  }
472
475
 
473
- class GetFunctionConcurrencyCommand extends client.Command
476
+ class GetFunctionConcurrencyCommand extends Command
474
477
  .classBuilder()
475
478
  .ep(commonParams)
476
479
  .m(function (Command, cs, config, o) {
477
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
480
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
478
481
  })
479
482
  .s("AWSGirApiService", "GetFunctionConcurrency", {})
480
483
  .n("LambdaClient", "GetFunctionConcurrencyCommand")
481
- .sc(schemas_0.GetFunctionConcurrency$)
484
+ .sc(GetFunctionConcurrency$)
482
485
  .build() {
483
486
  }
484
487
 
485
- class GetFunctionConfigurationCommand extends client.Command
488
+ class GetFunctionConfigurationCommand extends Command
486
489
  .classBuilder()
487
490
  .ep(commonParams)
488
491
  .m(function (Command, cs, config, o) {
489
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
492
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
490
493
  })
491
494
  .s("AWSGirApiService", "GetFunctionConfiguration", {})
492
495
  .n("LambdaClient", "GetFunctionConfigurationCommand")
493
- .sc(schemas_0.GetFunctionConfiguration$)
496
+ .sc(GetFunctionConfiguration$)
494
497
  .build() {
495
498
  }
496
499
 
497
- class GetFunctionEventInvokeConfigCommand extends client.Command
500
+ class GetFunctionEventInvokeConfigCommand extends Command
498
501
  .classBuilder()
499
502
  .ep(commonParams)
500
503
  .m(function (Command, cs, config, o) {
501
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
504
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
502
505
  })
503
506
  .s("AWSGirApiService", "GetFunctionEventInvokeConfig", {})
504
507
  .n("LambdaClient", "GetFunctionEventInvokeConfigCommand")
505
- .sc(schemas_0.GetFunctionEventInvokeConfig$)
508
+ .sc(GetFunctionEventInvokeConfig$)
506
509
  .build() {
507
510
  }
508
511
 
509
- class GetFunctionRecursionConfigCommand extends client.Command
512
+ class GetFunctionRecursionConfigCommand extends Command
510
513
  .classBuilder()
511
514
  .ep(commonParams)
512
515
  .m(function (Command, cs, config, o) {
513
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
516
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
514
517
  })
515
518
  .s("AWSGirApiService", "GetFunctionRecursionConfig", {})
516
519
  .n("LambdaClient", "GetFunctionRecursionConfigCommand")
517
- .sc(schemas_0.GetFunctionRecursionConfig$)
520
+ .sc(GetFunctionRecursionConfig$)
518
521
  .build() {
519
522
  }
520
523
 
521
- class GetFunctionScalingConfigCommand extends client.Command
524
+ class GetFunctionScalingConfigCommand extends Command
522
525
  .classBuilder()
523
526
  .ep(commonParams)
524
527
  .m(function (Command, cs, config, o) {
525
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
528
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
526
529
  })
527
530
  .s("AWSGirApiService", "GetFunctionScalingConfig", {})
528
531
  .n("LambdaClient", "GetFunctionScalingConfigCommand")
529
- .sc(schemas_0.GetFunctionScalingConfig$)
532
+ .sc(GetFunctionScalingConfig$)
530
533
  .build() {
531
534
  }
532
535
 
533
- class GetFunctionUrlConfigCommand extends client.Command
536
+ class GetFunctionUrlConfigCommand extends Command
534
537
  .classBuilder()
535
538
  .ep(commonParams)
536
539
  .m(function (Command, cs, config, o) {
537
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
540
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
538
541
  })
539
542
  .s("AWSGirApiService", "GetFunctionUrlConfig", {})
540
543
  .n("LambdaClient", "GetFunctionUrlConfigCommand")
541
- .sc(schemas_0.GetFunctionUrlConfig$)
544
+ .sc(GetFunctionUrlConfig$)
542
545
  .build() {
543
546
  }
544
547
 
545
- class GetLayerVersionByArnCommand extends client.Command
548
+ class GetLayerVersionByArnCommand extends Command
546
549
  .classBuilder()
547
550
  .ep(commonParams)
548
551
  .m(function (Command, cs, config, o) {
549
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
552
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
550
553
  })
551
554
  .s("AWSGirApiService", "GetLayerVersionByArn", {})
552
555
  .n("LambdaClient", "GetLayerVersionByArnCommand")
553
- .sc(schemas_0.GetLayerVersionByArn$)
556
+ .sc(GetLayerVersionByArn$)
554
557
  .build() {
555
558
  }
556
559
 
557
- class GetLayerVersionCommand extends client.Command
560
+ class GetLayerVersionCommand extends Command
558
561
  .classBuilder()
559
562
  .ep(commonParams)
560
563
  .m(function (Command, cs, config, o) {
561
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
564
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
562
565
  })
563
566
  .s("AWSGirApiService", "GetLayerVersion", {})
564
567
  .n("LambdaClient", "GetLayerVersionCommand")
565
- .sc(schemas_0.GetLayerVersion$)
568
+ .sc(GetLayerVersion$)
566
569
  .build() {
567
570
  }
568
571
 
569
- class GetLayerVersionPolicyCommand extends client.Command
572
+ class GetLayerVersionPolicyCommand extends Command
570
573
  .classBuilder()
571
574
  .ep(commonParams)
572
575
  .m(function (Command, cs, config, o) {
573
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
576
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
574
577
  })
575
578
  .s("AWSGirApiService", "GetLayerVersionPolicy", {})
576
579
  .n("LambdaClient", "GetLayerVersionPolicyCommand")
577
- .sc(schemas_0.GetLayerVersionPolicy$)
580
+ .sc(GetLayerVersionPolicy$)
578
581
  .build() {
579
582
  }
580
583
 
581
- class GetPolicyCommand extends client.Command
584
+ class GetPolicyCommand extends Command
582
585
  .classBuilder()
583
586
  .ep(commonParams)
584
587
  .m(function (Command, cs, config, o) {
585
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
588
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
586
589
  })
587
590
  .s("AWSGirApiService", "GetPolicy", {})
588
591
  .n("LambdaClient", "GetPolicyCommand")
589
- .sc(schemas_0.GetPolicy$)
592
+ .sc(GetPolicy$)
590
593
  .build() {
591
594
  }
592
595
 
593
- class GetProvisionedConcurrencyConfigCommand extends client.Command
596
+ class GetProvisionedConcurrencyConfigCommand extends Command
594
597
  .classBuilder()
595
598
  .ep(commonParams)
596
599
  .m(function (Command, cs, config, o) {
597
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
600
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
598
601
  })
599
602
  .s("AWSGirApiService", "GetProvisionedConcurrencyConfig", {})
600
603
  .n("LambdaClient", "GetProvisionedConcurrencyConfigCommand")
601
- .sc(schemas_0.GetProvisionedConcurrencyConfig$)
604
+ .sc(GetProvisionedConcurrencyConfig$)
602
605
  .build() {
603
606
  }
604
607
 
605
- class GetRuntimeManagementConfigCommand extends client.Command
608
+ class GetRuntimeManagementConfigCommand extends Command
606
609
  .classBuilder()
607
610
  .ep(commonParams)
608
611
  .m(function (Command, cs, config, o) {
609
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
612
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
610
613
  })
611
614
  .s("AWSGirApiService", "GetRuntimeManagementConfig", {})
612
615
  .n("LambdaClient", "GetRuntimeManagementConfigCommand")
613
- .sc(schemas_0.GetRuntimeManagementConfig$)
616
+ .sc(GetRuntimeManagementConfig$)
614
617
  .build() {
615
618
  }
616
619
 
617
- class InvokeAsyncCommand extends client.Command
620
+ class InvokeAsyncCommand extends Command
618
621
  .classBuilder()
619
622
  .ep(commonParams)
620
623
  .m(function (Command, cs, config, o) {
621
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
624
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
622
625
  })
623
626
  .s("AWSGirApiService", "InvokeAsync", {})
624
627
  .n("LambdaClient", "InvokeAsyncCommand")
625
- .sc(schemas_0.InvokeAsync$)
628
+ .sc(InvokeAsync$)
626
629
  .build() {
627
630
  }
628
631
 
629
- class InvokeCommand extends client.Command
632
+ class InvokeCommand extends Command
630
633
  .classBuilder()
631
634
  .ep(commonParams)
632
635
  .m(function (Command, cs, config, o) {
633
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
636
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
634
637
  })
635
638
  .s("AWSGirApiService", "Invoke", {})
636
639
  .n("LambdaClient", "InvokeCommand")
637
- .sc(schemas_0.Invoke$)
640
+ .sc(Invoke$)
638
641
  .build() {
639
642
  }
640
643
 
641
- class InvokeWithResponseStreamCommand extends client.Command
644
+ class InvokeWithResponseStreamCommand extends Command
642
645
  .classBuilder()
643
646
  .ep(commonParams)
644
647
  .m(function (Command, cs, config, o) {
645
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
648
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
646
649
  })
647
650
  .s("AWSGirApiService", "InvokeWithResponseStream", {
648
651
  eventStream: {
@@ -650,533 +653,533 @@ class InvokeWithResponseStreamCommand extends client.Command
650
653
  },
651
654
  })
652
655
  .n("LambdaClient", "InvokeWithResponseStreamCommand")
653
- .sc(schemas_0.InvokeWithResponseStream$)
656
+ .sc(InvokeWithResponseStream$)
654
657
  .build() {
655
658
  }
656
659
 
657
- class ListAliasesCommand extends client.Command
660
+ class ListAliasesCommand extends Command
658
661
  .classBuilder()
659
662
  .ep(commonParams)
660
663
  .m(function (Command, cs, config, o) {
661
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
664
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
662
665
  })
663
666
  .s("AWSGirApiService", "ListAliases", {})
664
667
  .n("LambdaClient", "ListAliasesCommand")
665
- .sc(schemas_0.ListAliases$)
668
+ .sc(ListAliases$)
666
669
  .build() {
667
670
  }
668
671
 
669
- class ListCapacityProvidersCommand extends client.Command
672
+ class ListCapacityProvidersCommand extends Command
670
673
  .classBuilder()
671
674
  .ep(commonParams)
672
675
  .m(function (Command, cs, config, o) {
673
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
676
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
674
677
  })
675
678
  .s("AWSGirApiService", "ListCapacityProviders", {})
676
679
  .n("LambdaClient", "ListCapacityProvidersCommand")
677
- .sc(schemas_0.ListCapacityProviders$)
680
+ .sc(ListCapacityProviders$)
678
681
  .build() {
679
682
  }
680
683
 
681
- class ListCodeSigningConfigsCommand extends client.Command
684
+ class ListCodeSigningConfigsCommand extends Command
682
685
  .classBuilder()
683
686
  .ep(commonParams)
684
687
  .m(function (Command, cs, config, o) {
685
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
688
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
686
689
  })
687
690
  .s("AWSGirApiService", "ListCodeSigningConfigs", {})
688
691
  .n("LambdaClient", "ListCodeSigningConfigsCommand")
689
- .sc(schemas_0.ListCodeSigningConfigs$)
692
+ .sc(ListCodeSigningConfigs$)
690
693
  .build() {
691
694
  }
692
695
 
693
- class ListDurableExecutionsByFunctionCommand extends client.Command
696
+ class ListDurableExecutionsByFunctionCommand extends Command
694
697
  .classBuilder()
695
698
  .ep(commonParams)
696
699
  .m(function (Command, cs, config, o) {
697
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
700
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
698
701
  })
699
702
  .s("AWSGirApiService", "ListDurableExecutionsByFunction", {})
700
703
  .n("LambdaClient", "ListDurableExecutionsByFunctionCommand")
701
- .sc(schemas_0.ListDurableExecutionsByFunction$)
704
+ .sc(ListDurableExecutionsByFunction$)
702
705
  .build() {
703
706
  }
704
707
 
705
- class ListEventSourceMappingsCommand extends client.Command
708
+ class ListEventSourceMappingsCommand extends Command
706
709
  .classBuilder()
707
710
  .ep(commonParams)
708
711
  .m(function (Command, cs, config, o) {
709
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
712
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
710
713
  })
711
714
  .s("AWSGirApiService", "ListEventSourceMappings", {})
712
715
  .n("LambdaClient", "ListEventSourceMappingsCommand")
713
- .sc(schemas_0.ListEventSourceMappings$)
716
+ .sc(ListEventSourceMappings$)
714
717
  .build() {
715
718
  }
716
719
 
717
- class ListFunctionEventInvokeConfigsCommand extends client.Command
720
+ class ListFunctionEventInvokeConfigsCommand extends Command
718
721
  .classBuilder()
719
722
  .ep(commonParams)
720
723
  .m(function (Command, cs, config, o) {
721
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
724
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
722
725
  })
723
726
  .s("AWSGirApiService", "ListFunctionEventInvokeConfigs", {})
724
727
  .n("LambdaClient", "ListFunctionEventInvokeConfigsCommand")
725
- .sc(schemas_0.ListFunctionEventInvokeConfigs$)
728
+ .sc(ListFunctionEventInvokeConfigs$)
726
729
  .build() {
727
730
  }
728
731
 
729
- class ListFunctionsByCodeSigningConfigCommand extends client.Command
732
+ class ListFunctionsByCodeSigningConfigCommand extends Command
730
733
  .classBuilder()
731
734
  .ep(commonParams)
732
735
  .m(function (Command, cs, config, o) {
733
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
736
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
734
737
  })
735
738
  .s("AWSGirApiService", "ListFunctionsByCodeSigningConfig", {})
736
739
  .n("LambdaClient", "ListFunctionsByCodeSigningConfigCommand")
737
- .sc(schemas_0.ListFunctionsByCodeSigningConfig$)
740
+ .sc(ListFunctionsByCodeSigningConfig$)
738
741
  .build() {
739
742
  }
740
743
 
741
- class ListFunctionsCommand extends client.Command
744
+ class ListFunctionsCommand extends Command
742
745
  .classBuilder()
743
746
  .ep(commonParams)
744
747
  .m(function (Command, cs, config, o) {
745
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
748
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
746
749
  })
747
750
  .s("AWSGirApiService", "ListFunctions", {})
748
751
  .n("LambdaClient", "ListFunctionsCommand")
749
- .sc(schemas_0.ListFunctions$)
752
+ .sc(ListFunctions$)
750
753
  .build() {
751
754
  }
752
755
 
753
- class ListFunctionUrlConfigsCommand extends client.Command
756
+ class ListFunctionUrlConfigsCommand extends Command
754
757
  .classBuilder()
755
758
  .ep(commonParams)
756
759
  .m(function (Command, cs, config, o) {
757
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
760
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
758
761
  })
759
762
  .s("AWSGirApiService", "ListFunctionUrlConfigs", {})
760
763
  .n("LambdaClient", "ListFunctionUrlConfigsCommand")
761
- .sc(schemas_0.ListFunctionUrlConfigs$)
764
+ .sc(ListFunctionUrlConfigs$)
762
765
  .build() {
763
766
  }
764
767
 
765
- class ListFunctionVersionsByCapacityProviderCommand extends client.Command
768
+ class ListFunctionVersionsByCapacityProviderCommand extends Command
766
769
  .classBuilder()
767
770
  .ep(commonParams)
768
771
  .m(function (Command, cs, config, o) {
769
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
772
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
770
773
  })
771
774
  .s("AWSGirApiService", "ListFunctionVersionsByCapacityProvider", {})
772
775
  .n("LambdaClient", "ListFunctionVersionsByCapacityProviderCommand")
773
- .sc(schemas_0.ListFunctionVersionsByCapacityProvider$)
776
+ .sc(ListFunctionVersionsByCapacityProvider$)
774
777
  .build() {
775
778
  }
776
779
 
777
- class ListLayersCommand extends client.Command
780
+ class ListLayersCommand extends Command
778
781
  .classBuilder()
779
782
  .ep(commonParams)
780
783
  .m(function (Command, cs, config, o) {
781
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
784
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
782
785
  })
783
786
  .s("AWSGirApiService", "ListLayers", {})
784
787
  .n("LambdaClient", "ListLayersCommand")
785
- .sc(schemas_0.ListLayers$)
788
+ .sc(ListLayers$)
786
789
  .build() {
787
790
  }
788
791
 
789
- class ListLayerVersionsCommand extends client.Command
792
+ class ListLayerVersionsCommand extends Command
790
793
  .classBuilder()
791
794
  .ep(commonParams)
792
795
  .m(function (Command, cs, config, o) {
793
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
796
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
794
797
  })
795
798
  .s("AWSGirApiService", "ListLayerVersions", {})
796
799
  .n("LambdaClient", "ListLayerVersionsCommand")
797
- .sc(schemas_0.ListLayerVersions$)
800
+ .sc(ListLayerVersions$)
798
801
  .build() {
799
802
  }
800
803
 
801
- class ListProvisionedConcurrencyConfigsCommand extends client.Command
804
+ class ListProvisionedConcurrencyConfigsCommand extends Command
802
805
  .classBuilder()
803
806
  .ep(commonParams)
804
807
  .m(function (Command, cs, config, o) {
805
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
808
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
806
809
  })
807
810
  .s("AWSGirApiService", "ListProvisionedConcurrencyConfigs", {})
808
811
  .n("LambdaClient", "ListProvisionedConcurrencyConfigsCommand")
809
- .sc(schemas_0.ListProvisionedConcurrencyConfigs$)
812
+ .sc(ListProvisionedConcurrencyConfigs$)
810
813
  .build() {
811
814
  }
812
815
 
813
- class ListTagsCommand extends client.Command
816
+ class ListTagsCommand extends Command
814
817
  .classBuilder()
815
818
  .ep(commonParams)
816
819
  .m(function (Command, cs, config, o) {
817
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
820
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
818
821
  })
819
822
  .s("AWSGirApiService", "ListTags", {})
820
823
  .n("LambdaClient", "ListTagsCommand")
821
- .sc(schemas_0.ListTags$)
824
+ .sc(ListTags$)
822
825
  .build() {
823
826
  }
824
827
 
825
- class ListVersionsByFunctionCommand extends client.Command
828
+ class ListVersionsByFunctionCommand extends Command
826
829
  .classBuilder()
827
830
  .ep(commonParams)
828
831
  .m(function (Command, cs, config, o) {
829
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
832
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
830
833
  })
831
834
  .s("AWSGirApiService", "ListVersionsByFunction", {})
832
835
  .n("LambdaClient", "ListVersionsByFunctionCommand")
833
- .sc(schemas_0.ListVersionsByFunction$)
836
+ .sc(ListVersionsByFunction$)
834
837
  .build() {
835
838
  }
836
839
 
837
- class PublishLayerVersionCommand extends client.Command
840
+ class PublishLayerVersionCommand extends Command
838
841
  .classBuilder()
839
842
  .ep(commonParams)
840
843
  .m(function (Command, cs, config, o) {
841
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
844
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
842
845
  })
843
846
  .s("AWSGirApiService", "PublishLayerVersion", {})
844
847
  .n("LambdaClient", "PublishLayerVersionCommand")
845
- .sc(schemas_0.PublishLayerVersion$)
848
+ .sc(PublishLayerVersion$)
846
849
  .build() {
847
850
  }
848
851
 
849
- class PublishVersionCommand extends client.Command
852
+ class PublishVersionCommand extends Command
850
853
  .classBuilder()
851
854
  .ep(commonParams)
852
855
  .m(function (Command, cs, config, o) {
853
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
856
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
854
857
  })
855
858
  .s("AWSGirApiService", "PublishVersion", {})
856
859
  .n("LambdaClient", "PublishVersionCommand")
857
- .sc(schemas_0.PublishVersion$)
860
+ .sc(PublishVersion$)
858
861
  .build() {
859
862
  }
860
863
 
861
- class PutFunctionCodeSigningConfigCommand extends client.Command
864
+ class PutFunctionCodeSigningConfigCommand extends Command
862
865
  .classBuilder()
863
866
  .ep(commonParams)
864
867
  .m(function (Command, cs, config, o) {
865
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
868
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
866
869
  })
867
870
  .s("AWSGirApiService", "PutFunctionCodeSigningConfig", {})
868
871
  .n("LambdaClient", "PutFunctionCodeSigningConfigCommand")
869
- .sc(schemas_0.PutFunctionCodeSigningConfig$)
872
+ .sc(PutFunctionCodeSigningConfig$)
870
873
  .build() {
871
874
  }
872
875
 
873
- class PutFunctionConcurrencyCommand extends client.Command
876
+ class PutFunctionConcurrencyCommand extends Command
874
877
  .classBuilder()
875
878
  .ep(commonParams)
876
879
  .m(function (Command, cs, config, o) {
877
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
880
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
878
881
  })
879
882
  .s("AWSGirApiService", "PutFunctionConcurrency", {})
880
883
  .n("LambdaClient", "PutFunctionConcurrencyCommand")
881
- .sc(schemas_0.PutFunctionConcurrency$)
884
+ .sc(PutFunctionConcurrency$)
882
885
  .build() {
883
886
  }
884
887
 
885
- class PutFunctionEventInvokeConfigCommand extends client.Command
888
+ class PutFunctionEventInvokeConfigCommand extends Command
886
889
  .classBuilder()
887
890
  .ep(commonParams)
888
891
  .m(function (Command, cs, config, o) {
889
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
892
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
890
893
  })
891
894
  .s("AWSGirApiService", "PutFunctionEventInvokeConfig", {})
892
895
  .n("LambdaClient", "PutFunctionEventInvokeConfigCommand")
893
- .sc(schemas_0.PutFunctionEventInvokeConfig$)
896
+ .sc(PutFunctionEventInvokeConfig$)
894
897
  .build() {
895
898
  }
896
899
 
897
- class PutFunctionRecursionConfigCommand extends client.Command
900
+ class PutFunctionRecursionConfigCommand extends Command
898
901
  .classBuilder()
899
902
  .ep(commonParams)
900
903
  .m(function (Command, cs, config, o) {
901
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
904
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
902
905
  })
903
906
  .s("AWSGirApiService", "PutFunctionRecursionConfig", {})
904
907
  .n("LambdaClient", "PutFunctionRecursionConfigCommand")
905
- .sc(schemas_0.PutFunctionRecursionConfig$)
908
+ .sc(PutFunctionRecursionConfig$)
906
909
  .build() {
907
910
  }
908
911
 
909
- class PutFunctionScalingConfigCommand extends client.Command
912
+ class PutFunctionScalingConfigCommand extends Command
910
913
  .classBuilder()
911
914
  .ep(commonParams)
912
915
  .m(function (Command, cs, config, o) {
913
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
916
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
914
917
  })
915
918
  .s("AWSGirApiService", "PutFunctionScalingConfig", {})
916
919
  .n("LambdaClient", "PutFunctionScalingConfigCommand")
917
- .sc(schemas_0.PutFunctionScalingConfig$)
920
+ .sc(PutFunctionScalingConfig$)
918
921
  .build() {
919
922
  }
920
923
 
921
- class PutProvisionedConcurrencyConfigCommand extends client.Command
924
+ class PutProvisionedConcurrencyConfigCommand extends Command
922
925
  .classBuilder()
923
926
  .ep(commonParams)
924
927
  .m(function (Command, cs, config, o) {
925
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
928
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
926
929
  })
927
930
  .s("AWSGirApiService", "PutProvisionedConcurrencyConfig", {})
928
931
  .n("LambdaClient", "PutProvisionedConcurrencyConfigCommand")
929
- .sc(schemas_0.PutProvisionedConcurrencyConfig$)
932
+ .sc(PutProvisionedConcurrencyConfig$)
930
933
  .build() {
931
934
  }
932
935
 
933
- class PutRuntimeManagementConfigCommand extends client.Command
936
+ class PutRuntimeManagementConfigCommand extends Command
934
937
  .classBuilder()
935
938
  .ep(commonParams)
936
939
  .m(function (Command, cs, config, o) {
937
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
940
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
938
941
  })
939
942
  .s("AWSGirApiService", "PutRuntimeManagementConfig", {})
940
943
  .n("LambdaClient", "PutRuntimeManagementConfigCommand")
941
- .sc(schemas_0.PutRuntimeManagementConfig$)
944
+ .sc(PutRuntimeManagementConfig$)
942
945
  .build() {
943
946
  }
944
947
 
945
- class RemoveLayerVersionPermissionCommand extends client.Command
948
+ class RemoveLayerVersionPermissionCommand extends Command
946
949
  .classBuilder()
947
950
  .ep(commonParams)
948
951
  .m(function (Command, cs, config, o) {
949
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
952
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
950
953
  })
951
954
  .s("AWSGirApiService", "RemoveLayerVersionPermission", {})
952
955
  .n("LambdaClient", "RemoveLayerVersionPermissionCommand")
953
- .sc(schemas_0.RemoveLayerVersionPermission$)
956
+ .sc(RemoveLayerVersionPermission$)
954
957
  .build() {
955
958
  }
956
959
 
957
- class RemovePermissionCommand extends client.Command
960
+ class RemovePermissionCommand extends Command
958
961
  .classBuilder()
959
962
  .ep(commonParams)
960
963
  .m(function (Command, cs, config, o) {
961
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
964
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
962
965
  })
963
966
  .s("AWSGirApiService", "RemovePermission", {})
964
967
  .n("LambdaClient", "RemovePermissionCommand")
965
- .sc(schemas_0.RemovePermission$)
968
+ .sc(RemovePermission$)
966
969
  .build() {
967
970
  }
968
971
 
969
- class SendDurableExecutionCallbackFailureCommand extends client.Command
972
+ class SendDurableExecutionCallbackFailureCommand extends Command
970
973
  .classBuilder()
971
974
  .ep(commonParams)
972
975
  .m(function (Command, cs, config, o) {
973
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
976
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
974
977
  })
975
978
  .s("AWSGirApiService", "SendDurableExecutionCallbackFailure", {})
976
979
  .n("LambdaClient", "SendDurableExecutionCallbackFailureCommand")
977
- .sc(schemas_0.SendDurableExecutionCallbackFailure$)
980
+ .sc(SendDurableExecutionCallbackFailure$)
978
981
  .build() {
979
982
  }
980
983
 
981
- class SendDurableExecutionCallbackHeartbeatCommand extends client.Command
984
+ class SendDurableExecutionCallbackHeartbeatCommand extends Command
982
985
  .classBuilder()
983
986
  .ep(commonParams)
984
987
  .m(function (Command, cs, config, o) {
985
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
988
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
986
989
  })
987
990
  .s("AWSGirApiService", "SendDurableExecutionCallbackHeartbeat", {})
988
991
  .n("LambdaClient", "SendDurableExecutionCallbackHeartbeatCommand")
989
- .sc(schemas_0.SendDurableExecutionCallbackHeartbeat$)
992
+ .sc(SendDurableExecutionCallbackHeartbeat$)
990
993
  .build() {
991
994
  }
992
995
 
993
- class SendDurableExecutionCallbackSuccessCommand extends client.Command
996
+ class SendDurableExecutionCallbackSuccessCommand extends Command
994
997
  .classBuilder()
995
998
  .ep(commonParams)
996
999
  .m(function (Command, cs, config, o) {
997
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1000
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
998
1001
  })
999
1002
  .s("AWSGirApiService", "SendDurableExecutionCallbackSuccess", {})
1000
1003
  .n("LambdaClient", "SendDurableExecutionCallbackSuccessCommand")
1001
- .sc(schemas_0.SendDurableExecutionCallbackSuccess$)
1004
+ .sc(SendDurableExecutionCallbackSuccess$)
1002
1005
  .build() {
1003
1006
  }
1004
1007
 
1005
- class StopDurableExecutionCommand extends client.Command
1008
+ class StopDurableExecutionCommand extends Command
1006
1009
  .classBuilder()
1007
1010
  .ep(commonParams)
1008
1011
  .m(function (Command, cs, config, o) {
1009
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1012
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1010
1013
  })
1011
1014
  .s("AWSGirApiService", "StopDurableExecution", {})
1012
1015
  .n("LambdaClient", "StopDurableExecutionCommand")
1013
- .sc(schemas_0.StopDurableExecution$)
1016
+ .sc(StopDurableExecution$)
1014
1017
  .build() {
1015
1018
  }
1016
1019
 
1017
- class TagResourceCommand extends client.Command
1020
+ class TagResourceCommand extends Command
1018
1021
  .classBuilder()
1019
1022
  .ep(commonParams)
1020
1023
  .m(function (Command, cs, config, o) {
1021
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1024
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1022
1025
  })
1023
1026
  .s("AWSGirApiService", "TagResource", {})
1024
1027
  .n("LambdaClient", "TagResourceCommand")
1025
- .sc(schemas_0.TagResource$)
1028
+ .sc(TagResource$)
1026
1029
  .build() {
1027
1030
  }
1028
1031
 
1029
- class UntagResourceCommand extends client.Command
1032
+ class UntagResourceCommand extends Command
1030
1033
  .classBuilder()
1031
1034
  .ep(commonParams)
1032
1035
  .m(function (Command, cs, config, o) {
1033
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1036
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1034
1037
  })
1035
1038
  .s("AWSGirApiService", "UntagResource", {})
1036
1039
  .n("LambdaClient", "UntagResourceCommand")
1037
- .sc(schemas_0.UntagResource$)
1040
+ .sc(UntagResource$)
1038
1041
  .build() {
1039
1042
  }
1040
1043
 
1041
- class UpdateAliasCommand extends client.Command
1044
+ class UpdateAliasCommand extends Command
1042
1045
  .classBuilder()
1043
1046
  .ep(commonParams)
1044
1047
  .m(function (Command, cs, config, o) {
1045
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1048
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1046
1049
  })
1047
1050
  .s("AWSGirApiService", "UpdateAlias", {})
1048
1051
  .n("LambdaClient", "UpdateAliasCommand")
1049
- .sc(schemas_0.UpdateAlias$)
1052
+ .sc(UpdateAlias$)
1050
1053
  .build() {
1051
1054
  }
1052
1055
 
1053
- class UpdateCapacityProviderCommand extends client.Command
1056
+ class UpdateCapacityProviderCommand extends Command
1054
1057
  .classBuilder()
1055
1058
  .ep(commonParams)
1056
1059
  .m(function (Command, cs, config, o) {
1057
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1060
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1058
1061
  })
1059
1062
  .s("AWSGirApiService", "UpdateCapacityProvider", {})
1060
1063
  .n("LambdaClient", "UpdateCapacityProviderCommand")
1061
- .sc(schemas_0.UpdateCapacityProvider$)
1064
+ .sc(UpdateCapacityProvider$)
1062
1065
  .build() {
1063
1066
  }
1064
1067
 
1065
- class UpdateCodeSigningConfigCommand extends client.Command
1068
+ class UpdateCodeSigningConfigCommand extends Command
1066
1069
  .classBuilder()
1067
1070
  .ep(commonParams)
1068
1071
  .m(function (Command, cs, config, o) {
1069
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1072
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1070
1073
  })
1071
1074
  .s("AWSGirApiService", "UpdateCodeSigningConfig", {})
1072
1075
  .n("LambdaClient", "UpdateCodeSigningConfigCommand")
1073
- .sc(schemas_0.UpdateCodeSigningConfig$)
1076
+ .sc(UpdateCodeSigningConfig$)
1074
1077
  .build() {
1075
1078
  }
1076
1079
 
1077
- class UpdateEventSourceMappingCommand extends client.Command
1080
+ class UpdateEventSourceMappingCommand extends Command
1078
1081
  .classBuilder()
1079
1082
  .ep(commonParams)
1080
1083
  .m(function (Command, cs, config, o) {
1081
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1084
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1082
1085
  })
1083
1086
  .s("AWSGirApiService", "UpdateEventSourceMapping", {})
1084
1087
  .n("LambdaClient", "UpdateEventSourceMappingCommand")
1085
- .sc(schemas_0.UpdateEventSourceMapping$)
1088
+ .sc(UpdateEventSourceMapping$)
1086
1089
  .build() {
1087
1090
  }
1088
1091
 
1089
- class UpdateFunctionCodeCommand extends client.Command
1092
+ class UpdateFunctionCodeCommand extends Command
1090
1093
  .classBuilder()
1091
1094
  .ep(commonParams)
1092
1095
  .m(function (Command, cs, config, o) {
1093
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1096
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1094
1097
  })
1095
1098
  .s("AWSGirApiService", "UpdateFunctionCode", {})
1096
1099
  .n("LambdaClient", "UpdateFunctionCodeCommand")
1097
- .sc(schemas_0.UpdateFunctionCode$)
1100
+ .sc(UpdateFunctionCode$)
1098
1101
  .build() {
1099
1102
  }
1100
1103
 
1101
- class UpdateFunctionConfigurationCommand extends client.Command
1104
+ class UpdateFunctionConfigurationCommand extends Command
1102
1105
  .classBuilder()
1103
1106
  .ep(commonParams)
1104
1107
  .m(function (Command, cs, config, o) {
1105
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1108
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1106
1109
  })
1107
1110
  .s("AWSGirApiService", "UpdateFunctionConfiguration", {})
1108
1111
  .n("LambdaClient", "UpdateFunctionConfigurationCommand")
1109
- .sc(schemas_0.UpdateFunctionConfiguration$)
1112
+ .sc(UpdateFunctionConfiguration$)
1110
1113
  .build() {
1111
1114
  }
1112
1115
 
1113
- class UpdateFunctionEventInvokeConfigCommand extends client.Command
1116
+ class UpdateFunctionEventInvokeConfigCommand extends Command
1114
1117
  .classBuilder()
1115
1118
  .ep(commonParams)
1116
1119
  .m(function (Command, cs, config, o) {
1117
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1120
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1118
1121
  })
1119
1122
  .s("AWSGirApiService", "UpdateFunctionEventInvokeConfig", {})
1120
1123
  .n("LambdaClient", "UpdateFunctionEventInvokeConfigCommand")
1121
- .sc(schemas_0.UpdateFunctionEventInvokeConfig$)
1124
+ .sc(UpdateFunctionEventInvokeConfig$)
1122
1125
  .build() {
1123
1126
  }
1124
1127
 
1125
- class UpdateFunctionUrlConfigCommand extends client.Command
1128
+ class UpdateFunctionUrlConfigCommand extends Command
1126
1129
  .classBuilder()
1127
1130
  .ep(commonParams)
1128
1131
  .m(function (Command, cs, config, o) {
1129
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1132
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1130
1133
  })
1131
1134
  .s("AWSGirApiService", "UpdateFunctionUrlConfig", {})
1132
1135
  .n("LambdaClient", "UpdateFunctionUrlConfigCommand")
1133
- .sc(schemas_0.UpdateFunctionUrlConfig$)
1136
+ .sc(UpdateFunctionUrlConfig$)
1134
1137
  .build() {
1135
1138
  }
1136
1139
 
1137
- const paginateGetDurableExecutionHistory = core.createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
1140
+ const paginateGetDurableExecutionHistory = createPaginator(LambdaClient, GetDurableExecutionHistoryCommand, "Marker", "NextMarker", "MaxItems");
1138
1141
 
1139
- const paginateGetDurableExecutionState = core.createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
1142
+ const paginateGetDurableExecutionState = createPaginator(LambdaClient, GetDurableExecutionStateCommand, "Marker", "NextMarker", "MaxItems");
1140
1143
 
1141
- const paginateListAliases = core.createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
1144
+ const paginateListAliases = createPaginator(LambdaClient, ListAliasesCommand, "Marker", "NextMarker", "MaxItems");
1142
1145
 
1143
- const paginateListCapacityProviders = core.createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
1146
+ const paginateListCapacityProviders = createPaginator(LambdaClient, ListCapacityProvidersCommand, "Marker", "NextMarker", "MaxItems");
1144
1147
 
1145
- const paginateListCodeSigningConfigs = core.createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
1148
+ const paginateListCodeSigningConfigs = createPaginator(LambdaClient, ListCodeSigningConfigsCommand, "Marker", "NextMarker", "MaxItems");
1146
1149
 
1147
- const paginateListDurableExecutionsByFunction = core.createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
1150
+ const paginateListDurableExecutionsByFunction = createPaginator(LambdaClient, ListDurableExecutionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
1148
1151
 
1149
- const paginateListEventSourceMappings = core.createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
1152
+ const paginateListEventSourceMappings = createPaginator(LambdaClient, ListEventSourceMappingsCommand, "Marker", "NextMarker", "MaxItems");
1150
1153
 
1151
- const paginateListFunctionEventInvokeConfigs = core.createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
1154
+ const paginateListFunctionEventInvokeConfigs = createPaginator(LambdaClient, ListFunctionEventInvokeConfigsCommand, "Marker", "NextMarker", "MaxItems");
1152
1155
 
1153
- const paginateListFunctionsByCodeSigningConfig = core.createPaginator(LambdaClient, ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
1156
+ const paginateListFunctionsByCodeSigningConfig = createPaginator(LambdaClient, ListFunctionsByCodeSigningConfigCommand, "Marker", "NextMarker", "MaxItems");
1154
1157
 
1155
- const paginateListFunctions = core.createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
1158
+ const paginateListFunctions = createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");
1156
1159
 
1157
- const paginateListFunctionUrlConfigs = core.createPaginator(LambdaClient, ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
1160
+ const paginateListFunctionUrlConfigs = createPaginator(LambdaClient, ListFunctionUrlConfigsCommand, "Marker", "NextMarker", "MaxItems");
1158
1161
 
1159
- const paginateListFunctionVersionsByCapacityProvider = core.createPaginator(LambdaClient, ListFunctionVersionsByCapacityProviderCommand, "Marker", "NextMarker", "MaxItems");
1162
+ const paginateListFunctionVersionsByCapacityProvider = createPaginator(LambdaClient, ListFunctionVersionsByCapacityProviderCommand, "Marker", "NextMarker", "MaxItems");
1160
1163
 
1161
- const paginateListLayers = core.createPaginator(LambdaClient, ListLayersCommand, "Marker", "NextMarker", "MaxItems");
1164
+ const paginateListLayers = createPaginator(LambdaClient, ListLayersCommand, "Marker", "NextMarker", "MaxItems");
1162
1165
 
1163
- const paginateListLayerVersions = core.createPaginator(LambdaClient, ListLayerVersionsCommand, "Marker", "NextMarker", "MaxItems");
1166
+ const paginateListLayerVersions = createPaginator(LambdaClient, ListLayerVersionsCommand, "Marker", "NextMarker", "MaxItems");
1164
1167
 
1165
- const paginateListProvisionedConcurrencyConfigs = core.createPaginator(LambdaClient, ListProvisionedConcurrencyConfigsCommand, "Marker", "NextMarker", "MaxItems");
1168
+ const paginateListProvisionedConcurrencyConfigs = createPaginator(LambdaClient, ListProvisionedConcurrencyConfigsCommand, "Marker", "NextMarker", "MaxItems");
1166
1169
 
1167
- const paginateListVersionsByFunction = core.createPaginator(LambdaClient, ListVersionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
1170
+ const paginateListVersionsByFunction = createPaginator(LambdaClient, ListVersionsByFunctionCommand, "Marker", "NextMarker", "MaxItems");
1168
1171
 
1169
- const checkState$5 = async (client$1, input) => {
1172
+ const checkState$5 = async (client, input) => {
1170
1173
  let reason;
1171
1174
  try {
1172
- let result = await client$1.send(new GetFunctionConfigurationCommand(input));
1175
+ let result = await client.send(new GetFunctionConfigurationCommand(input));
1173
1176
  reason = result;
1174
1177
  try {
1175
1178
  const returnComparator = () => {
1176
1179
  return result.State;
1177
1180
  };
1178
1181
  if (returnComparator() === "Active") {
1179
- return { state: client.WaiterState.SUCCESS, reason };
1182
+ return { state: WaiterState.SUCCESS, reason };
1180
1183
  }
1181
1184
  }
1182
1185
  catch (e) { }
@@ -1185,7 +1188,7 @@ const checkState$5 = async (client$1, input) => {
1185
1188
  return result.State;
1186
1189
  };
1187
1190
  if (returnComparator() === "Failed") {
1188
- return { state: client.WaiterState.FAILURE, reason };
1191
+ return { state: WaiterState.FAILURE, reason };
1189
1192
  }
1190
1193
  }
1191
1194
  catch (e) { }
@@ -1194,7 +1197,7 @@ const checkState$5 = async (client$1, input) => {
1194
1197
  return result.State;
1195
1198
  };
1196
1199
  if (returnComparator() === "Pending") {
1197
- return { state: client.WaiterState.RETRY, reason };
1200
+ return { state: WaiterState.RETRY, reason };
1198
1201
  }
1199
1202
  }
1200
1203
  catch (e) { }
@@ -1202,29 +1205,29 @@ const checkState$5 = async (client$1, input) => {
1202
1205
  catch (exception) {
1203
1206
  reason = exception;
1204
1207
  }
1205
- return { state: client.WaiterState.RETRY, reason };
1208
+ return { state: WaiterState.RETRY, reason };
1206
1209
  };
1207
1210
  const waitForFunctionActive = async (params, input) => {
1208
1211
  const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1209
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
1212
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
1210
1213
  };
1211
1214
  const waitUntilFunctionActive = async (params, input) => {
1212
1215
  const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1213
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
1214
- return client.checkExceptions(result);
1216
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);
1217
+ return checkExceptions(result);
1215
1218
  };
1216
1219
 
1217
- const checkState$4 = async (client$1, input) => {
1220
+ const checkState$4 = async (client, input) => {
1218
1221
  let reason;
1219
1222
  try {
1220
- let result = await client$1.send(new GetFunctionCommand(input));
1223
+ let result = await client.send(new GetFunctionCommand(input));
1221
1224
  reason = result;
1222
1225
  try {
1223
1226
  const returnComparator = () => {
1224
1227
  return result.Configuration.State;
1225
1228
  };
1226
1229
  if (returnComparator() === "Active") {
1227
- return { state: client.WaiterState.SUCCESS, reason };
1230
+ return { state: WaiterState.SUCCESS, reason };
1228
1231
  }
1229
1232
  }
1230
1233
  catch (e) { }
@@ -1233,7 +1236,7 @@ const checkState$4 = async (client$1, input) => {
1233
1236
  return result.Configuration.State;
1234
1237
  };
1235
1238
  if (returnComparator() === "Failed") {
1236
- return { state: client.WaiterState.FAILURE, reason };
1239
+ return { state: WaiterState.FAILURE, reason };
1237
1240
  }
1238
1241
  }
1239
1242
  catch (e) { }
@@ -1242,7 +1245,7 @@ const checkState$4 = async (client$1, input) => {
1242
1245
  return result.Configuration.State;
1243
1246
  };
1244
1247
  if (returnComparator() === "Pending") {
1245
- return { state: client.WaiterState.RETRY, reason };
1248
+ return { state: WaiterState.RETRY, reason };
1246
1249
  }
1247
1250
  }
1248
1251
  catch (e) { }
@@ -1250,54 +1253,54 @@ const checkState$4 = async (client$1, input) => {
1250
1253
  catch (exception) {
1251
1254
  reason = exception;
1252
1255
  }
1253
- return { state: client.WaiterState.RETRY, reason };
1256
+ return { state: WaiterState.RETRY, reason };
1254
1257
  };
1255
1258
  const waitForFunctionActiveV2 = async (params, input) => {
1256
1259
  const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1257
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
1260
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
1258
1261
  };
1259
1262
  const waitUntilFunctionActiveV2 = async (params, input) => {
1260
1263
  const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1261
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
1262
- return client.checkExceptions(result);
1264
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);
1265
+ return checkExceptions(result);
1263
1266
  };
1264
1267
 
1265
- const checkState$3 = async (client$1, input) => {
1268
+ const checkState$3 = async (client, input) => {
1266
1269
  let reason;
1267
1270
  try {
1268
- let result = await client$1.send(new GetFunctionCommand(input));
1271
+ let result = await client.send(new GetFunctionCommand(input));
1269
1272
  reason = result;
1270
- return { state: client.WaiterState.SUCCESS, reason };
1273
+ return { state: WaiterState.SUCCESS, reason };
1271
1274
  }
1272
1275
  catch (exception) {
1273
1276
  reason = exception;
1274
1277
  if (exception.name === "ResourceNotFoundException") {
1275
- return { state: client.WaiterState.RETRY, reason };
1278
+ return { state: WaiterState.RETRY, reason };
1276
1279
  }
1277
1280
  }
1278
- return { state: client.WaiterState.RETRY, reason };
1281
+ return { state: WaiterState.RETRY, reason };
1279
1282
  };
1280
1283
  const waitForFunctionExists = async (params, input) => {
1281
1284
  const serviceDefaults = { minDelay: 1, maxDelay: 20 };
1282
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
1285
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
1283
1286
  };
1284
1287
  const waitUntilFunctionExists = async (params, input) => {
1285
1288
  const serviceDefaults = { minDelay: 1, maxDelay: 20 };
1286
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
1287
- return client.checkExceptions(result);
1289
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
1290
+ return checkExceptions(result);
1288
1291
  };
1289
1292
 
1290
- const checkState$2 = async (client$1, input) => {
1293
+ const checkState$2 = async (client, input) => {
1291
1294
  let reason;
1292
1295
  try {
1293
- let result = await client$1.send(new GetFunctionConfigurationCommand(input));
1296
+ let result = await client.send(new GetFunctionConfigurationCommand(input));
1294
1297
  reason = result;
1295
1298
  try {
1296
1299
  const returnComparator = () => {
1297
1300
  return result.LastUpdateStatus;
1298
1301
  };
1299
1302
  if (returnComparator() === "Successful") {
1300
- return { state: client.WaiterState.SUCCESS, reason };
1303
+ return { state: WaiterState.SUCCESS, reason };
1301
1304
  }
1302
1305
  }
1303
1306
  catch (e) { }
@@ -1306,7 +1309,7 @@ const checkState$2 = async (client$1, input) => {
1306
1309
  return result.LastUpdateStatus;
1307
1310
  };
1308
1311
  if (returnComparator() === "Failed") {
1309
- return { state: client.WaiterState.FAILURE, reason };
1312
+ return { state: WaiterState.FAILURE, reason };
1310
1313
  }
1311
1314
  }
1312
1315
  catch (e) { }
@@ -1315,7 +1318,7 @@ const checkState$2 = async (client$1, input) => {
1315
1318
  return result.LastUpdateStatus;
1316
1319
  };
1317
1320
  if (returnComparator() === "InProgress") {
1318
- return { state: client.WaiterState.RETRY, reason };
1321
+ return { state: WaiterState.RETRY, reason };
1319
1322
  }
1320
1323
  }
1321
1324
  catch (e) { }
@@ -1323,29 +1326,29 @@ const checkState$2 = async (client$1, input) => {
1323
1326
  catch (exception) {
1324
1327
  reason = exception;
1325
1328
  }
1326
- return { state: client.WaiterState.RETRY, reason };
1329
+ return { state: WaiterState.RETRY, reason };
1327
1330
  };
1328
1331
  const waitForFunctionUpdated = async (params, input) => {
1329
1332
  const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1330
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
1333
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
1331
1334
  };
1332
1335
  const waitUntilFunctionUpdated = async (params, input) => {
1333
1336
  const serviceDefaults = { minDelay: 5, maxDelay: 300 };
1334
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
1335
- return client.checkExceptions(result);
1337
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
1338
+ return checkExceptions(result);
1336
1339
  };
1337
1340
 
1338
- const checkState$1 = async (client$1, input) => {
1341
+ const checkState$1 = async (client, input) => {
1339
1342
  let reason;
1340
1343
  try {
1341
- let result = await client$1.send(new GetFunctionCommand(input));
1344
+ let result = await client.send(new GetFunctionCommand(input));
1342
1345
  reason = result;
1343
1346
  try {
1344
1347
  const returnComparator = () => {
1345
1348
  return result.Configuration.LastUpdateStatus;
1346
1349
  };
1347
1350
  if (returnComparator() === "Successful") {
1348
- return { state: client.WaiterState.SUCCESS, reason };
1351
+ return { state: WaiterState.SUCCESS, reason };
1349
1352
  }
1350
1353
  }
1351
1354
  catch (e) { }
@@ -1354,7 +1357,7 @@ const checkState$1 = async (client$1, input) => {
1354
1357
  return result.Configuration.LastUpdateStatus;
1355
1358
  };
1356
1359
  if (returnComparator() === "Failed") {
1357
- return { state: client.WaiterState.FAILURE, reason };
1360
+ return { state: WaiterState.FAILURE, reason };
1358
1361
  }
1359
1362
  }
1360
1363
  catch (e) { }
@@ -1363,7 +1366,7 @@ const checkState$1 = async (client$1, input) => {
1363
1366
  return result.Configuration.LastUpdateStatus;
1364
1367
  };
1365
1368
  if (returnComparator() === "InProgress") {
1366
- return { state: client.WaiterState.RETRY, reason };
1369
+ return { state: WaiterState.RETRY, reason };
1367
1370
  }
1368
1371
  }
1369
1372
  catch (e) { }
@@ -1371,29 +1374,29 @@ const checkState$1 = async (client$1, input) => {
1371
1374
  catch (exception) {
1372
1375
  reason = exception;
1373
1376
  }
1374
- return { state: client.WaiterState.RETRY, reason };
1377
+ return { state: WaiterState.RETRY, reason };
1375
1378
  };
1376
1379
  const waitForFunctionUpdatedV2 = async (params, input) => {
1377
1380
  const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1378
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
1381
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
1379
1382
  };
1380
1383
  const waitUntilFunctionUpdatedV2 = async (params, input) => {
1381
1384
  const serviceDefaults = { minDelay: 1, maxDelay: 300 };
1382
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
1383
- return client.checkExceptions(result);
1385
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
1386
+ return checkExceptions(result);
1384
1387
  };
1385
1388
 
1386
- const checkState = async (client$1, input) => {
1389
+ const checkState = async (client, input) => {
1387
1390
  let reason;
1388
1391
  try {
1389
- let result = await client$1.send(new GetFunctionConfigurationCommand(input));
1392
+ let result = await client.send(new GetFunctionConfigurationCommand(input));
1390
1393
  reason = result;
1391
1394
  try {
1392
1395
  const returnComparator = () => {
1393
1396
  return result.State;
1394
1397
  };
1395
1398
  if (returnComparator() === "Active") {
1396
- return { state: client.WaiterState.SUCCESS, reason };
1399
+ return { state: WaiterState.SUCCESS, reason };
1397
1400
  }
1398
1401
  }
1399
1402
  catch (e) { }
@@ -1402,7 +1405,7 @@ const checkState = async (client$1, input) => {
1402
1405
  return result.State;
1403
1406
  };
1404
1407
  if (returnComparator() === "Failed") {
1405
- return { state: client.WaiterState.FAILURE, reason };
1408
+ return { state: WaiterState.FAILURE, reason };
1406
1409
  }
1407
1410
  }
1408
1411
  catch (e) { }
@@ -1411,7 +1414,7 @@ const checkState = async (client$1, input) => {
1411
1414
  return result.State;
1412
1415
  };
1413
1416
  if (returnComparator() === "Pending") {
1414
- return { state: client.WaiterState.RETRY, reason };
1417
+ return { state: WaiterState.RETRY, reason };
1415
1418
  }
1416
1419
  }
1417
1420
  catch (e) { }
@@ -1419,16 +1422,16 @@ const checkState = async (client$1, input) => {
1419
1422
  catch (exception) {
1420
1423
  reason = exception;
1421
1424
  }
1422
- return { state: client.WaiterState.RETRY, reason };
1425
+ return { state: WaiterState.RETRY, reason };
1423
1426
  };
1424
1427
  const waitForPublishedVersionActive = async (params, input) => {
1425
1428
  const serviceDefaults = { minDelay: 5, maxDelay: 1560 };
1426
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
1429
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
1427
1430
  };
1428
1431
  const waitUntilPublishedVersionActive = async (params, input) => {
1429
1432
  const serviceDefaults = { minDelay: 5, maxDelay: 1560 };
1430
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
1431
- return client.checkExceptions(result);
1433
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
1434
+ return checkExceptions(result);
1432
1435
  };
1433
1436
 
1434
1437
  const commands = {
@@ -1546,7 +1549,7 @@ const waiters = {
1546
1549
  };
1547
1550
  class Lambda extends LambdaClient {
1548
1551
  }
1549
- client.createAggregatedClient(commands, Lambda, { paginators, waiters });
1552
+ createAggregatedClient(commands, Lambda, { paginators, waiters });
1550
1553
 
1551
1554
  const ThrottleReason = {
1552
1555
  CallerRateLimitExceeded: "CallerRateLimitExceeded",
@@ -1789,6 +1792,7 @@ const LastUpdateStatusReasonCode = {
1789
1792
  InvalidZipFileException: "InvalidZipFileException",
1790
1793
  KMSKeyAccessDenied: "KMSKeyAccessDenied",
1791
1794
  KMSKeyNotFound: "KMSKeyNotFound",
1795
+ ServiceQuotaExceededException: "ServiceQuotaExceededException",
1792
1796
  SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
1793
1797
  VcpuLimitExceeded: "VcpuLimitExceeded",
1794
1798
  };
@@ -1833,6 +1837,7 @@ const StateReasonCode = {
1833
1837
  KMSKeyAccessDenied: "KMSKeyAccessDenied",
1834
1838
  KMSKeyNotFound: "KMSKeyNotFound",
1835
1839
  Restoring: "Restoring",
1840
+ ServiceQuotaExceededException: "ServiceQuotaExceededException",
1836
1841
  SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
1837
1842
  VcpuLimitExceeded: "VcpuLimitExceeded",
1838
1843
  };
@@ -1904,9 +1909,6 @@ const EventType = {
1904
1909
  WaitSucceeded: "WaitSucceeded",
1905
1910
  };
1906
1911
 
1907
- exports.$Command = client.Command;
1908
- exports.__Client = client.Client;
1909
- exports.LambdaServiceException = LambdaServiceException.LambdaServiceException;
1910
1912
  exports.AddLayerVersionPermissionCommand = AddLayerVersionPermissionCommand;
1911
1913
  exports.AddPermissionCommand = AddPermissionCommand;
1912
1914
  exports.ApplicationLogLevel = ApplicationLogLevel;
@@ -2067,23 +2069,3 @@ exports.waitUntilFunctionExists = waitUntilFunctionExists;
2067
2069
  exports.waitUntilFunctionUpdated = waitUntilFunctionUpdated;
2068
2070
  exports.waitUntilFunctionUpdatedV2 = waitUntilFunctionUpdatedV2;
2069
2071
  exports.waitUntilPublishedVersionActive = waitUntilPublishedVersionActive;
2070
- Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
2071
- !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
2072
- Object.defineProperty(exports, '__proto__', {
2073
- enumerable: true,
2074
- value: schemas_0['__proto__']
2075
- });
2076
-
2077
- Object.keys(schemas_0).forEach(function (k) {
2078
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
2079
- });
2080
- Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
2081
- !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
2082
- Object.defineProperty(exports, '__proto__', {
2083
- enumerable: true,
2084
- value: errors['__proto__']
2085
- });
2086
-
2087
- Object.keys(errors).forEach(function (k) {
2088
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
2089
- });