@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,18 +1,21 @@
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 protocols = require('@smithy/core/protocols');
9
- var retry = require('@smithy/core/retry');
10
- var schema = require('@smithy/core/schema');
11
- var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
12
- var runtimeConfig = require('./runtimeConfig');
13
- var schemas_0 = require('./schemas/schemas_0');
14
- var errors = require('./models/errors');
15
- var IAMServiceException = require('./models/IAMServiceException');
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 { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
+ const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
+ const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
+ const { resolveHttpAuthSchemeConfig, defaultIAMHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
+ const { getRuntimeConfig } = require("./runtimeConfig");
14
+ const { AcceptDelegationRequest$, AddClientIDToOpenIDConnectProvider$, AddRoleToInstanceProfile$, AddUserToGroup$, AssociateDelegationRequest$, AttachGroupPolicy$, AttachRolePolicy$, AttachUserPolicy$, ChangePassword$, CreateAccessKey$, CreateAccountAlias$, CreateDelegationRequest$, CreateGroup$, CreateInstanceProfile$, CreateLoginProfile$, CreateOpenIDConnectProvider$, CreatePolicy$, CreatePolicyVersion$, CreateRole$, CreateSAMLProvider$, CreateServiceLinkedRole$, CreateServiceSpecificCredential$, CreateUser$, CreateVirtualMFADevice$, DeactivateMFADevice$, DeleteAccessKey$, DeleteAccountAlias$, DeleteAccountPasswordPolicy$, DeleteGroup$, DeleteGroupPolicy$, DeleteInstanceProfile$, DeleteLoginProfile$, DeleteOpenIDConnectProvider$, DeletePolicy$, DeletePolicyVersion$, DeleteRole$, DeleteRolePermissionsBoundary$, DeleteRolePolicy$, DeleteSAMLProvider$, DeleteServerCertificate$, DeleteServiceLinkedRole$, DeleteServiceSpecificCredential$, DeleteSigningCertificate$, DeleteSSHPublicKey$, DeleteUser$, DeleteUserPermissionsBoundary$, DeleteUserPolicy$, DeleteVirtualMFADevice$, DetachGroupPolicy$, DetachRolePolicy$, DetachUserPolicy$, DisableOrganizationsRootCredentialsManagement$, DisableOrganizationsRootSessions$, DisableOutboundWebIdentityFederation$, EnableMFADevice$, EnableOrganizationsRootCredentialsManagement$, EnableOrganizationsRootSessions$, EnableOutboundWebIdentityFederation$, GenerateCredentialReport$, GenerateOrganizationsAccessReport$, GenerateServiceLastAccessedDetails$, GetAccessKeyLastUsed$, GetAccountAuthorizationDetails$, GetAccountPasswordPolicy$, GetAccountSummary$, GetContextKeysForCustomPolicy$, GetContextKeysForPrincipalPolicy$, GetCredentialReport$, GetDelegationRequest$, GetGroup$, GetGroupPolicy$, GetHumanReadableSummary$, GetInstanceProfile$, GetLoginProfile$, GetMFADevice$, GetOpenIDConnectProvider$, GetOrganizationsAccessReport$, GetOutboundWebIdentityFederationInfo$, GetPolicy$, GetPolicyVersion$, GetRole$, GetRolePolicy$, GetSAMLProvider$, GetServerCertificate$, GetServiceLastAccessedDetails$, GetServiceLastAccessedDetailsWithEntities$, GetServiceLinkedRoleDeletionStatus$, GetSSHPublicKey$, GetUser$, GetUserPolicy$, ListAccessKeys$, ListAccountAliases$, ListAttachedGroupPolicies$, ListAttachedRolePolicies$, ListAttachedUserPolicies$, ListDelegationRequests$, ListEntitiesForPolicy$, ListGroupPolicies$, ListGroups$, ListGroupsForUser$, ListInstanceProfiles$, ListInstanceProfilesForRole$, ListInstanceProfileTags$, ListMFADevices$, ListMFADeviceTags$, ListOpenIDConnectProviders$, ListOpenIDConnectProviderTags$, ListOrganizationsFeatures$, ListPolicies$, ListPoliciesGrantingServiceAccess$, ListPolicyTags$, ListPolicyVersions$, ListRolePolicies$, ListRoles$, ListRoleTags$, ListSAMLProviders$, ListSAMLProviderTags$, ListServerCertificates$, ListServerCertificateTags$, ListServiceSpecificCredentials$, ListSigningCertificates$, ListSSHPublicKeys$, ListUserPolicies$, ListUsers$, ListUserTags$, ListVirtualMFADevices$, PutGroupPolicy$, PutRolePermissionsBoundary$, PutRolePolicy$, PutUserPermissionsBoundary$, PutUserPolicy$, RejectDelegationRequest$, RemoveClientIDFromOpenIDConnectProvider$, RemoveRoleFromInstanceProfile$, RemoveUserFromGroup$, ResetServiceSpecificCredential$, ResyncMFADevice$, SendDelegationToken$, SetDefaultPolicyVersion$, SetSecurityTokenServicePreferences$, SimulateCustomPolicy$, SimulatePrincipalPolicy$, TagInstanceProfile$, TagMFADevice$, TagOpenIDConnectProvider$, TagPolicy$, TagRole$, TagSAMLProvider$, TagServerCertificate$, TagUser$, UntagInstanceProfile$, UntagMFADevice$, UntagOpenIDConnectProvider$, UntagPolicy$, UntagRole$, UntagSAMLProvider$, UntagServerCertificate$, UntagUser$, UpdateAccessKey$, UpdateAccountPasswordPolicy$, UpdateAssumeRolePolicy$, UpdateDelegationRequest$, UpdateGroup$, UpdateLoginProfile$, UpdateOpenIDConnectProviderThumbprint$, UpdateRole$, UpdateRoleDescription$, UpdateSAMLProvider$, UpdateServerCertificate$, UpdateServiceSpecificCredential$, UpdateSigningCertificate$, UpdateSSHPublicKey$, UpdateUser$, UploadServerCertificate$, UploadSigningCertificate$, UploadSSHPublicKey$ } = require("./schemas/schemas_0");
15
+ __exportStar(require("./schemas/schemas_0"), exports);
16
+ __exportStar(require("./models/errors"), exports);
17
+ const { IAMServiceException } = require("./models/IAMServiceException");
18
+ exports.IAMServiceException = IAMServiceException;
16
19
 
17
20
  const resolveClientEndpointParameters = (options) => {
18
21
  return Object.assign(options, {
@@ -68,2324 +71,2324 @@ const resolveHttpAuthRuntimeConfig = (config) => {
68
71
  };
69
72
 
70
73
  const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
71
- const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
74
+ const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
72
75
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
73
- return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
76
+ return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
74
77
  };
75
78
 
76
- class IAMClient extends client.Client {
79
+ class IAMClient extends Client {
77
80
  config;
78
81
  constructor(...[configuration]) {
79
- const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
82
+ const _config_0 = getRuntimeConfig(configuration || {});
80
83
  super(_config_0);
81
84
  this.initConfig = _config_0;
82
85
  const _config_1 = resolveClientEndpointParameters(_config_0);
83
- const _config_2 = client$1.resolveUserAgentConfig(_config_1);
84
- const _config_3 = retry.resolveRetryConfig(_config_2);
85
- const _config_4 = config.resolveRegionConfig(_config_3);
86
- const _config_5 = client$1.resolveHostHeaderConfig(_config_4);
87
- const _config_6 = endpoints.resolveEndpointConfig(_config_5);
88
- const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
86
+ const _config_2 = resolveUserAgentConfig(_config_1);
87
+ const _config_3 = resolveRetryConfig(_config_2);
88
+ const _config_4 = resolveRegionConfig(_config_3);
89
+ const _config_5 = resolveHostHeaderConfig(_config_4);
90
+ const _config_6 = resolveEndpointConfig(_config_5);
91
+ const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
89
92
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
90
93
  this.config = _config_8;
91
- this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
92
- this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));
93
- this.middlewareStack.use(retry.getRetryPlugin(this.config));
94
- this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));
95
- this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));
96
- this.middlewareStack.use(client$1.getLoggerPlugin(this.config));
97
- this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));
98
- this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
99
- httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultIAMHttpAuthSchemeParametersProvider,
100
- identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({
94
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
95
+ this.middlewareStack.use(getUserAgentPlugin(this.config));
96
+ this.middlewareStack.use(getRetryPlugin(this.config));
97
+ this.middlewareStack.use(getContentLengthPlugin(this.config));
98
+ this.middlewareStack.use(getHostHeaderPlugin(this.config));
99
+ this.middlewareStack.use(getLoggerPlugin(this.config));
100
+ this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
101
+ this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
102
+ httpAuthSchemeParametersProvider: defaultIAMHttpAuthSchemeParametersProvider,
103
+ identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
101
104
  "aws.auth#sigv4": config.credentials,
102
105
  }),
103
106
  }));
104
- this.middlewareStack.use(core.getHttpSigningPlugin(this.config));
107
+ this.middlewareStack.use(getHttpSigningPlugin(this.config));
105
108
  }
106
109
  destroy() {
107
110
  super.destroy();
108
111
  }
109
112
  }
110
113
 
111
- class AcceptDelegationRequestCommand extends client.Command
114
+ class AcceptDelegationRequestCommand extends Command
112
115
  .classBuilder()
113
116
  .ep(commonParams)
114
117
  .m(function (Command, cs, config, o) {
115
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
118
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
116
119
  })
117
120
  .s("AWSIdentityManagementV20100508", "AcceptDelegationRequest", {})
118
121
  .n("IAMClient", "AcceptDelegationRequestCommand")
119
- .sc(schemas_0.AcceptDelegationRequest$)
122
+ .sc(AcceptDelegationRequest$)
120
123
  .build() {
121
124
  }
122
125
 
123
- class AddClientIDToOpenIDConnectProviderCommand extends client.Command
126
+ class AddClientIDToOpenIDConnectProviderCommand extends Command
124
127
  .classBuilder()
125
128
  .ep(commonParams)
126
129
  .m(function (Command, cs, config, o) {
127
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
130
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
128
131
  })
129
132
  .s("AWSIdentityManagementV20100508", "AddClientIDToOpenIDConnectProvider", {})
130
133
  .n("IAMClient", "AddClientIDToOpenIDConnectProviderCommand")
131
- .sc(schemas_0.AddClientIDToOpenIDConnectProvider$)
134
+ .sc(AddClientIDToOpenIDConnectProvider$)
132
135
  .build() {
133
136
  }
134
137
 
135
- class AddRoleToInstanceProfileCommand extends client.Command
138
+ class AddRoleToInstanceProfileCommand extends Command
136
139
  .classBuilder()
137
140
  .ep(commonParams)
138
141
  .m(function (Command, cs, config, o) {
139
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
142
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
140
143
  })
141
144
  .s("AWSIdentityManagementV20100508", "AddRoleToInstanceProfile", {})
142
145
  .n("IAMClient", "AddRoleToInstanceProfileCommand")
143
- .sc(schemas_0.AddRoleToInstanceProfile$)
146
+ .sc(AddRoleToInstanceProfile$)
144
147
  .build() {
145
148
  }
146
149
 
147
- class AddUserToGroupCommand extends client.Command
150
+ class AddUserToGroupCommand extends Command
148
151
  .classBuilder()
149
152
  .ep(commonParams)
150
153
  .m(function (Command, cs, config, o) {
151
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
154
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
152
155
  })
153
156
  .s("AWSIdentityManagementV20100508", "AddUserToGroup", {})
154
157
  .n("IAMClient", "AddUserToGroupCommand")
155
- .sc(schemas_0.AddUserToGroup$)
158
+ .sc(AddUserToGroup$)
156
159
  .build() {
157
160
  }
158
161
 
159
- class AssociateDelegationRequestCommand extends client.Command
162
+ class AssociateDelegationRequestCommand extends Command
160
163
  .classBuilder()
161
164
  .ep(commonParams)
162
165
  .m(function (Command, cs, config, o) {
163
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
166
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
164
167
  })
165
168
  .s("AWSIdentityManagementV20100508", "AssociateDelegationRequest", {})
166
169
  .n("IAMClient", "AssociateDelegationRequestCommand")
167
- .sc(schemas_0.AssociateDelegationRequest$)
170
+ .sc(AssociateDelegationRequest$)
168
171
  .build() {
169
172
  }
170
173
 
171
- class AttachGroupPolicyCommand extends client.Command
174
+ class AttachGroupPolicyCommand extends Command
172
175
  .classBuilder()
173
176
  .ep(commonParams)
174
177
  .m(function (Command, cs, config, o) {
175
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
178
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
176
179
  })
177
180
  .s("AWSIdentityManagementV20100508", "AttachGroupPolicy", {})
178
181
  .n("IAMClient", "AttachGroupPolicyCommand")
179
- .sc(schemas_0.AttachGroupPolicy$)
182
+ .sc(AttachGroupPolicy$)
180
183
  .build() {
181
184
  }
182
185
 
183
- class AttachRolePolicyCommand extends client.Command
186
+ class AttachRolePolicyCommand extends Command
184
187
  .classBuilder()
185
188
  .ep(commonParams)
186
189
  .m(function (Command, cs, config, o) {
187
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
190
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
188
191
  })
189
192
  .s("AWSIdentityManagementV20100508", "AttachRolePolicy", {})
190
193
  .n("IAMClient", "AttachRolePolicyCommand")
191
- .sc(schemas_0.AttachRolePolicy$)
194
+ .sc(AttachRolePolicy$)
192
195
  .build() {
193
196
  }
194
197
 
195
- class AttachUserPolicyCommand extends client.Command
198
+ class AttachUserPolicyCommand extends Command
196
199
  .classBuilder()
197
200
  .ep(commonParams)
198
201
  .m(function (Command, cs, config, o) {
199
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
202
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
200
203
  })
201
204
  .s("AWSIdentityManagementV20100508", "AttachUserPolicy", {})
202
205
  .n("IAMClient", "AttachUserPolicyCommand")
203
- .sc(schemas_0.AttachUserPolicy$)
206
+ .sc(AttachUserPolicy$)
204
207
  .build() {
205
208
  }
206
209
 
207
- class ChangePasswordCommand extends client.Command
210
+ class ChangePasswordCommand extends Command
208
211
  .classBuilder()
209
212
  .ep(commonParams)
210
213
  .m(function (Command, cs, config, o) {
211
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
214
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
212
215
  })
213
216
  .s("AWSIdentityManagementV20100508", "ChangePassword", {})
214
217
  .n("IAMClient", "ChangePasswordCommand")
215
- .sc(schemas_0.ChangePassword$)
218
+ .sc(ChangePassword$)
216
219
  .build() {
217
220
  }
218
221
 
219
- class CreateAccessKeyCommand extends client.Command
222
+ class CreateAccessKeyCommand extends Command
220
223
  .classBuilder()
221
224
  .ep(commonParams)
222
225
  .m(function (Command, cs, config, o) {
223
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
226
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
224
227
  })
225
228
  .s("AWSIdentityManagementV20100508", "CreateAccessKey", {})
226
229
  .n("IAMClient", "CreateAccessKeyCommand")
227
- .sc(schemas_0.CreateAccessKey$)
230
+ .sc(CreateAccessKey$)
228
231
  .build() {
229
232
  }
230
233
 
231
- class CreateAccountAliasCommand extends client.Command
234
+ class CreateAccountAliasCommand extends Command
232
235
  .classBuilder()
233
236
  .ep(commonParams)
234
237
  .m(function (Command, cs, config, o) {
235
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
238
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
236
239
  })
237
240
  .s("AWSIdentityManagementV20100508", "CreateAccountAlias", {})
238
241
  .n("IAMClient", "CreateAccountAliasCommand")
239
- .sc(schemas_0.CreateAccountAlias$)
242
+ .sc(CreateAccountAlias$)
240
243
  .build() {
241
244
  }
242
245
 
243
- class CreateDelegationRequestCommand extends client.Command
246
+ class CreateDelegationRequestCommand extends Command
244
247
  .classBuilder()
245
248
  .ep(commonParams)
246
249
  .m(function (Command, cs, config, o) {
247
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
250
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
248
251
  })
249
252
  .s("AWSIdentityManagementV20100508", "CreateDelegationRequest", {})
250
253
  .n("IAMClient", "CreateDelegationRequestCommand")
251
- .sc(schemas_0.CreateDelegationRequest$)
254
+ .sc(CreateDelegationRequest$)
252
255
  .build() {
253
256
  }
254
257
 
255
- class CreateGroupCommand extends client.Command
258
+ class CreateGroupCommand extends Command
256
259
  .classBuilder()
257
260
  .ep(commonParams)
258
261
  .m(function (Command, cs, config, o) {
259
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
262
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
260
263
  })
261
264
  .s("AWSIdentityManagementV20100508", "CreateGroup", {})
262
265
  .n("IAMClient", "CreateGroupCommand")
263
- .sc(schemas_0.CreateGroup$)
266
+ .sc(CreateGroup$)
264
267
  .build() {
265
268
  }
266
269
 
267
- class CreateInstanceProfileCommand extends client.Command
270
+ class CreateInstanceProfileCommand extends Command
268
271
  .classBuilder()
269
272
  .ep(commonParams)
270
273
  .m(function (Command, cs, config, o) {
271
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
274
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
272
275
  })
273
276
  .s("AWSIdentityManagementV20100508", "CreateInstanceProfile", {})
274
277
  .n("IAMClient", "CreateInstanceProfileCommand")
275
- .sc(schemas_0.CreateInstanceProfile$)
278
+ .sc(CreateInstanceProfile$)
276
279
  .build() {
277
280
  }
278
281
 
279
- class CreateLoginProfileCommand extends client.Command
282
+ class CreateLoginProfileCommand extends Command
280
283
  .classBuilder()
281
284
  .ep(commonParams)
282
285
  .m(function (Command, cs, config, o) {
283
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
286
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
284
287
  })
285
288
  .s("AWSIdentityManagementV20100508", "CreateLoginProfile", {})
286
289
  .n("IAMClient", "CreateLoginProfileCommand")
287
- .sc(schemas_0.CreateLoginProfile$)
290
+ .sc(CreateLoginProfile$)
288
291
  .build() {
289
292
  }
290
293
 
291
- class CreateOpenIDConnectProviderCommand extends client.Command
294
+ class CreateOpenIDConnectProviderCommand extends Command
292
295
  .classBuilder()
293
296
  .ep(commonParams)
294
297
  .m(function (Command, cs, config, o) {
295
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
298
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
296
299
  })
297
300
  .s("AWSIdentityManagementV20100508", "CreateOpenIDConnectProvider", {})
298
301
  .n("IAMClient", "CreateOpenIDConnectProviderCommand")
299
- .sc(schemas_0.CreateOpenIDConnectProvider$)
302
+ .sc(CreateOpenIDConnectProvider$)
300
303
  .build() {
301
304
  }
302
305
 
303
- class CreatePolicyCommand extends client.Command
306
+ class CreatePolicyCommand extends Command
304
307
  .classBuilder()
305
308
  .ep(commonParams)
306
309
  .m(function (Command, cs, config, o) {
307
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
310
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
308
311
  })
309
312
  .s("AWSIdentityManagementV20100508", "CreatePolicy", {})
310
313
  .n("IAMClient", "CreatePolicyCommand")
311
- .sc(schemas_0.CreatePolicy$)
314
+ .sc(CreatePolicy$)
312
315
  .build() {
313
316
  }
314
317
 
315
- class CreatePolicyVersionCommand extends client.Command
318
+ class CreatePolicyVersionCommand extends Command
316
319
  .classBuilder()
317
320
  .ep(commonParams)
318
321
  .m(function (Command, cs, config, o) {
319
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
322
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
320
323
  })
321
324
  .s("AWSIdentityManagementV20100508", "CreatePolicyVersion", {})
322
325
  .n("IAMClient", "CreatePolicyVersionCommand")
323
- .sc(schemas_0.CreatePolicyVersion$)
326
+ .sc(CreatePolicyVersion$)
324
327
  .build() {
325
328
  }
326
329
 
327
- class CreateRoleCommand extends client.Command
330
+ class CreateRoleCommand extends Command
328
331
  .classBuilder()
329
332
  .ep(commonParams)
330
333
  .m(function (Command, cs, config, o) {
331
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
334
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
332
335
  })
333
336
  .s("AWSIdentityManagementV20100508", "CreateRole", {})
334
337
  .n("IAMClient", "CreateRoleCommand")
335
- .sc(schemas_0.CreateRole$)
338
+ .sc(CreateRole$)
336
339
  .build() {
337
340
  }
338
341
 
339
- class CreateSAMLProviderCommand extends client.Command
342
+ class CreateSAMLProviderCommand extends Command
340
343
  .classBuilder()
341
344
  .ep(commonParams)
342
345
  .m(function (Command, cs, config, o) {
343
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
346
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
344
347
  })
345
348
  .s("AWSIdentityManagementV20100508", "CreateSAMLProvider", {})
346
349
  .n("IAMClient", "CreateSAMLProviderCommand")
347
- .sc(schemas_0.CreateSAMLProvider$)
350
+ .sc(CreateSAMLProvider$)
348
351
  .build() {
349
352
  }
350
353
 
351
- class CreateServiceLinkedRoleCommand extends client.Command
354
+ class CreateServiceLinkedRoleCommand extends Command
352
355
  .classBuilder()
353
356
  .ep(commonParams)
354
357
  .m(function (Command, cs, config, o) {
355
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
358
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
356
359
  })
357
360
  .s("AWSIdentityManagementV20100508", "CreateServiceLinkedRole", {})
358
361
  .n("IAMClient", "CreateServiceLinkedRoleCommand")
359
- .sc(schemas_0.CreateServiceLinkedRole$)
362
+ .sc(CreateServiceLinkedRole$)
360
363
  .build() {
361
364
  }
362
365
 
363
- class CreateServiceSpecificCredentialCommand extends client.Command
366
+ class CreateServiceSpecificCredentialCommand extends Command
364
367
  .classBuilder()
365
368
  .ep(commonParams)
366
369
  .m(function (Command, cs, config, o) {
367
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
370
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
368
371
  })
369
372
  .s("AWSIdentityManagementV20100508", "CreateServiceSpecificCredential", {})
370
373
  .n("IAMClient", "CreateServiceSpecificCredentialCommand")
371
- .sc(schemas_0.CreateServiceSpecificCredential$)
374
+ .sc(CreateServiceSpecificCredential$)
372
375
  .build() {
373
376
  }
374
377
 
375
- class CreateUserCommand extends client.Command
378
+ class CreateUserCommand extends Command
376
379
  .classBuilder()
377
380
  .ep(commonParams)
378
381
  .m(function (Command, cs, config, o) {
379
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
382
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
380
383
  })
381
384
  .s("AWSIdentityManagementV20100508", "CreateUser", {})
382
385
  .n("IAMClient", "CreateUserCommand")
383
- .sc(schemas_0.CreateUser$)
386
+ .sc(CreateUser$)
384
387
  .build() {
385
388
  }
386
389
 
387
- class CreateVirtualMFADeviceCommand extends client.Command
390
+ class CreateVirtualMFADeviceCommand extends Command
388
391
  .classBuilder()
389
392
  .ep(commonParams)
390
393
  .m(function (Command, cs, config, o) {
391
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
394
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
392
395
  })
393
396
  .s("AWSIdentityManagementV20100508", "CreateVirtualMFADevice", {})
394
397
  .n("IAMClient", "CreateVirtualMFADeviceCommand")
395
- .sc(schemas_0.CreateVirtualMFADevice$)
398
+ .sc(CreateVirtualMFADevice$)
396
399
  .build() {
397
400
  }
398
401
 
399
- class DeactivateMFADeviceCommand extends client.Command
402
+ class DeactivateMFADeviceCommand extends Command
400
403
  .classBuilder()
401
404
  .ep(commonParams)
402
405
  .m(function (Command, cs, config, o) {
403
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
406
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
404
407
  })
405
408
  .s("AWSIdentityManagementV20100508", "DeactivateMFADevice", {})
406
409
  .n("IAMClient", "DeactivateMFADeviceCommand")
407
- .sc(schemas_0.DeactivateMFADevice$)
410
+ .sc(DeactivateMFADevice$)
408
411
  .build() {
409
412
  }
410
413
 
411
- class DeleteAccessKeyCommand extends client.Command
414
+ class DeleteAccessKeyCommand extends Command
412
415
  .classBuilder()
413
416
  .ep(commonParams)
414
417
  .m(function (Command, cs, config, o) {
415
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
418
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
416
419
  })
417
420
  .s("AWSIdentityManagementV20100508", "DeleteAccessKey", {})
418
421
  .n("IAMClient", "DeleteAccessKeyCommand")
419
- .sc(schemas_0.DeleteAccessKey$)
422
+ .sc(DeleteAccessKey$)
420
423
  .build() {
421
424
  }
422
425
 
423
- class DeleteAccountAliasCommand extends client.Command
426
+ class DeleteAccountAliasCommand extends Command
424
427
  .classBuilder()
425
428
  .ep(commonParams)
426
429
  .m(function (Command, cs, config, o) {
427
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
430
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
428
431
  })
429
432
  .s("AWSIdentityManagementV20100508", "DeleteAccountAlias", {})
430
433
  .n("IAMClient", "DeleteAccountAliasCommand")
431
- .sc(schemas_0.DeleteAccountAlias$)
434
+ .sc(DeleteAccountAlias$)
432
435
  .build() {
433
436
  }
434
437
 
435
- class DeleteAccountPasswordPolicyCommand extends client.Command
438
+ class DeleteAccountPasswordPolicyCommand extends Command
436
439
  .classBuilder()
437
440
  .ep(commonParams)
438
441
  .m(function (Command, cs, config, o) {
439
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
442
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
440
443
  })
441
444
  .s("AWSIdentityManagementV20100508", "DeleteAccountPasswordPolicy", {})
442
445
  .n("IAMClient", "DeleteAccountPasswordPolicyCommand")
443
- .sc(schemas_0.DeleteAccountPasswordPolicy$)
446
+ .sc(DeleteAccountPasswordPolicy$)
444
447
  .build() {
445
448
  }
446
449
 
447
- class DeleteGroupCommand extends client.Command
450
+ class DeleteGroupCommand extends Command
448
451
  .classBuilder()
449
452
  .ep(commonParams)
450
453
  .m(function (Command, cs, config, o) {
451
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
454
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
452
455
  })
453
456
  .s("AWSIdentityManagementV20100508", "DeleteGroup", {})
454
457
  .n("IAMClient", "DeleteGroupCommand")
455
- .sc(schemas_0.DeleteGroup$)
458
+ .sc(DeleteGroup$)
456
459
  .build() {
457
460
  }
458
461
 
459
- class DeleteGroupPolicyCommand extends client.Command
462
+ class DeleteGroupPolicyCommand extends Command
460
463
  .classBuilder()
461
464
  .ep(commonParams)
462
465
  .m(function (Command, cs, config, o) {
463
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
466
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
464
467
  })
465
468
  .s("AWSIdentityManagementV20100508", "DeleteGroupPolicy", {})
466
469
  .n("IAMClient", "DeleteGroupPolicyCommand")
467
- .sc(schemas_0.DeleteGroupPolicy$)
470
+ .sc(DeleteGroupPolicy$)
468
471
  .build() {
469
472
  }
470
473
 
471
- class DeleteInstanceProfileCommand extends client.Command
474
+ class DeleteInstanceProfileCommand extends Command
472
475
  .classBuilder()
473
476
  .ep(commonParams)
474
477
  .m(function (Command, cs, config, o) {
475
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
478
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
476
479
  })
477
480
  .s("AWSIdentityManagementV20100508", "DeleteInstanceProfile", {})
478
481
  .n("IAMClient", "DeleteInstanceProfileCommand")
479
- .sc(schemas_0.DeleteInstanceProfile$)
482
+ .sc(DeleteInstanceProfile$)
480
483
  .build() {
481
484
  }
482
485
 
483
- class DeleteLoginProfileCommand extends client.Command
486
+ class DeleteLoginProfileCommand extends Command
484
487
  .classBuilder()
485
488
  .ep(commonParams)
486
489
  .m(function (Command, cs, config, o) {
487
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
490
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
488
491
  })
489
492
  .s("AWSIdentityManagementV20100508", "DeleteLoginProfile", {})
490
493
  .n("IAMClient", "DeleteLoginProfileCommand")
491
- .sc(schemas_0.DeleteLoginProfile$)
494
+ .sc(DeleteLoginProfile$)
492
495
  .build() {
493
496
  }
494
497
 
495
- class DeleteOpenIDConnectProviderCommand extends client.Command
498
+ class DeleteOpenIDConnectProviderCommand extends Command
496
499
  .classBuilder()
497
500
  .ep(commonParams)
498
501
  .m(function (Command, cs, config, o) {
499
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
502
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
500
503
  })
501
504
  .s("AWSIdentityManagementV20100508", "DeleteOpenIDConnectProvider", {})
502
505
  .n("IAMClient", "DeleteOpenIDConnectProviderCommand")
503
- .sc(schemas_0.DeleteOpenIDConnectProvider$)
506
+ .sc(DeleteOpenIDConnectProvider$)
504
507
  .build() {
505
508
  }
506
509
 
507
- class DeletePolicyCommand extends client.Command
510
+ class DeletePolicyCommand extends Command
508
511
  .classBuilder()
509
512
  .ep(commonParams)
510
513
  .m(function (Command, cs, config, o) {
511
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
514
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
512
515
  })
513
516
  .s("AWSIdentityManagementV20100508", "DeletePolicy", {})
514
517
  .n("IAMClient", "DeletePolicyCommand")
515
- .sc(schemas_0.DeletePolicy$)
518
+ .sc(DeletePolicy$)
516
519
  .build() {
517
520
  }
518
521
 
519
- class DeletePolicyVersionCommand extends client.Command
522
+ class DeletePolicyVersionCommand extends Command
520
523
  .classBuilder()
521
524
  .ep(commonParams)
522
525
  .m(function (Command, cs, config, o) {
523
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
526
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
524
527
  })
525
528
  .s("AWSIdentityManagementV20100508", "DeletePolicyVersion", {})
526
529
  .n("IAMClient", "DeletePolicyVersionCommand")
527
- .sc(schemas_0.DeletePolicyVersion$)
530
+ .sc(DeletePolicyVersion$)
528
531
  .build() {
529
532
  }
530
533
 
531
- class DeleteRoleCommand extends client.Command
534
+ class DeleteRoleCommand extends Command
532
535
  .classBuilder()
533
536
  .ep(commonParams)
534
537
  .m(function (Command, cs, config, o) {
535
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
538
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
536
539
  })
537
540
  .s("AWSIdentityManagementV20100508", "DeleteRole", {})
538
541
  .n("IAMClient", "DeleteRoleCommand")
539
- .sc(schemas_0.DeleteRole$)
542
+ .sc(DeleteRole$)
540
543
  .build() {
541
544
  }
542
545
 
543
- class DeleteRolePermissionsBoundaryCommand extends client.Command
546
+ class DeleteRolePermissionsBoundaryCommand extends Command
544
547
  .classBuilder()
545
548
  .ep(commonParams)
546
549
  .m(function (Command, cs, config, o) {
547
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
550
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
548
551
  })
549
552
  .s("AWSIdentityManagementV20100508", "DeleteRolePermissionsBoundary", {})
550
553
  .n("IAMClient", "DeleteRolePermissionsBoundaryCommand")
551
- .sc(schemas_0.DeleteRolePermissionsBoundary$)
554
+ .sc(DeleteRolePermissionsBoundary$)
552
555
  .build() {
553
556
  }
554
557
 
555
- class DeleteRolePolicyCommand extends client.Command
558
+ class DeleteRolePolicyCommand extends Command
556
559
  .classBuilder()
557
560
  .ep(commonParams)
558
561
  .m(function (Command, cs, config, o) {
559
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
562
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
560
563
  })
561
564
  .s("AWSIdentityManagementV20100508", "DeleteRolePolicy", {})
562
565
  .n("IAMClient", "DeleteRolePolicyCommand")
563
- .sc(schemas_0.DeleteRolePolicy$)
566
+ .sc(DeleteRolePolicy$)
564
567
  .build() {
565
568
  }
566
569
 
567
- class DeleteSAMLProviderCommand extends client.Command
570
+ class DeleteSAMLProviderCommand extends Command
568
571
  .classBuilder()
569
572
  .ep(commonParams)
570
573
  .m(function (Command, cs, config, o) {
571
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
574
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
572
575
  })
573
576
  .s("AWSIdentityManagementV20100508", "DeleteSAMLProvider", {})
574
577
  .n("IAMClient", "DeleteSAMLProviderCommand")
575
- .sc(schemas_0.DeleteSAMLProvider$)
578
+ .sc(DeleteSAMLProvider$)
576
579
  .build() {
577
580
  }
578
581
 
579
- class DeleteServerCertificateCommand extends client.Command
582
+ class DeleteServerCertificateCommand extends Command
580
583
  .classBuilder()
581
584
  .ep(commonParams)
582
585
  .m(function (Command, cs, config, o) {
583
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
586
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
584
587
  })
585
588
  .s("AWSIdentityManagementV20100508", "DeleteServerCertificate", {})
586
589
  .n("IAMClient", "DeleteServerCertificateCommand")
587
- .sc(schemas_0.DeleteServerCertificate$)
590
+ .sc(DeleteServerCertificate$)
588
591
  .build() {
589
592
  }
590
593
 
591
- class DeleteServiceLinkedRoleCommand extends client.Command
594
+ class DeleteServiceLinkedRoleCommand extends Command
592
595
  .classBuilder()
593
596
  .ep(commonParams)
594
597
  .m(function (Command, cs, config, o) {
595
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
598
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
596
599
  })
597
600
  .s("AWSIdentityManagementV20100508", "DeleteServiceLinkedRole", {})
598
601
  .n("IAMClient", "DeleteServiceLinkedRoleCommand")
599
- .sc(schemas_0.DeleteServiceLinkedRole$)
602
+ .sc(DeleteServiceLinkedRole$)
600
603
  .build() {
601
604
  }
602
605
 
603
- class DeleteServiceSpecificCredentialCommand extends client.Command
606
+ class DeleteServiceSpecificCredentialCommand extends Command
604
607
  .classBuilder()
605
608
  .ep(commonParams)
606
609
  .m(function (Command, cs, config, o) {
607
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
610
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
608
611
  })
609
612
  .s("AWSIdentityManagementV20100508", "DeleteServiceSpecificCredential", {})
610
613
  .n("IAMClient", "DeleteServiceSpecificCredentialCommand")
611
- .sc(schemas_0.DeleteServiceSpecificCredential$)
614
+ .sc(DeleteServiceSpecificCredential$)
612
615
  .build() {
613
616
  }
614
617
 
615
- class DeleteSigningCertificateCommand extends client.Command
618
+ class DeleteSigningCertificateCommand extends Command
616
619
  .classBuilder()
617
620
  .ep(commonParams)
618
621
  .m(function (Command, cs, config, o) {
619
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
622
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
620
623
  })
621
624
  .s("AWSIdentityManagementV20100508", "DeleteSigningCertificate", {})
622
625
  .n("IAMClient", "DeleteSigningCertificateCommand")
623
- .sc(schemas_0.DeleteSigningCertificate$)
626
+ .sc(DeleteSigningCertificate$)
624
627
  .build() {
625
628
  }
626
629
 
627
- class DeleteSSHPublicKeyCommand extends client.Command
630
+ class DeleteSSHPublicKeyCommand extends Command
628
631
  .classBuilder()
629
632
  .ep(commonParams)
630
633
  .m(function (Command, cs, config, o) {
631
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
634
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
632
635
  })
633
636
  .s("AWSIdentityManagementV20100508", "DeleteSSHPublicKey", {})
634
637
  .n("IAMClient", "DeleteSSHPublicKeyCommand")
635
- .sc(schemas_0.DeleteSSHPublicKey$)
638
+ .sc(DeleteSSHPublicKey$)
636
639
  .build() {
637
640
  }
638
641
 
639
- class DeleteUserCommand extends client.Command
642
+ class DeleteUserCommand extends Command
640
643
  .classBuilder()
641
644
  .ep(commonParams)
642
645
  .m(function (Command, cs, config, o) {
643
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
646
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
644
647
  })
645
648
  .s("AWSIdentityManagementV20100508", "DeleteUser", {})
646
649
  .n("IAMClient", "DeleteUserCommand")
647
- .sc(schemas_0.DeleteUser$)
650
+ .sc(DeleteUser$)
648
651
  .build() {
649
652
  }
650
653
 
651
- class DeleteUserPermissionsBoundaryCommand extends client.Command
654
+ class DeleteUserPermissionsBoundaryCommand extends Command
652
655
  .classBuilder()
653
656
  .ep(commonParams)
654
657
  .m(function (Command, cs, config, o) {
655
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
658
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
656
659
  })
657
660
  .s("AWSIdentityManagementV20100508", "DeleteUserPermissionsBoundary", {})
658
661
  .n("IAMClient", "DeleteUserPermissionsBoundaryCommand")
659
- .sc(schemas_0.DeleteUserPermissionsBoundary$)
662
+ .sc(DeleteUserPermissionsBoundary$)
660
663
  .build() {
661
664
  }
662
665
 
663
- class DeleteUserPolicyCommand extends client.Command
666
+ class DeleteUserPolicyCommand extends Command
664
667
  .classBuilder()
665
668
  .ep(commonParams)
666
669
  .m(function (Command, cs, config, o) {
667
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
670
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
668
671
  })
669
672
  .s("AWSIdentityManagementV20100508", "DeleteUserPolicy", {})
670
673
  .n("IAMClient", "DeleteUserPolicyCommand")
671
- .sc(schemas_0.DeleteUserPolicy$)
674
+ .sc(DeleteUserPolicy$)
672
675
  .build() {
673
676
  }
674
677
 
675
- class DeleteVirtualMFADeviceCommand extends client.Command
678
+ class DeleteVirtualMFADeviceCommand extends Command
676
679
  .classBuilder()
677
680
  .ep(commonParams)
678
681
  .m(function (Command, cs, config, o) {
679
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
682
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
680
683
  })
681
684
  .s("AWSIdentityManagementV20100508", "DeleteVirtualMFADevice", {})
682
685
  .n("IAMClient", "DeleteVirtualMFADeviceCommand")
683
- .sc(schemas_0.DeleteVirtualMFADevice$)
686
+ .sc(DeleteVirtualMFADevice$)
684
687
  .build() {
685
688
  }
686
689
 
687
- class DetachGroupPolicyCommand extends client.Command
690
+ class DetachGroupPolicyCommand extends Command
688
691
  .classBuilder()
689
692
  .ep(commonParams)
690
693
  .m(function (Command, cs, config, o) {
691
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
694
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
692
695
  })
693
696
  .s("AWSIdentityManagementV20100508", "DetachGroupPolicy", {})
694
697
  .n("IAMClient", "DetachGroupPolicyCommand")
695
- .sc(schemas_0.DetachGroupPolicy$)
698
+ .sc(DetachGroupPolicy$)
696
699
  .build() {
697
700
  }
698
701
 
699
- class DetachRolePolicyCommand extends client.Command
702
+ class DetachRolePolicyCommand extends Command
700
703
  .classBuilder()
701
704
  .ep(commonParams)
702
705
  .m(function (Command, cs, config, o) {
703
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
706
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
704
707
  })
705
708
  .s("AWSIdentityManagementV20100508", "DetachRolePolicy", {})
706
709
  .n("IAMClient", "DetachRolePolicyCommand")
707
- .sc(schemas_0.DetachRolePolicy$)
710
+ .sc(DetachRolePolicy$)
708
711
  .build() {
709
712
  }
710
713
 
711
- class DetachUserPolicyCommand extends client.Command
714
+ class DetachUserPolicyCommand extends Command
712
715
  .classBuilder()
713
716
  .ep(commonParams)
714
717
  .m(function (Command, cs, config, o) {
715
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
718
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
716
719
  })
717
720
  .s("AWSIdentityManagementV20100508", "DetachUserPolicy", {})
718
721
  .n("IAMClient", "DetachUserPolicyCommand")
719
- .sc(schemas_0.DetachUserPolicy$)
722
+ .sc(DetachUserPolicy$)
720
723
  .build() {
721
724
  }
722
725
 
723
- class DisableOrganizationsRootCredentialsManagementCommand extends client.Command
726
+ class DisableOrganizationsRootCredentialsManagementCommand extends Command
724
727
  .classBuilder()
725
728
  .ep(commonParams)
726
729
  .m(function (Command, cs, config, o) {
727
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
730
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
728
731
  })
729
732
  .s("AWSIdentityManagementV20100508", "DisableOrganizationsRootCredentialsManagement", {})
730
733
  .n("IAMClient", "DisableOrganizationsRootCredentialsManagementCommand")
731
- .sc(schemas_0.DisableOrganizationsRootCredentialsManagement$)
734
+ .sc(DisableOrganizationsRootCredentialsManagement$)
732
735
  .build() {
733
736
  }
734
737
 
735
- class DisableOrganizationsRootSessionsCommand extends client.Command
738
+ class DisableOrganizationsRootSessionsCommand extends Command
736
739
  .classBuilder()
737
740
  .ep(commonParams)
738
741
  .m(function (Command, cs, config, o) {
739
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
742
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
740
743
  })
741
744
  .s("AWSIdentityManagementV20100508", "DisableOrganizationsRootSessions", {})
742
745
  .n("IAMClient", "DisableOrganizationsRootSessionsCommand")
743
- .sc(schemas_0.DisableOrganizationsRootSessions$)
746
+ .sc(DisableOrganizationsRootSessions$)
744
747
  .build() {
745
748
  }
746
749
 
747
- class DisableOutboundWebIdentityFederationCommand extends client.Command
750
+ class DisableOutboundWebIdentityFederationCommand extends Command
748
751
  .classBuilder()
749
752
  .ep(commonParams)
750
753
  .m(function (Command, cs, config, o) {
751
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
754
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
752
755
  })
753
756
  .s("AWSIdentityManagementV20100508", "DisableOutboundWebIdentityFederation", {})
754
757
  .n("IAMClient", "DisableOutboundWebIdentityFederationCommand")
755
- .sc(schemas_0.DisableOutboundWebIdentityFederation$)
758
+ .sc(DisableOutboundWebIdentityFederation$)
756
759
  .build() {
757
760
  }
758
761
 
759
- class EnableMFADeviceCommand extends client.Command
762
+ class EnableMFADeviceCommand extends Command
760
763
  .classBuilder()
761
764
  .ep(commonParams)
762
765
  .m(function (Command, cs, config, o) {
763
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
766
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
764
767
  })
765
768
  .s("AWSIdentityManagementV20100508", "EnableMFADevice", {})
766
769
  .n("IAMClient", "EnableMFADeviceCommand")
767
- .sc(schemas_0.EnableMFADevice$)
770
+ .sc(EnableMFADevice$)
768
771
  .build() {
769
772
  }
770
773
 
771
- class EnableOrganizationsRootCredentialsManagementCommand extends client.Command
774
+ class EnableOrganizationsRootCredentialsManagementCommand extends Command
772
775
  .classBuilder()
773
776
  .ep(commonParams)
774
777
  .m(function (Command, cs, config, o) {
775
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
778
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
776
779
  })
777
780
  .s("AWSIdentityManagementV20100508", "EnableOrganizationsRootCredentialsManagement", {})
778
781
  .n("IAMClient", "EnableOrganizationsRootCredentialsManagementCommand")
779
- .sc(schemas_0.EnableOrganizationsRootCredentialsManagement$)
782
+ .sc(EnableOrganizationsRootCredentialsManagement$)
780
783
  .build() {
781
784
  }
782
785
 
783
- class EnableOrganizationsRootSessionsCommand extends client.Command
786
+ class EnableOrganizationsRootSessionsCommand extends Command
784
787
  .classBuilder()
785
788
  .ep(commonParams)
786
789
  .m(function (Command, cs, config, o) {
787
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
790
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
788
791
  })
789
792
  .s("AWSIdentityManagementV20100508", "EnableOrganizationsRootSessions", {})
790
793
  .n("IAMClient", "EnableOrganizationsRootSessionsCommand")
791
- .sc(schemas_0.EnableOrganizationsRootSessions$)
794
+ .sc(EnableOrganizationsRootSessions$)
792
795
  .build() {
793
796
  }
794
797
 
795
- class EnableOutboundWebIdentityFederationCommand extends client.Command
798
+ class EnableOutboundWebIdentityFederationCommand extends Command
796
799
  .classBuilder()
797
800
  .ep(commonParams)
798
801
  .m(function (Command, cs, config, o) {
799
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
802
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
800
803
  })
801
804
  .s("AWSIdentityManagementV20100508", "EnableOutboundWebIdentityFederation", {})
802
805
  .n("IAMClient", "EnableOutboundWebIdentityFederationCommand")
803
- .sc(schemas_0.EnableOutboundWebIdentityFederation$)
806
+ .sc(EnableOutboundWebIdentityFederation$)
804
807
  .build() {
805
808
  }
806
809
 
807
- class GenerateCredentialReportCommand extends client.Command
810
+ class GenerateCredentialReportCommand extends Command
808
811
  .classBuilder()
809
812
  .ep(commonParams)
810
813
  .m(function (Command, cs, config, o) {
811
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
814
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
812
815
  })
813
816
  .s("AWSIdentityManagementV20100508", "GenerateCredentialReport", {})
814
817
  .n("IAMClient", "GenerateCredentialReportCommand")
815
- .sc(schemas_0.GenerateCredentialReport$)
818
+ .sc(GenerateCredentialReport$)
816
819
  .build() {
817
820
  }
818
821
 
819
- class GenerateOrganizationsAccessReportCommand extends client.Command
822
+ class GenerateOrganizationsAccessReportCommand extends Command
820
823
  .classBuilder()
821
824
  .ep(commonParams)
822
825
  .m(function (Command, cs, config, o) {
823
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
826
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
824
827
  })
825
828
  .s("AWSIdentityManagementV20100508", "GenerateOrganizationsAccessReport", {})
826
829
  .n("IAMClient", "GenerateOrganizationsAccessReportCommand")
827
- .sc(schemas_0.GenerateOrganizationsAccessReport$)
830
+ .sc(GenerateOrganizationsAccessReport$)
828
831
  .build() {
829
832
  }
830
833
 
831
- class GenerateServiceLastAccessedDetailsCommand extends client.Command
834
+ class GenerateServiceLastAccessedDetailsCommand extends Command
832
835
  .classBuilder()
833
836
  .ep(commonParams)
834
837
  .m(function (Command, cs, config, o) {
835
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
838
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
836
839
  })
837
840
  .s("AWSIdentityManagementV20100508", "GenerateServiceLastAccessedDetails", {})
838
841
  .n("IAMClient", "GenerateServiceLastAccessedDetailsCommand")
839
- .sc(schemas_0.GenerateServiceLastAccessedDetails$)
842
+ .sc(GenerateServiceLastAccessedDetails$)
840
843
  .build() {
841
844
  }
842
845
 
843
- class GetAccessKeyLastUsedCommand extends client.Command
846
+ class GetAccessKeyLastUsedCommand extends Command
844
847
  .classBuilder()
845
848
  .ep(commonParams)
846
849
  .m(function (Command, cs, config, o) {
847
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
850
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
848
851
  })
849
852
  .s("AWSIdentityManagementV20100508", "GetAccessKeyLastUsed", {})
850
853
  .n("IAMClient", "GetAccessKeyLastUsedCommand")
851
- .sc(schemas_0.GetAccessKeyLastUsed$)
854
+ .sc(GetAccessKeyLastUsed$)
852
855
  .build() {
853
856
  }
854
857
 
855
- class GetAccountAuthorizationDetailsCommand extends client.Command
858
+ class GetAccountAuthorizationDetailsCommand extends Command
856
859
  .classBuilder()
857
860
  .ep(commonParams)
858
861
  .m(function (Command, cs, config, o) {
859
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
862
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
860
863
  })
861
864
  .s("AWSIdentityManagementV20100508", "GetAccountAuthorizationDetails", {})
862
865
  .n("IAMClient", "GetAccountAuthorizationDetailsCommand")
863
- .sc(schemas_0.GetAccountAuthorizationDetails$)
866
+ .sc(GetAccountAuthorizationDetails$)
864
867
  .build() {
865
868
  }
866
869
 
867
- class GetAccountPasswordPolicyCommand extends client.Command
870
+ class GetAccountPasswordPolicyCommand extends Command
868
871
  .classBuilder()
869
872
  .ep(commonParams)
870
873
  .m(function (Command, cs, config, o) {
871
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
874
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
872
875
  })
873
876
  .s("AWSIdentityManagementV20100508", "GetAccountPasswordPolicy", {})
874
877
  .n("IAMClient", "GetAccountPasswordPolicyCommand")
875
- .sc(schemas_0.GetAccountPasswordPolicy$)
878
+ .sc(GetAccountPasswordPolicy$)
876
879
  .build() {
877
880
  }
878
881
 
879
- class GetAccountSummaryCommand extends client.Command
882
+ class GetAccountSummaryCommand extends Command
880
883
  .classBuilder()
881
884
  .ep(commonParams)
882
885
  .m(function (Command, cs, config, o) {
883
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
886
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
884
887
  })
885
888
  .s("AWSIdentityManagementV20100508", "GetAccountSummary", {})
886
889
  .n("IAMClient", "GetAccountSummaryCommand")
887
- .sc(schemas_0.GetAccountSummary$)
890
+ .sc(GetAccountSummary$)
888
891
  .build() {
889
892
  }
890
893
 
891
- class GetContextKeysForCustomPolicyCommand extends client.Command
894
+ class GetContextKeysForCustomPolicyCommand extends Command
892
895
  .classBuilder()
893
896
  .ep(commonParams)
894
897
  .m(function (Command, cs, config, o) {
895
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
898
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
896
899
  })
897
900
  .s("AWSIdentityManagementV20100508", "GetContextKeysForCustomPolicy", {})
898
901
  .n("IAMClient", "GetContextKeysForCustomPolicyCommand")
899
- .sc(schemas_0.GetContextKeysForCustomPolicy$)
902
+ .sc(GetContextKeysForCustomPolicy$)
900
903
  .build() {
901
904
  }
902
905
 
903
- class GetContextKeysForPrincipalPolicyCommand extends client.Command
906
+ class GetContextKeysForPrincipalPolicyCommand extends Command
904
907
  .classBuilder()
905
908
  .ep(commonParams)
906
909
  .m(function (Command, cs, config, o) {
907
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
910
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
908
911
  })
909
912
  .s("AWSIdentityManagementV20100508", "GetContextKeysForPrincipalPolicy", {})
910
913
  .n("IAMClient", "GetContextKeysForPrincipalPolicyCommand")
911
- .sc(schemas_0.GetContextKeysForPrincipalPolicy$)
914
+ .sc(GetContextKeysForPrincipalPolicy$)
912
915
  .build() {
913
916
  }
914
917
 
915
- class GetCredentialReportCommand extends client.Command
918
+ class GetCredentialReportCommand extends Command
916
919
  .classBuilder()
917
920
  .ep(commonParams)
918
921
  .m(function (Command, cs, config, o) {
919
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
922
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
920
923
  })
921
924
  .s("AWSIdentityManagementV20100508", "GetCredentialReport", {})
922
925
  .n("IAMClient", "GetCredentialReportCommand")
923
- .sc(schemas_0.GetCredentialReport$)
926
+ .sc(GetCredentialReport$)
924
927
  .build() {
925
928
  }
926
929
 
927
- class GetDelegationRequestCommand extends client.Command
930
+ class GetDelegationRequestCommand extends Command
928
931
  .classBuilder()
929
932
  .ep(commonParams)
930
933
  .m(function (Command, cs, config, o) {
931
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
934
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
932
935
  })
933
936
  .s("AWSIdentityManagementV20100508", "GetDelegationRequest", {})
934
937
  .n("IAMClient", "GetDelegationRequestCommand")
935
- .sc(schemas_0.GetDelegationRequest$)
938
+ .sc(GetDelegationRequest$)
936
939
  .build() {
937
940
  }
938
941
 
939
- class GetGroupCommand extends client.Command
942
+ class GetGroupCommand extends Command
940
943
  .classBuilder()
941
944
  .ep(commonParams)
942
945
  .m(function (Command, cs, config, o) {
943
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
946
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
944
947
  })
945
948
  .s("AWSIdentityManagementV20100508", "GetGroup", {})
946
949
  .n("IAMClient", "GetGroupCommand")
947
- .sc(schemas_0.GetGroup$)
950
+ .sc(GetGroup$)
948
951
  .build() {
949
952
  }
950
953
 
951
- class GetGroupPolicyCommand extends client.Command
954
+ class GetGroupPolicyCommand extends Command
952
955
  .classBuilder()
953
956
  .ep(commonParams)
954
957
  .m(function (Command, cs, config, o) {
955
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
958
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
956
959
  })
957
960
  .s("AWSIdentityManagementV20100508", "GetGroupPolicy", {})
958
961
  .n("IAMClient", "GetGroupPolicyCommand")
959
- .sc(schemas_0.GetGroupPolicy$)
962
+ .sc(GetGroupPolicy$)
960
963
  .build() {
961
964
  }
962
965
 
963
- class GetHumanReadableSummaryCommand extends client.Command
966
+ class GetHumanReadableSummaryCommand extends Command
964
967
  .classBuilder()
965
968
  .ep(commonParams)
966
969
  .m(function (Command, cs, config, o) {
967
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
970
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
968
971
  })
969
972
  .s("AWSIdentityManagementV20100508", "GetHumanReadableSummary", {})
970
973
  .n("IAMClient", "GetHumanReadableSummaryCommand")
971
- .sc(schemas_0.GetHumanReadableSummary$)
974
+ .sc(GetHumanReadableSummary$)
972
975
  .build() {
973
976
  }
974
977
 
975
- class GetInstanceProfileCommand extends client.Command
978
+ class GetInstanceProfileCommand extends Command
976
979
  .classBuilder()
977
980
  .ep(commonParams)
978
981
  .m(function (Command, cs, config, o) {
979
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
982
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
980
983
  })
981
984
  .s("AWSIdentityManagementV20100508", "GetInstanceProfile", {})
982
985
  .n("IAMClient", "GetInstanceProfileCommand")
983
- .sc(schemas_0.GetInstanceProfile$)
986
+ .sc(GetInstanceProfile$)
984
987
  .build() {
985
988
  }
986
989
 
987
- class GetLoginProfileCommand extends client.Command
990
+ class GetLoginProfileCommand extends Command
988
991
  .classBuilder()
989
992
  .ep(commonParams)
990
993
  .m(function (Command, cs, config, o) {
991
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
994
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
992
995
  })
993
996
  .s("AWSIdentityManagementV20100508", "GetLoginProfile", {})
994
997
  .n("IAMClient", "GetLoginProfileCommand")
995
- .sc(schemas_0.GetLoginProfile$)
998
+ .sc(GetLoginProfile$)
996
999
  .build() {
997
1000
  }
998
1001
 
999
- class GetMFADeviceCommand extends client.Command
1002
+ class GetMFADeviceCommand extends Command
1000
1003
  .classBuilder()
1001
1004
  .ep(commonParams)
1002
1005
  .m(function (Command, cs, config, o) {
1003
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1006
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1004
1007
  })
1005
1008
  .s("AWSIdentityManagementV20100508", "GetMFADevice", {})
1006
1009
  .n("IAMClient", "GetMFADeviceCommand")
1007
- .sc(schemas_0.GetMFADevice$)
1010
+ .sc(GetMFADevice$)
1008
1011
  .build() {
1009
1012
  }
1010
1013
 
1011
- class GetOpenIDConnectProviderCommand extends client.Command
1014
+ class GetOpenIDConnectProviderCommand extends Command
1012
1015
  .classBuilder()
1013
1016
  .ep(commonParams)
1014
1017
  .m(function (Command, cs, config, o) {
1015
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1018
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1016
1019
  })
1017
1020
  .s("AWSIdentityManagementV20100508", "GetOpenIDConnectProvider", {})
1018
1021
  .n("IAMClient", "GetOpenIDConnectProviderCommand")
1019
- .sc(schemas_0.GetOpenIDConnectProvider$)
1022
+ .sc(GetOpenIDConnectProvider$)
1020
1023
  .build() {
1021
1024
  }
1022
1025
 
1023
- class GetOrganizationsAccessReportCommand extends client.Command
1026
+ class GetOrganizationsAccessReportCommand extends Command
1024
1027
  .classBuilder()
1025
1028
  .ep(commonParams)
1026
1029
  .m(function (Command, cs, config, o) {
1027
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1030
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1028
1031
  })
1029
1032
  .s("AWSIdentityManagementV20100508", "GetOrganizationsAccessReport", {})
1030
1033
  .n("IAMClient", "GetOrganizationsAccessReportCommand")
1031
- .sc(schemas_0.GetOrganizationsAccessReport$)
1034
+ .sc(GetOrganizationsAccessReport$)
1032
1035
  .build() {
1033
1036
  }
1034
1037
 
1035
- class GetOutboundWebIdentityFederationInfoCommand extends client.Command
1038
+ class GetOutboundWebIdentityFederationInfoCommand extends Command
1036
1039
  .classBuilder()
1037
1040
  .ep(commonParams)
1038
1041
  .m(function (Command, cs, config, o) {
1039
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1042
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1040
1043
  })
1041
1044
  .s("AWSIdentityManagementV20100508", "GetOutboundWebIdentityFederationInfo", {})
1042
1045
  .n("IAMClient", "GetOutboundWebIdentityFederationInfoCommand")
1043
- .sc(schemas_0.GetOutboundWebIdentityFederationInfo$)
1046
+ .sc(GetOutboundWebIdentityFederationInfo$)
1044
1047
  .build() {
1045
1048
  }
1046
1049
 
1047
- class GetPolicyCommand extends client.Command
1050
+ class GetPolicyCommand extends Command
1048
1051
  .classBuilder()
1049
1052
  .ep(commonParams)
1050
1053
  .m(function (Command, cs, config, o) {
1051
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1054
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1052
1055
  })
1053
1056
  .s("AWSIdentityManagementV20100508", "GetPolicy", {})
1054
1057
  .n("IAMClient", "GetPolicyCommand")
1055
- .sc(schemas_0.GetPolicy$)
1058
+ .sc(GetPolicy$)
1056
1059
  .build() {
1057
1060
  }
1058
1061
 
1059
- class GetPolicyVersionCommand extends client.Command
1062
+ class GetPolicyVersionCommand extends Command
1060
1063
  .classBuilder()
1061
1064
  .ep(commonParams)
1062
1065
  .m(function (Command, cs, config, o) {
1063
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1066
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1064
1067
  })
1065
1068
  .s("AWSIdentityManagementV20100508", "GetPolicyVersion", {})
1066
1069
  .n("IAMClient", "GetPolicyVersionCommand")
1067
- .sc(schemas_0.GetPolicyVersion$)
1070
+ .sc(GetPolicyVersion$)
1068
1071
  .build() {
1069
1072
  }
1070
1073
 
1071
- class GetRoleCommand extends client.Command
1074
+ class GetRoleCommand extends Command
1072
1075
  .classBuilder()
1073
1076
  .ep(commonParams)
1074
1077
  .m(function (Command, cs, config, o) {
1075
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1078
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1076
1079
  })
1077
1080
  .s("AWSIdentityManagementV20100508", "GetRole", {})
1078
1081
  .n("IAMClient", "GetRoleCommand")
1079
- .sc(schemas_0.GetRole$)
1082
+ .sc(GetRole$)
1080
1083
  .build() {
1081
1084
  }
1082
1085
 
1083
- class GetRolePolicyCommand extends client.Command
1086
+ class GetRolePolicyCommand extends Command
1084
1087
  .classBuilder()
1085
1088
  .ep(commonParams)
1086
1089
  .m(function (Command, cs, config, o) {
1087
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1090
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1088
1091
  })
1089
1092
  .s("AWSIdentityManagementV20100508", "GetRolePolicy", {})
1090
1093
  .n("IAMClient", "GetRolePolicyCommand")
1091
- .sc(schemas_0.GetRolePolicy$)
1094
+ .sc(GetRolePolicy$)
1092
1095
  .build() {
1093
1096
  }
1094
1097
 
1095
- class GetSAMLProviderCommand extends client.Command
1098
+ class GetSAMLProviderCommand extends Command
1096
1099
  .classBuilder()
1097
1100
  .ep(commonParams)
1098
1101
  .m(function (Command, cs, config, o) {
1099
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1102
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1100
1103
  })
1101
1104
  .s("AWSIdentityManagementV20100508", "GetSAMLProvider", {})
1102
1105
  .n("IAMClient", "GetSAMLProviderCommand")
1103
- .sc(schemas_0.GetSAMLProvider$)
1106
+ .sc(GetSAMLProvider$)
1104
1107
  .build() {
1105
1108
  }
1106
1109
 
1107
- class GetServerCertificateCommand extends client.Command
1110
+ class GetServerCertificateCommand extends Command
1108
1111
  .classBuilder()
1109
1112
  .ep(commonParams)
1110
1113
  .m(function (Command, cs, config, o) {
1111
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1114
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1112
1115
  })
1113
1116
  .s("AWSIdentityManagementV20100508", "GetServerCertificate", {})
1114
1117
  .n("IAMClient", "GetServerCertificateCommand")
1115
- .sc(schemas_0.GetServerCertificate$)
1118
+ .sc(GetServerCertificate$)
1116
1119
  .build() {
1117
1120
  }
1118
1121
 
1119
- class GetServiceLastAccessedDetailsCommand extends client.Command
1122
+ class GetServiceLastAccessedDetailsCommand extends Command
1120
1123
  .classBuilder()
1121
1124
  .ep(commonParams)
1122
1125
  .m(function (Command, cs, config, o) {
1123
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1126
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1124
1127
  })
1125
1128
  .s("AWSIdentityManagementV20100508", "GetServiceLastAccessedDetails", {})
1126
1129
  .n("IAMClient", "GetServiceLastAccessedDetailsCommand")
1127
- .sc(schemas_0.GetServiceLastAccessedDetails$)
1130
+ .sc(GetServiceLastAccessedDetails$)
1128
1131
  .build() {
1129
1132
  }
1130
1133
 
1131
- class GetServiceLastAccessedDetailsWithEntitiesCommand extends client.Command
1134
+ class GetServiceLastAccessedDetailsWithEntitiesCommand extends Command
1132
1135
  .classBuilder()
1133
1136
  .ep(commonParams)
1134
1137
  .m(function (Command, cs, config, o) {
1135
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1138
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1136
1139
  })
1137
1140
  .s("AWSIdentityManagementV20100508", "GetServiceLastAccessedDetailsWithEntities", {})
1138
1141
  .n("IAMClient", "GetServiceLastAccessedDetailsWithEntitiesCommand")
1139
- .sc(schemas_0.GetServiceLastAccessedDetailsWithEntities$)
1142
+ .sc(GetServiceLastAccessedDetailsWithEntities$)
1140
1143
  .build() {
1141
1144
  }
1142
1145
 
1143
- class GetServiceLinkedRoleDeletionStatusCommand extends client.Command
1146
+ class GetServiceLinkedRoleDeletionStatusCommand extends Command
1144
1147
  .classBuilder()
1145
1148
  .ep(commonParams)
1146
1149
  .m(function (Command, cs, config, o) {
1147
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1150
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1148
1151
  })
1149
1152
  .s("AWSIdentityManagementV20100508", "GetServiceLinkedRoleDeletionStatus", {})
1150
1153
  .n("IAMClient", "GetServiceLinkedRoleDeletionStatusCommand")
1151
- .sc(schemas_0.GetServiceLinkedRoleDeletionStatus$)
1154
+ .sc(GetServiceLinkedRoleDeletionStatus$)
1152
1155
  .build() {
1153
1156
  }
1154
1157
 
1155
- class GetSSHPublicKeyCommand extends client.Command
1158
+ class GetSSHPublicKeyCommand extends Command
1156
1159
  .classBuilder()
1157
1160
  .ep(commonParams)
1158
1161
  .m(function (Command, cs, config, o) {
1159
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1162
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1160
1163
  })
1161
1164
  .s("AWSIdentityManagementV20100508", "GetSSHPublicKey", {})
1162
1165
  .n("IAMClient", "GetSSHPublicKeyCommand")
1163
- .sc(schemas_0.GetSSHPublicKey$)
1166
+ .sc(GetSSHPublicKey$)
1164
1167
  .build() {
1165
1168
  }
1166
1169
 
1167
- class GetUserCommand extends client.Command
1170
+ class GetUserCommand extends Command
1168
1171
  .classBuilder()
1169
1172
  .ep(commonParams)
1170
1173
  .m(function (Command, cs, config, o) {
1171
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1174
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1172
1175
  })
1173
1176
  .s("AWSIdentityManagementV20100508", "GetUser", {})
1174
1177
  .n("IAMClient", "GetUserCommand")
1175
- .sc(schemas_0.GetUser$)
1178
+ .sc(GetUser$)
1176
1179
  .build() {
1177
1180
  }
1178
1181
 
1179
- class GetUserPolicyCommand extends client.Command
1182
+ class GetUserPolicyCommand extends Command
1180
1183
  .classBuilder()
1181
1184
  .ep(commonParams)
1182
1185
  .m(function (Command, cs, config, o) {
1183
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1186
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1184
1187
  })
1185
1188
  .s("AWSIdentityManagementV20100508", "GetUserPolicy", {})
1186
1189
  .n("IAMClient", "GetUserPolicyCommand")
1187
- .sc(schemas_0.GetUserPolicy$)
1190
+ .sc(GetUserPolicy$)
1188
1191
  .build() {
1189
1192
  }
1190
1193
 
1191
- class ListAccessKeysCommand extends client.Command
1194
+ class ListAccessKeysCommand extends Command
1192
1195
  .classBuilder()
1193
1196
  .ep(commonParams)
1194
1197
  .m(function (Command, cs, config, o) {
1195
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1198
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1196
1199
  })
1197
1200
  .s("AWSIdentityManagementV20100508", "ListAccessKeys", {})
1198
1201
  .n("IAMClient", "ListAccessKeysCommand")
1199
- .sc(schemas_0.ListAccessKeys$)
1202
+ .sc(ListAccessKeys$)
1200
1203
  .build() {
1201
1204
  }
1202
1205
 
1203
- class ListAccountAliasesCommand extends client.Command
1206
+ class ListAccountAliasesCommand extends Command
1204
1207
  .classBuilder()
1205
1208
  .ep(commonParams)
1206
1209
  .m(function (Command, cs, config, o) {
1207
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1210
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1208
1211
  })
1209
1212
  .s("AWSIdentityManagementV20100508", "ListAccountAliases", {})
1210
1213
  .n("IAMClient", "ListAccountAliasesCommand")
1211
- .sc(schemas_0.ListAccountAliases$)
1214
+ .sc(ListAccountAliases$)
1212
1215
  .build() {
1213
1216
  }
1214
1217
 
1215
- class ListAttachedGroupPoliciesCommand extends client.Command
1218
+ class ListAttachedGroupPoliciesCommand extends Command
1216
1219
  .classBuilder()
1217
1220
  .ep(commonParams)
1218
1221
  .m(function (Command, cs, config, o) {
1219
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1222
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1220
1223
  })
1221
1224
  .s("AWSIdentityManagementV20100508", "ListAttachedGroupPolicies", {})
1222
1225
  .n("IAMClient", "ListAttachedGroupPoliciesCommand")
1223
- .sc(schemas_0.ListAttachedGroupPolicies$)
1226
+ .sc(ListAttachedGroupPolicies$)
1224
1227
  .build() {
1225
1228
  }
1226
1229
 
1227
- class ListAttachedRolePoliciesCommand extends client.Command
1230
+ class ListAttachedRolePoliciesCommand extends Command
1228
1231
  .classBuilder()
1229
1232
  .ep(commonParams)
1230
1233
  .m(function (Command, cs, config, o) {
1231
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1234
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1232
1235
  })
1233
1236
  .s("AWSIdentityManagementV20100508", "ListAttachedRolePolicies", {})
1234
1237
  .n("IAMClient", "ListAttachedRolePoliciesCommand")
1235
- .sc(schemas_0.ListAttachedRolePolicies$)
1238
+ .sc(ListAttachedRolePolicies$)
1236
1239
  .build() {
1237
1240
  }
1238
1241
 
1239
- class ListAttachedUserPoliciesCommand extends client.Command
1242
+ class ListAttachedUserPoliciesCommand extends Command
1240
1243
  .classBuilder()
1241
1244
  .ep(commonParams)
1242
1245
  .m(function (Command, cs, config, o) {
1243
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1246
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1244
1247
  })
1245
1248
  .s("AWSIdentityManagementV20100508", "ListAttachedUserPolicies", {})
1246
1249
  .n("IAMClient", "ListAttachedUserPoliciesCommand")
1247
- .sc(schemas_0.ListAttachedUserPolicies$)
1250
+ .sc(ListAttachedUserPolicies$)
1248
1251
  .build() {
1249
1252
  }
1250
1253
 
1251
- class ListDelegationRequestsCommand extends client.Command
1254
+ class ListDelegationRequestsCommand extends Command
1252
1255
  .classBuilder()
1253
1256
  .ep(commonParams)
1254
1257
  .m(function (Command, cs, config, o) {
1255
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1258
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1256
1259
  })
1257
1260
  .s("AWSIdentityManagementV20100508", "ListDelegationRequests", {})
1258
1261
  .n("IAMClient", "ListDelegationRequestsCommand")
1259
- .sc(schemas_0.ListDelegationRequests$)
1262
+ .sc(ListDelegationRequests$)
1260
1263
  .build() {
1261
1264
  }
1262
1265
 
1263
- class ListEntitiesForPolicyCommand extends client.Command
1266
+ class ListEntitiesForPolicyCommand extends Command
1264
1267
  .classBuilder()
1265
1268
  .ep(commonParams)
1266
1269
  .m(function (Command, cs, config, o) {
1267
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1270
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1268
1271
  })
1269
1272
  .s("AWSIdentityManagementV20100508", "ListEntitiesForPolicy", {})
1270
1273
  .n("IAMClient", "ListEntitiesForPolicyCommand")
1271
- .sc(schemas_0.ListEntitiesForPolicy$)
1274
+ .sc(ListEntitiesForPolicy$)
1272
1275
  .build() {
1273
1276
  }
1274
1277
 
1275
- class ListGroupPoliciesCommand extends client.Command
1278
+ class ListGroupPoliciesCommand extends Command
1276
1279
  .classBuilder()
1277
1280
  .ep(commonParams)
1278
1281
  .m(function (Command, cs, config, o) {
1279
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1282
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1280
1283
  })
1281
1284
  .s("AWSIdentityManagementV20100508", "ListGroupPolicies", {})
1282
1285
  .n("IAMClient", "ListGroupPoliciesCommand")
1283
- .sc(schemas_0.ListGroupPolicies$)
1286
+ .sc(ListGroupPolicies$)
1284
1287
  .build() {
1285
1288
  }
1286
1289
 
1287
- class ListGroupsCommand extends client.Command
1290
+ class ListGroupsCommand extends Command
1288
1291
  .classBuilder()
1289
1292
  .ep(commonParams)
1290
1293
  .m(function (Command, cs, config, o) {
1291
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1294
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1292
1295
  })
1293
1296
  .s("AWSIdentityManagementV20100508", "ListGroups", {})
1294
1297
  .n("IAMClient", "ListGroupsCommand")
1295
- .sc(schemas_0.ListGroups$)
1298
+ .sc(ListGroups$)
1296
1299
  .build() {
1297
1300
  }
1298
1301
 
1299
- class ListGroupsForUserCommand extends client.Command
1302
+ class ListGroupsForUserCommand extends Command
1300
1303
  .classBuilder()
1301
1304
  .ep(commonParams)
1302
1305
  .m(function (Command, cs, config, o) {
1303
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1306
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1304
1307
  })
1305
1308
  .s("AWSIdentityManagementV20100508", "ListGroupsForUser", {})
1306
1309
  .n("IAMClient", "ListGroupsForUserCommand")
1307
- .sc(schemas_0.ListGroupsForUser$)
1310
+ .sc(ListGroupsForUser$)
1308
1311
  .build() {
1309
1312
  }
1310
1313
 
1311
- class ListInstanceProfilesCommand extends client.Command
1314
+ class ListInstanceProfilesCommand extends Command
1312
1315
  .classBuilder()
1313
1316
  .ep(commonParams)
1314
1317
  .m(function (Command, cs, config, o) {
1315
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1318
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1316
1319
  })
1317
1320
  .s("AWSIdentityManagementV20100508", "ListInstanceProfiles", {})
1318
1321
  .n("IAMClient", "ListInstanceProfilesCommand")
1319
- .sc(schemas_0.ListInstanceProfiles$)
1322
+ .sc(ListInstanceProfiles$)
1320
1323
  .build() {
1321
1324
  }
1322
1325
 
1323
- class ListInstanceProfilesForRoleCommand extends client.Command
1326
+ class ListInstanceProfilesForRoleCommand extends Command
1324
1327
  .classBuilder()
1325
1328
  .ep(commonParams)
1326
1329
  .m(function (Command, cs, config, o) {
1327
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1330
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1328
1331
  })
1329
1332
  .s("AWSIdentityManagementV20100508", "ListInstanceProfilesForRole", {})
1330
1333
  .n("IAMClient", "ListInstanceProfilesForRoleCommand")
1331
- .sc(schemas_0.ListInstanceProfilesForRole$)
1334
+ .sc(ListInstanceProfilesForRole$)
1332
1335
  .build() {
1333
1336
  }
1334
1337
 
1335
- class ListInstanceProfileTagsCommand extends client.Command
1338
+ class ListInstanceProfileTagsCommand extends Command
1336
1339
  .classBuilder()
1337
1340
  .ep(commonParams)
1338
1341
  .m(function (Command, cs, config, o) {
1339
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1342
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1340
1343
  })
1341
1344
  .s("AWSIdentityManagementV20100508", "ListInstanceProfileTags", {})
1342
1345
  .n("IAMClient", "ListInstanceProfileTagsCommand")
1343
- .sc(schemas_0.ListInstanceProfileTags$)
1346
+ .sc(ListInstanceProfileTags$)
1344
1347
  .build() {
1345
1348
  }
1346
1349
 
1347
- class ListMFADevicesCommand extends client.Command
1350
+ class ListMFADevicesCommand extends Command
1348
1351
  .classBuilder()
1349
1352
  .ep(commonParams)
1350
1353
  .m(function (Command, cs, config, o) {
1351
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1354
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1352
1355
  })
1353
1356
  .s("AWSIdentityManagementV20100508", "ListMFADevices", {})
1354
1357
  .n("IAMClient", "ListMFADevicesCommand")
1355
- .sc(schemas_0.ListMFADevices$)
1358
+ .sc(ListMFADevices$)
1356
1359
  .build() {
1357
1360
  }
1358
1361
 
1359
- class ListMFADeviceTagsCommand extends client.Command
1362
+ class ListMFADeviceTagsCommand extends Command
1360
1363
  .classBuilder()
1361
1364
  .ep(commonParams)
1362
1365
  .m(function (Command, cs, config, o) {
1363
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1366
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1364
1367
  })
1365
1368
  .s("AWSIdentityManagementV20100508", "ListMFADeviceTags", {})
1366
1369
  .n("IAMClient", "ListMFADeviceTagsCommand")
1367
- .sc(schemas_0.ListMFADeviceTags$)
1370
+ .sc(ListMFADeviceTags$)
1368
1371
  .build() {
1369
1372
  }
1370
1373
 
1371
- class ListOpenIDConnectProvidersCommand extends client.Command
1374
+ class ListOpenIDConnectProvidersCommand extends Command
1372
1375
  .classBuilder()
1373
1376
  .ep(commonParams)
1374
1377
  .m(function (Command, cs, config, o) {
1375
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1378
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1376
1379
  })
1377
1380
  .s("AWSIdentityManagementV20100508", "ListOpenIDConnectProviders", {})
1378
1381
  .n("IAMClient", "ListOpenIDConnectProvidersCommand")
1379
- .sc(schemas_0.ListOpenIDConnectProviders$)
1382
+ .sc(ListOpenIDConnectProviders$)
1380
1383
  .build() {
1381
1384
  }
1382
1385
 
1383
- class ListOpenIDConnectProviderTagsCommand extends client.Command
1386
+ class ListOpenIDConnectProviderTagsCommand extends Command
1384
1387
  .classBuilder()
1385
1388
  .ep(commonParams)
1386
1389
  .m(function (Command, cs, config, o) {
1387
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1390
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1388
1391
  })
1389
1392
  .s("AWSIdentityManagementV20100508", "ListOpenIDConnectProviderTags", {})
1390
1393
  .n("IAMClient", "ListOpenIDConnectProviderTagsCommand")
1391
- .sc(schemas_0.ListOpenIDConnectProviderTags$)
1394
+ .sc(ListOpenIDConnectProviderTags$)
1392
1395
  .build() {
1393
1396
  }
1394
1397
 
1395
- class ListOrganizationsFeaturesCommand extends client.Command
1398
+ class ListOrganizationsFeaturesCommand extends Command
1396
1399
  .classBuilder()
1397
1400
  .ep(commonParams)
1398
1401
  .m(function (Command, cs, config, o) {
1399
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1402
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1400
1403
  })
1401
1404
  .s("AWSIdentityManagementV20100508", "ListOrganizationsFeatures", {})
1402
1405
  .n("IAMClient", "ListOrganizationsFeaturesCommand")
1403
- .sc(schemas_0.ListOrganizationsFeatures$)
1406
+ .sc(ListOrganizationsFeatures$)
1404
1407
  .build() {
1405
1408
  }
1406
1409
 
1407
- class ListPoliciesCommand extends client.Command
1410
+ class ListPoliciesCommand extends Command
1408
1411
  .classBuilder()
1409
1412
  .ep(commonParams)
1410
1413
  .m(function (Command, cs, config, o) {
1411
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1414
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1412
1415
  })
1413
1416
  .s("AWSIdentityManagementV20100508", "ListPolicies", {})
1414
1417
  .n("IAMClient", "ListPoliciesCommand")
1415
- .sc(schemas_0.ListPolicies$)
1418
+ .sc(ListPolicies$)
1416
1419
  .build() {
1417
1420
  }
1418
1421
 
1419
- class ListPoliciesGrantingServiceAccessCommand extends client.Command
1422
+ class ListPoliciesGrantingServiceAccessCommand extends Command
1420
1423
  .classBuilder()
1421
1424
  .ep(commonParams)
1422
1425
  .m(function (Command, cs, config, o) {
1423
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1426
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1424
1427
  })
1425
1428
  .s("AWSIdentityManagementV20100508", "ListPoliciesGrantingServiceAccess", {})
1426
1429
  .n("IAMClient", "ListPoliciesGrantingServiceAccessCommand")
1427
- .sc(schemas_0.ListPoliciesGrantingServiceAccess$)
1430
+ .sc(ListPoliciesGrantingServiceAccess$)
1428
1431
  .build() {
1429
1432
  }
1430
1433
 
1431
- class ListPolicyTagsCommand extends client.Command
1434
+ class ListPolicyTagsCommand extends Command
1432
1435
  .classBuilder()
1433
1436
  .ep(commonParams)
1434
1437
  .m(function (Command, cs, config, o) {
1435
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1438
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1436
1439
  })
1437
1440
  .s("AWSIdentityManagementV20100508", "ListPolicyTags", {})
1438
1441
  .n("IAMClient", "ListPolicyTagsCommand")
1439
- .sc(schemas_0.ListPolicyTags$)
1442
+ .sc(ListPolicyTags$)
1440
1443
  .build() {
1441
1444
  }
1442
1445
 
1443
- class ListPolicyVersionsCommand extends client.Command
1446
+ class ListPolicyVersionsCommand extends Command
1444
1447
  .classBuilder()
1445
1448
  .ep(commonParams)
1446
1449
  .m(function (Command, cs, config, o) {
1447
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1450
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1448
1451
  })
1449
1452
  .s("AWSIdentityManagementV20100508", "ListPolicyVersions", {})
1450
1453
  .n("IAMClient", "ListPolicyVersionsCommand")
1451
- .sc(schemas_0.ListPolicyVersions$)
1454
+ .sc(ListPolicyVersions$)
1452
1455
  .build() {
1453
1456
  }
1454
1457
 
1455
- class ListRolePoliciesCommand extends client.Command
1458
+ class ListRolePoliciesCommand extends Command
1456
1459
  .classBuilder()
1457
1460
  .ep(commonParams)
1458
1461
  .m(function (Command, cs, config, o) {
1459
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1462
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1460
1463
  })
1461
1464
  .s("AWSIdentityManagementV20100508", "ListRolePolicies", {})
1462
1465
  .n("IAMClient", "ListRolePoliciesCommand")
1463
- .sc(schemas_0.ListRolePolicies$)
1466
+ .sc(ListRolePolicies$)
1464
1467
  .build() {
1465
1468
  }
1466
1469
 
1467
- class ListRolesCommand extends client.Command
1470
+ class ListRolesCommand extends Command
1468
1471
  .classBuilder()
1469
1472
  .ep(commonParams)
1470
1473
  .m(function (Command, cs, config, o) {
1471
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1474
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1472
1475
  })
1473
1476
  .s("AWSIdentityManagementV20100508", "ListRoles", {})
1474
1477
  .n("IAMClient", "ListRolesCommand")
1475
- .sc(schemas_0.ListRoles$)
1478
+ .sc(ListRoles$)
1476
1479
  .build() {
1477
1480
  }
1478
1481
 
1479
- class ListRoleTagsCommand extends client.Command
1482
+ class ListRoleTagsCommand extends Command
1480
1483
  .classBuilder()
1481
1484
  .ep(commonParams)
1482
1485
  .m(function (Command, cs, config, o) {
1483
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1486
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1484
1487
  })
1485
1488
  .s("AWSIdentityManagementV20100508", "ListRoleTags", {})
1486
1489
  .n("IAMClient", "ListRoleTagsCommand")
1487
- .sc(schemas_0.ListRoleTags$)
1490
+ .sc(ListRoleTags$)
1488
1491
  .build() {
1489
1492
  }
1490
1493
 
1491
- class ListSAMLProvidersCommand extends client.Command
1494
+ class ListSAMLProvidersCommand extends Command
1492
1495
  .classBuilder()
1493
1496
  .ep(commonParams)
1494
1497
  .m(function (Command, cs, config, o) {
1495
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1498
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1496
1499
  })
1497
1500
  .s("AWSIdentityManagementV20100508", "ListSAMLProviders", {})
1498
1501
  .n("IAMClient", "ListSAMLProvidersCommand")
1499
- .sc(schemas_0.ListSAMLProviders$)
1502
+ .sc(ListSAMLProviders$)
1500
1503
  .build() {
1501
1504
  }
1502
1505
 
1503
- class ListSAMLProviderTagsCommand extends client.Command
1506
+ class ListSAMLProviderTagsCommand extends Command
1504
1507
  .classBuilder()
1505
1508
  .ep(commonParams)
1506
1509
  .m(function (Command, cs, config, o) {
1507
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1510
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1508
1511
  })
1509
1512
  .s("AWSIdentityManagementV20100508", "ListSAMLProviderTags", {})
1510
1513
  .n("IAMClient", "ListSAMLProviderTagsCommand")
1511
- .sc(schemas_0.ListSAMLProviderTags$)
1514
+ .sc(ListSAMLProviderTags$)
1512
1515
  .build() {
1513
1516
  }
1514
1517
 
1515
- class ListServerCertificatesCommand extends client.Command
1518
+ class ListServerCertificatesCommand extends Command
1516
1519
  .classBuilder()
1517
1520
  .ep(commonParams)
1518
1521
  .m(function (Command, cs, config, o) {
1519
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1522
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1520
1523
  })
1521
1524
  .s("AWSIdentityManagementV20100508", "ListServerCertificates", {})
1522
1525
  .n("IAMClient", "ListServerCertificatesCommand")
1523
- .sc(schemas_0.ListServerCertificates$)
1526
+ .sc(ListServerCertificates$)
1524
1527
  .build() {
1525
1528
  }
1526
1529
 
1527
- class ListServerCertificateTagsCommand extends client.Command
1530
+ class ListServerCertificateTagsCommand extends Command
1528
1531
  .classBuilder()
1529
1532
  .ep(commonParams)
1530
1533
  .m(function (Command, cs, config, o) {
1531
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1534
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1532
1535
  })
1533
1536
  .s("AWSIdentityManagementV20100508", "ListServerCertificateTags", {})
1534
1537
  .n("IAMClient", "ListServerCertificateTagsCommand")
1535
- .sc(schemas_0.ListServerCertificateTags$)
1538
+ .sc(ListServerCertificateTags$)
1536
1539
  .build() {
1537
1540
  }
1538
1541
 
1539
- class ListServiceSpecificCredentialsCommand extends client.Command
1542
+ class ListServiceSpecificCredentialsCommand extends Command
1540
1543
  .classBuilder()
1541
1544
  .ep(commonParams)
1542
1545
  .m(function (Command, cs, config, o) {
1543
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1546
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1544
1547
  })
1545
1548
  .s("AWSIdentityManagementV20100508", "ListServiceSpecificCredentials", {})
1546
1549
  .n("IAMClient", "ListServiceSpecificCredentialsCommand")
1547
- .sc(schemas_0.ListServiceSpecificCredentials$)
1550
+ .sc(ListServiceSpecificCredentials$)
1548
1551
  .build() {
1549
1552
  }
1550
1553
 
1551
- class ListSigningCertificatesCommand extends client.Command
1554
+ class ListSigningCertificatesCommand extends Command
1552
1555
  .classBuilder()
1553
1556
  .ep(commonParams)
1554
1557
  .m(function (Command, cs, config, o) {
1555
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1558
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1556
1559
  })
1557
1560
  .s("AWSIdentityManagementV20100508", "ListSigningCertificates", {})
1558
1561
  .n("IAMClient", "ListSigningCertificatesCommand")
1559
- .sc(schemas_0.ListSigningCertificates$)
1562
+ .sc(ListSigningCertificates$)
1560
1563
  .build() {
1561
1564
  }
1562
1565
 
1563
- class ListSSHPublicKeysCommand extends client.Command
1566
+ class ListSSHPublicKeysCommand extends Command
1564
1567
  .classBuilder()
1565
1568
  .ep(commonParams)
1566
1569
  .m(function (Command, cs, config, o) {
1567
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1570
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1568
1571
  })
1569
1572
  .s("AWSIdentityManagementV20100508", "ListSSHPublicKeys", {})
1570
1573
  .n("IAMClient", "ListSSHPublicKeysCommand")
1571
- .sc(schemas_0.ListSSHPublicKeys$)
1574
+ .sc(ListSSHPublicKeys$)
1572
1575
  .build() {
1573
1576
  }
1574
1577
 
1575
- class ListUserPoliciesCommand extends client.Command
1578
+ class ListUserPoliciesCommand extends Command
1576
1579
  .classBuilder()
1577
1580
  .ep(commonParams)
1578
1581
  .m(function (Command, cs, config, o) {
1579
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1582
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1580
1583
  })
1581
1584
  .s("AWSIdentityManagementV20100508", "ListUserPolicies", {})
1582
1585
  .n("IAMClient", "ListUserPoliciesCommand")
1583
- .sc(schemas_0.ListUserPolicies$)
1586
+ .sc(ListUserPolicies$)
1584
1587
  .build() {
1585
1588
  }
1586
1589
 
1587
- class ListUsersCommand extends client.Command
1590
+ class ListUsersCommand extends Command
1588
1591
  .classBuilder()
1589
1592
  .ep(commonParams)
1590
1593
  .m(function (Command, cs, config, o) {
1591
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1594
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1592
1595
  })
1593
1596
  .s("AWSIdentityManagementV20100508", "ListUsers", {})
1594
1597
  .n("IAMClient", "ListUsersCommand")
1595
- .sc(schemas_0.ListUsers$)
1598
+ .sc(ListUsers$)
1596
1599
  .build() {
1597
1600
  }
1598
1601
 
1599
- class ListUserTagsCommand extends client.Command
1602
+ class ListUserTagsCommand extends Command
1600
1603
  .classBuilder()
1601
1604
  .ep(commonParams)
1602
1605
  .m(function (Command, cs, config, o) {
1603
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1606
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1604
1607
  })
1605
1608
  .s("AWSIdentityManagementV20100508", "ListUserTags", {})
1606
1609
  .n("IAMClient", "ListUserTagsCommand")
1607
- .sc(schemas_0.ListUserTags$)
1610
+ .sc(ListUserTags$)
1608
1611
  .build() {
1609
1612
  }
1610
1613
 
1611
- class ListVirtualMFADevicesCommand extends client.Command
1614
+ class ListVirtualMFADevicesCommand extends Command
1612
1615
  .classBuilder()
1613
1616
  .ep(commonParams)
1614
1617
  .m(function (Command, cs, config, o) {
1615
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1618
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1616
1619
  })
1617
1620
  .s("AWSIdentityManagementV20100508", "ListVirtualMFADevices", {})
1618
1621
  .n("IAMClient", "ListVirtualMFADevicesCommand")
1619
- .sc(schemas_0.ListVirtualMFADevices$)
1622
+ .sc(ListVirtualMFADevices$)
1620
1623
  .build() {
1621
1624
  }
1622
1625
 
1623
- class PutGroupPolicyCommand extends client.Command
1626
+ class PutGroupPolicyCommand extends Command
1624
1627
  .classBuilder()
1625
1628
  .ep(commonParams)
1626
1629
  .m(function (Command, cs, config, o) {
1627
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1630
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1628
1631
  })
1629
1632
  .s("AWSIdentityManagementV20100508", "PutGroupPolicy", {})
1630
1633
  .n("IAMClient", "PutGroupPolicyCommand")
1631
- .sc(schemas_0.PutGroupPolicy$)
1634
+ .sc(PutGroupPolicy$)
1632
1635
  .build() {
1633
1636
  }
1634
1637
 
1635
- class PutRolePermissionsBoundaryCommand extends client.Command
1638
+ class PutRolePermissionsBoundaryCommand extends Command
1636
1639
  .classBuilder()
1637
1640
  .ep(commonParams)
1638
1641
  .m(function (Command, cs, config, o) {
1639
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1642
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1640
1643
  })
1641
1644
  .s("AWSIdentityManagementV20100508", "PutRolePermissionsBoundary", {})
1642
1645
  .n("IAMClient", "PutRolePermissionsBoundaryCommand")
1643
- .sc(schemas_0.PutRolePermissionsBoundary$)
1646
+ .sc(PutRolePermissionsBoundary$)
1644
1647
  .build() {
1645
1648
  }
1646
1649
 
1647
- class PutRolePolicyCommand extends client.Command
1650
+ class PutRolePolicyCommand extends Command
1648
1651
  .classBuilder()
1649
1652
  .ep(commonParams)
1650
1653
  .m(function (Command, cs, config, o) {
1651
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1654
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1652
1655
  })
1653
1656
  .s("AWSIdentityManagementV20100508", "PutRolePolicy", {})
1654
1657
  .n("IAMClient", "PutRolePolicyCommand")
1655
- .sc(schemas_0.PutRolePolicy$)
1658
+ .sc(PutRolePolicy$)
1656
1659
  .build() {
1657
1660
  }
1658
1661
 
1659
- class PutUserPermissionsBoundaryCommand extends client.Command
1662
+ class PutUserPermissionsBoundaryCommand extends Command
1660
1663
  .classBuilder()
1661
1664
  .ep(commonParams)
1662
1665
  .m(function (Command, cs, config, o) {
1663
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1666
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1664
1667
  })
1665
1668
  .s("AWSIdentityManagementV20100508", "PutUserPermissionsBoundary", {})
1666
1669
  .n("IAMClient", "PutUserPermissionsBoundaryCommand")
1667
- .sc(schemas_0.PutUserPermissionsBoundary$)
1670
+ .sc(PutUserPermissionsBoundary$)
1668
1671
  .build() {
1669
1672
  }
1670
1673
 
1671
- class PutUserPolicyCommand extends client.Command
1674
+ class PutUserPolicyCommand extends Command
1672
1675
  .classBuilder()
1673
1676
  .ep(commonParams)
1674
1677
  .m(function (Command, cs, config, o) {
1675
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1678
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1676
1679
  })
1677
1680
  .s("AWSIdentityManagementV20100508", "PutUserPolicy", {})
1678
1681
  .n("IAMClient", "PutUserPolicyCommand")
1679
- .sc(schemas_0.PutUserPolicy$)
1682
+ .sc(PutUserPolicy$)
1680
1683
  .build() {
1681
1684
  }
1682
1685
 
1683
- class RejectDelegationRequestCommand extends client.Command
1686
+ class RejectDelegationRequestCommand extends Command
1684
1687
  .classBuilder()
1685
1688
  .ep(commonParams)
1686
1689
  .m(function (Command, cs, config, o) {
1687
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1690
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1688
1691
  })
1689
1692
  .s("AWSIdentityManagementV20100508", "RejectDelegationRequest", {})
1690
1693
  .n("IAMClient", "RejectDelegationRequestCommand")
1691
- .sc(schemas_0.RejectDelegationRequest$)
1694
+ .sc(RejectDelegationRequest$)
1692
1695
  .build() {
1693
1696
  }
1694
1697
 
1695
- class RemoveClientIDFromOpenIDConnectProviderCommand extends client.Command
1698
+ class RemoveClientIDFromOpenIDConnectProviderCommand extends Command
1696
1699
  .classBuilder()
1697
1700
  .ep(commonParams)
1698
1701
  .m(function (Command, cs, config, o) {
1699
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1702
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1700
1703
  })
1701
1704
  .s("AWSIdentityManagementV20100508", "RemoveClientIDFromOpenIDConnectProvider", {})
1702
1705
  .n("IAMClient", "RemoveClientIDFromOpenIDConnectProviderCommand")
1703
- .sc(schemas_0.RemoveClientIDFromOpenIDConnectProvider$)
1706
+ .sc(RemoveClientIDFromOpenIDConnectProvider$)
1704
1707
  .build() {
1705
1708
  }
1706
1709
 
1707
- class RemoveRoleFromInstanceProfileCommand extends client.Command
1710
+ class RemoveRoleFromInstanceProfileCommand extends Command
1708
1711
  .classBuilder()
1709
1712
  .ep(commonParams)
1710
1713
  .m(function (Command, cs, config, o) {
1711
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1714
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1712
1715
  })
1713
1716
  .s("AWSIdentityManagementV20100508", "RemoveRoleFromInstanceProfile", {})
1714
1717
  .n("IAMClient", "RemoveRoleFromInstanceProfileCommand")
1715
- .sc(schemas_0.RemoveRoleFromInstanceProfile$)
1718
+ .sc(RemoveRoleFromInstanceProfile$)
1716
1719
  .build() {
1717
1720
  }
1718
1721
 
1719
- class RemoveUserFromGroupCommand extends client.Command
1722
+ class RemoveUserFromGroupCommand extends Command
1720
1723
  .classBuilder()
1721
1724
  .ep(commonParams)
1722
1725
  .m(function (Command, cs, config, o) {
1723
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1726
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1724
1727
  })
1725
1728
  .s("AWSIdentityManagementV20100508", "RemoveUserFromGroup", {})
1726
1729
  .n("IAMClient", "RemoveUserFromGroupCommand")
1727
- .sc(schemas_0.RemoveUserFromGroup$)
1730
+ .sc(RemoveUserFromGroup$)
1728
1731
  .build() {
1729
1732
  }
1730
1733
 
1731
- class ResetServiceSpecificCredentialCommand extends client.Command
1734
+ class ResetServiceSpecificCredentialCommand extends Command
1732
1735
  .classBuilder()
1733
1736
  .ep(commonParams)
1734
1737
  .m(function (Command, cs, config, o) {
1735
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1738
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1736
1739
  })
1737
1740
  .s("AWSIdentityManagementV20100508", "ResetServiceSpecificCredential", {})
1738
1741
  .n("IAMClient", "ResetServiceSpecificCredentialCommand")
1739
- .sc(schemas_0.ResetServiceSpecificCredential$)
1742
+ .sc(ResetServiceSpecificCredential$)
1740
1743
  .build() {
1741
1744
  }
1742
1745
 
1743
- class ResyncMFADeviceCommand extends client.Command
1746
+ class ResyncMFADeviceCommand extends Command
1744
1747
  .classBuilder()
1745
1748
  .ep(commonParams)
1746
1749
  .m(function (Command, cs, config, o) {
1747
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1750
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1748
1751
  })
1749
1752
  .s("AWSIdentityManagementV20100508", "ResyncMFADevice", {})
1750
1753
  .n("IAMClient", "ResyncMFADeviceCommand")
1751
- .sc(schemas_0.ResyncMFADevice$)
1754
+ .sc(ResyncMFADevice$)
1752
1755
  .build() {
1753
1756
  }
1754
1757
 
1755
- class SendDelegationTokenCommand extends client.Command
1758
+ class SendDelegationTokenCommand extends Command
1756
1759
  .classBuilder()
1757
1760
  .ep(commonParams)
1758
1761
  .m(function (Command, cs, config, o) {
1759
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1762
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1760
1763
  })
1761
1764
  .s("AWSIdentityManagementV20100508", "SendDelegationToken", {})
1762
1765
  .n("IAMClient", "SendDelegationTokenCommand")
1763
- .sc(schemas_0.SendDelegationToken$)
1766
+ .sc(SendDelegationToken$)
1764
1767
  .build() {
1765
1768
  }
1766
1769
 
1767
- class SetDefaultPolicyVersionCommand extends client.Command
1770
+ class SetDefaultPolicyVersionCommand extends Command
1768
1771
  .classBuilder()
1769
1772
  .ep(commonParams)
1770
1773
  .m(function (Command, cs, config, o) {
1771
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1774
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1772
1775
  })
1773
1776
  .s("AWSIdentityManagementV20100508", "SetDefaultPolicyVersion", {})
1774
1777
  .n("IAMClient", "SetDefaultPolicyVersionCommand")
1775
- .sc(schemas_0.SetDefaultPolicyVersion$)
1778
+ .sc(SetDefaultPolicyVersion$)
1776
1779
  .build() {
1777
1780
  }
1778
1781
 
1779
- class SetSecurityTokenServicePreferencesCommand extends client.Command
1782
+ class SetSecurityTokenServicePreferencesCommand extends Command
1780
1783
  .classBuilder()
1781
1784
  .ep(commonParams)
1782
1785
  .m(function (Command, cs, config, o) {
1783
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1786
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1784
1787
  })
1785
1788
  .s("AWSIdentityManagementV20100508", "SetSecurityTokenServicePreferences", {})
1786
1789
  .n("IAMClient", "SetSecurityTokenServicePreferencesCommand")
1787
- .sc(schemas_0.SetSecurityTokenServicePreferences$)
1790
+ .sc(SetSecurityTokenServicePreferences$)
1788
1791
  .build() {
1789
1792
  }
1790
1793
 
1791
- class SimulateCustomPolicyCommand extends client.Command
1794
+ class SimulateCustomPolicyCommand extends Command
1792
1795
  .classBuilder()
1793
1796
  .ep(commonParams)
1794
1797
  .m(function (Command, cs, config, o) {
1795
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1798
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1796
1799
  })
1797
1800
  .s("AWSIdentityManagementV20100508", "SimulateCustomPolicy", {})
1798
1801
  .n("IAMClient", "SimulateCustomPolicyCommand")
1799
- .sc(schemas_0.SimulateCustomPolicy$)
1802
+ .sc(SimulateCustomPolicy$)
1800
1803
  .build() {
1801
1804
  }
1802
1805
 
1803
- class SimulatePrincipalPolicyCommand extends client.Command
1806
+ class SimulatePrincipalPolicyCommand extends Command
1804
1807
  .classBuilder()
1805
1808
  .ep(commonParams)
1806
1809
  .m(function (Command, cs, config, o) {
1807
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1810
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1808
1811
  })
1809
1812
  .s("AWSIdentityManagementV20100508", "SimulatePrincipalPolicy", {})
1810
1813
  .n("IAMClient", "SimulatePrincipalPolicyCommand")
1811
- .sc(schemas_0.SimulatePrincipalPolicy$)
1814
+ .sc(SimulatePrincipalPolicy$)
1812
1815
  .build() {
1813
1816
  }
1814
1817
 
1815
- class TagInstanceProfileCommand extends client.Command
1818
+ class TagInstanceProfileCommand extends Command
1816
1819
  .classBuilder()
1817
1820
  .ep(commonParams)
1818
1821
  .m(function (Command, cs, config, o) {
1819
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1822
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1820
1823
  })
1821
1824
  .s("AWSIdentityManagementV20100508", "TagInstanceProfile", {})
1822
1825
  .n("IAMClient", "TagInstanceProfileCommand")
1823
- .sc(schemas_0.TagInstanceProfile$)
1826
+ .sc(TagInstanceProfile$)
1824
1827
  .build() {
1825
1828
  }
1826
1829
 
1827
- class TagMFADeviceCommand extends client.Command
1830
+ class TagMFADeviceCommand extends Command
1828
1831
  .classBuilder()
1829
1832
  .ep(commonParams)
1830
1833
  .m(function (Command, cs, config, o) {
1831
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1834
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1832
1835
  })
1833
1836
  .s("AWSIdentityManagementV20100508", "TagMFADevice", {})
1834
1837
  .n("IAMClient", "TagMFADeviceCommand")
1835
- .sc(schemas_0.TagMFADevice$)
1838
+ .sc(TagMFADevice$)
1836
1839
  .build() {
1837
1840
  }
1838
1841
 
1839
- class TagOpenIDConnectProviderCommand extends client.Command
1842
+ class TagOpenIDConnectProviderCommand extends Command
1840
1843
  .classBuilder()
1841
1844
  .ep(commonParams)
1842
1845
  .m(function (Command, cs, config, o) {
1843
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1846
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1844
1847
  })
1845
1848
  .s("AWSIdentityManagementV20100508", "TagOpenIDConnectProvider", {})
1846
1849
  .n("IAMClient", "TagOpenIDConnectProviderCommand")
1847
- .sc(schemas_0.TagOpenIDConnectProvider$)
1850
+ .sc(TagOpenIDConnectProvider$)
1848
1851
  .build() {
1849
1852
  }
1850
1853
 
1851
- class TagPolicyCommand extends client.Command
1854
+ class TagPolicyCommand extends Command
1852
1855
  .classBuilder()
1853
1856
  .ep(commonParams)
1854
1857
  .m(function (Command, cs, config, o) {
1855
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1858
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1856
1859
  })
1857
1860
  .s("AWSIdentityManagementV20100508", "TagPolicy", {})
1858
1861
  .n("IAMClient", "TagPolicyCommand")
1859
- .sc(schemas_0.TagPolicy$)
1862
+ .sc(TagPolicy$)
1860
1863
  .build() {
1861
1864
  }
1862
1865
 
1863
- class TagRoleCommand extends client.Command
1866
+ class TagRoleCommand extends Command
1864
1867
  .classBuilder()
1865
1868
  .ep(commonParams)
1866
1869
  .m(function (Command, cs, config, o) {
1867
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1870
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1868
1871
  })
1869
1872
  .s("AWSIdentityManagementV20100508", "TagRole", {})
1870
1873
  .n("IAMClient", "TagRoleCommand")
1871
- .sc(schemas_0.TagRole$)
1874
+ .sc(TagRole$)
1872
1875
  .build() {
1873
1876
  }
1874
1877
 
1875
- class TagSAMLProviderCommand extends client.Command
1878
+ class TagSAMLProviderCommand extends Command
1876
1879
  .classBuilder()
1877
1880
  .ep(commonParams)
1878
1881
  .m(function (Command, cs, config, o) {
1879
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1882
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1880
1883
  })
1881
1884
  .s("AWSIdentityManagementV20100508", "TagSAMLProvider", {})
1882
1885
  .n("IAMClient", "TagSAMLProviderCommand")
1883
- .sc(schemas_0.TagSAMLProvider$)
1886
+ .sc(TagSAMLProvider$)
1884
1887
  .build() {
1885
1888
  }
1886
1889
 
1887
- class TagServerCertificateCommand extends client.Command
1890
+ class TagServerCertificateCommand extends Command
1888
1891
  .classBuilder()
1889
1892
  .ep(commonParams)
1890
1893
  .m(function (Command, cs, config, o) {
1891
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1894
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1892
1895
  })
1893
1896
  .s("AWSIdentityManagementV20100508", "TagServerCertificate", {})
1894
1897
  .n("IAMClient", "TagServerCertificateCommand")
1895
- .sc(schemas_0.TagServerCertificate$)
1898
+ .sc(TagServerCertificate$)
1896
1899
  .build() {
1897
1900
  }
1898
1901
 
1899
- class TagUserCommand extends client.Command
1902
+ class TagUserCommand extends Command
1900
1903
  .classBuilder()
1901
1904
  .ep(commonParams)
1902
1905
  .m(function (Command, cs, config, o) {
1903
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1906
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1904
1907
  })
1905
1908
  .s("AWSIdentityManagementV20100508", "TagUser", {})
1906
1909
  .n("IAMClient", "TagUserCommand")
1907
- .sc(schemas_0.TagUser$)
1910
+ .sc(TagUser$)
1908
1911
  .build() {
1909
1912
  }
1910
1913
 
1911
- class UntagInstanceProfileCommand extends client.Command
1914
+ class UntagInstanceProfileCommand extends Command
1912
1915
  .classBuilder()
1913
1916
  .ep(commonParams)
1914
1917
  .m(function (Command, cs, config, o) {
1915
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1918
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1916
1919
  })
1917
1920
  .s("AWSIdentityManagementV20100508", "UntagInstanceProfile", {})
1918
1921
  .n("IAMClient", "UntagInstanceProfileCommand")
1919
- .sc(schemas_0.UntagInstanceProfile$)
1922
+ .sc(UntagInstanceProfile$)
1920
1923
  .build() {
1921
1924
  }
1922
1925
 
1923
- class UntagMFADeviceCommand extends client.Command
1926
+ class UntagMFADeviceCommand extends Command
1924
1927
  .classBuilder()
1925
1928
  .ep(commonParams)
1926
1929
  .m(function (Command, cs, config, o) {
1927
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1930
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1928
1931
  })
1929
1932
  .s("AWSIdentityManagementV20100508", "UntagMFADevice", {})
1930
1933
  .n("IAMClient", "UntagMFADeviceCommand")
1931
- .sc(schemas_0.UntagMFADevice$)
1934
+ .sc(UntagMFADevice$)
1932
1935
  .build() {
1933
1936
  }
1934
1937
 
1935
- class UntagOpenIDConnectProviderCommand extends client.Command
1938
+ class UntagOpenIDConnectProviderCommand extends Command
1936
1939
  .classBuilder()
1937
1940
  .ep(commonParams)
1938
1941
  .m(function (Command, cs, config, o) {
1939
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1942
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1940
1943
  })
1941
1944
  .s("AWSIdentityManagementV20100508", "UntagOpenIDConnectProvider", {})
1942
1945
  .n("IAMClient", "UntagOpenIDConnectProviderCommand")
1943
- .sc(schemas_0.UntagOpenIDConnectProvider$)
1946
+ .sc(UntagOpenIDConnectProvider$)
1944
1947
  .build() {
1945
1948
  }
1946
1949
 
1947
- class UntagPolicyCommand extends client.Command
1950
+ class UntagPolicyCommand extends Command
1948
1951
  .classBuilder()
1949
1952
  .ep(commonParams)
1950
1953
  .m(function (Command, cs, config, o) {
1951
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1954
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1952
1955
  })
1953
1956
  .s("AWSIdentityManagementV20100508", "UntagPolicy", {})
1954
1957
  .n("IAMClient", "UntagPolicyCommand")
1955
- .sc(schemas_0.UntagPolicy$)
1958
+ .sc(UntagPolicy$)
1956
1959
  .build() {
1957
1960
  }
1958
1961
 
1959
- class UntagRoleCommand extends client.Command
1962
+ class UntagRoleCommand extends Command
1960
1963
  .classBuilder()
1961
1964
  .ep(commonParams)
1962
1965
  .m(function (Command, cs, config, o) {
1963
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1966
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1964
1967
  })
1965
1968
  .s("AWSIdentityManagementV20100508", "UntagRole", {})
1966
1969
  .n("IAMClient", "UntagRoleCommand")
1967
- .sc(schemas_0.UntagRole$)
1970
+ .sc(UntagRole$)
1968
1971
  .build() {
1969
1972
  }
1970
1973
 
1971
- class UntagSAMLProviderCommand extends client.Command
1974
+ class UntagSAMLProviderCommand extends Command
1972
1975
  .classBuilder()
1973
1976
  .ep(commonParams)
1974
1977
  .m(function (Command, cs, config, o) {
1975
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1978
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1976
1979
  })
1977
1980
  .s("AWSIdentityManagementV20100508", "UntagSAMLProvider", {})
1978
1981
  .n("IAMClient", "UntagSAMLProviderCommand")
1979
- .sc(schemas_0.UntagSAMLProvider$)
1982
+ .sc(UntagSAMLProvider$)
1980
1983
  .build() {
1981
1984
  }
1982
1985
 
1983
- class UntagServerCertificateCommand extends client.Command
1986
+ class UntagServerCertificateCommand extends Command
1984
1987
  .classBuilder()
1985
1988
  .ep(commonParams)
1986
1989
  .m(function (Command, cs, config, o) {
1987
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1990
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1988
1991
  })
1989
1992
  .s("AWSIdentityManagementV20100508", "UntagServerCertificate", {})
1990
1993
  .n("IAMClient", "UntagServerCertificateCommand")
1991
- .sc(schemas_0.UntagServerCertificate$)
1994
+ .sc(UntagServerCertificate$)
1992
1995
  .build() {
1993
1996
  }
1994
1997
 
1995
- class UntagUserCommand extends client.Command
1998
+ class UntagUserCommand extends Command
1996
1999
  .classBuilder()
1997
2000
  .ep(commonParams)
1998
2001
  .m(function (Command, cs, config, o) {
1999
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2002
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2000
2003
  })
2001
2004
  .s("AWSIdentityManagementV20100508", "UntagUser", {})
2002
2005
  .n("IAMClient", "UntagUserCommand")
2003
- .sc(schemas_0.UntagUser$)
2006
+ .sc(UntagUser$)
2004
2007
  .build() {
2005
2008
  }
2006
2009
 
2007
- class UpdateAccessKeyCommand extends client.Command
2010
+ class UpdateAccessKeyCommand extends Command
2008
2011
  .classBuilder()
2009
2012
  .ep(commonParams)
2010
2013
  .m(function (Command, cs, config, o) {
2011
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2014
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2012
2015
  })
2013
2016
  .s("AWSIdentityManagementV20100508", "UpdateAccessKey", {})
2014
2017
  .n("IAMClient", "UpdateAccessKeyCommand")
2015
- .sc(schemas_0.UpdateAccessKey$)
2018
+ .sc(UpdateAccessKey$)
2016
2019
  .build() {
2017
2020
  }
2018
2021
 
2019
- class UpdateAccountPasswordPolicyCommand extends client.Command
2022
+ class UpdateAccountPasswordPolicyCommand extends Command
2020
2023
  .classBuilder()
2021
2024
  .ep(commonParams)
2022
2025
  .m(function (Command, cs, config, o) {
2023
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2026
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2024
2027
  })
2025
2028
  .s("AWSIdentityManagementV20100508", "UpdateAccountPasswordPolicy", {})
2026
2029
  .n("IAMClient", "UpdateAccountPasswordPolicyCommand")
2027
- .sc(schemas_0.UpdateAccountPasswordPolicy$)
2030
+ .sc(UpdateAccountPasswordPolicy$)
2028
2031
  .build() {
2029
2032
  }
2030
2033
 
2031
- class UpdateAssumeRolePolicyCommand extends client.Command
2034
+ class UpdateAssumeRolePolicyCommand extends Command
2032
2035
  .classBuilder()
2033
2036
  .ep(commonParams)
2034
2037
  .m(function (Command, cs, config, o) {
2035
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2038
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2036
2039
  })
2037
2040
  .s("AWSIdentityManagementV20100508", "UpdateAssumeRolePolicy", {})
2038
2041
  .n("IAMClient", "UpdateAssumeRolePolicyCommand")
2039
- .sc(schemas_0.UpdateAssumeRolePolicy$)
2042
+ .sc(UpdateAssumeRolePolicy$)
2040
2043
  .build() {
2041
2044
  }
2042
2045
 
2043
- class UpdateDelegationRequestCommand extends client.Command
2046
+ class UpdateDelegationRequestCommand extends Command
2044
2047
  .classBuilder()
2045
2048
  .ep(commonParams)
2046
2049
  .m(function (Command, cs, config, o) {
2047
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2050
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2048
2051
  })
2049
2052
  .s("AWSIdentityManagementV20100508", "UpdateDelegationRequest", {})
2050
2053
  .n("IAMClient", "UpdateDelegationRequestCommand")
2051
- .sc(schemas_0.UpdateDelegationRequest$)
2054
+ .sc(UpdateDelegationRequest$)
2052
2055
  .build() {
2053
2056
  }
2054
2057
 
2055
- class UpdateGroupCommand extends client.Command
2058
+ class UpdateGroupCommand extends Command
2056
2059
  .classBuilder()
2057
2060
  .ep(commonParams)
2058
2061
  .m(function (Command, cs, config, o) {
2059
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2062
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2060
2063
  })
2061
2064
  .s("AWSIdentityManagementV20100508", "UpdateGroup", {})
2062
2065
  .n("IAMClient", "UpdateGroupCommand")
2063
- .sc(schemas_0.UpdateGroup$)
2066
+ .sc(UpdateGroup$)
2064
2067
  .build() {
2065
2068
  }
2066
2069
 
2067
- class UpdateLoginProfileCommand extends client.Command
2070
+ class UpdateLoginProfileCommand extends Command
2068
2071
  .classBuilder()
2069
2072
  .ep(commonParams)
2070
2073
  .m(function (Command, cs, config, o) {
2071
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2074
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2072
2075
  })
2073
2076
  .s("AWSIdentityManagementV20100508", "UpdateLoginProfile", {})
2074
2077
  .n("IAMClient", "UpdateLoginProfileCommand")
2075
- .sc(schemas_0.UpdateLoginProfile$)
2078
+ .sc(UpdateLoginProfile$)
2076
2079
  .build() {
2077
2080
  }
2078
2081
 
2079
- class UpdateOpenIDConnectProviderThumbprintCommand extends client.Command
2082
+ class UpdateOpenIDConnectProviderThumbprintCommand extends Command
2080
2083
  .classBuilder()
2081
2084
  .ep(commonParams)
2082
2085
  .m(function (Command, cs, config, o) {
2083
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2086
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2084
2087
  })
2085
2088
  .s("AWSIdentityManagementV20100508", "UpdateOpenIDConnectProviderThumbprint", {})
2086
2089
  .n("IAMClient", "UpdateOpenIDConnectProviderThumbprintCommand")
2087
- .sc(schemas_0.UpdateOpenIDConnectProviderThumbprint$)
2090
+ .sc(UpdateOpenIDConnectProviderThumbprint$)
2088
2091
  .build() {
2089
2092
  }
2090
2093
 
2091
- class UpdateRoleCommand extends client.Command
2094
+ class UpdateRoleCommand extends Command
2092
2095
  .classBuilder()
2093
2096
  .ep(commonParams)
2094
2097
  .m(function (Command, cs, config, o) {
2095
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2098
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2096
2099
  })
2097
2100
  .s("AWSIdentityManagementV20100508", "UpdateRole", {})
2098
2101
  .n("IAMClient", "UpdateRoleCommand")
2099
- .sc(schemas_0.UpdateRole$)
2102
+ .sc(UpdateRole$)
2100
2103
  .build() {
2101
2104
  }
2102
2105
 
2103
- class UpdateRoleDescriptionCommand extends client.Command
2106
+ class UpdateRoleDescriptionCommand extends Command
2104
2107
  .classBuilder()
2105
2108
  .ep(commonParams)
2106
2109
  .m(function (Command, cs, config, o) {
2107
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2110
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2108
2111
  })
2109
2112
  .s("AWSIdentityManagementV20100508", "UpdateRoleDescription", {})
2110
2113
  .n("IAMClient", "UpdateRoleDescriptionCommand")
2111
- .sc(schemas_0.UpdateRoleDescription$)
2114
+ .sc(UpdateRoleDescription$)
2112
2115
  .build() {
2113
2116
  }
2114
2117
 
2115
- class UpdateSAMLProviderCommand extends client.Command
2118
+ class UpdateSAMLProviderCommand extends Command
2116
2119
  .classBuilder()
2117
2120
  .ep(commonParams)
2118
2121
  .m(function (Command, cs, config, o) {
2119
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2122
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2120
2123
  })
2121
2124
  .s("AWSIdentityManagementV20100508", "UpdateSAMLProvider", {})
2122
2125
  .n("IAMClient", "UpdateSAMLProviderCommand")
2123
- .sc(schemas_0.UpdateSAMLProvider$)
2126
+ .sc(UpdateSAMLProvider$)
2124
2127
  .build() {
2125
2128
  }
2126
2129
 
2127
- class UpdateServerCertificateCommand extends client.Command
2130
+ class UpdateServerCertificateCommand extends Command
2128
2131
  .classBuilder()
2129
2132
  .ep(commonParams)
2130
2133
  .m(function (Command, cs, config, o) {
2131
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2134
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2132
2135
  })
2133
2136
  .s("AWSIdentityManagementV20100508", "UpdateServerCertificate", {})
2134
2137
  .n("IAMClient", "UpdateServerCertificateCommand")
2135
- .sc(schemas_0.UpdateServerCertificate$)
2138
+ .sc(UpdateServerCertificate$)
2136
2139
  .build() {
2137
2140
  }
2138
2141
 
2139
- class UpdateServiceSpecificCredentialCommand extends client.Command
2142
+ class UpdateServiceSpecificCredentialCommand extends Command
2140
2143
  .classBuilder()
2141
2144
  .ep(commonParams)
2142
2145
  .m(function (Command, cs, config, o) {
2143
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2146
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2144
2147
  })
2145
2148
  .s("AWSIdentityManagementV20100508", "UpdateServiceSpecificCredential", {})
2146
2149
  .n("IAMClient", "UpdateServiceSpecificCredentialCommand")
2147
- .sc(schemas_0.UpdateServiceSpecificCredential$)
2150
+ .sc(UpdateServiceSpecificCredential$)
2148
2151
  .build() {
2149
2152
  }
2150
2153
 
2151
- class UpdateSigningCertificateCommand extends client.Command
2154
+ class UpdateSigningCertificateCommand extends Command
2152
2155
  .classBuilder()
2153
2156
  .ep(commonParams)
2154
2157
  .m(function (Command, cs, config, o) {
2155
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2158
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2156
2159
  })
2157
2160
  .s("AWSIdentityManagementV20100508", "UpdateSigningCertificate", {})
2158
2161
  .n("IAMClient", "UpdateSigningCertificateCommand")
2159
- .sc(schemas_0.UpdateSigningCertificate$)
2162
+ .sc(UpdateSigningCertificate$)
2160
2163
  .build() {
2161
2164
  }
2162
2165
 
2163
- class UpdateSSHPublicKeyCommand extends client.Command
2166
+ class UpdateSSHPublicKeyCommand extends Command
2164
2167
  .classBuilder()
2165
2168
  .ep(commonParams)
2166
2169
  .m(function (Command, cs, config, o) {
2167
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2170
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2168
2171
  })
2169
2172
  .s("AWSIdentityManagementV20100508", "UpdateSSHPublicKey", {})
2170
2173
  .n("IAMClient", "UpdateSSHPublicKeyCommand")
2171
- .sc(schemas_0.UpdateSSHPublicKey$)
2174
+ .sc(UpdateSSHPublicKey$)
2172
2175
  .build() {
2173
2176
  }
2174
2177
 
2175
- class UpdateUserCommand extends client.Command
2178
+ class UpdateUserCommand extends Command
2176
2179
  .classBuilder()
2177
2180
  .ep(commonParams)
2178
2181
  .m(function (Command, cs, config, o) {
2179
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2182
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2180
2183
  })
2181
2184
  .s("AWSIdentityManagementV20100508", "UpdateUser", {})
2182
2185
  .n("IAMClient", "UpdateUserCommand")
2183
- .sc(schemas_0.UpdateUser$)
2186
+ .sc(UpdateUser$)
2184
2187
  .build() {
2185
2188
  }
2186
2189
 
2187
- class UploadServerCertificateCommand extends client.Command
2190
+ class UploadServerCertificateCommand extends Command
2188
2191
  .classBuilder()
2189
2192
  .ep(commonParams)
2190
2193
  .m(function (Command, cs, config, o) {
2191
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2194
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2192
2195
  })
2193
2196
  .s("AWSIdentityManagementV20100508", "UploadServerCertificate", {})
2194
2197
  .n("IAMClient", "UploadServerCertificateCommand")
2195
- .sc(schemas_0.UploadServerCertificate$)
2198
+ .sc(UploadServerCertificate$)
2196
2199
  .build() {
2197
2200
  }
2198
2201
 
2199
- class UploadSigningCertificateCommand extends client.Command
2202
+ class UploadSigningCertificateCommand extends Command
2200
2203
  .classBuilder()
2201
2204
  .ep(commonParams)
2202
2205
  .m(function (Command, cs, config, o) {
2203
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2206
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2204
2207
  })
2205
2208
  .s("AWSIdentityManagementV20100508", "UploadSigningCertificate", {})
2206
2209
  .n("IAMClient", "UploadSigningCertificateCommand")
2207
- .sc(schemas_0.UploadSigningCertificate$)
2210
+ .sc(UploadSigningCertificate$)
2208
2211
  .build() {
2209
2212
  }
2210
2213
 
2211
- class UploadSSHPublicKeyCommand extends client.Command
2214
+ class UploadSSHPublicKeyCommand extends Command
2212
2215
  .classBuilder()
2213
2216
  .ep(commonParams)
2214
2217
  .m(function (Command, cs, config, o) {
2215
- return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2218
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2216
2219
  })
2217
2220
  .s("AWSIdentityManagementV20100508", "UploadSSHPublicKey", {})
2218
2221
  .n("IAMClient", "UploadSSHPublicKeyCommand")
2219
- .sc(schemas_0.UploadSSHPublicKey$)
2222
+ .sc(UploadSSHPublicKey$)
2220
2223
  .build() {
2221
2224
  }
2222
2225
 
2223
- const paginateGetAccountAuthorizationDetails = core.createPaginator(IAMClient, GetAccountAuthorizationDetailsCommand, "Marker", "Marker", "MaxItems");
2226
+ const paginateGetAccountAuthorizationDetails = createPaginator(IAMClient, GetAccountAuthorizationDetailsCommand, "Marker", "Marker", "MaxItems");
2224
2227
 
2225
- const paginateGetGroup = core.createPaginator(IAMClient, GetGroupCommand, "Marker", "Marker", "MaxItems");
2228
+ const paginateGetGroup = createPaginator(IAMClient, GetGroupCommand, "Marker", "Marker", "MaxItems");
2226
2229
 
2227
- const paginateListAccessKeys = core.createPaginator(IAMClient, ListAccessKeysCommand, "Marker", "Marker", "MaxItems");
2230
+ const paginateListAccessKeys = createPaginator(IAMClient, ListAccessKeysCommand, "Marker", "Marker", "MaxItems");
2228
2231
 
2229
- const paginateListAccountAliases = core.createPaginator(IAMClient, ListAccountAliasesCommand, "Marker", "Marker", "MaxItems");
2232
+ const paginateListAccountAliases = createPaginator(IAMClient, ListAccountAliasesCommand, "Marker", "Marker", "MaxItems");
2230
2233
 
2231
- const paginateListAttachedGroupPolicies = core.createPaginator(IAMClient, ListAttachedGroupPoliciesCommand, "Marker", "Marker", "MaxItems");
2234
+ const paginateListAttachedGroupPolicies = createPaginator(IAMClient, ListAttachedGroupPoliciesCommand, "Marker", "Marker", "MaxItems");
2232
2235
 
2233
- const paginateListAttachedRolePolicies = core.createPaginator(IAMClient, ListAttachedRolePoliciesCommand, "Marker", "Marker", "MaxItems");
2236
+ const paginateListAttachedRolePolicies = createPaginator(IAMClient, ListAttachedRolePoliciesCommand, "Marker", "Marker", "MaxItems");
2234
2237
 
2235
- const paginateListAttachedUserPolicies = core.createPaginator(IAMClient, ListAttachedUserPoliciesCommand, "Marker", "Marker", "MaxItems");
2238
+ const paginateListAttachedUserPolicies = createPaginator(IAMClient, ListAttachedUserPoliciesCommand, "Marker", "Marker", "MaxItems");
2236
2239
 
2237
- const paginateListEntitiesForPolicy = core.createPaginator(IAMClient, ListEntitiesForPolicyCommand, "Marker", "Marker", "MaxItems");
2240
+ const paginateListEntitiesForPolicy = createPaginator(IAMClient, ListEntitiesForPolicyCommand, "Marker", "Marker", "MaxItems");
2238
2241
 
2239
- const paginateListGroupPolicies = core.createPaginator(IAMClient, ListGroupPoliciesCommand, "Marker", "Marker", "MaxItems");
2242
+ const paginateListGroupPolicies = createPaginator(IAMClient, ListGroupPoliciesCommand, "Marker", "Marker", "MaxItems");
2240
2243
 
2241
- const paginateListGroupsForUser = core.createPaginator(IAMClient, ListGroupsForUserCommand, "Marker", "Marker", "MaxItems");
2244
+ const paginateListGroupsForUser = createPaginator(IAMClient, ListGroupsForUserCommand, "Marker", "Marker", "MaxItems");
2242
2245
 
2243
- const paginateListGroups = core.createPaginator(IAMClient, ListGroupsCommand, "Marker", "Marker", "MaxItems");
2246
+ const paginateListGroups = createPaginator(IAMClient, ListGroupsCommand, "Marker", "Marker", "MaxItems");
2244
2247
 
2245
- const paginateListInstanceProfilesForRole = core.createPaginator(IAMClient, ListInstanceProfilesForRoleCommand, "Marker", "Marker", "MaxItems");
2248
+ const paginateListInstanceProfilesForRole = createPaginator(IAMClient, ListInstanceProfilesForRoleCommand, "Marker", "Marker", "MaxItems");
2246
2249
 
2247
- const paginateListInstanceProfiles = core.createPaginator(IAMClient, ListInstanceProfilesCommand, "Marker", "Marker", "MaxItems");
2250
+ const paginateListInstanceProfiles = createPaginator(IAMClient, ListInstanceProfilesCommand, "Marker", "Marker", "MaxItems");
2248
2251
 
2249
- const paginateListInstanceProfileTags = core.createPaginator(IAMClient, ListInstanceProfileTagsCommand, "Marker", "Marker", "MaxItems");
2252
+ const paginateListInstanceProfileTags = createPaginator(IAMClient, ListInstanceProfileTagsCommand, "Marker", "Marker", "MaxItems");
2250
2253
 
2251
- const paginateListMFADevices = core.createPaginator(IAMClient, ListMFADevicesCommand, "Marker", "Marker", "MaxItems");
2254
+ const paginateListMFADevices = createPaginator(IAMClient, ListMFADevicesCommand, "Marker", "Marker", "MaxItems");
2252
2255
 
2253
- const paginateListMFADeviceTags = core.createPaginator(IAMClient, ListMFADeviceTagsCommand, "Marker", "Marker", "MaxItems");
2256
+ const paginateListMFADeviceTags = createPaginator(IAMClient, ListMFADeviceTagsCommand, "Marker", "Marker", "MaxItems");
2254
2257
 
2255
- const paginateListOpenIDConnectProviderTags = core.createPaginator(IAMClient, ListOpenIDConnectProviderTagsCommand, "Marker", "Marker", "MaxItems");
2258
+ const paginateListOpenIDConnectProviderTags = createPaginator(IAMClient, ListOpenIDConnectProviderTagsCommand, "Marker", "Marker", "MaxItems");
2256
2259
 
2257
- const paginateListPolicies = core.createPaginator(IAMClient, ListPoliciesCommand, "Marker", "Marker", "MaxItems");
2260
+ const paginateListPolicies = createPaginator(IAMClient, ListPoliciesCommand, "Marker", "Marker", "MaxItems");
2258
2261
 
2259
- const paginateListPolicyTags = core.createPaginator(IAMClient, ListPolicyTagsCommand, "Marker", "Marker", "MaxItems");
2262
+ const paginateListPolicyTags = createPaginator(IAMClient, ListPolicyTagsCommand, "Marker", "Marker", "MaxItems");
2260
2263
 
2261
- const paginateListPolicyVersions = core.createPaginator(IAMClient, ListPolicyVersionsCommand, "Marker", "Marker", "MaxItems");
2264
+ const paginateListPolicyVersions = createPaginator(IAMClient, ListPolicyVersionsCommand, "Marker", "Marker", "MaxItems");
2262
2265
 
2263
- const paginateListRolePolicies = core.createPaginator(IAMClient, ListRolePoliciesCommand, "Marker", "Marker", "MaxItems");
2266
+ const paginateListRolePolicies = createPaginator(IAMClient, ListRolePoliciesCommand, "Marker", "Marker", "MaxItems");
2264
2267
 
2265
- const paginateListRoles = core.createPaginator(IAMClient, ListRolesCommand, "Marker", "Marker", "MaxItems");
2268
+ const paginateListRoles = createPaginator(IAMClient, ListRolesCommand, "Marker", "Marker", "MaxItems");
2266
2269
 
2267
- const paginateListRoleTags = core.createPaginator(IAMClient, ListRoleTagsCommand, "Marker", "Marker", "MaxItems");
2270
+ const paginateListRoleTags = createPaginator(IAMClient, ListRoleTagsCommand, "Marker", "Marker", "MaxItems");
2268
2271
 
2269
- const paginateListSAMLProviderTags = core.createPaginator(IAMClient, ListSAMLProviderTagsCommand, "Marker", "Marker", "MaxItems");
2272
+ const paginateListSAMLProviderTags = createPaginator(IAMClient, ListSAMLProviderTagsCommand, "Marker", "Marker", "MaxItems");
2270
2273
 
2271
- const paginateListServerCertificates = core.createPaginator(IAMClient, ListServerCertificatesCommand, "Marker", "Marker", "MaxItems");
2274
+ const paginateListServerCertificates = createPaginator(IAMClient, ListServerCertificatesCommand, "Marker", "Marker", "MaxItems");
2272
2275
 
2273
- const paginateListServerCertificateTags = core.createPaginator(IAMClient, ListServerCertificateTagsCommand, "Marker", "Marker", "MaxItems");
2276
+ const paginateListServerCertificateTags = createPaginator(IAMClient, ListServerCertificateTagsCommand, "Marker", "Marker", "MaxItems");
2274
2277
 
2275
- const paginateListSigningCertificates = core.createPaginator(IAMClient, ListSigningCertificatesCommand, "Marker", "Marker", "MaxItems");
2278
+ const paginateListSigningCertificates = createPaginator(IAMClient, ListSigningCertificatesCommand, "Marker", "Marker", "MaxItems");
2276
2279
 
2277
- const paginateListSSHPublicKeys = core.createPaginator(IAMClient, ListSSHPublicKeysCommand, "Marker", "Marker", "MaxItems");
2280
+ const paginateListSSHPublicKeys = createPaginator(IAMClient, ListSSHPublicKeysCommand, "Marker", "Marker", "MaxItems");
2278
2281
 
2279
- const paginateListUserPolicies = core.createPaginator(IAMClient, ListUserPoliciesCommand, "Marker", "Marker", "MaxItems");
2282
+ const paginateListUserPolicies = createPaginator(IAMClient, ListUserPoliciesCommand, "Marker", "Marker", "MaxItems");
2280
2283
 
2281
- const paginateListUsers = core.createPaginator(IAMClient, ListUsersCommand, "Marker", "Marker", "MaxItems");
2284
+ const paginateListUsers = createPaginator(IAMClient, ListUsersCommand, "Marker", "Marker", "MaxItems");
2282
2285
 
2283
- const paginateListUserTags = core.createPaginator(IAMClient, ListUserTagsCommand, "Marker", "Marker", "MaxItems");
2286
+ const paginateListUserTags = createPaginator(IAMClient, ListUserTagsCommand, "Marker", "Marker", "MaxItems");
2284
2287
 
2285
- const paginateListVirtualMFADevices = core.createPaginator(IAMClient, ListVirtualMFADevicesCommand, "Marker", "Marker", "MaxItems");
2288
+ const paginateListVirtualMFADevices = createPaginator(IAMClient, ListVirtualMFADevicesCommand, "Marker", "Marker", "MaxItems");
2286
2289
 
2287
- const paginateSimulateCustomPolicy = core.createPaginator(IAMClient, SimulateCustomPolicyCommand, "Marker", "Marker", "MaxItems");
2290
+ const paginateSimulateCustomPolicy = createPaginator(IAMClient, SimulateCustomPolicyCommand, "Marker", "Marker", "MaxItems");
2288
2291
 
2289
- const paginateSimulatePrincipalPolicy = core.createPaginator(IAMClient, SimulatePrincipalPolicyCommand, "Marker", "Marker", "MaxItems");
2292
+ const paginateSimulatePrincipalPolicy = createPaginator(IAMClient, SimulatePrincipalPolicyCommand, "Marker", "Marker", "MaxItems");
2290
2293
 
2291
- const checkState$3 = async (client$1, input) => {
2294
+ const checkState$3 = async (client, input) => {
2292
2295
  let reason;
2293
2296
  try {
2294
- let result = await client$1.send(new GetInstanceProfileCommand(input));
2297
+ let result = await client.send(new GetInstanceProfileCommand(input));
2295
2298
  reason = result;
2296
- return { state: client.WaiterState.SUCCESS, reason };
2299
+ return { state: WaiterState.SUCCESS, reason };
2297
2300
  }
2298
2301
  catch (exception) {
2299
2302
  reason = exception;
2300
2303
  if (exception.name === "NoSuchEntityException") {
2301
- return { state: client.WaiterState.RETRY, reason };
2304
+ return { state: WaiterState.RETRY, reason };
2302
2305
  }
2303
2306
  }
2304
- return { state: client.WaiterState.RETRY, reason };
2307
+ return { state: WaiterState.RETRY, reason };
2305
2308
  };
2306
2309
  const waitForInstanceProfileExists = async (params, input) => {
2307
2310
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2308
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
2311
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
2309
2312
  };
2310
2313
  const waitUntilInstanceProfileExists = async (params, input) => {
2311
2314
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2312
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
2313
- return client.checkExceptions(result);
2315
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);
2316
+ return checkExceptions(result);
2314
2317
  };
2315
2318
 
2316
- const checkState$2 = async (client$1, input) => {
2319
+ const checkState$2 = async (client, input) => {
2317
2320
  let reason;
2318
2321
  try {
2319
- let result = await client$1.send(new GetPolicyCommand(input));
2322
+ let result = await client.send(new GetPolicyCommand(input));
2320
2323
  reason = result;
2321
- return { state: client.WaiterState.SUCCESS, reason };
2324
+ return { state: WaiterState.SUCCESS, reason };
2322
2325
  }
2323
2326
  catch (exception) {
2324
2327
  reason = exception;
2325
2328
  if (exception.name === "NoSuchEntityException") {
2326
- return { state: client.WaiterState.RETRY, reason };
2329
+ return { state: WaiterState.RETRY, reason };
2327
2330
  }
2328
2331
  }
2329
- return { state: client.WaiterState.RETRY, reason };
2332
+ return { state: WaiterState.RETRY, reason };
2330
2333
  };
2331
2334
  const waitForPolicyExists = async (params, input) => {
2332
2335
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2333
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
2336
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
2334
2337
  };
2335
2338
  const waitUntilPolicyExists = async (params, input) => {
2336
2339
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2337
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
2338
- return client.checkExceptions(result);
2340
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);
2341
+ return checkExceptions(result);
2339
2342
  };
2340
2343
 
2341
- const checkState$1 = async (client$1, input) => {
2344
+ const checkState$1 = async (client, input) => {
2342
2345
  let reason;
2343
2346
  try {
2344
- let result = await client$1.send(new GetRoleCommand(input));
2347
+ let result = await client.send(new GetRoleCommand(input));
2345
2348
  reason = result;
2346
- return { state: client.WaiterState.SUCCESS, reason };
2349
+ return { state: WaiterState.SUCCESS, reason };
2347
2350
  }
2348
2351
  catch (exception) {
2349
2352
  reason = exception;
2350
2353
  if (exception.name === "NoSuchEntityException") {
2351
- return { state: client.WaiterState.RETRY, reason };
2354
+ return { state: WaiterState.RETRY, reason };
2352
2355
  }
2353
2356
  }
2354
- return { state: client.WaiterState.RETRY, reason };
2357
+ return { state: WaiterState.RETRY, reason };
2355
2358
  };
2356
2359
  const waitForRoleExists = async (params, input) => {
2357
2360
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2358
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
2361
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
2359
2362
  };
2360
2363
  const waitUntilRoleExists = async (params, input) => {
2361
2364
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2362
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
2363
- return client.checkExceptions(result);
2365
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
2366
+ return checkExceptions(result);
2364
2367
  };
2365
2368
 
2366
- const checkState = async (client$1, input) => {
2369
+ const checkState = async (client, input) => {
2367
2370
  let reason;
2368
2371
  try {
2369
- let result = await client$1.send(new GetUserCommand(input));
2372
+ let result = await client.send(new GetUserCommand(input));
2370
2373
  reason = result;
2371
- return { state: client.WaiterState.SUCCESS, reason };
2374
+ return { state: WaiterState.SUCCESS, reason };
2372
2375
  }
2373
2376
  catch (exception) {
2374
2377
  reason = exception;
2375
2378
  if (exception.name === "NoSuchEntityException") {
2376
- return { state: client.WaiterState.RETRY, reason };
2379
+ return { state: WaiterState.RETRY, reason };
2377
2380
  }
2378
2381
  }
2379
- return { state: client.WaiterState.RETRY, reason };
2382
+ return { state: WaiterState.RETRY, reason };
2380
2383
  };
2381
2384
  const waitForUserExists = async (params, input) => {
2382
2385
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2383
- return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
2386
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
2384
2387
  };
2385
2388
  const waitUntilUserExists = async (params, input) => {
2386
2389
  const serviceDefaults = { minDelay: 1, maxDelay: 120 };
2387
- const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
2388
- return client.checkExceptions(result);
2390
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
2391
+ return checkExceptions(result);
2389
2392
  };
2390
2393
 
2391
2394
  const commands = {
@@ -2610,7 +2613,7 @@ const waiters = {
2610
2613
  };
2611
2614
  class IAM extends IAMClient {
2612
2615
  }
2613
- client.createAggregatedClient(commands, IAM, { paginators, waiters });
2616
+ createAggregatedClient(commands, IAM, { paginators, waiters });
2614
2617
 
2615
2618
  const AccessAdvisorUsageGranularityType = {
2616
2619
  ACTION_LEVEL: "ACTION_LEVEL",
@@ -2789,9 +2792,6 @@ const PolicySourceType = {
2789
2792
  USER_MANAGED: "user-managed",
2790
2793
  };
2791
2794
 
2792
- exports.$Command = client.Command;
2793
- exports.__Client = client.Client;
2794
- exports.IAMServiceException = IAMServiceException.IAMServiceException;
2795
2795
  exports.AcceptDelegationRequestCommand = AcceptDelegationRequestCommand;
2796
2796
  exports.AccessAdvisorUsageGranularityType = AccessAdvisorUsageGranularityType;
2797
2797
  exports.AddClientIDToOpenIDConnectProviderCommand = AddClientIDToOpenIDConnectProviderCommand;
@@ -3039,23 +3039,3 @@ exports.waitUntilInstanceProfileExists = waitUntilInstanceProfileExists;
3039
3039
  exports.waitUntilPolicyExists = waitUntilPolicyExists;
3040
3040
  exports.waitUntilRoleExists = waitUntilRoleExists;
3041
3041
  exports.waitUntilUserExists = waitUntilUserExists;
3042
- Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
3043
- !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
3044
- Object.defineProperty(exports, '__proto__', {
3045
- enumerable: true,
3046
- value: schemas_0['__proto__']
3047
- });
3048
-
3049
- Object.keys(schemas_0).forEach(function (k) {
3050
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
3051
- });
3052
- Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
3053
- !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
3054
- Object.defineProperty(exports, '__proto__', {
3055
- enumerable: true,
3056
- value: errors['__proto__']
3057
- });
3058
-
3059
- Object.keys(errors).forEach(function (k) {
3060
- if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
3061
- });