@rio-cloud/cdk-v2-constructs 6.10.2 → 6.10.3

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 (1245) hide show
  1. package/.jsii +448 -25
  2. package/docs/API.md +419 -10
  3. package/docs/changelog.md +2 -0
  4. package/lib/fargate/codedeploy-custom-resources/run-monitoring-test-suite-runner.d.ts +1 -0
  5. package/lib/fargate/codedeploy-custom-resources/run-monitoring-test-suite-runner.js +88 -0
  6. package/lib/fargate/rio-fargate-service-blue-green-alpha.d.ts +3 -9
  7. package/lib/fargate/rio-fargate-service-blue-green-alpha.js +58 -12
  8. package/lib/index.d.ts +1 -0
  9. package/lib/index.js +2 -1
  10. package/lib/toggle.d.ts +1 -0
  11. package/lib/toggle.js +2 -1
  12. package/node_modules/@aws-sdk/client-ecs/LICENSE +201 -0
  13. package/node_modules/@aws-sdk/client-ecs/README.md +666 -0
  14. package/node_modules/@aws-sdk/client-ecs/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  15. package/node_modules/@aws-sdk/client-ecs/dist-cjs/endpoint/endpointResolver.js +18 -0
  16. package/node_modules/@aws-sdk/client-ecs/dist-cjs/endpoint/ruleset.js +7 -0
  17. package/node_modules/@aws-sdk/client-ecs/dist-cjs/index.js +4387 -0
  18. package/node_modules/@aws-sdk/client-ecs/dist-cjs/runtimeConfig.browser.js +39 -0
  19. package/node_modules/@aws-sdk/client-ecs/dist-cjs/runtimeConfig.js +50 -0
  20. package/node_modules/@aws-sdk/client-ecs/dist-cjs/runtimeConfig.native.js +15 -0
  21. package/node_modules/@aws-sdk/client-ecs/dist-cjs/runtimeConfig.shared.js +34 -0
  22. package/node_modules/@aws-sdk/client-ecs/dist-es/ECS.js +119 -0
  23. package/node_modules/@aws-sdk/client-ecs/dist-es/ECSClient.js +46 -0
  24. package/node_modules/@aws-sdk/client-ecs/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  25. package/node_modules/@aws-sdk/client-ecs/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  26. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateCapacityProviderCommand.js +22 -0
  27. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateClusterCommand.js +22 -0
  28. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateServiceCommand.js +22 -0
  29. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateTaskSetCommand.js +22 -0
  30. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteAccountSettingCommand.js +22 -0
  31. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteAttributesCommand.js +22 -0
  32. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteCapacityProviderCommand.js +22 -0
  33. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteClusterCommand.js +22 -0
  34. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteServiceCommand.js +22 -0
  35. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteTaskDefinitionsCommand.js +22 -0
  36. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteTaskSetCommand.js +22 -0
  37. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeregisterContainerInstanceCommand.js +22 -0
  38. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeregisterTaskDefinitionCommand.js +22 -0
  39. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeCapacityProvidersCommand.js +22 -0
  40. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeClustersCommand.js +22 -0
  41. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeContainerInstancesCommand.js +22 -0
  42. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeServicesCommand.js +22 -0
  43. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeTaskDefinitionCommand.js +22 -0
  44. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeTaskSetsCommand.js +22 -0
  45. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeTasksCommand.js +22 -0
  46. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DiscoverPollEndpointCommand.js +22 -0
  47. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ExecuteCommandCommand.js +23 -0
  48. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/GetTaskProtectionCommand.js +22 -0
  49. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListAccountSettingsCommand.js +22 -0
  50. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListAttributesCommand.js +22 -0
  51. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListClustersCommand.js +22 -0
  52. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListContainerInstancesCommand.js +22 -0
  53. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListServicesByNamespaceCommand.js +22 -0
  54. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListServicesCommand.js +22 -0
  55. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  56. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListTaskDefinitionFamiliesCommand.js +22 -0
  57. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListTaskDefinitionsCommand.js +22 -0
  58. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListTasksCommand.js +22 -0
  59. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/PutAccountSettingCommand.js +22 -0
  60. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/PutAccountSettingDefaultCommand.js +22 -0
  61. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/PutAttributesCommand.js +22 -0
  62. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/PutClusterCapacityProvidersCommand.js +22 -0
  63. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/RegisterContainerInstanceCommand.js +22 -0
  64. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/RegisterTaskDefinitionCommand.js +22 -0
  65. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/RunTaskCommand.js +22 -0
  66. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/StartTaskCommand.js +22 -0
  67. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/StopTaskCommand.js +22 -0
  68. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/SubmitAttachmentStateChangesCommand.js +22 -0
  69. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/SubmitContainerStateChangeCommand.js +22 -0
  70. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/SubmitTaskStateChangeCommand.js +22 -0
  71. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/TagResourceCommand.js +22 -0
  72. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UntagResourceCommand.js +22 -0
  73. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateCapacityProviderCommand.js +22 -0
  74. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateClusterCommand.js +22 -0
  75. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateClusterSettingsCommand.js +22 -0
  76. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateContainerAgentCommand.js +22 -0
  77. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateContainerInstancesStateCommand.js +22 -0
  78. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateServiceCommand.js +22 -0
  79. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateServicePrimaryTaskSetCommand.js +22 -0
  80. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateTaskProtectionCommand.js +22 -0
  81. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateTaskSetCommand.js +22 -0
  82. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/index.js +56 -0
  83. package/node_modules/@aws-sdk/client-ecs/dist-es/endpoint/EndpointParameters.js +14 -0
  84. package/node_modules/@aws-sdk/client-ecs/dist-es/endpoint/endpointResolver.js +14 -0
  85. package/node_modules/@aws-sdk/client-ecs/dist-es/endpoint/ruleset.js +4 -0
  86. package/node_modules/@aws-sdk/client-ecs/dist-es/extensionConfiguration.js +1 -0
  87. package/node_modules/@aws-sdk/client-ecs/dist-es/index.js +7 -0
  88. package/node_modules/@aws-sdk/client-ecs/dist-es/models/ECSServiceException.js +8 -0
  89. package/node_modules/@aws-sdk/client-ecs/dist-es/models/index.js +2 -0
  90. package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_0.js +627 -0
  91. package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_1.js +1 -0
  92. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/Interfaces.js +1 -0
  93. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListAccountSettingsPaginator.js +4 -0
  94. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListAttributesPaginator.js +4 -0
  95. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListClustersPaginator.js +4 -0
  96. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListContainerInstancesPaginator.js +4 -0
  97. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListServicesByNamespacePaginator.js +4 -0
  98. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListServicesPaginator.js +4 -0
  99. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListTaskDefinitionFamiliesPaginator.js +4 -0
  100. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListTaskDefinitionsPaginator.js +4 -0
  101. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/ListTasksPaginator.js +4 -0
  102. package/node_modules/@aws-sdk/client-ecs/dist-es/pagination/index.js +10 -0
  103. package/node_modules/@aws-sdk/client-ecs/dist-es/protocols/Aws_json1_1.js +2008 -0
  104. package/node_modules/@aws-sdk/client-ecs/dist-es/runtimeConfig.browser.js +34 -0
  105. package/node_modules/@aws-sdk/client-ecs/dist-es/runtimeConfig.js +45 -0
  106. package/node_modules/@aws-sdk/client-ecs/dist-es/runtimeConfig.native.js +11 -0
  107. package/node_modules/@aws-sdk/client-ecs/dist-es/runtimeConfig.shared.js +30 -0
  108. package/node_modules/@aws-sdk/client-ecs/dist-es/runtimeExtensions.js +21 -0
  109. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/index.js +4 -0
  110. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForServicesInactive.js +52 -0
  111. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForServicesStable.js +79 -0
  112. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForTasksRunning.js +69 -0
  113. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForTasksStopped.js +39 -0
  114. package/node_modules/@aws-sdk/client-ecs/dist-types/ECS.d.ts +428 -0
  115. package/node_modules/@aws-sdk/client-ecs/dist-types/ECSClient.d.ts +237 -0
  116. package/node_modules/@aws-sdk/client-ecs/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  117. package/node_modules/@aws-sdk/client-ecs/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  118. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateCapacityProviderCommand.d.ts +151 -0
  119. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateClusterCommand.d.ts +242 -0
  120. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateServiceCommand.d.ts +733 -0
  121. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateTaskSetCommand.d.ts +244 -0
  122. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteAccountSettingCommand.d.ts +141 -0
  123. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteAttributesCommand.d.ts +98 -0
  124. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteCapacityProviderCommand.d.ts +130 -0
  125. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteClusterCommand.d.ts +215 -0
  126. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteServiceCommand.d.ts +403 -0
  127. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +395 -0
  128. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskSetCommand.d.ts +184 -0
  129. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +203 -0
  130. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +379 -0
  131. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +134 -0
  132. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeClustersCommand.d.ts +202 -0
  133. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeContainerInstancesCommand.d.ts +279 -0
  134. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeServicesCommand.d.ts +436 -0
  135. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +436 -0
  136. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskSetsCommand.d.ts +195 -0
  137. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTasksCommand.d.ts +325 -0
  138. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DiscoverPollEndpointCommand.d.ts +95 -0
  139. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ExecuteCommandCommand.d.ts +137 -0
  140. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/GetTaskProtectionCommand.d.ts +147 -0
  141. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListAccountSettingsCommand.d.ts +171 -0
  142. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListAttributesCommand.d.ts +97 -0
  143. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListClustersCommand.d.ts +114 -0
  144. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListContainerInstancesCommand.d.ts +124 -0
  145. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListServicesByNamespaceCommand.d.ts +105 -0
  146. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListServicesCommand.d.ts +120 -0
  147. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTagsForResourceCommand.d.ts +122 -0
  148. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionFamiliesCommand.d.ts +143 -0
  149. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionsCommand.d.ts +144 -0
  150. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTasksCommand.d.ts +152 -0
  151. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutAccountSettingCommand.d.ts +147 -0
  152. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutAccountSettingDefaultCommand.d.ts +121 -0
  153. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutAttributesCommand.d.ts +106 -0
  154. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/PutClusterCapacityProvidersCommand.d.ts +199 -0
  155. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterContainerInstanceCommand.d.ts +216 -0
  156. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +691 -0
  157. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RunTaskCommand.d.ts +492 -0
  158. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StartTaskCommand.d.ts +376 -0
  159. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StopTaskCommand.d.ts +272 -0
  160. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/SubmitAttachmentStateChangesCommand.d.ts +105 -0
  161. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/SubmitContainerStateChangeCommand.d.ts +111 -0
  162. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/SubmitTaskStateChangeCommand.d.ts +139 -0
  163. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/TagResourceCommand.d.ts +123 -0
  164. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UntagResourceCommand.d.ts +114 -0
  165. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateCapacityProviderCommand.d.ts +128 -0
  166. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateClusterCommand.d.ts +195 -0
  167. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateClusterSettingsCommand.d.ts +172 -0
  168. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerAgentCommand.d.ts +212 -0
  169. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +236 -0
  170. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateServiceCommand.d.ts +687 -0
  171. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateServicePrimaryTaskSetCommand.d.ts +186 -0
  172. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskProtectionCommand.d.ts +230 -0
  173. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskSetCommand.d.ts +189 -0
  174. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/index.d.ts +56 -0
  175. package/node_modules/@aws-sdk/client-ecs/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  176. package/node_modules/@aws-sdk/client-ecs/dist-types/endpoint/endpointResolver.d.ts +5 -0
  177. package/node_modules/@aws-sdk/client-ecs/dist-types/endpoint/ruleset.d.ts +2 -0
  178. package/node_modules/@aws-sdk/client-ecs/dist-types/extensionConfiguration.d.ts +9 -0
  179. package/node_modules/@aws-sdk/client-ecs/dist-types/index.d.ts +27 -0
  180. package/node_modules/@aws-sdk/client-ecs/dist-types/models/ECSServiceException.d.ts +14 -0
  181. package/node_modules/@aws-sdk/client-ecs/dist-types/models/index.d.ts +2 -0
  182. package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_0.d.ts +11638 -0
  183. package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_1.d.ts +11 -0
  184. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/Interfaces.d.ts +8 -0
  185. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListAccountSettingsPaginator.d.ts +7 -0
  186. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListAttributesPaginator.d.ts +7 -0
  187. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListClustersPaginator.d.ts +7 -0
  188. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListContainerInstancesPaginator.d.ts +7 -0
  189. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListServicesByNamespacePaginator.d.ts +7 -0
  190. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
  191. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +7 -0
  192. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListTaskDefinitionsPaginator.d.ts +7 -0
  193. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/ListTasksPaginator.d.ts +7 -0
  194. package/node_modules/@aws-sdk/client-ecs/dist-types/pagination/index.d.ts +10 -0
  195. package/node_modules/@aws-sdk/client-ecs/dist-types/protocols/Aws_json1_1.d.ts +506 -0
  196. package/node_modules/@aws-sdk/client-ecs/dist-types/runtimeConfig.browser.d.ts +48 -0
  197. package/node_modules/@aws-sdk/client-ecs/dist-types/runtimeConfig.d.ts +48 -0
  198. package/node_modules/@aws-sdk/client-ecs/dist-types/runtimeConfig.native.d.ts +47 -0
  199. package/node_modules/@aws-sdk/client-ecs/dist-types/runtimeConfig.shared.d.ts +21 -0
  200. package/node_modules/@aws-sdk/client-ecs/dist-types/runtimeExtensions.d.ts +17 -0
  201. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECS.d.ts +971 -0
  202. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECSClient.d.ts +451 -0
  203. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  204. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
  205. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +51 -0
  206. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +50 -0
  207. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +50 -0
  208. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +50 -0
  209. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteAccountSettingCommand.d.ts +51 -0
  210. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteAttributesCommand.d.ts +50 -0
  211. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +51 -0
  212. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +50 -0
  213. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +50 -0
  214. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteTaskDefinitionsCommand.d.ts +51 -0
  215. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +50 -0
  216. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeregisterContainerInstanceCommand.d.ts +51 -0
  217. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeregisterTaskDefinitionCommand.d.ts +51 -0
  218. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeCapacityProvidersCommand.d.ts +51 -0
  219. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +50 -0
  220. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeContainerInstancesCommand.d.ts +51 -0
  221. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +50 -0
  222. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTaskDefinitionCommand.d.ts +51 -0
  223. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +50 -0
  224. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +50 -0
  225. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DiscoverPollEndpointCommand.d.ts +51 -0
  226. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ExecuteCommandCommand.d.ts +50 -0
  227. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +51 -0
  228. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListAccountSettingsCommand.d.ts +51 -0
  229. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListAttributesCommand.d.ts +50 -0
  230. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListClustersCommand.d.ts +47 -0
  231. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListContainerInstancesCommand.d.ts +51 -0
  232. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListServicesByNamespaceCommand.d.ts +51 -0
  233. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListServicesCommand.d.ts +47 -0
  234. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  235. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTaskDefinitionFamiliesCommand.d.ts +51 -0
  236. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +51 -0
  237. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTasksCommand.d.ts +47 -0
  238. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/PutAccountSettingCommand.d.ts +51 -0
  239. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/PutAccountSettingDefaultCommand.d.ts +51 -0
  240. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/PutAttributesCommand.d.ts +50 -0
  241. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/PutClusterCapacityProvidersCommand.d.ts +51 -0
  242. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterContainerInstanceCommand.d.ts +51 -0
  243. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +51 -0
  244. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RunTaskCommand.d.ts +43 -0
  245. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StartTaskCommand.d.ts +47 -0
  246. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StopTaskCommand.d.ts +47 -0
  247. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/SubmitAttachmentStateChangesCommand.d.ts +51 -0
  248. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/SubmitContainerStateChangeCommand.d.ts +51 -0
  249. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/SubmitTaskStateChangeCommand.d.ts +51 -0
  250. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  251. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  252. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +51 -0
  253. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +50 -0
  254. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateClusterSettingsCommand.d.ts +51 -0
  255. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateContainerAgentCommand.d.ts +51 -0
  256. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateContainerInstancesStateCommand.d.ts +51 -0
  257. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +50 -0
  258. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateServicePrimaryTaskSetCommand.d.ts +51 -0
  259. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +51 -0
  260. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +48 -0
  261. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/index.d.ts +56 -0
  262. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  263. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  264. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  265. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  266. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/index.d.ts +10 -0
  267. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/ECSServiceException.d.ts +9 -0
  268. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/index.d.ts +2 -0
  269. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_0.d.ts +1906 -0
  270. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_1.d.ts +4 -0
  271. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  272. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListAccountSettingsPaginator.d.ts +11 -0
  273. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListAttributesPaginator.d.ts +11 -0
  274. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
  275. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListContainerInstancesPaginator.d.ts +11 -0
  276. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListServicesByNamespacePaginator.d.ts +11 -0
  277. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
  278. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +11 -0
  279. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListTaskDefinitionsPaginator.d.ts +11 -0
  280. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/ListTasksPaginator.d.ts +11 -0
  281. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/pagination/index.d.ts +10 -0
  282. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +677 -0
  283. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  284. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  285. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/runtimeConfig.native.d.ts +85 -0
  286. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  287. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  288. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/index.d.ts +4 -0
  289. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForServicesInactive.d.ts +11 -0
  290. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForServicesStable.d.ts +11 -0
  291. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForTasksRunning.d.ts +11 -0
  292. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForTasksStopped.d.ts +11 -0
  293. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/index.d.ts +4 -0
  294. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForServicesInactive.d.ts +14 -0
  295. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForServicesStable.d.ts +14 -0
  296. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForTasksRunning.d.ts +14 -0
  297. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForTasksStopped.d.ts +14 -0
  298. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
  299. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/README.md +252 -0
  300. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +68 -0
  301. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
  302. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
  303. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +611 -0
  304. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
  305. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +48 -0
  306. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
  307. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +40 -0
  308. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
  309. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +46 -0
  310. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  311. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +62 -0
  312. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +23 -0
  313. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +23 -0
  314. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +23 -0
  315. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +23 -0
  316. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
  317. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +14 -0
  318. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
  319. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
  320. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
  321. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
  322. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
  323. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
  324. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +75 -0
  325. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
  326. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
  327. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
  328. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
  329. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +210 -0
  330. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
  331. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +43 -0
  332. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
  333. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +36 -0
  334. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +21 -0
  335. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
  336. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +182 -0
  337. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  338. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  339. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +94 -0
  340. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +95 -0
  341. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +97 -0
  342. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +94 -0
  343. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
  344. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  345. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
  346. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
  347. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
  348. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +29 -0
  349. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
  350. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
  351. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +266 -0
  352. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
  353. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
  354. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
  355. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
  356. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  357. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +55 -0
  358. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +55 -0
  359. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +54 -0
  360. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +32 -0
  361. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
  362. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
  363. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +137 -0
  364. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  365. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
  366. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
  367. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
  368. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
  369. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
  370. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
  371. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  372. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  373. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  374. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  375. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +9 -0
  376. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
  377. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
  378. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +93 -0
  379. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  380. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
  381. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
  382. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
  383. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  384. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +113 -0
  385. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +112 -0
  386. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +107 -0
  387. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
  388. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  389. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso/package.json +98 -0
  390. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/LICENSE +201 -0
  391. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/README.md +274 -0
  392. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js +64 -0
  393. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js +18 -0
  394. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js +7 -0
  395. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +1052 -0
  396. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.browser.js +39 -0
  397. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js +50 -0
  398. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.native.js +15 -0
  399. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js +40 -0
  400. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDC.js +15 -0
  401. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/SSOOIDCClient.js +46 -0
  402. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  403. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/auth/httpAuthSchemeProvider.js +58 -0
  404. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenCommand.js +23 -0
  405. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/CreateTokenWithIAMCommand.js +23 -0
  406. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/RegisterClientCommand.js +23 -0
  407. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/StartDeviceAuthorizationCommand.js +23 -0
  408. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/commands/index.js +4 -0
  409. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/EndpointParameters.js +14 -0
  410. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/endpointResolver.js +14 -0
  411. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/endpoint/ruleset.js +4 -0
  412. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/extensionConfiguration.js +1 -0
  413. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/index.js +5 -0
  414. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/SSOOIDCServiceException.js +8 -0
  415. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/index.js +1 -0
  416. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/models/models_0.js +233 -0
  417. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +427 -0
  418. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.browser.js +34 -0
  419. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.js +45 -0
  420. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.native.js +11 -0
  421. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeConfig.shared.js +36 -0
  422. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-es/runtimeExtensions.js +21 -0
  423. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDC.d.ts +75 -0
  424. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/SSOOIDCClient.d.ts +210 -0
  425. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  426. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  427. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenCommand.d.ts +175 -0
  428. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/CreateTokenWithIAMCommand.d.ts +257 -0
  429. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/RegisterClientCommand.d.ts +143 -0
  430. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/StartDeviceAuthorizationCommand.d.ts +123 -0
  431. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/commands/index.d.ts +4 -0
  432. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  433. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/endpointResolver.d.ts +5 -0
  434. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/endpoint/ruleset.d.ts +2 -0
  435. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/extensionConfiguration.d.ts +9 -0
  436. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/index.d.ts +50 -0
  437. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/SSOOIDCServiceException.d.ts +14 -0
  438. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/index.d.ts +1 -0
  439. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +795 -0
  440. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  441. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.browser.d.ts +56 -0
  442. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.d.ts +56 -0
  443. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.native.d.ts +55 -0
  444. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeConfig.shared.d.ts +32 -0
  445. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/runtimeExtensions.d.ts +17 -0
  446. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDC.d.ts +73 -0
  447. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/SSOOIDCClient.d.ts +142 -0
  448. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  449. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  450. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +47 -0
  451. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/CreateTokenWithIAMCommand.d.ts +51 -0
  452. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/RegisterClientCommand.d.ts +50 -0
  453. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/StartDeviceAuthorizationCommand.d.ts +51 -0
  454. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/commands/index.d.ts +4 -0
  455. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  456. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  457. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  458. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  459. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/index.d.ts +8 -0
  460. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/SSOOIDCServiceException.d.ts +9 -0
  461. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/index.d.ts +1 -0
  462. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +216 -0
  463. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  464. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.browser.d.ts +116 -0
  465. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.d.ts +119 -0
  466. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.native.d.ts +110 -0
  467. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeConfig.shared.d.ts +49 -0
  468. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  469. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sso-oidc/package.json +102 -0
  470. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
  471. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/README.md +273 -0
  472. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +50 -0
  473. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  474. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
  475. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
  476. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +18 -0
  477. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
  478. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +1450 -0
  479. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
  480. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +64 -0
  481. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
  482. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
  483. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
  484. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
  485. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +46 -0
  486. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  487. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
  488. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +23 -0
  489. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +23 -0
  490. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +23 -0
  491. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +22 -0
  492. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +22 -0
  493. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +22 -0
  494. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +23 -0
  495. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +23 -0
  496. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
  497. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
  498. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +85 -0
  499. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
  500. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +14 -0
  501. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
  502. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
  503. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/index.js +6 -0
  504. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
  505. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
  506. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
  507. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +885 -0
  508. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
  509. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +59 -0
  510. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
  511. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
  512. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
  513. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +71 -0
  514. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +180 -0
  515. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  516. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
  517. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +269 -0
  518. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +294 -0
  519. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +303 -0
  520. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +127 -0
  521. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +87 -0
  522. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +128 -0
  523. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +242 -0
  524. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +166 -0
  525. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
  526. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +23 -0
  527. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +43 -0
  528. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
  529. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
  530. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
  531. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
  532. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +17 -0
  533. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +14 -0
  534. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
  535. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
  536. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
  537. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +57 -0
  538. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +55 -0
  539. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +56 -0
  540. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
  541. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
  542. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +143 -0
  543. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +163 -0
  544. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  545. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
  546. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +47 -0
  547. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +51 -0
  548. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
  549. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +51 -0
  550. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +50 -0
  551. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +51 -0
  552. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +51 -0
  553. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +50 -0
  554. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
  555. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +19 -0
  556. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +33 -0
  557. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
  558. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  559. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  560. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  561. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +9 -0
  562. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +9 -0
  563. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
  564. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
  565. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
  566. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +122 -0
  567. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +114 -0
  568. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +116 -0
  569. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
  570. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  571. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/client-sts/package.json +102 -0
  572. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/README.md +39 -0
  573. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
  574. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
  575. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/client.d.ts +7 -0
  576. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/client.js +5 -0
  577. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-cjs/index.js +6 -0
  578. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +97 -0
  579. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +62 -0
  580. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +298 -0
  581. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +228 -0
  582. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
  583. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
  584. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
  585. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
  586. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
  587. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +13 -0
  588. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +2 -0
  589. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
  590. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
  591. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
  592. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +4 -0
  593. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
  594. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +82 -0
  595. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +1 -0
  596. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
  597. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
  598. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
  599. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
  600. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
  601. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
  602. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -0
  603. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +4 -0
  604. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
  605. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +51 -0
  606. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +57 -0
  607. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
  608. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +30 -0
  609. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +7 -0
  610. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
  611. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
  612. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +9 -0
  613. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +2 -0
  614. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
  615. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
  616. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +42 -0
  617. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +4 -0
  618. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
  619. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +95 -0
  620. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +1 -0
  621. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
  622. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
  623. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
  624. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
  625. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
  626. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
  627. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
  628. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +4 -0
  629. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
  630. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
  631. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +4 -0
  632. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
  633. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
  634. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
  635. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
  636. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
  637. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -0
  638. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +2 -0
  639. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
  640. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
  641. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
  642. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +8 -0
  643. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
  644. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +55 -0
  645. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +1 -0
  646. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
  647. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
  648. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
  649. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
  650. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
  651. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
  652. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
  653. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +4 -0
  654. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
  655. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
  656. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
  657. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
  658. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
  659. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/package.json +117 -0
  660. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
  661. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/core/protocols.js +5 -0
  662. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
  663. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
  664. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +74 -0
  665. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +27 -0
  666. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
  667. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
  668. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
  669. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
  670. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
  671. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-env/package.json +60 -0
  672. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
  673. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
  674. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
  675. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +67 -0
  676. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
  677. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +54 -0
  678. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
  679. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
  680. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
  681. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
  682. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
  683. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +62 -0
  684. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
  685. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
  686. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
  687. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
  688. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
  689. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
  690. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
  691. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
  692. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
  693. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
  694. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
  695. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
  696. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
  697. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
  698. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
  699. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
  700. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
  701. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
  702. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
  703. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
  704. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
  705. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-http/package.json +67 -0
  706. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
  707. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
  708. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +247 -0
  709. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +7 -0
  710. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
  711. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +76 -0
  712. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +28 -0
  713. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +5 -0
  714. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
  715. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +13 -0
  716. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +16 -0
  717. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +13 -0
  718. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +48 -0
  719. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
  720. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +47 -0
  721. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
  722. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
  723. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -0
  724. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +12 -0
  725. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
  726. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
  727. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +26 -0
  728. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
  729. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +26 -0
  730. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
  731. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
  732. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +9 -0
  733. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +8 -0
  734. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
  735. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
  736. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-ini/package.json +70 -0
  737. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
  738. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
  739. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +154 -0
  740. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +62 -0
  741. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
  742. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
  743. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +58 -0
  744. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
  745. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
  746. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +25 -0
  747. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
  748. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
  749. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-node/package.json +69 -0
  750. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
  751. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
  752. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +107 -0
  753. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
  754. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +7 -0
  755. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +27 -0
  756. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
  757. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +35 -0
  758. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
  759. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +15 -0
  760. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
  761. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
  762. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
  763. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
  764. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +9 -0
  765. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
  766. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
  767. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
  768. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-process/package.json +61 -0
  769. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
  770. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
  771. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +234 -0
  772. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +69 -0
  773. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
  774. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
  775. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
  776. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +75 -0
  777. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
  778. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
  779. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
  780. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
  781. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
  782. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
  783. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
  784. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +20 -0
  785. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
  786. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
  787. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
  788. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +13 -0
  789. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
  790. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
  791. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
  792. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
  793. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-sso/package.json +63 -0
  794. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
  795. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
  796. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +27 -0
  797. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +49 -0
  798. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +28 -0
  799. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +23 -0
  800. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +22 -0
  801. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
  802. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +18 -0
  803. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
  804. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
  805. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +16 -0
  806. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +40 -0
  807. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
  808. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/credential-provider-web-identity/package.json +71 -0
  809. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  810. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  811. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +71 -0
  812. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
  813. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
  814. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
  815. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
  816. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  817. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  818. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +80 -0
  819. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
  820. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
  821. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
  822. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
  823. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
  824. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
  825. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
  826. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  827. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  828. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +68 -0
  829. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
  830. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
  831. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
  832. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
  833. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  834. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  835. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +179 -0
  836. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
  837. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
  838. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
  839. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
  840. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +80 -0
  841. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
  842. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
  843. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
  844. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
  845. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
  846. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
  847. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
  848. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
  849. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
  850. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
  851. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/middleware-user-agent/package.json +58 -0
  852. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
  853. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
  854. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +116 -0
  855. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +25 -0
  856. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -0
  857. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +12 -0
  858. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
  859. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +2 -0
  860. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
  861. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
  862. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
  863. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -0
  864. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +17 -0
  865. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
  866. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +8 -0
  867. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
  868. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +37 -0
  869. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
  870. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -0
  871. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
  872. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
  873. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
  874. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
  875. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
  876. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/region-config-resolver/package.json +58 -0
  877. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
  878. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/README.md +53 -0
  879. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +209 -0
  880. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
  881. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +79 -0
  882. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
  883. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
  884. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
  885. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/index.js +3 -0
  886. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
  887. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
  888. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
  889. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
  890. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
  891. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
  892. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
  893. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +6 -0
  894. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
  895. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +3 -0
  896. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
  897. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
  898. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +9 -0
  899. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
  900. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
  901. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -0
  902. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +3 -0
  903. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
  904. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
  905. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
  906. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
  907. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
  908. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
  909. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
  910. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/token-providers/package.json +68 -0
  911. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/LICENSE +201 -0
  912. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/README.md +4 -0
  913. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-cjs/index.js +295 -0
  914. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
  915. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
  916. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
  917. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
  918. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
  919. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
  920. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
  921. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
  922. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
  923. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
  924. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
  925. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
  926. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
  927. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
  928. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
  929. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
  930. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
  931. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
  932. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
  933. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
  934. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
  935. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
  936. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
  937. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
  938. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
  939. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
  940. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
  941. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
  942. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
  943. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
  944. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
  945. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
  946. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
  947. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
  948. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
  949. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
  950. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
  951. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
  952. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
  953. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
  954. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
  955. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
  956. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
  957. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
  958. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
  959. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
  960. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +49 -0
  961. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
  962. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
  963. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
  964. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
  965. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
  966. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
  967. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +54 -0
  968. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
  969. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
  970. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
  971. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
  972. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
  973. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
  974. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
  975. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
  976. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
  977. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
  978. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
  979. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
  980. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
  981. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
  982. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
  983. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
  984. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
  985. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
  986. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
  987. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
  988. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
  989. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
  990. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
  991. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
  992. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
  993. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
  994. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
  995. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
  996. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +12 -0
  997. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
  998. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
  999. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
  1000. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
  1001. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
  1002. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
  1003. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +51 -0
  1004. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
  1005. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
  1006. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +4 -0
  1007. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
  1008. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
  1009. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
  1010. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
  1011. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
  1012. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
  1013. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
  1014. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
  1015. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
  1016. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
  1017. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
  1018. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
  1019. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
  1020. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
  1021. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
  1022. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
  1023. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
  1024. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
  1025. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
  1026. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
  1027. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
  1028. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
  1029. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
  1030. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
  1031. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/types/package.json +56 -0
  1032. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  1033. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  1034. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +417 -0
  1035. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +223 -0
  1036. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
  1037. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +5 -0
  1038. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
  1039. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  1040. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
  1041. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
  1042. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +223 -0
  1043. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
  1044. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
  1045. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
  1046. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  1047. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  1048. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  1049. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  1050. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
  1051. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
  1052. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
  1053. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -0
  1054. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
  1055. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
  1056. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
  1057. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
  1058. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
  1059. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
  1060. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
  1061. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
  1062. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
  1063. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
  1064. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
  1065. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
  1066. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
  1067. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
  1068. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
  1069. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
  1070. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
  1071. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
  1072. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
  1073. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
  1074. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
  1075. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
  1076. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
  1077. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
  1078. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
  1079. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
  1080. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
  1081. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
  1082. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-endpoints/package.json +56 -0
  1083. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  1084. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  1085. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
  1086. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +26 -0
  1087. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
  1088. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
  1089. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +21 -0
  1090. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
  1091. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
  1092. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +12 -0
  1093. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
  1094. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
  1095. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +11 -0
  1096. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
  1097. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
  1098. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  1099. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  1100. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +102 -0
  1101. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
  1102. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
  1103. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
  1104. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
  1105. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +8 -0
  1106. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
  1107. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +23 -0
  1108. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
  1109. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
  1110. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
  1111. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
  1112. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
  1113. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
  1114. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
  1115. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
  1116. package/node_modules/@aws-sdk/client-ecs/node_modules/@aws-sdk/util-user-agent-node/package.json +64 -0
  1117. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/CHANGELOG.md +274 -0
  1118. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/CONTRIBUTING.md +18 -0
  1119. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/LICENSE.md +9 -0
  1120. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/README.md +466 -0
  1121. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/bin/uuid +2 -0
  1122. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
  1123. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
  1124. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
  1125. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
  1126. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
  1127. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
  1128. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
  1129. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
  1130. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
  1131. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
  1132. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
  1133. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
  1134. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
  1135. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
  1136. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
  1137. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
  1138. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/index.js +9 -0
  1139. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  1140. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/native.js +4 -0
  1141. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  1142. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  1143. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  1144. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/rng.js +18 -0
  1145. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  1146. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
  1147. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  1148. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  1149. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/v35.js +66 -0
  1150. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/v4.js +29 -0
  1151. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  1152. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  1153. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-browser/version.js +11 -0
  1154. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/index.js +9 -0
  1155. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/md5.js +13 -0
  1156. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/native.js +4 -0
  1157. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/nil.js +1 -0
  1158. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/parse.js +35 -0
  1159. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/regex.js +1 -0
  1160. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/rng.js +12 -0
  1161. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  1162. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/stringify.js +33 -0
  1163. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/v1.js +95 -0
  1164. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/v3.js +4 -0
  1165. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/v35.js +66 -0
  1166. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/v4.js +29 -0
  1167. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/v5.js +4 -0
  1168. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/validate.js +7 -0
  1169. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/esm-node/version.js +11 -0
  1170. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/index.js +79 -0
  1171. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/md5-browser.js +223 -0
  1172. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/md5.js +23 -0
  1173. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/native-browser.js +11 -0
  1174. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/native.js +15 -0
  1175. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/nil.js +8 -0
  1176. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/parse.js +45 -0
  1177. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/regex.js +8 -0
  1178. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/rng-browser.js +25 -0
  1179. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/rng.js +24 -0
  1180. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/sha1-browser.js +104 -0
  1181. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/sha1.js +23 -0
  1182. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/stringify.js +44 -0
  1183. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/uuid-bin.js +85 -0
  1184. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/v1.js +107 -0
  1185. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/v3.js +16 -0
  1186. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/v35.js +80 -0
  1187. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/v4.js +43 -0
  1188. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/v5.js +16 -0
  1189. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/validate.js +17 -0
  1190. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/dist/version.js +21 -0
  1191. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/package.json +135 -0
  1192. package/node_modules/@aws-sdk/client-ecs/node_modules/uuid/wrapper.mjs +10 -0
  1193. package/node_modules/@aws-sdk/client-ecs/package.json +104 -0
  1194. package/node_modules/@smithy/abort-controller/package.json +2 -2
  1195. package/node_modules/@smithy/config-resolver/package.json +4 -4
  1196. package/node_modules/@smithy/core/package.json +8 -8
  1197. package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
  1198. package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
  1199. package/node_modules/@smithy/hash-node/package.json +2 -2
  1200. package/node_modules/@smithy/invalid-dependency/package.json +2 -2
  1201. package/node_modules/@smithy/middleware-content-length/package.json +3 -3
  1202. package/node_modules/@smithy/middleware-endpoint/package.json +7 -7
  1203. package/node_modules/@smithy/middleware-retry/package.json +8 -8
  1204. package/node_modules/@smithy/middleware-serde/package.json +2 -2
  1205. package/node_modules/@smithy/middleware-stack/package.json +2 -2
  1206. package/node_modules/@smithy/node-config-provider/package.json +4 -4
  1207. package/node_modules/@smithy/node-http-handler/package.json +5 -5
  1208. package/node_modules/@smithy/property-provider/package.json +2 -2
  1209. package/node_modules/@smithy/protocol-http/package.json +2 -2
  1210. package/node_modules/@smithy/querystring-builder/package.json +2 -2
  1211. package/node_modules/@smithy/querystring-parser/package.json +2 -2
  1212. package/node_modules/@smithy/service-error-classification/package.json +2 -2
  1213. package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
  1214. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +4 -3
  1215. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +2 -2
  1216. package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +2 -1
  1217. package/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +1 -0
  1218. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +1 -0
  1219. package/node_modules/@smithy/signature-v4/package.json +4 -4
  1220. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +53 -1
  1221. package/node_modules/@smithy/smithy-client/dist-cjs/quote-header.js +1 -0
  1222. package/node_modules/@smithy/smithy-client/dist-cjs/split-header.js +1 -0
  1223. package/node_modules/@smithy/smithy-client/dist-es/index.js +2 -0
  1224. package/node_modules/@smithy/smithy-client/dist-es/quote-header.js +6 -0
  1225. package/node_modules/@smithy/smithy-client/dist-es/split-header.js +37 -0
  1226. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +2 -0
  1227. package/node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts +6 -0
  1228. package/node_modules/@smithy/smithy-client/dist-types/split-header.d.ts +5 -0
  1229. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +2 -0
  1230. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/quote-header.d.ts +6 -0
  1231. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-header.d.ts +5 -0
  1232. package/node_modules/@smithy/smithy-client/package.json +6 -6
  1233. package/node_modules/@smithy/types/dist-types/signature.d.ts +5 -0
  1234. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +5 -0
  1235. package/node_modules/@smithy/types/package.json +1 -1
  1236. package/node_modules/@smithy/url-parser/package.json +3 -3
  1237. package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
  1238. package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
  1239. package/node_modules/@smithy/util-endpoints/package.json +3 -3
  1240. package/node_modules/@smithy/util-middleware/package.json +2 -2
  1241. package/node_modules/@smithy/util-retry/package.json +3 -3
  1242. package/node_modules/@smithy/util-stream/package.json +4 -4
  1243. package/node_modules/@smithy/util-waiter/package.json +3 -3
  1244. package/package.json +3 -1
  1245. package/version.json +1 -1
@@ -0,0 +1,4387 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
+
21
+ // src/index.ts
22
+ var src_exports = {};
23
+ __export(src_exports, {
24
+ AccessDeniedException: () => AccessDeniedException,
25
+ AgentUpdateStatus: () => AgentUpdateStatus,
26
+ ApplicationProtocol: () => ApplicationProtocol,
27
+ AssignPublicIp: () => AssignPublicIp,
28
+ AttributeLimitExceededException: () => AttributeLimitExceededException,
29
+ BlockedException: () => BlockedException,
30
+ CPUArchitecture: () => CPUArchitecture,
31
+ CapacityProviderField: () => CapacityProviderField,
32
+ CapacityProviderStatus: () => CapacityProviderStatus,
33
+ CapacityProviderUpdateStatus: () => CapacityProviderUpdateStatus,
34
+ ClientException: () => ClientException,
35
+ ClusterContainsContainerInstancesException: () => ClusterContainsContainerInstancesException,
36
+ ClusterContainsServicesException: () => ClusterContainsServicesException,
37
+ ClusterContainsTasksException: () => ClusterContainsTasksException,
38
+ ClusterField: () => ClusterField,
39
+ ClusterNotFoundException: () => ClusterNotFoundException,
40
+ ClusterSettingName: () => ClusterSettingName,
41
+ Compatibility: () => Compatibility,
42
+ ConflictException: () => ConflictException,
43
+ Connectivity: () => Connectivity,
44
+ ContainerCondition: () => ContainerCondition,
45
+ ContainerInstanceField: () => ContainerInstanceField,
46
+ ContainerInstanceStatus: () => ContainerInstanceStatus,
47
+ CreateCapacityProviderCommand: () => CreateCapacityProviderCommand,
48
+ CreateClusterCommand: () => CreateClusterCommand,
49
+ CreateServiceCommand: () => CreateServiceCommand,
50
+ CreateTaskSetCommand: () => CreateTaskSetCommand,
51
+ DeleteAccountSettingCommand: () => DeleteAccountSettingCommand,
52
+ DeleteAttributesCommand: () => DeleteAttributesCommand,
53
+ DeleteCapacityProviderCommand: () => DeleteCapacityProviderCommand,
54
+ DeleteClusterCommand: () => DeleteClusterCommand,
55
+ DeleteServiceCommand: () => DeleteServiceCommand,
56
+ DeleteTaskDefinitionsCommand: () => DeleteTaskDefinitionsCommand,
57
+ DeleteTaskSetCommand: () => DeleteTaskSetCommand,
58
+ DeploymentControllerType: () => DeploymentControllerType,
59
+ DeploymentRolloutState: () => DeploymentRolloutState,
60
+ DeregisterContainerInstanceCommand: () => DeregisterContainerInstanceCommand,
61
+ DeregisterTaskDefinitionCommand: () => DeregisterTaskDefinitionCommand,
62
+ DescribeCapacityProvidersCommand: () => DescribeCapacityProvidersCommand,
63
+ DescribeClustersCommand: () => DescribeClustersCommand,
64
+ DescribeContainerInstancesCommand: () => DescribeContainerInstancesCommand,
65
+ DescribeServicesCommand: () => DescribeServicesCommand,
66
+ DescribeTaskDefinitionCommand: () => DescribeTaskDefinitionCommand,
67
+ DescribeTaskSetsCommand: () => DescribeTaskSetsCommand,
68
+ DescribeTasksCommand: () => DescribeTasksCommand,
69
+ DesiredStatus: () => DesiredStatus,
70
+ DeviceCgroupPermission: () => DeviceCgroupPermission,
71
+ DiscoverPollEndpointCommand: () => DiscoverPollEndpointCommand,
72
+ EBSResourceType: () => EBSResourceType,
73
+ ECS: () => ECS,
74
+ ECSClient: () => ECSClient,
75
+ ECSServiceException: () => ECSServiceException,
76
+ EFSAuthorizationConfigIAM: () => EFSAuthorizationConfigIAM,
77
+ EFSTransitEncryption: () => EFSTransitEncryption,
78
+ EnvironmentFileType: () => EnvironmentFileType,
79
+ ExecuteCommandCommand: () => ExecuteCommandCommand,
80
+ ExecuteCommandLogging: () => ExecuteCommandLogging,
81
+ ExecuteCommandResponseFilterSensitiveLog: () => ExecuteCommandResponseFilterSensitiveLog,
82
+ FirelensConfigurationType: () => FirelensConfigurationType,
83
+ GetTaskProtectionCommand: () => GetTaskProtectionCommand,
84
+ HealthStatus: () => HealthStatus,
85
+ InstanceHealthCheckState: () => InstanceHealthCheckState,
86
+ InstanceHealthCheckType: () => InstanceHealthCheckType,
87
+ InvalidParameterException: () => InvalidParameterException,
88
+ IpcMode: () => IpcMode,
89
+ LaunchType: () => LaunchType,
90
+ LimitExceededException: () => LimitExceededException,
91
+ ListAccountSettingsCommand: () => ListAccountSettingsCommand,
92
+ ListAttributesCommand: () => ListAttributesCommand,
93
+ ListClustersCommand: () => ListClustersCommand,
94
+ ListContainerInstancesCommand: () => ListContainerInstancesCommand,
95
+ ListServicesByNamespaceCommand: () => ListServicesByNamespaceCommand,
96
+ ListServicesCommand: () => ListServicesCommand,
97
+ ListTagsForResourceCommand: () => ListTagsForResourceCommand,
98
+ ListTaskDefinitionFamiliesCommand: () => ListTaskDefinitionFamiliesCommand,
99
+ ListTaskDefinitionsCommand: () => ListTaskDefinitionsCommand,
100
+ ListTasksCommand: () => ListTasksCommand,
101
+ LogDriver: () => LogDriver,
102
+ ManagedAgentName: () => ManagedAgentName,
103
+ ManagedDraining: () => ManagedDraining,
104
+ ManagedScalingStatus: () => ManagedScalingStatus,
105
+ ManagedTerminationProtection: () => ManagedTerminationProtection,
106
+ MissingVersionException: () => MissingVersionException,
107
+ NamespaceNotFoundException: () => NamespaceNotFoundException,
108
+ NetworkMode: () => NetworkMode,
109
+ NoUpdateAvailableException: () => NoUpdateAvailableException,
110
+ OSFamily: () => OSFamily,
111
+ PidMode: () => PidMode,
112
+ PlacementConstraintType: () => PlacementConstraintType,
113
+ PlacementStrategyType: () => PlacementStrategyType,
114
+ PlatformDeviceType: () => PlatformDeviceType,
115
+ PlatformTaskDefinitionIncompatibilityException: () => PlatformTaskDefinitionIncompatibilityException,
116
+ PlatformUnknownException: () => PlatformUnknownException,
117
+ PropagateTags: () => PropagateTags,
118
+ ProxyConfigurationType: () => ProxyConfigurationType,
119
+ PutAccountSettingCommand: () => PutAccountSettingCommand,
120
+ PutAccountSettingDefaultCommand: () => PutAccountSettingDefaultCommand,
121
+ PutAttributesCommand: () => PutAttributesCommand,
122
+ PutClusterCapacityProvidersCommand: () => PutClusterCapacityProvidersCommand,
123
+ RegisterContainerInstanceCommand: () => RegisterContainerInstanceCommand,
124
+ RegisterTaskDefinitionCommand: () => RegisterTaskDefinitionCommand,
125
+ ResourceInUseException: () => ResourceInUseException,
126
+ ResourceNotFoundException: () => ResourceNotFoundException,
127
+ ResourceType: () => ResourceType,
128
+ RunTaskCommand: () => RunTaskCommand,
129
+ ScaleUnit: () => ScaleUnit,
130
+ SchedulingStrategy: () => SchedulingStrategy,
131
+ Scope: () => Scope,
132
+ ServerException: () => ServerException,
133
+ ServiceField: () => ServiceField,
134
+ ServiceNotActiveException: () => ServiceNotActiveException,
135
+ ServiceNotFoundException: () => ServiceNotFoundException,
136
+ SessionFilterSensitiveLog: () => SessionFilterSensitiveLog,
137
+ SettingName: () => SettingName,
138
+ SettingType: () => SettingType,
139
+ SortOrder: () => SortOrder,
140
+ StabilityStatus: () => StabilityStatus,
141
+ StartTaskCommand: () => StartTaskCommand,
142
+ StopTaskCommand: () => StopTaskCommand,
143
+ SubmitAttachmentStateChangesCommand: () => SubmitAttachmentStateChangesCommand,
144
+ SubmitContainerStateChangeCommand: () => SubmitContainerStateChangeCommand,
145
+ SubmitTaskStateChangeCommand: () => SubmitTaskStateChangeCommand,
146
+ TagResourceCommand: () => TagResourceCommand,
147
+ TargetNotConnectedException: () => TargetNotConnectedException,
148
+ TargetNotFoundException: () => TargetNotFoundException,
149
+ TargetType: () => TargetType,
150
+ TaskDefinitionFamilyStatus: () => TaskDefinitionFamilyStatus,
151
+ TaskDefinitionField: () => TaskDefinitionField,
152
+ TaskDefinitionPlacementConstraintType: () => TaskDefinitionPlacementConstraintType,
153
+ TaskDefinitionStatus: () => TaskDefinitionStatus,
154
+ TaskField: () => TaskField,
155
+ TaskFilesystemType: () => TaskFilesystemType,
156
+ TaskSetField: () => TaskSetField,
157
+ TaskSetNotFoundException: () => TaskSetNotFoundException,
158
+ TaskStopCode: () => TaskStopCode,
159
+ TransportProtocol: () => TransportProtocol,
160
+ UlimitName: () => UlimitName,
161
+ UnsupportedFeatureException: () => UnsupportedFeatureException,
162
+ UntagResourceCommand: () => UntagResourceCommand,
163
+ UpdateCapacityProviderCommand: () => UpdateCapacityProviderCommand,
164
+ UpdateClusterCommand: () => UpdateClusterCommand,
165
+ UpdateClusterSettingsCommand: () => UpdateClusterSettingsCommand,
166
+ UpdateContainerAgentCommand: () => UpdateContainerAgentCommand,
167
+ UpdateContainerInstancesStateCommand: () => UpdateContainerInstancesStateCommand,
168
+ UpdateInProgressException: () => UpdateInProgressException,
169
+ UpdateServiceCommand: () => UpdateServiceCommand,
170
+ UpdateServicePrimaryTaskSetCommand: () => UpdateServicePrimaryTaskSetCommand,
171
+ UpdateTaskProtectionCommand: () => UpdateTaskProtectionCommand,
172
+ UpdateTaskSetCommand: () => UpdateTaskSetCommand,
173
+ __Client: () => import_smithy_client.Client,
174
+ paginateListAccountSettings: () => paginateListAccountSettings,
175
+ paginateListAttributes: () => paginateListAttributes,
176
+ paginateListClusters: () => paginateListClusters,
177
+ paginateListContainerInstances: () => paginateListContainerInstances,
178
+ paginateListServices: () => paginateListServices,
179
+ paginateListServicesByNamespace: () => paginateListServicesByNamespace,
180
+ paginateListTaskDefinitionFamilies: () => paginateListTaskDefinitionFamilies,
181
+ paginateListTaskDefinitions: () => paginateListTaskDefinitions,
182
+ paginateListTasks: () => paginateListTasks,
183
+ waitForServicesInactive: () => waitForServicesInactive,
184
+ waitForServicesStable: () => waitForServicesStable,
185
+ waitForTasksRunning: () => waitForTasksRunning,
186
+ waitForTasksStopped: () => waitForTasksStopped,
187
+ waitUntilServicesInactive: () => waitUntilServicesInactive,
188
+ waitUntilServicesStable: () => waitUntilServicesStable,
189
+ waitUntilTasksRunning: () => waitUntilTasksRunning,
190
+ waitUntilTasksStopped: () => waitUntilTasksStopped
191
+ });
192
+ module.exports = __toCommonJS(src_exports);
193
+
194
+ // src/ECSClient.ts
195
+ var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
196
+ var import_middleware_logger = require("@aws-sdk/middleware-logger");
197
+ var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
198
+ var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
199
+ var import_config_resolver = require("@smithy/config-resolver");
200
+ var import_core = require("@smithy/core");
201
+ var import_middleware_content_length = require("@smithy/middleware-content-length");
202
+ var import_middleware_endpoint = require("@smithy/middleware-endpoint");
203
+ var import_middleware_retry = require("@smithy/middleware-retry");
204
+
205
+ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
206
+
207
+ // src/endpoint/EndpointParameters.ts
208
+ var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
209
+ return {
210
+ ...options,
211
+ useDualstackEndpoint: options.useDualstackEndpoint ?? false,
212
+ useFipsEndpoint: options.useFipsEndpoint ?? false,
213
+ defaultSigningName: "ecs"
214
+ };
215
+ }, "resolveClientEndpointParameters");
216
+ var commonParams = {
217
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
218
+ Endpoint: { type: "builtInParams", name: "endpoint" },
219
+ Region: { type: "builtInParams", name: "region" },
220
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
221
+ };
222
+
223
+ // src/ECSClient.ts
224
+ var import_runtimeConfig = require("././runtimeConfig");
225
+
226
+ // src/runtimeExtensions.ts
227
+ var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
228
+ var import_protocol_http = require("@smithy/protocol-http");
229
+ var import_smithy_client = require("@smithy/smithy-client");
230
+
231
+ // src/auth/httpAuthExtensionConfiguration.ts
232
+ var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
233
+ const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
234
+ let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
235
+ let _credentials = runtimeConfig.credentials;
236
+ return {
237
+ setHttpAuthScheme(httpAuthScheme) {
238
+ const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
239
+ if (index === -1) {
240
+ _httpAuthSchemes.push(httpAuthScheme);
241
+ } else {
242
+ _httpAuthSchemes.splice(index, 1, httpAuthScheme);
243
+ }
244
+ },
245
+ httpAuthSchemes() {
246
+ return _httpAuthSchemes;
247
+ },
248
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
249
+ _httpAuthSchemeProvider = httpAuthSchemeProvider;
250
+ },
251
+ httpAuthSchemeProvider() {
252
+ return _httpAuthSchemeProvider;
253
+ },
254
+ setCredentials(credentials) {
255
+ _credentials = credentials;
256
+ },
257
+ credentials() {
258
+ return _credentials;
259
+ }
260
+ };
261
+ }, "getHttpAuthExtensionConfiguration");
262
+ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
263
+ return {
264
+ httpAuthSchemes: config.httpAuthSchemes(),
265
+ httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
266
+ credentials: config.credentials()
267
+ };
268
+ }, "resolveHttpAuthRuntimeConfig");
269
+
270
+ // src/runtimeExtensions.ts
271
+ var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
272
+ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
273
+ const extensionConfiguration = {
274
+ ...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
275
+ ...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
276
+ ...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
277
+ ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
278
+ };
279
+ extensions.forEach((extension) => extension.configure(extensionConfiguration));
280
+ return {
281
+ ...runtimeConfig,
282
+ ...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
283
+ ...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
284
+ ...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
285
+ ...resolveHttpAuthRuntimeConfig(extensionConfiguration)
286
+ };
287
+ }, "resolveRuntimeExtensions");
288
+
289
+ // src/ECSClient.ts
290
+ var _ECSClient = class _ECSClient extends import_smithy_client.Client {
291
+ constructor(...[configuration]) {
292
+ const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
293
+ const _config_1 = resolveClientEndpointParameters(_config_0);
294
+ const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
295
+ const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
296
+ const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
297
+ const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
298
+ const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
299
+ const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
300
+ const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
301
+ super(_config_8);
302
+ this.config = _config_8;
303
+ this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
304
+ this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
305
+ this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
306
+ this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
307
+ this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
308
+ this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
309
+ this.middlewareStack.use(
310
+ (0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
311
+ httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultECSHttpAuthSchemeParametersProvider,
312
+ identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
313
+ "aws.auth#sigv4": config.credentials
314
+ })
315
+ })
316
+ );
317
+ this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
318
+ }
319
+ /**
320
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
321
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
322
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
323
+ */
324
+ destroy() {
325
+ super.destroy();
326
+ }
327
+ };
328
+ __name(_ECSClient, "ECSClient");
329
+ var ECSClient = _ECSClient;
330
+
331
+ // src/ECS.ts
332
+
333
+
334
+ // src/commands/CreateCapacityProviderCommand.ts
335
+
336
+ var import_middleware_serde = require("@smithy/middleware-serde");
337
+
338
+
339
+ // src/protocols/Aws_json1_1.ts
340
+ var import_core2 = require("@aws-sdk/core");
341
+
342
+
343
+ var import_uuid = require("uuid");
344
+
345
+ // src/models/ECSServiceException.ts
346
+
347
+ var _ECSServiceException = class _ECSServiceException extends import_smithy_client.ServiceException {
348
+ /**
349
+ * @internal
350
+ */
351
+ constructor(options) {
352
+ super(options);
353
+ Object.setPrototypeOf(this, _ECSServiceException.prototype);
354
+ }
355
+ };
356
+ __name(_ECSServiceException, "ECSServiceException");
357
+ var ECSServiceException = _ECSServiceException;
358
+
359
+ // src/models/models_0.ts
360
+
361
+ var _AccessDeniedException = class _AccessDeniedException extends ECSServiceException {
362
+ /**
363
+ * @internal
364
+ */
365
+ constructor(opts) {
366
+ super({
367
+ name: "AccessDeniedException",
368
+ $fault: "client",
369
+ ...opts
370
+ });
371
+ this.name = "AccessDeniedException";
372
+ this.$fault = "client";
373
+ Object.setPrototypeOf(this, _AccessDeniedException.prototype);
374
+ }
375
+ };
376
+ __name(_AccessDeniedException, "AccessDeniedException");
377
+ var AccessDeniedException = _AccessDeniedException;
378
+ var AgentUpdateStatus = {
379
+ FAILED: "FAILED",
380
+ PENDING: "PENDING",
381
+ STAGED: "STAGED",
382
+ STAGING: "STAGING",
383
+ UPDATED: "UPDATED",
384
+ UPDATING: "UPDATING"
385
+ };
386
+ var _ClientException = class _ClientException extends ECSServiceException {
387
+ /**
388
+ * @internal
389
+ */
390
+ constructor(opts) {
391
+ super({
392
+ name: "ClientException",
393
+ $fault: "client",
394
+ ...opts
395
+ });
396
+ this.name = "ClientException";
397
+ this.$fault = "client";
398
+ Object.setPrototypeOf(this, _ClientException.prototype);
399
+ }
400
+ };
401
+ __name(_ClientException, "ClientException");
402
+ var ClientException = _ClientException;
403
+ var ManagedDraining = {
404
+ DISABLED: "DISABLED",
405
+ ENABLED: "ENABLED"
406
+ };
407
+ var ManagedScalingStatus = {
408
+ DISABLED: "DISABLED",
409
+ ENABLED: "ENABLED"
410
+ };
411
+ var ManagedTerminationProtection = {
412
+ DISABLED: "DISABLED",
413
+ ENABLED: "ENABLED"
414
+ };
415
+ var CapacityProviderStatus = {
416
+ ACTIVE: "ACTIVE",
417
+ INACTIVE: "INACTIVE"
418
+ };
419
+ var CapacityProviderUpdateStatus = {
420
+ DELETE_COMPLETE: "DELETE_COMPLETE",
421
+ DELETE_FAILED: "DELETE_FAILED",
422
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
423
+ UPDATE_COMPLETE: "UPDATE_COMPLETE",
424
+ UPDATE_FAILED: "UPDATE_FAILED",
425
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS"
426
+ };
427
+ var _InvalidParameterException = class _InvalidParameterException extends ECSServiceException {
428
+ /**
429
+ * @internal
430
+ */
431
+ constructor(opts) {
432
+ super({
433
+ name: "InvalidParameterException",
434
+ $fault: "client",
435
+ ...opts
436
+ });
437
+ this.name = "InvalidParameterException";
438
+ this.$fault = "client";
439
+ Object.setPrototypeOf(this, _InvalidParameterException.prototype);
440
+ }
441
+ };
442
+ __name(_InvalidParameterException, "InvalidParameterException");
443
+ var InvalidParameterException = _InvalidParameterException;
444
+ var _LimitExceededException = class _LimitExceededException extends ECSServiceException {
445
+ /**
446
+ * @internal
447
+ */
448
+ constructor(opts) {
449
+ super({
450
+ name: "LimitExceededException",
451
+ $fault: "client",
452
+ ...opts
453
+ });
454
+ this.name = "LimitExceededException";
455
+ this.$fault = "client";
456
+ Object.setPrototypeOf(this, _LimitExceededException.prototype);
457
+ }
458
+ };
459
+ __name(_LimitExceededException, "LimitExceededException");
460
+ var LimitExceededException = _LimitExceededException;
461
+ var _ServerException = class _ServerException extends ECSServiceException {
462
+ /**
463
+ * @internal
464
+ */
465
+ constructor(opts) {
466
+ super({
467
+ name: "ServerException",
468
+ $fault: "server",
469
+ ...opts
470
+ });
471
+ this.name = "ServerException";
472
+ this.$fault = "server";
473
+ Object.setPrototypeOf(this, _ServerException.prototype);
474
+ }
475
+ };
476
+ __name(_ServerException, "ServerException");
477
+ var ServerException = _ServerException;
478
+ var _UpdateInProgressException = class _UpdateInProgressException extends ECSServiceException {
479
+ /**
480
+ * @internal
481
+ */
482
+ constructor(opts) {
483
+ super({
484
+ name: "UpdateInProgressException",
485
+ $fault: "client",
486
+ ...opts
487
+ });
488
+ this.name = "UpdateInProgressException";
489
+ this.$fault = "client";
490
+ Object.setPrototypeOf(this, _UpdateInProgressException.prototype);
491
+ }
492
+ };
493
+ __name(_UpdateInProgressException, "UpdateInProgressException");
494
+ var UpdateInProgressException = _UpdateInProgressException;
495
+ var ExecuteCommandLogging = {
496
+ DEFAULT: "DEFAULT",
497
+ NONE: "NONE",
498
+ OVERRIDE: "OVERRIDE"
499
+ };
500
+ var ClusterSettingName = {
501
+ CONTAINER_INSIGHTS: "containerInsights"
502
+ };
503
+ var _NamespaceNotFoundException = class _NamespaceNotFoundException extends ECSServiceException {
504
+ /**
505
+ * @internal
506
+ */
507
+ constructor(opts) {
508
+ super({
509
+ name: "NamespaceNotFoundException",
510
+ $fault: "client",
511
+ ...opts
512
+ });
513
+ this.name = "NamespaceNotFoundException";
514
+ this.$fault = "client";
515
+ Object.setPrototypeOf(this, _NamespaceNotFoundException.prototype);
516
+ }
517
+ };
518
+ __name(_NamespaceNotFoundException, "NamespaceNotFoundException");
519
+ var NamespaceNotFoundException = _NamespaceNotFoundException;
520
+ var _ClusterNotFoundException = class _ClusterNotFoundException extends ECSServiceException {
521
+ /**
522
+ * @internal
523
+ */
524
+ constructor(opts) {
525
+ super({
526
+ name: "ClusterNotFoundException",
527
+ $fault: "client",
528
+ ...opts
529
+ });
530
+ this.name = "ClusterNotFoundException";
531
+ this.$fault = "client";
532
+ Object.setPrototypeOf(this, _ClusterNotFoundException.prototype);
533
+ }
534
+ };
535
+ __name(_ClusterNotFoundException, "ClusterNotFoundException");
536
+ var ClusterNotFoundException = _ClusterNotFoundException;
537
+ var DeploymentControllerType = {
538
+ CODE_DEPLOY: "CODE_DEPLOY",
539
+ ECS: "ECS",
540
+ EXTERNAL: "EXTERNAL"
541
+ };
542
+ var LaunchType = {
543
+ EC2: "EC2",
544
+ EXTERNAL: "EXTERNAL",
545
+ FARGATE: "FARGATE"
546
+ };
547
+ var AssignPublicIp = {
548
+ DISABLED: "DISABLED",
549
+ ENABLED: "ENABLED"
550
+ };
551
+ var PlacementConstraintType = {
552
+ DISTINCT_INSTANCE: "distinctInstance",
553
+ MEMBER_OF: "memberOf"
554
+ };
555
+ var PlacementStrategyType = {
556
+ BINPACK: "binpack",
557
+ RANDOM: "random",
558
+ SPREAD: "spread"
559
+ };
560
+ var PropagateTags = {
561
+ NONE: "NONE",
562
+ SERVICE: "SERVICE",
563
+ TASK_DEFINITION: "TASK_DEFINITION"
564
+ };
565
+ var SchedulingStrategy = {
566
+ DAEMON: "DAEMON",
567
+ REPLICA: "REPLICA"
568
+ };
569
+ var LogDriver = {
570
+ AWSFIRELENS: "awsfirelens",
571
+ AWSLOGS: "awslogs",
572
+ FLUENTD: "fluentd",
573
+ GELF: "gelf",
574
+ JOURNALD: "journald",
575
+ JSON_FILE: "json-file",
576
+ SPLUNK: "splunk",
577
+ SYSLOG: "syslog"
578
+ };
579
+ var TaskFilesystemType = {
580
+ EXT3: "ext3",
581
+ EXT4: "ext4",
582
+ XFS: "xfs"
583
+ };
584
+ var EBSResourceType = {
585
+ VOLUME: "volume"
586
+ };
587
+ var DeploymentRolloutState = {
588
+ COMPLETED: "COMPLETED",
589
+ FAILED: "FAILED",
590
+ IN_PROGRESS: "IN_PROGRESS"
591
+ };
592
+ var ScaleUnit = {
593
+ PERCENT: "PERCENT"
594
+ };
595
+ var StabilityStatus = {
596
+ STABILIZING: "STABILIZING",
597
+ STEADY_STATE: "STEADY_STATE"
598
+ };
599
+ var _PlatformTaskDefinitionIncompatibilityException = class _PlatformTaskDefinitionIncompatibilityException extends ECSServiceException {
600
+ /**
601
+ * @internal
602
+ */
603
+ constructor(opts) {
604
+ super({
605
+ name: "PlatformTaskDefinitionIncompatibilityException",
606
+ $fault: "client",
607
+ ...opts
608
+ });
609
+ this.name = "PlatformTaskDefinitionIncompatibilityException";
610
+ this.$fault = "client";
611
+ Object.setPrototypeOf(this, _PlatformTaskDefinitionIncompatibilityException.prototype);
612
+ }
613
+ };
614
+ __name(_PlatformTaskDefinitionIncompatibilityException, "PlatformTaskDefinitionIncompatibilityException");
615
+ var PlatformTaskDefinitionIncompatibilityException = _PlatformTaskDefinitionIncompatibilityException;
616
+ var _PlatformUnknownException = class _PlatformUnknownException extends ECSServiceException {
617
+ /**
618
+ * @internal
619
+ */
620
+ constructor(opts) {
621
+ super({
622
+ name: "PlatformUnknownException",
623
+ $fault: "client",
624
+ ...opts
625
+ });
626
+ this.name = "PlatformUnknownException";
627
+ this.$fault = "client";
628
+ Object.setPrototypeOf(this, _PlatformUnknownException.prototype);
629
+ }
630
+ };
631
+ __name(_PlatformUnknownException, "PlatformUnknownException");
632
+ var PlatformUnknownException = _PlatformUnknownException;
633
+ var _UnsupportedFeatureException = class _UnsupportedFeatureException extends ECSServiceException {
634
+ /**
635
+ * @internal
636
+ */
637
+ constructor(opts) {
638
+ super({
639
+ name: "UnsupportedFeatureException",
640
+ $fault: "client",
641
+ ...opts
642
+ });
643
+ this.name = "UnsupportedFeatureException";
644
+ this.$fault = "client";
645
+ Object.setPrototypeOf(this, _UnsupportedFeatureException.prototype);
646
+ }
647
+ };
648
+ __name(_UnsupportedFeatureException, "UnsupportedFeatureException");
649
+ var UnsupportedFeatureException = _UnsupportedFeatureException;
650
+ var _ServiceNotActiveException = class _ServiceNotActiveException extends ECSServiceException {
651
+ /**
652
+ * @internal
653
+ */
654
+ constructor(opts) {
655
+ super({
656
+ name: "ServiceNotActiveException",
657
+ $fault: "client",
658
+ ...opts
659
+ });
660
+ this.name = "ServiceNotActiveException";
661
+ this.$fault = "client";
662
+ Object.setPrototypeOf(this, _ServiceNotActiveException.prototype);
663
+ }
664
+ };
665
+ __name(_ServiceNotActiveException, "ServiceNotActiveException");
666
+ var ServiceNotActiveException = _ServiceNotActiveException;
667
+ var _ServiceNotFoundException = class _ServiceNotFoundException extends ECSServiceException {
668
+ /**
669
+ * @internal
670
+ */
671
+ constructor(opts) {
672
+ super({
673
+ name: "ServiceNotFoundException",
674
+ $fault: "client",
675
+ ...opts
676
+ });
677
+ this.name = "ServiceNotFoundException";
678
+ this.$fault = "client";
679
+ Object.setPrototypeOf(this, _ServiceNotFoundException.prototype);
680
+ }
681
+ };
682
+ __name(_ServiceNotFoundException, "ServiceNotFoundException");
683
+ var ServiceNotFoundException = _ServiceNotFoundException;
684
+ var SettingName = {
685
+ AWSVPC_TRUNKING: "awsvpcTrunking",
686
+ CONTAINER_INSIGHTS: "containerInsights",
687
+ CONTAINER_INSTANCE_LONG_ARN_FORMAT: "containerInstanceLongArnFormat",
688
+ FARGATE_FIPS_MODE: "fargateFIPSMode",
689
+ FARGATE_TASK_RETIREMENT_WAIT_PERIOD: "fargateTaskRetirementWaitPeriod",
690
+ GUARD_DUTY_ACTIVATE: "guardDutyActivate",
691
+ SERVICE_LONG_ARN_FORMAT: "serviceLongArnFormat",
692
+ TAG_RESOURCE_AUTHORIZATION: "tagResourceAuthorization",
693
+ TASK_LONG_ARN_FORMAT: "taskLongArnFormat"
694
+ };
695
+ var SettingType = {
696
+ AWS_MANAGED: "aws_managed",
697
+ USER: "user"
698
+ };
699
+ var TargetType = {
700
+ CONTAINER_INSTANCE: "container-instance"
701
+ };
702
+ var _TargetNotFoundException = class _TargetNotFoundException extends ECSServiceException {
703
+ /**
704
+ * @internal
705
+ */
706
+ constructor(opts) {
707
+ super({
708
+ name: "TargetNotFoundException",
709
+ $fault: "client",
710
+ ...opts
711
+ });
712
+ this.name = "TargetNotFoundException";
713
+ this.$fault = "client";
714
+ Object.setPrototypeOf(this, _TargetNotFoundException.prototype);
715
+ }
716
+ };
717
+ __name(_TargetNotFoundException, "TargetNotFoundException");
718
+ var TargetNotFoundException = _TargetNotFoundException;
719
+ var _ClusterContainsContainerInstancesException = class _ClusterContainsContainerInstancesException extends ECSServiceException {
720
+ /**
721
+ * @internal
722
+ */
723
+ constructor(opts) {
724
+ super({
725
+ name: "ClusterContainsContainerInstancesException",
726
+ $fault: "client",
727
+ ...opts
728
+ });
729
+ this.name = "ClusterContainsContainerInstancesException";
730
+ this.$fault = "client";
731
+ Object.setPrototypeOf(this, _ClusterContainsContainerInstancesException.prototype);
732
+ }
733
+ };
734
+ __name(_ClusterContainsContainerInstancesException, "ClusterContainsContainerInstancesException");
735
+ var ClusterContainsContainerInstancesException = _ClusterContainsContainerInstancesException;
736
+ var _ClusterContainsServicesException = class _ClusterContainsServicesException extends ECSServiceException {
737
+ /**
738
+ * @internal
739
+ */
740
+ constructor(opts) {
741
+ super({
742
+ name: "ClusterContainsServicesException",
743
+ $fault: "client",
744
+ ...opts
745
+ });
746
+ this.name = "ClusterContainsServicesException";
747
+ this.$fault = "client";
748
+ Object.setPrototypeOf(this, _ClusterContainsServicesException.prototype);
749
+ }
750
+ };
751
+ __name(_ClusterContainsServicesException, "ClusterContainsServicesException");
752
+ var ClusterContainsServicesException = _ClusterContainsServicesException;
753
+ var _ClusterContainsTasksException = class _ClusterContainsTasksException extends ECSServiceException {
754
+ /**
755
+ * @internal
756
+ */
757
+ constructor(opts) {
758
+ super({
759
+ name: "ClusterContainsTasksException",
760
+ $fault: "client",
761
+ ...opts
762
+ });
763
+ this.name = "ClusterContainsTasksException";
764
+ this.$fault = "client";
765
+ Object.setPrototypeOf(this, _ClusterContainsTasksException.prototype);
766
+ }
767
+ };
768
+ __name(_ClusterContainsTasksException, "ClusterContainsTasksException");
769
+ var ClusterContainsTasksException = _ClusterContainsTasksException;
770
+ var Compatibility = {
771
+ EC2: "EC2",
772
+ EXTERNAL: "EXTERNAL",
773
+ FARGATE: "FARGATE"
774
+ };
775
+ var ContainerCondition = {
776
+ COMPLETE: "COMPLETE",
777
+ HEALTHY: "HEALTHY",
778
+ START: "START",
779
+ SUCCESS: "SUCCESS"
780
+ };
781
+ var EnvironmentFileType = {
782
+ S3: "s3"
783
+ };
784
+ var FirelensConfigurationType = {
785
+ FLUENTBIT: "fluentbit",
786
+ FLUENTD: "fluentd"
787
+ };
788
+ var DeviceCgroupPermission = {
789
+ MKNOD: "mknod",
790
+ READ: "read",
791
+ WRITE: "write"
792
+ };
793
+ var ApplicationProtocol = {
794
+ GRPC: "grpc",
795
+ HTTP: "http",
796
+ HTTP2: "http2"
797
+ };
798
+ var TransportProtocol = {
799
+ TCP: "tcp",
800
+ UDP: "udp"
801
+ };
802
+ var ResourceType = {
803
+ GPU: "GPU",
804
+ INFERENCE_ACCELERATOR: "InferenceAccelerator"
805
+ };
806
+ var UlimitName = {
807
+ CORE: "core",
808
+ CPU: "cpu",
809
+ DATA: "data",
810
+ FSIZE: "fsize",
811
+ LOCKS: "locks",
812
+ MEMLOCK: "memlock",
813
+ MSGQUEUE: "msgqueue",
814
+ NICE: "nice",
815
+ NOFILE: "nofile",
816
+ NPROC: "nproc",
817
+ RSS: "rss",
818
+ RTPRIO: "rtprio",
819
+ RTTIME: "rttime",
820
+ SIGPENDING: "sigpending",
821
+ STACK: "stack"
822
+ };
823
+ var IpcMode = {
824
+ HOST: "host",
825
+ NONE: "none",
826
+ TASK: "task"
827
+ };
828
+ var NetworkMode = {
829
+ AWSVPC: "awsvpc",
830
+ BRIDGE: "bridge",
831
+ HOST: "host",
832
+ NONE: "none"
833
+ };
834
+ var PidMode = {
835
+ HOST: "host",
836
+ TASK: "task"
837
+ };
838
+ var TaskDefinitionPlacementConstraintType = {
839
+ MEMBER_OF: "memberOf"
840
+ };
841
+ var ProxyConfigurationType = {
842
+ APPMESH: "APPMESH"
843
+ };
844
+ var CPUArchitecture = {
845
+ ARM64: "ARM64",
846
+ X86_64: "X86_64"
847
+ };
848
+ var OSFamily = {
849
+ LINUX: "LINUX",
850
+ WINDOWS_SERVER_2004_CORE: "WINDOWS_SERVER_2004_CORE",
851
+ WINDOWS_SERVER_2016_FULL: "WINDOWS_SERVER_2016_FULL",
852
+ WINDOWS_SERVER_2019_CORE: "WINDOWS_SERVER_2019_CORE",
853
+ WINDOWS_SERVER_2019_FULL: "WINDOWS_SERVER_2019_FULL",
854
+ WINDOWS_SERVER_2022_CORE: "WINDOWS_SERVER_2022_CORE",
855
+ WINDOWS_SERVER_2022_FULL: "WINDOWS_SERVER_2022_FULL",
856
+ WINDOWS_SERVER_20H2_CORE: "WINDOWS_SERVER_20H2_CORE"
857
+ };
858
+ var TaskDefinitionStatus = {
859
+ ACTIVE: "ACTIVE",
860
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
861
+ INACTIVE: "INACTIVE"
862
+ };
863
+ var Scope = {
864
+ SHARED: "shared",
865
+ TASK: "task"
866
+ };
867
+ var EFSAuthorizationConfigIAM = {
868
+ DISABLED: "DISABLED",
869
+ ENABLED: "ENABLED"
870
+ };
871
+ var EFSTransitEncryption = {
872
+ DISABLED: "DISABLED",
873
+ ENABLED: "ENABLED"
874
+ };
875
+ var _TaskSetNotFoundException = class _TaskSetNotFoundException extends ECSServiceException {
876
+ /**
877
+ * @internal
878
+ */
879
+ constructor(opts) {
880
+ super({
881
+ name: "TaskSetNotFoundException",
882
+ $fault: "client",
883
+ ...opts
884
+ });
885
+ this.name = "TaskSetNotFoundException";
886
+ this.$fault = "client";
887
+ Object.setPrototypeOf(this, _TaskSetNotFoundException.prototype);
888
+ }
889
+ };
890
+ __name(_TaskSetNotFoundException, "TaskSetNotFoundException");
891
+ var TaskSetNotFoundException = _TaskSetNotFoundException;
892
+ var InstanceHealthCheckState = {
893
+ IMPAIRED: "IMPAIRED",
894
+ INITIALIZING: "INITIALIZING",
895
+ INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
896
+ OK: "OK"
897
+ };
898
+ var InstanceHealthCheckType = {
899
+ CONTAINER_RUNTIME: "CONTAINER_RUNTIME"
900
+ };
901
+ var CapacityProviderField = {
902
+ TAGS: "TAGS"
903
+ };
904
+ var ClusterField = {
905
+ ATTACHMENTS: "ATTACHMENTS",
906
+ CONFIGURATIONS: "CONFIGURATIONS",
907
+ SETTINGS: "SETTINGS",
908
+ STATISTICS: "STATISTICS",
909
+ TAGS: "TAGS"
910
+ };
911
+ var ContainerInstanceField = {
912
+ CONTAINER_INSTANCE_HEALTH: "CONTAINER_INSTANCE_HEALTH",
913
+ TAGS: "TAGS"
914
+ };
915
+ var ServiceField = {
916
+ TAGS: "TAGS"
917
+ };
918
+ var TaskDefinitionField = {
919
+ TAGS: "TAGS"
920
+ };
921
+ var TaskField = {
922
+ TAGS: "TAGS"
923
+ };
924
+ var Connectivity = {
925
+ CONNECTED: "CONNECTED",
926
+ DISCONNECTED: "DISCONNECTED"
927
+ };
928
+ var HealthStatus = {
929
+ HEALTHY: "HEALTHY",
930
+ UNHEALTHY: "UNHEALTHY",
931
+ UNKNOWN: "UNKNOWN"
932
+ };
933
+ var ManagedAgentName = {
934
+ ExecuteCommandAgent: "ExecuteCommandAgent"
935
+ };
936
+ var TaskStopCode = {
937
+ ESSENTIAL_CONTAINER_EXITED: "EssentialContainerExited",
938
+ SERVICE_SCHEDULER_INITIATED: "ServiceSchedulerInitiated",
939
+ SPOT_INTERRUPTION: "SpotInterruption",
940
+ TASK_FAILED_TO_START: "TaskFailedToStart",
941
+ TERMINATION_NOTICE: "TerminationNotice",
942
+ USER_INITIATED: "UserInitiated"
943
+ };
944
+ var TaskSetField = {
945
+ TAGS: "TAGS"
946
+ };
947
+ var _TargetNotConnectedException = class _TargetNotConnectedException extends ECSServiceException {
948
+ /**
949
+ * @internal
950
+ */
951
+ constructor(opts) {
952
+ super({
953
+ name: "TargetNotConnectedException",
954
+ $fault: "client",
955
+ ...opts
956
+ });
957
+ this.name = "TargetNotConnectedException";
958
+ this.$fault = "client";
959
+ Object.setPrototypeOf(this, _TargetNotConnectedException.prototype);
960
+ }
961
+ };
962
+ __name(_TargetNotConnectedException, "TargetNotConnectedException");
963
+ var TargetNotConnectedException = _TargetNotConnectedException;
964
+ var _ResourceNotFoundException = class _ResourceNotFoundException extends ECSServiceException {
965
+ /**
966
+ * @internal
967
+ */
968
+ constructor(opts) {
969
+ super({
970
+ name: "ResourceNotFoundException",
971
+ $fault: "client",
972
+ ...opts
973
+ });
974
+ this.name = "ResourceNotFoundException";
975
+ this.$fault = "client";
976
+ Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
977
+ }
978
+ };
979
+ __name(_ResourceNotFoundException, "ResourceNotFoundException");
980
+ var ResourceNotFoundException = _ResourceNotFoundException;
981
+ var ContainerInstanceStatus = {
982
+ ACTIVE: "ACTIVE",
983
+ DEREGISTERING: "DEREGISTERING",
984
+ DRAINING: "DRAINING",
985
+ REGISTERING: "REGISTERING",
986
+ REGISTRATION_FAILED: "REGISTRATION_FAILED"
987
+ };
988
+ var TaskDefinitionFamilyStatus = {
989
+ ACTIVE: "ACTIVE",
990
+ ALL: "ALL",
991
+ INACTIVE: "INACTIVE"
992
+ };
993
+ var SortOrder = {
994
+ ASC: "ASC",
995
+ DESC: "DESC"
996
+ };
997
+ var DesiredStatus = {
998
+ PENDING: "PENDING",
999
+ RUNNING: "RUNNING",
1000
+ STOPPED: "STOPPED"
1001
+ };
1002
+ var _AttributeLimitExceededException = class _AttributeLimitExceededException extends ECSServiceException {
1003
+ /**
1004
+ * @internal
1005
+ */
1006
+ constructor(opts) {
1007
+ super({
1008
+ name: "AttributeLimitExceededException",
1009
+ $fault: "client",
1010
+ ...opts
1011
+ });
1012
+ this.name = "AttributeLimitExceededException";
1013
+ this.$fault = "client";
1014
+ Object.setPrototypeOf(this, _AttributeLimitExceededException.prototype);
1015
+ }
1016
+ };
1017
+ __name(_AttributeLimitExceededException, "AttributeLimitExceededException");
1018
+ var AttributeLimitExceededException = _AttributeLimitExceededException;
1019
+ var _ResourceInUseException = class _ResourceInUseException extends ECSServiceException {
1020
+ /**
1021
+ * @internal
1022
+ */
1023
+ constructor(opts) {
1024
+ super({
1025
+ name: "ResourceInUseException",
1026
+ $fault: "client",
1027
+ ...opts
1028
+ });
1029
+ this.name = "ResourceInUseException";
1030
+ this.$fault = "client";
1031
+ Object.setPrototypeOf(this, _ResourceInUseException.prototype);
1032
+ }
1033
+ };
1034
+ __name(_ResourceInUseException, "ResourceInUseException");
1035
+ var ResourceInUseException = _ResourceInUseException;
1036
+ var PlatformDeviceType = {
1037
+ GPU: "GPU"
1038
+ };
1039
+ var _BlockedException = class _BlockedException extends ECSServiceException {
1040
+ /**
1041
+ * @internal
1042
+ */
1043
+ constructor(opts) {
1044
+ super({
1045
+ name: "BlockedException",
1046
+ $fault: "client",
1047
+ ...opts
1048
+ });
1049
+ this.name = "BlockedException";
1050
+ this.$fault = "client";
1051
+ Object.setPrototypeOf(this, _BlockedException.prototype);
1052
+ }
1053
+ };
1054
+ __name(_BlockedException, "BlockedException");
1055
+ var BlockedException = _BlockedException;
1056
+ var _ConflictException = class _ConflictException extends ECSServiceException {
1057
+ /**
1058
+ * @internal
1059
+ */
1060
+ constructor(opts) {
1061
+ super({
1062
+ name: "ConflictException",
1063
+ $fault: "client",
1064
+ ...opts
1065
+ });
1066
+ this.name = "ConflictException";
1067
+ this.$fault = "client";
1068
+ Object.setPrototypeOf(this, _ConflictException.prototype);
1069
+ this.resourceIds = opts.resourceIds;
1070
+ }
1071
+ };
1072
+ __name(_ConflictException, "ConflictException");
1073
+ var ConflictException = _ConflictException;
1074
+ var _MissingVersionException = class _MissingVersionException extends ECSServiceException {
1075
+ /**
1076
+ * @internal
1077
+ */
1078
+ constructor(opts) {
1079
+ super({
1080
+ name: "MissingVersionException",
1081
+ $fault: "client",
1082
+ ...opts
1083
+ });
1084
+ this.name = "MissingVersionException";
1085
+ this.$fault = "client";
1086
+ Object.setPrototypeOf(this, _MissingVersionException.prototype);
1087
+ }
1088
+ };
1089
+ __name(_MissingVersionException, "MissingVersionException");
1090
+ var MissingVersionException = _MissingVersionException;
1091
+ var _NoUpdateAvailableException = class _NoUpdateAvailableException extends ECSServiceException {
1092
+ /**
1093
+ * @internal
1094
+ */
1095
+ constructor(opts) {
1096
+ super({
1097
+ name: "NoUpdateAvailableException",
1098
+ $fault: "client",
1099
+ ...opts
1100
+ });
1101
+ this.name = "NoUpdateAvailableException";
1102
+ this.$fault = "client";
1103
+ Object.setPrototypeOf(this, _NoUpdateAvailableException.prototype);
1104
+ }
1105
+ };
1106
+ __name(_NoUpdateAvailableException, "NoUpdateAvailableException");
1107
+ var NoUpdateAvailableException = _NoUpdateAvailableException;
1108
+ var SessionFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1109
+ ...obj,
1110
+ ...obj.tokenValue && { tokenValue: import_smithy_client.SENSITIVE_STRING }
1111
+ }), "SessionFilterSensitiveLog");
1112
+ var ExecuteCommandResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1113
+ ...obj,
1114
+ ...obj.session && { session: SessionFilterSensitiveLog(obj.session) }
1115
+ }), "ExecuteCommandResponseFilterSensitiveLog");
1116
+
1117
+ // src/protocols/Aws_json1_1.ts
1118
+ var se_CreateCapacityProviderCommand = /* @__PURE__ */ __name(async (input, context) => {
1119
+ const headers = sharedHeaders("CreateCapacityProvider");
1120
+ let body;
1121
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1122
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1123
+ }, "se_CreateCapacityProviderCommand");
1124
+ var se_CreateClusterCommand = /* @__PURE__ */ __name(async (input, context) => {
1125
+ const headers = sharedHeaders("CreateCluster");
1126
+ let body;
1127
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1128
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1129
+ }, "se_CreateClusterCommand");
1130
+ var se_CreateServiceCommand = /* @__PURE__ */ __name(async (input, context) => {
1131
+ const headers = sharedHeaders("CreateService");
1132
+ let body;
1133
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1134
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1135
+ }, "se_CreateServiceCommand");
1136
+ var se_CreateTaskSetCommand = /* @__PURE__ */ __name(async (input, context) => {
1137
+ const headers = sharedHeaders("CreateTaskSet");
1138
+ let body;
1139
+ body = JSON.stringify(se_CreateTaskSetRequest(input, context));
1140
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1141
+ }, "se_CreateTaskSetCommand");
1142
+ var se_DeleteAccountSettingCommand = /* @__PURE__ */ __name(async (input, context) => {
1143
+ const headers = sharedHeaders("DeleteAccountSetting");
1144
+ let body;
1145
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1146
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1147
+ }, "se_DeleteAccountSettingCommand");
1148
+ var se_DeleteAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
1149
+ const headers = sharedHeaders("DeleteAttributes");
1150
+ let body;
1151
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1152
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1153
+ }, "se_DeleteAttributesCommand");
1154
+ var se_DeleteCapacityProviderCommand = /* @__PURE__ */ __name(async (input, context) => {
1155
+ const headers = sharedHeaders("DeleteCapacityProvider");
1156
+ let body;
1157
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1158
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1159
+ }, "se_DeleteCapacityProviderCommand");
1160
+ var se_DeleteClusterCommand = /* @__PURE__ */ __name(async (input, context) => {
1161
+ const headers = sharedHeaders("DeleteCluster");
1162
+ let body;
1163
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1164
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1165
+ }, "se_DeleteClusterCommand");
1166
+ var se_DeleteServiceCommand = /* @__PURE__ */ __name(async (input, context) => {
1167
+ const headers = sharedHeaders("DeleteService");
1168
+ let body;
1169
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1170
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1171
+ }, "se_DeleteServiceCommand");
1172
+ var se_DeleteTaskDefinitionsCommand = /* @__PURE__ */ __name(async (input, context) => {
1173
+ const headers = sharedHeaders("DeleteTaskDefinitions");
1174
+ let body;
1175
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1176
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1177
+ }, "se_DeleteTaskDefinitionsCommand");
1178
+ var se_DeleteTaskSetCommand = /* @__PURE__ */ __name(async (input, context) => {
1179
+ const headers = sharedHeaders("DeleteTaskSet");
1180
+ let body;
1181
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1182
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1183
+ }, "se_DeleteTaskSetCommand");
1184
+ var se_DeregisterContainerInstanceCommand = /* @__PURE__ */ __name(async (input, context) => {
1185
+ const headers = sharedHeaders("DeregisterContainerInstance");
1186
+ let body;
1187
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1188
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1189
+ }, "se_DeregisterContainerInstanceCommand");
1190
+ var se_DeregisterTaskDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
1191
+ const headers = sharedHeaders("DeregisterTaskDefinition");
1192
+ let body;
1193
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1194
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1195
+ }, "se_DeregisterTaskDefinitionCommand");
1196
+ var se_DescribeCapacityProvidersCommand = /* @__PURE__ */ __name(async (input, context) => {
1197
+ const headers = sharedHeaders("DescribeCapacityProviders");
1198
+ let body;
1199
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1200
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1201
+ }, "se_DescribeCapacityProvidersCommand");
1202
+ var se_DescribeClustersCommand = /* @__PURE__ */ __name(async (input, context) => {
1203
+ const headers = sharedHeaders("DescribeClusters");
1204
+ let body;
1205
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1206
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1207
+ }, "se_DescribeClustersCommand");
1208
+ var se_DescribeContainerInstancesCommand = /* @__PURE__ */ __name(async (input, context) => {
1209
+ const headers = sharedHeaders("DescribeContainerInstances");
1210
+ let body;
1211
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1212
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1213
+ }, "se_DescribeContainerInstancesCommand");
1214
+ var se_DescribeServicesCommand = /* @__PURE__ */ __name(async (input, context) => {
1215
+ const headers = sharedHeaders("DescribeServices");
1216
+ let body;
1217
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1218
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1219
+ }, "se_DescribeServicesCommand");
1220
+ var se_DescribeTaskDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
1221
+ const headers = sharedHeaders("DescribeTaskDefinition");
1222
+ let body;
1223
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1224
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1225
+ }, "se_DescribeTaskDefinitionCommand");
1226
+ var se_DescribeTasksCommand = /* @__PURE__ */ __name(async (input, context) => {
1227
+ const headers = sharedHeaders("DescribeTasks");
1228
+ let body;
1229
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1230
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1231
+ }, "se_DescribeTasksCommand");
1232
+ var se_DescribeTaskSetsCommand = /* @__PURE__ */ __name(async (input, context) => {
1233
+ const headers = sharedHeaders("DescribeTaskSets");
1234
+ let body;
1235
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1236
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1237
+ }, "se_DescribeTaskSetsCommand");
1238
+ var se_DiscoverPollEndpointCommand = /* @__PURE__ */ __name(async (input, context) => {
1239
+ const headers = sharedHeaders("DiscoverPollEndpoint");
1240
+ let body;
1241
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1242
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1243
+ }, "se_DiscoverPollEndpointCommand");
1244
+ var se_ExecuteCommandCommand = /* @__PURE__ */ __name(async (input, context) => {
1245
+ const headers = sharedHeaders("ExecuteCommand");
1246
+ let body;
1247
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1248
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1249
+ }, "se_ExecuteCommandCommand");
1250
+ var se_GetTaskProtectionCommand = /* @__PURE__ */ __name(async (input, context) => {
1251
+ const headers = sharedHeaders("GetTaskProtection");
1252
+ let body;
1253
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1254
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1255
+ }, "se_GetTaskProtectionCommand");
1256
+ var se_ListAccountSettingsCommand = /* @__PURE__ */ __name(async (input, context) => {
1257
+ const headers = sharedHeaders("ListAccountSettings");
1258
+ let body;
1259
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1260
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1261
+ }, "se_ListAccountSettingsCommand");
1262
+ var se_ListAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
1263
+ const headers = sharedHeaders("ListAttributes");
1264
+ let body;
1265
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1266
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1267
+ }, "se_ListAttributesCommand");
1268
+ var se_ListClustersCommand = /* @__PURE__ */ __name(async (input, context) => {
1269
+ const headers = sharedHeaders("ListClusters");
1270
+ let body;
1271
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1272
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1273
+ }, "se_ListClustersCommand");
1274
+ var se_ListContainerInstancesCommand = /* @__PURE__ */ __name(async (input, context) => {
1275
+ const headers = sharedHeaders("ListContainerInstances");
1276
+ let body;
1277
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1278
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1279
+ }, "se_ListContainerInstancesCommand");
1280
+ var se_ListServicesCommand = /* @__PURE__ */ __name(async (input, context) => {
1281
+ const headers = sharedHeaders("ListServices");
1282
+ let body;
1283
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1284
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1285
+ }, "se_ListServicesCommand");
1286
+ var se_ListServicesByNamespaceCommand = /* @__PURE__ */ __name(async (input, context) => {
1287
+ const headers = sharedHeaders("ListServicesByNamespace");
1288
+ let body;
1289
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1290
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1291
+ }, "se_ListServicesByNamespaceCommand");
1292
+ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
1293
+ const headers = sharedHeaders("ListTagsForResource");
1294
+ let body;
1295
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1296
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1297
+ }, "se_ListTagsForResourceCommand");
1298
+ var se_ListTaskDefinitionFamiliesCommand = /* @__PURE__ */ __name(async (input, context) => {
1299
+ const headers = sharedHeaders("ListTaskDefinitionFamilies");
1300
+ let body;
1301
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1302
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1303
+ }, "se_ListTaskDefinitionFamiliesCommand");
1304
+ var se_ListTaskDefinitionsCommand = /* @__PURE__ */ __name(async (input, context) => {
1305
+ const headers = sharedHeaders("ListTaskDefinitions");
1306
+ let body;
1307
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1308
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1309
+ }, "se_ListTaskDefinitionsCommand");
1310
+ var se_ListTasksCommand = /* @__PURE__ */ __name(async (input, context) => {
1311
+ const headers = sharedHeaders("ListTasks");
1312
+ let body;
1313
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1314
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1315
+ }, "se_ListTasksCommand");
1316
+ var se_PutAccountSettingCommand = /* @__PURE__ */ __name(async (input, context) => {
1317
+ const headers = sharedHeaders("PutAccountSetting");
1318
+ let body;
1319
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1320
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1321
+ }, "se_PutAccountSettingCommand");
1322
+ var se_PutAccountSettingDefaultCommand = /* @__PURE__ */ __name(async (input, context) => {
1323
+ const headers = sharedHeaders("PutAccountSettingDefault");
1324
+ let body;
1325
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1326
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1327
+ }, "se_PutAccountSettingDefaultCommand");
1328
+ var se_PutAttributesCommand = /* @__PURE__ */ __name(async (input, context) => {
1329
+ const headers = sharedHeaders("PutAttributes");
1330
+ let body;
1331
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1332
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1333
+ }, "se_PutAttributesCommand");
1334
+ var se_PutClusterCapacityProvidersCommand = /* @__PURE__ */ __name(async (input, context) => {
1335
+ const headers = sharedHeaders("PutClusterCapacityProviders");
1336
+ let body;
1337
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1338
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1339
+ }, "se_PutClusterCapacityProvidersCommand");
1340
+ var se_RegisterContainerInstanceCommand = /* @__PURE__ */ __name(async (input, context) => {
1341
+ const headers = sharedHeaders("RegisterContainerInstance");
1342
+ let body;
1343
+ body = JSON.stringify(se_RegisterContainerInstanceRequest(input, context));
1344
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1345
+ }, "se_RegisterContainerInstanceCommand");
1346
+ var se_RegisterTaskDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
1347
+ const headers = sharedHeaders("RegisterTaskDefinition");
1348
+ let body;
1349
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1350
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1351
+ }, "se_RegisterTaskDefinitionCommand");
1352
+ var se_RunTaskCommand = /* @__PURE__ */ __name(async (input, context) => {
1353
+ const headers = sharedHeaders("RunTask");
1354
+ let body;
1355
+ body = JSON.stringify(se_RunTaskRequest(input, context));
1356
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1357
+ }, "se_RunTaskCommand");
1358
+ var se_StartTaskCommand = /* @__PURE__ */ __name(async (input, context) => {
1359
+ const headers = sharedHeaders("StartTask");
1360
+ let body;
1361
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1362
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1363
+ }, "se_StartTaskCommand");
1364
+ var se_StopTaskCommand = /* @__PURE__ */ __name(async (input, context) => {
1365
+ const headers = sharedHeaders("StopTask");
1366
+ let body;
1367
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1368
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1369
+ }, "se_StopTaskCommand");
1370
+ var se_SubmitAttachmentStateChangesCommand = /* @__PURE__ */ __name(async (input, context) => {
1371
+ const headers = sharedHeaders("SubmitAttachmentStateChanges");
1372
+ let body;
1373
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1374
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1375
+ }, "se_SubmitAttachmentStateChangesCommand");
1376
+ var se_SubmitContainerStateChangeCommand = /* @__PURE__ */ __name(async (input, context) => {
1377
+ const headers = sharedHeaders("SubmitContainerStateChange");
1378
+ let body;
1379
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1380
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1381
+ }, "se_SubmitContainerStateChangeCommand");
1382
+ var se_SubmitTaskStateChangeCommand = /* @__PURE__ */ __name(async (input, context) => {
1383
+ const headers = sharedHeaders("SubmitTaskStateChange");
1384
+ let body;
1385
+ body = JSON.stringify(se_SubmitTaskStateChangeRequest(input, context));
1386
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1387
+ }, "se_SubmitTaskStateChangeCommand");
1388
+ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
1389
+ const headers = sharedHeaders("TagResource");
1390
+ let body;
1391
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1392
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1393
+ }, "se_TagResourceCommand");
1394
+ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
1395
+ const headers = sharedHeaders("UntagResource");
1396
+ let body;
1397
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1398
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1399
+ }, "se_UntagResourceCommand");
1400
+ var se_UpdateCapacityProviderCommand = /* @__PURE__ */ __name(async (input, context) => {
1401
+ const headers = sharedHeaders("UpdateCapacityProvider");
1402
+ let body;
1403
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1404
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1405
+ }, "se_UpdateCapacityProviderCommand");
1406
+ var se_UpdateClusterCommand = /* @__PURE__ */ __name(async (input, context) => {
1407
+ const headers = sharedHeaders("UpdateCluster");
1408
+ let body;
1409
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1410
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1411
+ }, "se_UpdateClusterCommand");
1412
+ var se_UpdateClusterSettingsCommand = /* @__PURE__ */ __name(async (input, context) => {
1413
+ const headers = sharedHeaders("UpdateClusterSettings");
1414
+ let body;
1415
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1416
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1417
+ }, "se_UpdateClusterSettingsCommand");
1418
+ var se_UpdateContainerAgentCommand = /* @__PURE__ */ __name(async (input, context) => {
1419
+ const headers = sharedHeaders("UpdateContainerAgent");
1420
+ let body;
1421
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1422
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1423
+ }, "se_UpdateContainerAgentCommand");
1424
+ var se_UpdateContainerInstancesStateCommand = /* @__PURE__ */ __name(async (input, context) => {
1425
+ const headers = sharedHeaders("UpdateContainerInstancesState");
1426
+ let body;
1427
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1428
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1429
+ }, "se_UpdateContainerInstancesStateCommand");
1430
+ var se_UpdateServiceCommand = /* @__PURE__ */ __name(async (input, context) => {
1431
+ const headers = sharedHeaders("UpdateService");
1432
+ let body;
1433
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1434
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1435
+ }, "se_UpdateServiceCommand");
1436
+ var se_UpdateServicePrimaryTaskSetCommand = /* @__PURE__ */ __name(async (input, context) => {
1437
+ const headers = sharedHeaders("UpdateServicePrimaryTaskSet");
1438
+ let body;
1439
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1440
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1441
+ }, "se_UpdateServicePrimaryTaskSetCommand");
1442
+ var se_UpdateTaskProtectionCommand = /* @__PURE__ */ __name(async (input, context) => {
1443
+ const headers = sharedHeaders("UpdateTaskProtection");
1444
+ let body;
1445
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1446
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1447
+ }, "se_UpdateTaskProtectionCommand");
1448
+ var se_UpdateTaskSetCommand = /* @__PURE__ */ __name(async (input, context) => {
1449
+ const headers = sharedHeaders("UpdateTaskSet");
1450
+ let body;
1451
+ body = JSON.stringify(se_UpdateTaskSetRequest(input, context));
1452
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1453
+ }, "se_UpdateTaskSetCommand");
1454
+ var de_CreateCapacityProviderCommand = /* @__PURE__ */ __name(async (output, context) => {
1455
+ if (output.statusCode >= 300) {
1456
+ return de_CommandError(output, context);
1457
+ }
1458
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1459
+ let contents = {};
1460
+ contents = (0, import_smithy_client._json)(data);
1461
+ const response = {
1462
+ $metadata: deserializeMetadata(output),
1463
+ ...contents
1464
+ };
1465
+ return response;
1466
+ }, "de_CreateCapacityProviderCommand");
1467
+ var de_CreateClusterCommand = /* @__PURE__ */ __name(async (output, context) => {
1468
+ if (output.statusCode >= 300) {
1469
+ return de_CommandError(output, context);
1470
+ }
1471
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1472
+ let contents = {};
1473
+ contents = (0, import_smithy_client._json)(data);
1474
+ const response = {
1475
+ $metadata: deserializeMetadata(output),
1476
+ ...contents
1477
+ };
1478
+ return response;
1479
+ }, "de_CreateClusterCommand");
1480
+ var de_CreateServiceCommand = /* @__PURE__ */ __name(async (output, context) => {
1481
+ if (output.statusCode >= 300) {
1482
+ return de_CommandError(output, context);
1483
+ }
1484
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1485
+ let contents = {};
1486
+ contents = de_CreateServiceResponse(data, context);
1487
+ const response = {
1488
+ $metadata: deserializeMetadata(output),
1489
+ ...contents
1490
+ };
1491
+ return response;
1492
+ }, "de_CreateServiceCommand");
1493
+ var de_CreateTaskSetCommand = /* @__PURE__ */ __name(async (output, context) => {
1494
+ if (output.statusCode >= 300) {
1495
+ return de_CommandError(output, context);
1496
+ }
1497
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1498
+ let contents = {};
1499
+ contents = de_CreateTaskSetResponse(data, context);
1500
+ const response = {
1501
+ $metadata: deserializeMetadata(output),
1502
+ ...contents
1503
+ };
1504
+ return response;
1505
+ }, "de_CreateTaskSetCommand");
1506
+ var de_DeleteAccountSettingCommand = /* @__PURE__ */ __name(async (output, context) => {
1507
+ if (output.statusCode >= 300) {
1508
+ return de_CommandError(output, context);
1509
+ }
1510
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1511
+ let contents = {};
1512
+ contents = (0, import_smithy_client._json)(data);
1513
+ const response = {
1514
+ $metadata: deserializeMetadata(output),
1515
+ ...contents
1516
+ };
1517
+ return response;
1518
+ }, "de_DeleteAccountSettingCommand");
1519
+ var de_DeleteAttributesCommand = /* @__PURE__ */ __name(async (output, context) => {
1520
+ if (output.statusCode >= 300) {
1521
+ return de_CommandError(output, context);
1522
+ }
1523
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1524
+ let contents = {};
1525
+ contents = (0, import_smithy_client._json)(data);
1526
+ const response = {
1527
+ $metadata: deserializeMetadata(output),
1528
+ ...contents
1529
+ };
1530
+ return response;
1531
+ }, "de_DeleteAttributesCommand");
1532
+ var de_DeleteCapacityProviderCommand = /* @__PURE__ */ __name(async (output, context) => {
1533
+ if (output.statusCode >= 300) {
1534
+ return de_CommandError(output, context);
1535
+ }
1536
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1537
+ let contents = {};
1538
+ contents = (0, import_smithy_client._json)(data);
1539
+ const response = {
1540
+ $metadata: deserializeMetadata(output),
1541
+ ...contents
1542
+ };
1543
+ return response;
1544
+ }, "de_DeleteCapacityProviderCommand");
1545
+ var de_DeleteClusterCommand = /* @__PURE__ */ __name(async (output, context) => {
1546
+ if (output.statusCode >= 300) {
1547
+ return de_CommandError(output, context);
1548
+ }
1549
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1550
+ let contents = {};
1551
+ contents = (0, import_smithy_client._json)(data);
1552
+ const response = {
1553
+ $metadata: deserializeMetadata(output),
1554
+ ...contents
1555
+ };
1556
+ return response;
1557
+ }, "de_DeleteClusterCommand");
1558
+ var de_DeleteServiceCommand = /* @__PURE__ */ __name(async (output, context) => {
1559
+ if (output.statusCode >= 300) {
1560
+ return de_CommandError(output, context);
1561
+ }
1562
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1563
+ let contents = {};
1564
+ contents = de_DeleteServiceResponse(data, context);
1565
+ const response = {
1566
+ $metadata: deserializeMetadata(output),
1567
+ ...contents
1568
+ };
1569
+ return response;
1570
+ }, "de_DeleteServiceCommand");
1571
+ var de_DeleteTaskDefinitionsCommand = /* @__PURE__ */ __name(async (output, context) => {
1572
+ if (output.statusCode >= 300) {
1573
+ return de_CommandError(output, context);
1574
+ }
1575
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1576
+ let contents = {};
1577
+ contents = de_DeleteTaskDefinitionsResponse(data, context);
1578
+ const response = {
1579
+ $metadata: deserializeMetadata(output),
1580
+ ...contents
1581
+ };
1582
+ return response;
1583
+ }, "de_DeleteTaskDefinitionsCommand");
1584
+ var de_DeleteTaskSetCommand = /* @__PURE__ */ __name(async (output, context) => {
1585
+ if (output.statusCode >= 300) {
1586
+ return de_CommandError(output, context);
1587
+ }
1588
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1589
+ let contents = {};
1590
+ contents = de_DeleteTaskSetResponse(data, context);
1591
+ const response = {
1592
+ $metadata: deserializeMetadata(output),
1593
+ ...contents
1594
+ };
1595
+ return response;
1596
+ }, "de_DeleteTaskSetCommand");
1597
+ var de_DeregisterContainerInstanceCommand = /* @__PURE__ */ __name(async (output, context) => {
1598
+ if (output.statusCode >= 300) {
1599
+ return de_CommandError(output, context);
1600
+ }
1601
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1602
+ let contents = {};
1603
+ contents = de_DeregisterContainerInstanceResponse(data, context);
1604
+ const response = {
1605
+ $metadata: deserializeMetadata(output),
1606
+ ...contents
1607
+ };
1608
+ return response;
1609
+ }, "de_DeregisterContainerInstanceCommand");
1610
+ var de_DeregisterTaskDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
1611
+ if (output.statusCode >= 300) {
1612
+ return de_CommandError(output, context);
1613
+ }
1614
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1615
+ let contents = {};
1616
+ contents = de_DeregisterTaskDefinitionResponse(data, context);
1617
+ const response = {
1618
+ $metadata: deserializeMetadata(output),
1619
+ ...contents
1620
+ };
1621
+ return response;
1622
+ }, "de_DeregisterTaskDefinitionCommand");
1623
+ var de_DescribeCapacityProvidersCommand = /* @__PURE__ */ __name(async (output, context) => {
1624
+ if (output.statusCode >= 300) {
1625
+ return de_CommandError(output, context);
1626
+ }
1627
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1628
+ let contents = {};
1629
+ contents = (0, import_smithy_client._json)(data);
1630
+ const response = {
1631
+ $metadata: deserializeMetadata(output),
1632
+ ...contents
1633
+ };
1634
+ return response;
1635
+ }, "de_DescribeCapacityProvidersCommand");
1636
+ var de_DescribeClustersCommand = /* @__PURE__ */ __name(async (output, context) => {
1637
+ if (output.statusCode >= 300) {
1638
+ return de_CommandError(output, context);
1639
+ }
1640
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1641
+ let contents = {};
1642
+ contents = (0, import_smithy_client._json)(data);
1643
+ const response = {
1644
+ $metadata: deserializeMetadata(output),
1645
+ ...contents
1646
+ };
1647
+ return response;
1648
+ }, "de_DescribeClustersCommand");
1649
+ var de_DescribeContainerInstancesCommand = /* @__PURE__ */ __name(async (output, context) => {
1650
+ if (output.statusCode >= 300) {
1651
+ return de_CommandError(output, context);
1652
+ }
1653
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1654
+ let contents = {};
1655
+ contents = de_DescribeContainerInstancesResponse(data, context);
1656
+ const response = {
1657
+ $metadata: deserializeMetadata(output),
1658
+ ...contents
1659
+ };
1660
+ return response;
1661
+ }, "de_DescribeContainerInstancesCommand");
1662
+ var de_DescribeServicesCommand = /* @__PURE__ */ __name(async (output, context) => {
1663
+ if (output.statusCode >= 300) {
1664
+ return de_CommandError(output, context);
1665
+ }
1666
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1667
+ let contents = {};
1668
+ contents = de_DescribeServicesResponse(data, context);
1669
+ const response = {
1670
+ $metadata: deserializeMetadata(output),
1671
+ ...contents
1672
+ };
1673
+ return response;
1674
+ }, "de_DescribeServicesCommand");
1675
+ var de_DescribeTaskDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
1676
+ if (output.statusCode >= 300) {
1677
+ return de_CommandError(output, context);
1678
+ }
1679
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1680
+ let contents = {};
1681
+ contents = de_DescribeTaskDefinitionResponse(data, context);
1682
+ const response = {
1683
+ $metadata: deserializeMetadata(output),
1684
+ ...contents
1685
+ };
1686
+ return response;
1687
+ }, "de_DescribeTaskDefinitionCommand");
1688
+ var de_DescribeTasksCommand = /* @__PURE__ */ __name(async (output, context) => {
1689
+ if (output.statusCode >= 300) {
1690
+ return de_CommandError(output, context);
1691
+ }
1692
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1693
+ let contents = {};
1694
+ contents = de_DescribeTasksResponse(data, context);
1695
+ const response = {
1696
+ $metadata: deserializeMetadata(output),
1697
+ ...contents
1698
+ };
1699
+ return response;
1700
+ }, "de_DescribeTasksCommand");
1701
+ var de_DescribeTaskSetsCommand = /* @__PURE__ */ __name(async (output, context) => {
1702
+ if (output.statusCode >= 300) {
1703
+ return de_CommandError(output, context);
1704
+ }
1705
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1706
+ let contents = {};
1707
+ contents = de_DescribeTaskSetsResponse(data, context);
1708
+ const response = {
1709
+ $metadata: deserializeMetadata(output),
1710
+ ...contents
1711
+ };
1712
+ return response;
1713
+ }, "de_DescribeTaskSetsCommand");
1714
+ var de_DiscoverPollEndpointCommand = /* @__PURE__ */ __name(async (output, context) => {
1715
+ if (output.statusCode >= 300) {
1716
+ return de_CommandError(output, context);
1717
+ }
1718
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1719
+ let contents = {};
1720
+ contents = (0, import_smithy_client._json)(data);
1721
+ const response = {
1722
+ $metadata: deserializeMetadata(output),
1723
+ ...contents
1724
+ };
1725
+ return response;
1726
+ }, "de_DiscoverPollEndpointCommand");
1727
+ var de_ExecuteCommandCommand = /* @__PURE__ */ __name(async (output, context) => {
1728
+ if (output.statusCode >= 300) {
1729
+ return de_CommandError(output, context);
1730
+ }
1731
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1732
+ let contents = {};
1733
+ contents = (0, import_smithy_client._json)(data);
1734
+ const response = {
1735
+ $metadata: deserializeMetadata(output),
1736
+ ...contents
1737
+ };
1738
+ return response;
1739
+ }, "de_ExecuteCommandCommand");
1740
+ var de_GetTaskProtectionCommand = /* @__PURE__ */ __name(async (output, context) => {
1741
+ if (output.statusCode >= 300) {
1742
+ return de_CommandError(output, context);
1743
+ }
1744
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1745
+ let contents = {};
1746
+ contents = de_GetTaskProtectionResponse(data, context);
1747
+ const response = {
1748
+ $metadata: deserializeMetadata(output),
1749
+ ...contents
1750
+ };
1751
+ return response;
1752
+ }, "de_GetTaskProtectionCommand");
1753
+ var de_ListAccountSettingsCommand = /* @__PURE__ */ __name(async (output, context) => {
1754
+ if (output.statusCode >= 300) {
1755
+ return de_CommandError(output, context);
1756
+ }
1757
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1758
+ let contents = {};
1759
+ contents = (0, import_smithy_client._json)(data);
1760
+ const response = {
1761
+ $metadata: deserializeMetadata(output),
1762
+ ...contents
1763
+ };
1764
+ return response;
1765
+ }, "de_ListAccountSettingsCommand");
1766
+ var de_ListAttributesCommand = /* @__PURE__ */ __name(async (output, context) => {
1767
+ if (output.statusCode >= 300) {
1768
+ return de_CommandError(output, context);
1769
+ }
1770
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1771
+ let contents = {};
1772
+ contents = (0, import_smithy_client._json)(data);
1773
+ const response = {
1774
+ $metadata: deserializeMetadata(output),
1775
+ ...contents
1776
+ };
1777
+ return response;
1778
+ }, "de_ListAttributesCommand");
1779
+ var de_ListClustersCommand = /* @__PURE__ */ __name(async (output, context) => {
1780
+ if (output.statusCode >= 300) {
1781
+ return de_CommandError(output, context);
1782
+ }
1783
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1784
+ let contents = {};
1785
+ contents = (0, import_smithy_client._json)(data);
1786
+ const response = {
1787
+ $metadata: deserializeMetadata(output),
1788
+ ...contents
1789
+ };
1790
+ return response;
1791
+ }, "de_ListClustersCommand");
1792
+ var de_ListContainerInstancesCommand = /* @__PURE__ */ __name(async (output, context) => {
1793
+ if (output.statusCode >= 300) {
1794
+ return de_CommandError(output, context);
1795
+ }
1796
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1797
+ let contents = {};
1798
+ contents = (0, import_smithy_client._json)(data);
1799
+ const response = {
1800
+ $metadata: deserializeMetadata(output),
1801
+ ...contents
1802
+ };
1803
+ return response;
1804
+ }, "de_ListContainerInstancesCommand");
1805
+ var de_ListServicesCommand = /* @__PURE__ */ __name(async (output, context) => {
1806
+ if (output.statusCode >= 300) {
1807
+ return de_CommandError(output, context);
1808
+ }
1809
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1810
+ let contents = {};
1811
+ contents = (0, import_smithy_client._json)(data);
1812
+ const response = {
1813
+ $metadata: deserializeMetadata(output),
1814
+ ...contents
1815
+ };
1816
+ return response;
1817
+ }, "de_ListServicesCommand");
1818
+ var de_ListServicesByNamespaceCommand = /* @__PURE__ */ __name(async (output, context) => {
1819
+ if (output.statusCode >= 300) {
1820
+ return de_CommandError(output, context);
1821
+ }
1822
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1823
+ let contents = {};
1824
+ contents = (0, import_smithy_client._json)(data);
1825
+ const response = {
1826
+ $metadata: deserializeMetadata(output),
1827
+ ...contents
1828
+ };
1829
+ return response;
1830
+ }, "de_ListServicesByNamespaceCommand");
1831
+ var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
1832
+ if (output.statusCode >= 300) {
1833
+ return de_CommandError(output, context);
1834
+ }
1835
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1836
+ let contents = {};
1837
+ contents = (0, import_smithy_client._json)(data);
1838
+ const response = {
1839
+ $metadata: deserializeMetadata(output),
1840
+ ...contents
1841
+ };
1842
+ return response;
1843
+ }, "de_ListTagsForResourceCommand");
1844
+ var de_ListTaskDefinitionFamiliesCommand = /* @__PURE__ */ __name(async (output, context) => {
1845
+ if (output.statusCode >= 300) {
1846
+ return de_CommandError(output, context);
1847
+ }
1848
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1849
+ let contents = {};
1850
+ contents = (0, import_smithy_client._json)(data);
1851
+ const response = {
1852
+ $metadata: deserializeMetadata(output),
1853
+ ...contents
1854
+ };
1855
+ return response;
1856
+ }, "de_ListTaskDefinitionFamiliesCommand");
1857
+ var de_ListTaskDefinitionsCommand = /* @__PURE__ */ __name(async (output, context) => {
1858
+ if (output.statusCode >= 300) {
1859
+ return de_CommandError(output, context);
1860
+ }
1861
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1862
+ let contents = {};
1863
+ contents = (0, import_smithy_client._json)(data);
1864
+ const response = {
1865
+ $metadata: deserializeMetadata(output),
1866
+ ...contents
1867
+ };
1868
+ return response;
1869
+ }, "de_ListTaskDefinitionsCommand");
1870
+ var de_ListTasksCommand = /* @__PURE__ */ __name(async (output, context) => {
1871
+ if (output.statusCode >= 300) {
1872
+ return de_CommandError(output, context);
1873
+ }
1874
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1875
+ let contents = {};
1876
+ contents = (0, import_smithy_client._json)(data);
1877
+ const response = {
1878
+ $metadata: deserializeMetadata(output),
1879
+ ...contents
1880
+ };
1881
+ return response;
1882
+ }, "de_ListTasksCommand");
1883
+ var de_PutAccountSettingCommand = /* @__PURE__ */ __name(async (output, context) => {
1884
+ if (output.statusCode >= 300) {
1885
+ return de_CommandError(output, context);
1886
+ }
1887
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1888
+ let contents = {};
1889
+ contents = (0, import_smithy_client._json)(data);
1890
+ const response = {
1891
+ $metadata: deserializeMetadata(output),
1892
+ ...contents
1893
+ };
1894
+ return response;
1895
+ }, "de_PutAccountSettingCommand");
1896
+ var de_PutAccountSettingDefaultCommand = /* @__PURE__ */ __name(async (output, context) => {
1897
+ if (output.statusCode >= 300) {
1898
+ return de_CommandError(output, context);
1899
+ }
1900
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1901
+ let contents = {};
1902
+ contents = (0, import_smithy_client._json)(data);
1903
+ const response = {
1904
+ $metadata: deserializeMetadata(output),
1905
+ ...contents
1906
+ };
1907
+ return response;
1908
+ }, "de_PutAccountSettingDefaultCommand");
1909
+ var de_PutAttributesCommand = /* @__PURE__ */ __name(async (output, context) => {
1910
+ if (output.statusCode >= 300) {
1911
+ return de_CommandError(output, context);
1912
+ }
1913
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1914
+ let contents = {};
1915
+ contents = (0, import_smithy_client._json)(data);
1916
+ const response = {
1917
+ $metadata: deserializeMetadata(output),
1918
+ ...contents
1919
+ };
1920
+ return response;
1921
+ }, "de_PutAttributesCommand");
1922
+ var de_PutClusterCapacityProvidersCommand = /* @__PURE__ */ __name(async (output, context) => {
1923
+ if (output.statusCode >= 300) {
1924
+ return de_CommandError(output, context);
1925
+ }
1926
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1927
+ let contents = {};
1928
+ contents = (0, import_smithy_client._json)(data);
1929
+ const response = {
1930
+ $metadata: deserializeMetadata(output),
1931
+ ...contents
1932
+ };
1933
+ return response;
1934
+ }, "de_PutClusterCapacityProvidersCommand");
1935
+ var de_RegisterContainerInstanceCommand = /* @__PURE__ */ __name(async (output, context) => {
1936
+ if (output.statusCode >= 300) {
1937
+ return de_CommandError(output, context);
1938
+ }
1939
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1940
+ let contents = {};
1941
+ contents = de_RegisterContainerInstanceResponse(data, context);
1942
+ const response = {
1943
+ $metadata: deserializeMetadata(output),
1944
+ ...contents
1945
+ };
1946
+ return response;
1947
+ }, "de_RegisterContainerInstanceCommand");
1948
+ var de_RegisterTaskDefinitionCommand = /* @__PURE__ */ __name(async (output, context) => {
1949
+ if (output.statusCode >= 300) {
1950
+ return de_CommandError(output, context);
1951
+ }
1952
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1953
+ let contents = {};
1954
+ contents = de_RegisterTaskDefinitionResponse(data, context);
1955
+ const response = {
1956
+ $metadata: deserializeMetadata(output),
1957
+ ...contents
1958
+ };
1959
+ return response;
1960
+ }, "de_RegisterTaskDefinitionCommand");
1961
+ var de_RunTaskCommand = /* @__PURE__ */ __name(async (output, context) => {
1962
+ if (output.statusCode >= 300) {
1963
+ return de_CommandError(output, context);
1964
+ }
1965
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1966
+ let contents = {};
1967
+ contents = de_RunTaskResponse(data, context);
1968
+ const response = {
1969
+ $metadata: deserializeMetadata(output),
1970
+ ...contents
1971
+ };
1972
+ return response;
1973
+ }, "de_RunTaskCommand");
1974
+ var de_StartTaskCommand = /* @__PURE__ */ __name(async (output, context) => {
1975
+ if (output.statusCode >= 300) {
1976
+ return de_CommandError(output, context);
1977
+ }
1978
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1979
+ let contents = {};
1980
+ contents = de_StartTaskResponse(data, context);
1981
+ const response = {
1982
+ $metadata: deserializeMetadata(output),
1983
+ ...contents
1984
+ };
1985
+ return response;
1986
+ }, "de_StartTaskCommand");
1987
+ var de_StopTaskCommand = /* @__PURE__ */ __name(async (output, context) => {
1988
+ if (output.statusCode >= 300) {
1989
+ return de_CommandError(output, context);
1990
+ }
1991
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1992
+ let contents = {};
1993
+ contents = de_StopTaskResponse(data, context);
1994
+ const response = {
1995
+ $metadata: deserializeMetadata(output),
1996
+ ...contents
1997
+ };
1998
+ return response;
1999
+ }, "de_StopTaskCommand");
2000
+ var de_SubmitAttachmentStateChangesCommand = /* @__PURE__ */ __name(async (output, context) => {
2001
+ if (output.statusCode >= 300) {
2002
+ return de_CommandError(output, context);
2003
+ }
2004
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2005
+ let contents = {};
2006
+ contents = (0, import_smithy_client._json)(data);
2007
+ const response = {
2008
+ $metadata: deserializeMetadata(output),
2009
+ ...contents
2010
+ };
2011
+ return response;
2012
+ }, "de_SubmitAttachmentStateChangesCommand");
2013
+ var de_SubmitContainerStateChangeCommand = /* @__PURE__ */ __name(async (output, context) => {
2014
+ if (output.statusCode >= 300) {
2015
+ return de_CommandError(output, context);
2016
+ }
2017
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2018
+ let contents = {};
2019
+ contents = (0, import_smithy_client._json)(data);
2020
+ const response = {
2021
+ $metadata: deserializeMetadata(output),
2022
+ ...contents
2023
+ };
2024
+ return response;
2025
+ }, "de_SubmitContainerStateChangeCommand");
2026
+ var de_SubmitTaskStateChangeCommand = /* @__PURE__ */ __name(async (output, context) => {
2027
+ if (output.statusCode >= 300) {
2028
+ return de_CommandError(output, context);
2029
+ }
2030
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2031
+ let contents = {};
2032
+ contents = (0, import_smithy_client._json)(data);
2033
+ const response = {
2034
+ $metadata: deserializeMetadata(output),
2035
+ ...contents
2036
+ };
2037
+ return response;
2038
+ }, "de_SubmitTaskStateChangeCommand");
2039
+ var de_TagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
2040
+ if (output.statusCode >= 300) {
2041
+ return de_CommandError(output, context);
2042
+ }
2043
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2044
+ let contents = {};
2045
+ contents = (0, import_smithy_client._json)(data);
2046
+ const response = {
2047
+ $metadata: deserializeMetadata(output),
2048
+ ...contents
2049
+ };
2050
+ return response;
2051
+ }, "de_TagResourceCommand");
2052
+ var de_UntagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
2053
+ if (output.statusCode >= 300) {
2054
+ return de_CommandError(output, context);
2055
+ }
2056
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2057
+ let contents = {};
2058
+ contents = (0, import_smithy_client._json)(data);
2059
+ const response = {
2060
+ $metadata: deserializeMetadata(output),
2061
+ ...contents
2062
+ };
2063
+ return response;
2064
+ }, "de_UntagResourceCommand");
2065
+ var de_UpdateCapacityProviderCommand = /* @__PURE__ */ __name(async (output, context) => {
2066
+ if (output.statusCode >= 300) {
2067
+ return de_CommandError(output, context);
2068
+ }
2069
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2070
+ let contents = {};
2071
+ contents = (0, import_smithy_client._json)(data);
2072
+ const response = {
2073
+ $metadata: deserializeMetadata(output),
2074
+ ...contents
2075
+ };
2076
+ return response;
2077
+ }, "de_UpdateCapacityProviderCommand");
2078
+ var de_UpdateClusterCommand = /* @__PURE__ */ __name(async (output, context) => {
2079
+ if (output.statusCode >= 300) {
2080
+ return de_CommandError(output, context);
2081
+ }
2082
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2083
+ let contents = {};
2084
+ contents = (0, import_smithy_client._json)(data);
2085
+ const response = {
2086
+ $metadata: deserializeMetadata(output),
2087
+ ...contents
2088
+ };
2089
+ return response;
2090
+ }, "de_UpdateClusterCommand");
2091
+ var de_UpdateClusterSettingsCommand = /* @__PURE__ */ __name(async (output, context) => {
2092
+ if (output.statusCode >= 300) {
2093
+ return de_CommandError(output, context);
2094
+ }
2095
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2096
+ let contents = {};
2097
+ contents = (0, import_smithy_client._json)(data);
2098
+ const response = {
2099
+ $metadata: deserializeMetadata(output),
2100
+ ...contents
2101
+ };
2102
+ return response;
2103
+ }, "de_UpdateClusterSettingsCommand");
2104
+ var de_UpdateContainerAgentCommand = /* @__PURE__ */ __name(async (output, context) => {
2105
+ if (output.statusCode >= 300) {
2106
+ return de_CommandError(output, context);
2107
+ }
2108
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2109
+ let contents = {};
2110
+ contents = de_UpdateContainerAgentResponse(data, context);
2111
+ const response = {
2112
+ $metadata: deserializeMetadata(output),
2113
+ ...contents
2114
+ };
2115
+ return response;
2116
+ }, "de_UpdateContainerAgentCommand");
2117
+ var de_UpdateContainerInstancesStateCommand = /* @__PURE__ */ __name(async (output, context) => {
2118
+ if (output.statusCode >= 300) {
2119
+ return de_CommandError(output, context);
2120
+ }
2121
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2122
+ let contents = {};
2123
+ contents = de_UpdateContainerInstancesStateResponse(data, context);
2124
+ const response = {
2125
+ $metadata: deserializeMetadata(output),
2126
+ ...contents
2127
+ };
2128
+ return response;
2129
+ }, "de_UpdateContainerInstancesStateCommand");
2130
+ var de_UpdateServiceCommand = /* @__PURE__ */ __name(async (output, context) => {
2131
+ if (output.statusCode >= 300) {
2132
+ return de_CommandError(output, context);
2133
+ }
2134
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2135
+ let contents = {};
2136
+ contents = de_UpdateServiceResponse(data, context);
2137
+ const response = {
2138
+ $metadata: deserializeMetadata(output),
2139
+ ...contents
2140
+ };
2141
+ return response;
2142
+ }, "de_UpdateServiceCommand");
2143
+ var de_UpdateServicePrimaryTaskSetCommand = /* @__PURE__ */ __name(async (output, context) => {
2144
+ if (output.statusCode >= 300) {
2145
+ return de_CommandError(output, context);
2146
+ }
2147
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2148
+ let contents = {};
2149
+ contents = de_UpdateServicePrimaryTaskSetResponse(data, context);
2150
+ const response = {
2151
+ $metadata: deserializeMetadata(output),
2152
+ ...contents
2153
+ };
2154
+ return response;
2155
+ }, "de_UpdateServicePrimaryTaskSetCommand");
2156
+ var de_UpdateTaskProtectionCommand = /* @__PURE__ */ __name(async (output, context) => {
2157
+ if (output.statusCode >= 300) {
2158
+ return de_CommandError(output, context);
2159
+ }
2160
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2161
+ let contents = {};
2162
+ contents = de_UpdateTaskProtectionResponse(data, context);
2163
+ const response = {
2164
+ $metadata: deserializeMetadata(output),
2165
+ ...contents
2166
+ };
2167
+ return response;
2168
+ }, "de_UpdateTaskProtectionCommand");
2169
+ var de_UpdateTaskSetCommand = /* @__PURE__ */ __name(async (output, context) => {
2170
+ if (output.statusCode >= 300) {
2171
+ return de_CommandError(output, context);
2172
+ }
2173
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2174
+ let contents = {};
2175
+ contents = de_UpdateTaskSetResponse(data, context);
2176
+ const response = {
2177
+ $metadata: deserializeMetadata(output),
2178
+ ...contents
2179
+ };
2180
+ return response;
2181
+ }, "de_UpdateTaskSetCommand");
2182
+ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
2183
+ const parsedOutput = {
2184
+ ...output,
2185
+ body: await (0, import_core2.parseJsonErrorBody)(output.body, context)
2186
+ };
2187
+ const errorCode = (0, import_core2.loadRestJsonErrorCode)(output, parsedOutput.body);
2188
+ switch (errorCode) {
2189
+ case "ClientException":
2190
+ case "com.amazonaws.ecs#ClientException":
2191
+ throw await de_ClientExceptionRes(parsedOutput, context);
2192
+ case "InvalidParameterException":
2193
+ case "com.amazonaws.ecs#InvalidParameterException":
2194
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
2195
+ case "LimitExceededException":
2196
+ case "com.amazonaws.ecs#LimitExceededException":
2197
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
2198
+ case "ServerException":
2199
+ case "com.amazonaws.ecs#ServerException":
2200
+ throw await de_ServerExceptionRes(parsedOutput, context);
2201
+ case "UpdateInProgressException":
2202
+ case "com.amazonaws.ecs#UpdateInProgressException":
2203
+ throw await de_UpdateInProgressExceptionRes(parsedOutput, context);
2204
+ case "NamespaceNotFoundException":
2205
+ case "com.amazonaws.ecs#NamespaceNotFoundException":
2206
+ throw await de_NamespaceNotFoundExceptionRes(parsedOutput, context);
2207
+ case "AccessDeniedException":
2208
+ case "com.amazonaws.ecs#AccessDeniedException":
2209
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
2210
+ case "ClusterNotFoundException":
2211
+ case "com.amazonaws.ecs#ClusterNotFoundException":
2212
+ throw await de_ClusterNotFoundExceptionRes(parsedOutput, context);
2213
+ case "PlatformTaskDefinitionIncompatibilityException":
2214
+ case "com.amazonaws.ecs#PlatformTaskDefinitionIncompatibilityException":
2215
+ throw await de_PlatformTaskDefinitionIncompatibilityExceptionRes(parsedOutput, context);
2216
+ case "PlatformUnknownException":
2217
+ case "com.amazonaws.ecs#PlatformUnknownException":
2218
+ throw await de_PlatformUnknownExceptionRes(parsedOutput, context);
2219
+ case "UnsupportedFeatureException":
2220
+ case "com.amazonaws.ecs#UnsupportedFeatureException":
2221
+ throw await de_UnsupportedFeatureExceptionRes(parsedOutput, context);
2222
+ case "ServiceNotActiveException":
2223
+ case "com.amazonaws.ecs#ServiceNotActiveException":
2224
+ throw await de_ServiceNotActiveExceptionRes(parsedOutput, context);
2225
+ case "ServiceNotFoundException":
2226
+ case "com.amazonaws.ecs#ServiceNotFoundException":
2227
+ throw await de_ServiceNotFoundExceptionRes(parsedOutput, context);
2228
+ case "TargetNotFoundException":
2229
+ case "com.amazonaws.ecs#TargetNotFoundException":
2230
+ throw await de_TargetNotFoundExceptionRes(parsedOutput, context);
2231
+ case "ClusterContainsContainerInstancesException":
2232
+ case "com.amazonaws.ecs#ClusterContainsContainerInstancesException":
2233
+ throw await de_ClusterContainsContainerInstancesExceptionRes(parsedOutput, context);
2234
+ case "ClusterContainsServicesException":
2235
+ case "com.amazonaws.ecs#ClusterContainsServicesException":
2236
+ throw await de_ClusterContainsServicesExceptionRes(parsedOutput, context);
2237
+ case "ClusterContainsTasksException":
2238
+ case "com.amazonaws.ecs#ClusterContainsTasksException":
2239
+ throw await de_ClusterContainsTasksExceptionRes(parsedOutput, context);
2240
+ case "TaskSetNotFoundException":
2241
+ case "com.amazonaws.ecs#TaskSetNotFoundException":
2242
+ throw await de_TaskSetNotFoundExceptionRes(parsedOutput, context);
2243
+ case "TargetNotConnectedException":
2244
+ case "com.amazonaws.ecs#TargetNotConnectedException":
2245
+ throw await de_TargetNotConnectedExceptionRes(parsedOutput, context);
2246
+ case "ResourceNotFoundException":
2247
+ case "com.amazonaws.ecs#ResourceNotFoundException":
2248
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
2249
+ case "AttributeLimitExceededException":
2250
+ case "com.amazonaws.ecs#AttributeLimitExceededException":
2251
+ throw await de_AttributeLimitExceededExceptionRes(parsedOutput, context);
2252
+ case "ResourceInUseException":
2253
+ case "com.amazonaws.ecs#ResourceInUseException":
2254
+ throw await de_ResourceInUseExceptionRes(parsedOutput, context);
2255
+ case "BlockedException":
2256
+ case "com.amazonaws.ecs#BlockedException":
2257
+ throw await de_BlockedExceptionRes(parsedOutput, context);
2258
+ case "ConflictException":
2259
+ case "com.amazonaws.ecs#ConflictException":
2260
+ throw await de_ConflictExceptionRes(parsedOutput, context);
2261
+ case "MissingVersionException":
2262
+ case "com.amazonaws.ecs#MissingVersionException":
2263
+ throw await de_MissingVersionExceptionRes(parsedOutput, context);
2264
+ case "NoUpdateAvailableException":
2265
+ case "com.amazonaws.ecs#NoUpdateAvailableException":
2266
+ throw await de_NoUpdateAvailableExceptionRes(parsedOutput, context);
2267
+ default:
2268
+ const parsedBody = parsedOutput.body;
2269
+ return throwDefaultError({
2270
+ output,
2271
+ parsedBody,
2272
+ errorCode
2273
+ });
2274
+ }
2275
+ }, "de_CommandError");
2276
+ var de_AccessDeniedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2277
+ const body = parsedOutput.body;
2278
+ const deserialized = (0, import_smithy_client._json)(body);
2279
+ const exception = new AccessDeniedException({
2280
+ $metadata: deserializeMetadata(parsedOutput),
2281
+ ...deserialized
2282
+ });
2283
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2284
+ }, "de_AccessDeniedExceptionRes");
2285
+ var de_AttributeLimitExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2286
+ const body = parsedOutput.body;
2287
+ const deserialized = (0, import_smithy_client._json)(body);
2288
+ const exception = new AttributeLimitExceededException({
2289
+ $metadata: deserializeMetadata(parsedOutput),
2290
+ ...deserialized
2291
+ });
2292
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2293
+ }, "de_AttributeLimitExceededExceptionRes");
2294
+ var de_BlockedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2295
+ const body = parsedOutput.body;
2296
+ const deserialized = (0, import_smithy_client._json)(body);
2297
+ const exception = new BlockedException({
2298
+ $metadata: deserializeMetadata(parsedOutput),
2299
+ ...deserialized
2300
+ });
2301
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2302
+ }, "de_BlockedExceptionRes");
2303
+ var de_ClientExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2304
+ const body = parsedOutput.body;
2305
+ const deserialized = (0, import_smithy_client._json)(body);
2306
+ const exception = new ClientException({
2307
+ $metadata: deserializeMetadata(parsedOutput),
2308
+ ...deserialized
2309
+ });
2310
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2311
+ }, "de_ClientExceptionRes");
2312
+ var de_ClusterContainsContainerInstancesExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2313
+ const body = parsedOutput.body;
2314
+ const deserialized = (0, import_smithy_client._json)(body);
2315
+ const exception = new ClusterContainsContainerInstancesException({
2316
+ $metadata: deserializeMetadata(parsedOutput),
2317
+ ...deserialized
2318
+ });
2319
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2320
+ }, "de_ClusterContainsContainerInstancesExceptionRes");
2321
+ var de_ClusterContainsServicesExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2322
+ const body = parsedOutput.body;
2323
+ const deserialized = (0, import_smithy_client._json)(body);
2324
+ const exception = new ClusterContainsServicesException({
2325
+ $metadata: deserializeMetadata(parsedOutput),
2326
+ ...deserialized
2327
+ });
2328
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2329
+ }, "de_ClusterContainsServicesExceptionRes");
2330
+ var de_ClusterContainsTasksExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2331
+ const body = parsedOutput.body;
2332
+ const deserialized = (0, import_smithy_client._json)(body);
2333
+ const exception = new ClusterContainsTasksException({
2334
+ $metadata: deserializeMetadata(parsedOutput),
2335
+ ...deserialized
2336
+ });
2337
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2338
+ }, "de_ClusterContainsTasksExceptionRes");
2339
+ var de_ClusterNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2340
+ const body = parsedOutput.body;
2341
+ const deserialized = (0, import_smithy_client._json)(body);
2342
+ const exception = new ClusterNotFoundException({
2343
+ $metadata: deserializeMetadata(parsedOutput),
2344
+ ...deserialized
2345
+ });
2346
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2347
+ }, "de_ClusterNotFoundExceptionRes");
2348
+ var de_ConflictExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2349
+ const body = parsedOutput.body;
2350
+ const deserialized = (0, import_smithy_client._json)(body);
2351
+ const exception = new ConflictException({
2352
+ $metadata: deserializeMetadata(parsedOutput),
2353
+ ...deserialized
2354
+ });
2355
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2356
+ }, "de_ConflictExceptionRes");
2357
+ var de_InvalidParameterExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2358
+ const body = parsedOutput.body;
2359
+ const deserialized = (0, import_smithy_client._json)(body);
2360
+ const exception = new InvalidParameterException({
2361
+ $metadata: deserializeMetadata(parsedOutput),
2362
+ ...deserialized
2363
+ });
2364
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2365
+ }, "de_InvalidParameterExceptionRes");
2366
+ var de_LimitExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2367
+ const body = parsedOutput.body;
2368
+ const deserialized = (0, import_smithy_client._json)(body);
2369
+ const exception = new LimitExceededException({
2370
+ $metadata: deserializeMetadata(parsedOutput),
2371
+ ...deserialized
2372
+ });
2373
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2374
+ }, "de_LimitExceededExceptionRes");
2375
+ var de_MissingVersionExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2376
+ const body = parsedOutput.body;
2377
+ const deserialized = (0, import_smithy_client._json)(body);
2378
+ const exception = new MissingVersionException({
2379
+ $metadata: deserializeMetadata(parsedOutput),
2380
+ ...deserialized
2381
+ });
2382
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2383
+ }, "de_MissingVersionExceptionRes");
2384
+ var de_NamespaceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2385
+ const body = parsedOutput.body;
2386
+ const deserialized = (0, import_smithy_client._json)(body);
2387
+ const exception = new NamespaceNotFoundException({
2388
+ $metadata: deserializeMetadata(parsedOutput),
2389
+ ...deserialized
2390
+ });
2391
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2392
+ }, "de_NamespaceNotFoundExceptionRes");
2393
+ var de_NoUpdateAvailableExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2394
+ const body = parsedOutput.body;
2395
+ const deserialized = (0, import_smithy_client._json)(body);
2396
+ const exception = new NoUpdateAvailableException({
2397
+ $metadata: deserializeMetadata(parsedOutput),
2398
+ ...deserialized
2399
+ });
2400
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2401
+ }, "de_NoUpdateAvailableExceptionRes");
2402
+ var de_PlatformTaskDefinitionIncompatibilityExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2403
+ const body = parsedOutput.body;
2404
+ const deserialized = (0, import_smithy_client._json)(body);
2405
+ const exception = new PlatformTaskDefinitionIncompatibilityException({
2406
+ $metadata: deserializeMetadata(parsedOutput),
2407
+ ...deserialized
2408
+ });
2409
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2410
+ }, "de_PlatformTaskDefinitionIncompatibilityExceptionRes");
2411
+ var de_PlatformUnknownExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2412
+ const body = parsedOutput.body;
2413
+ const deserialized = (0, import_smithy_client._json)(body);
2414
+ const exception = new PlatformUnknownException({
2415
+ $metadata: deserializeMetadata(parsedOutput),
2416
+ ...deserialized
2417
+ });
2418
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2419
+ }, "de_PlatformUnknownExceptionRes");
2420
+ var de_ResourceInUseExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2421
+ const body = parsedOutput.body;
2422
+ const deserialized = (0, import_smithy_client._json)(body);
2423
+ const exception = new ResourceInUseException({
2424
+ $metadata: deserializeMetadata(parsedOutput),
2425
+ ...deserialized
2426
+ });
2427
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2428
+ }, "de_ResourceInUseExceptionRes");
2429
+ var de_ResourceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2430
+ const body = parsedOutput.body;
2431
+ const deserialized = (0, import_smithy_client._json)(body);
2432
+ const exception = new ResourceNotFoundException({
2433
+ $metadata: deserializeMetadata(parsedOutput),
2434
+ ...deserialized
2435
+ });
2436
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2437
+ }, "de_ResourceNotFoundExceptionRes");
2438
+ var de_ServerExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2439
+ const body = parsedOutput.body;
2440
+ const deserialized = (0, import_smithy_client._json)(body);
2441
+ const exception = new ServerException({
2442
+ $metadata: deserializeMetadata(parsedOutput),
2443
+ ...deserialized
2444
+ });
2445
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2446
+ }, "de_ServerExceptionRes");
2447
+ var de_ServiceNotActiveExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2448
+ const body = parsedOutput.body;
2449
+ const deserialized = (0, import_smithy_client._json)(body);
2450
+ const exception = new ServiceNotActiveException({
2451
+ $metadata: deserializeMetadata(parsedOutput),
2452
+ ...deserialized
2453
+ });
2454
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2455
+ }, "de_ServiceNotActiveExceptionRes");
2456
+ var de_ServiceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2457
+ const body = parsedOutput.body;
2458
+ const deserialized = (0, import_smithy_client._json)(body);
2459
+ const exception = new ServiceNotFoundException({
2460
+ $metadata: deserializeMetadata(parsedOutput),
2461
+ ...deserialized
2462
+ });
2463
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2464
+ }, "de_ServiceNotFoundExceptionRes");
2465
+ var de_TargetNotConnectedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2466
+ const body = parsedOutput.body;
2467
+ const deserialized = (0, import_smithy_client._json)(body);
2468
+ const exception = new TargetNotConnectedException({
2469
+ $metadata: deserializeMetadata(parsedOutput),
2470
+ ...deserialized
2471
+ });
2472
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2473
+ }, "de_TargetNotConnectedExceptionRes");
2474
+ var de_TargetNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2475
+ const body = parsedOutput.body;
2476
+ const deserialized = (0, import_smithy_client._json)(body);
2477
+ const exception = new TargetNotFoundException({
2478
+ $metadata: deserializeMetadata(parsedOutput),
2479
+ ...deserialized
2480
+ });
2481
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2482
+ }, "de_TargetNotFoundExceptionRes");
2483
+ var de_TaskSetNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2484
+ const body = parsedOutput.body;
2485
+ const deserialized = (0, import_smithy_client._json)(body);
2486
+ const exception = new TaskSetNotFoundException({
2487
+ $metadata: deserializeMetadata(parsedOutput),
2488
+ ...deserialized
2489
+ });
2490
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2491
+ }, "de_TaskSetNotFoundExceptionRes");
2492
+ var de_UnsupportedFeatureExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2493
+ const body = parsedOutput.body;
2494
+ const deserialized = (0, import_smithy_client._json)(body);
2495
+ const exception = new UnsupportedFeatureException({
2496
+ $metadata: deserializeMetadata(parsedOutput),
2497
+ ...deserialized
2498
+ });
2499
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2500
+ }, "de_UnsupportedFeatureExceptionRes");
2501
+ var de_UpdateInProgressExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2502
+ const body = parsedOutput.body;
2503
+ const deserialized = (0, import_smithy_client._json)(body);
2504
+ const exception = new UpdateInProgressException({
2505
+ $metadata: deserializeMetadata(parsedOutput),
2506
+ ...deserialized
2507
+ });
2508
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2509
+ }, "de_UpdateInProgressExceptionRes");
2510
+ var se_CreateTaskSetRequest = /* @__PURE__ */ __name((input, context) => {
2511
+ return (0, import_smithy_client.take)(input, {
2512
+ capacityProviderStrategy: import_smithy_client._json,
2513
+ clientToken: [],
2514
+ cluster: [],
2515
+ externalId: [],
2516
+ launchType: [],
2517
+ loadBalancers: import_smithy_client._json,
2518
+ networkConfiguration: import_smithy_client._json,
2519
+ platformVersion: [],
2520
+ scale: (_) => se_Scale(_, context),
2521
+ service: [],
2522
+ serviceRegistries: import_smithy_client._json,
2523
+ tags: import_smithy_client._json,
2524
+ taskDefinition: []
2525
+ });
2526
+ }, "se_CreateTaskSetRequest");
2527
+ var se_RegisterContainerInstanceRequest = /* @__PURE__ */ __name((input, context) => {
2528
+ return (0, import_smithy_client.take)(input, {
2529
+ attributes: import_smithy_client._json,
2530
+ cluster: [],
2531
+ containerInstanceArn: [],
2532
+ instanceIdentityDocument: [],
2533
+ instanceIdentityDocumentSignature: [],
2534
+ platformDevices: import_smithy_client._json,
2535
+ tags: import_smithy_client._json,
2536
+ totalResources: (_) => se_Resources(_, context),
2537
+ versionInfo: import_smithy_client._json
2538
+ });
2539
+ }, "se_RegisterContainerInstanceRequest");
2540
+ var se_Resource = /* @__PURE__ */ __name((input, context) => {
2541
+ return (0, import_smithy_client.take)(input, {
2542
+ doubleValue: import_smithy_client.serializeFloat,
2543
+ integerValue: [],
2544
+ longValue: [],
2545
+ name: [],
2546
+ stringSetValue: import_smithy_client._json,
2547
+ type: []
2548
+ });
2549
+ }, "se_Resource");
2550
+ var se_Resources = /* @__PURE__ */ __name((input, context) => {
2551
+ return input.filter((e) => e != null).map((entry) => {
2552
+ return se_Resource(entry, context);
2553
+ });
2554
+ }, "se_Resources");
2555
+ var se_RunTaskRequest = /* @__PURE__ */ __name((input, context) => {
2556
+ return (0, import_smithy_client.take)(input, {
2557
+ capacityProviderStrategy: import_smithy_client._json,
2558
+ clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
2559
+ cluster: [],
2560
+ count: [],
2561
+ enableECSManagedTags: [],
2562
+ enableExecuteCommand: [],
2563
+ group: [],
2564
+ launchType: [],
2565
+ networkConfiguration: import_smithy_client._json,
2566
+ overrides: import_smithy_client._json,
2567
+ placementConstraints: import_smithy_client._json,
2568
+ placementStrategy: import_smithy_client._json,
2569
+ platformVersion: [],
2570
+ propagateTags: [],
2571
+ referenceId: [],
2572
+ startedBy: [],
2573
+ tags: import_smithy_client._json,
2574
+ taskDefinition: [],
2575
+ volumeConfigurations: import_smithy_client._json
2576
+ });
2577
+ }, "se_RunTaskRequest");
2578
+ var se_Scale = /* @__PURE__ */ __name((input, context) => {
2579
+ return (0, import_smithy_client.take)(input, {
2580
+ unit: [],
2581
+ value: import_smithy_client.serializeFloat
2582
+ });
2583
+ }, "se_Scale");
2584
+ var se_SubmitTaskStateChangeRequest = /* @__PURE__ */ __name((input, context) => {
2585
+ return (0, import_smithy_client.take)(input, {
2586
+ attachments: import_smithy_client._json,
2587
+ cluster: [],
2588
+ containers: import_smithy_client._json,
2589
+ executionStoppedAt: (_) => _.getTime() / 1e3,
2590
+ managedAgents: import_smithy_client._json,
2591
+ pullStartedAt: (_) => _.getTime() / 1e3,
2592
+ pullStoppedAt: (_) => _.getTime() / 1e3,
2593
+ reason: [],
2594
+ status: [],
2595
+ task: []
2596
+ });
2597
+ }, "se_SubmitTaskStateChangeRequest");
2598
+ var se_UpdateTaskSetRequest = /* @__PURE__ */ __name((input, context) => {
2599
+ return (0, import_smithy_client.take)(input, {
2600
+ cluster: [],
2601
+ scale: (_) => se_Scale(_, context),
2602
+ service: [],
2603
+ taskSet: []
2604
+ });
2605
+ }, "se_UpdateTaskSetRequest");
2606
+ var de_Container = /* @__PURE__ */ __name((output, context) => {
2607
+ return (0, import_smithy_client.take)(output, {
2608
+ containerArn: import_smithy_client.expectString,
2609
+ cpu: import_smithy_client.expectString,
2610
+ exitCode: import_smithy_client.expectInt32,
2611
+ gpuIds: import_smithy_client._json,
2612
+ healthStatus: import_smithy_client.expectString,
2613
+ image: import_smithy_client.expectString,
2614
+ imageDigest: import_smithy_client.expectString,
2615
+ lastStatus: import_smithy_client.expectString,
2616
+ managedAgents: (_) => de_ManagedAgents(_, context),
2617
+ memory: import_smithy_client.expectString,
2618
+ memoryReservation: import_smithy_client.expectString,
2619
+ name: import_smithy_client.expectString,
2620
+ networkBindings: import_smithy_client._json,
2621
+ networkInterfaces: import_smithy_client._json,
2622
+ reason: import_smithy_client.expectString,
2623
+ runtimeId: import_smithy_client.expectString,
2624
+ taskArn: import_smithy_client.expectString
2625
+ });
2626
+ }, "de_Container");
2627
+ var de_ContainerInstance = /* @__PURE__ */ __name((output, context) => {
2628
+ return (0, import_smithy_client.take)(output, {
2629
+ agentConnected: import_smithy_client.expectBoolean,
2630
+ agentUpdateStatus: import_smithy_client.expectString,
2631
+ attachments: import_smithy_client._json,
2632
+ attributes: import_smithy_client._json,
2633
+ capacityProviderName: import_smithy_client.expectString,
2634
+ containerInstanceArn: import_smithy_client.expectString,
2635
+ ec2InstanceId: import_smithy_client.expectString,
2636
+ healthStatus: (_) => de_ContainerInstanceHealthStatus(_, context),
2637
+ pendingTasksCount: import_smithy_client.expectInt32,
2638
+ registeredAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2639
+ registeredResources: (_) => de_Resources(_, context),
2640
+ remainingResources: (_) => de_Resources(_, context),
2641
+ runningTasksCount: import_smithy_client.expectInt32,
2642
+ status: import_smithy_client.expectString,
2643
+ statusReason: import_smithy_client.expectString,
2644
+ tags: import_smithy_client._json,
2645
+ version: import_smithy_client.expectLong,
2646
+ versionInfo: import_smithy_client._json
2647
+ });
2648
+ }, "de_ContainerInstance");
2649
+ var de_ContainerInstanceHealthStatus = /* @__PURE__ */ __name((output, context) => {
2650
+ return (0, import_smithy_client.take)(output, {
2651
+ details: (_) => de_InstanceHealthCheckResultList(_, context),
2652
+ overallStatus: import_smithy_client.expectString
2653
+ });
2654
+ }, "de_ContainerInstanceHealthStatus");
2655
+ var de_ContainerInstances = /* @__PURE__ */ __name((output, context) => {
2656
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2657
+ return de_ContainerInstance(entry, context);
2658
+ });
2659
+ return retVal;
2660
+ }, "de_ContainerInstances");
2661
+ var de_Containers = /* @__PURE__ */ __name((output, context) => {
2662
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2663
+ return de_Container(entry, context);
2664
+ });
2665
+ return retVal;
2666
+ }, "de_Containers");
2667
+ var de_CreateServiceResponse = /* @__PURE__ */ __name((output, context) => {
2668
+ return (0, import_smithy_client.take)(output, {
2669
+ service: (_) => de_Service(_, context)
2670
+ });
2671
+ }, "de_CreateServiceResponse");
2672
+ var de_CreateTaskSetResponse = /* @__PURE__ */ __name((output, context) => {
2673
+ return (0, import_smithy_client.take)(output, {
2674
+ taskSet: (_) => de_TaskSet(_, context)
2675
+ });
2676
+ }, "de_CreateTaskSetResponse");
2677
+ var de_DeleteServiceResponse = /* @__PURE__ */ __name((output, context) => {
2678
+ return (0, import_smithy_client.take)(output, {
2679
+ service: (_) => de_Service(_, context)
2680
+ });
2681
+ }, "de_DeleteServiceResponse");
2682
+ var de_DeleteTaskDefinitionsResponse = /* @__PURE__ */ __name((output, context) => {
2683
+ return (0, import_smithy_client.take)(output, {
2684
+ failures: import_smithy_client._json,
2685
+ taskDefinitions: (_) => de_TaskDefinitionList(_, context)
2686
+ });
2687
+ }, "de_DeleteTaskDefinitionsResponse");
2688
+ var de_DeleteTaskSetResponse = /* @__PURE__ */ __name((output, context) => {
2689
+ return (0, import_smithy_client.take)(output, {
2690
+ taskSet: (_) => de_TaskSet(_, context)
2691
+ });
2692
+ }, "de_DeleteTaskSetResponse");
2693
+ var de_Deployment = /* @__PURE__ */ __name((output, context) => {
2694
+ return (0, import_smithy_client.take)(output, {
2695
+ capacityProviderStrategy: import_smithy_client._json,
2696
+ createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2697
+ desiredCount: import_smithy_client.expectInt32,
2698
+ failedTasks: import_smithy_client.expectInt32,
2699
+ fargateEphemeralStorage: import_smithy_client._json,
2700
+ id: import_smithy_client.expectString,
2701
+ launchType: import_smithy_client.expectString,
2702
+ networkConfiguration: import_smithy_client._json,
2703
+ pendingCount: import_smithy_client.expectInt32,
2704
+ platformFamily: import_smithy_client.expectString,
2705
+ platformVersion: import_smithy_client.expectString,
2706
+ rolloutState: import_smithy_client.expectString,
2707
+ rolloutStateReason: import_smithy_client.expectString,
2708
+ runningCount: import_smithy_client.expectInt32,
2709
+ serviceConnectConfiguration: import_smithy_client._json,
2710
+ serviceConnectResources: import_smithy_client._json,
2711
+ status: import_smithy_client.expectString,
2712
+ taskDefinition: import_smithy_client.expectString,
2713
+ updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2714
+ volumeConfigurations: import_smithy_client._json
2715
+ });
2716
+ }, "de_Deployment");
2717
+ var de_Deployments = /* @__PURE__ */ __name((output, context) => {
2718
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2719
+ return de_Deployment(entry, context);
2720
+ });
2721
+ return retVal;
2722
+ }, "de_Deployments");
2723
+ var de_DeregisterContainerInstanceResponse = /* @__PURE__ */ __name((output, context) => {
2724
+ return (0, import_smithy_client.take)(output, {
2725
+ containerInstance: (_) => de_ContainerInstance(_, context)
2726
+ });
2727
+ }, "de_DeregisterContainerInstanceResponse");
2728
+ var de_DeregisterTaskDefinitionResponse = /* @__PURE__ */ __name((output, context) => {
2729
+ return (0, import_smithy_client.take)(output, {
2730
+ taskDefinition: (_) => de_TaskDefinition(_, context)
2731
+ });
2732
+ }, "de_DeregisterTaskDefinitionResponse");
2733
+ var de_DescribeContainerInstancesResponse = /* @__PURE__ */ __name((output, context) => {
2734
+ return (0, import_smithy_client.take)(output, {
2735
+ containerInstances: (_) => de_ContainerInstances(_, context),
2736
+ failures: import_smithy_client._json
2737
+ });
2738
+ }, "de_DescribeContainerInstancesResponse");
2739
+ var de_DescribeServicesResponse = /* @__PURE__ */ __name((output, context) => {
2740
+ return (0, import_smithy_client.take)(output, {
2741
+ failures: import_smithy_client._json,
2742
+ services: (_) => de_Services(_, context)
2743
+ });
2744
+ }, "de_DescribeServicesResponse");
2745
+ var de_DescribeTaskDefinitionResponse = /* @__PURE__ */ __name((output, context) => {
2746
+ return (0, import_smithy_client.take)(output, {
2747
+ tags: import_smithy_client._json,
2748
+ taskDefinition: (_) => de_TaskDefinition(_, context)
2749
+ });
2750
+ }, "de_DescribeTaskDefinitionResponse");
2751
+ var de_DescribeTaskSetsResponse = /* @__PURE__ */ __name((output, context) => {
2752
+ return (0, import_smithy_client.take)(output, {
2753
+ failures: import_smithy_client._json,
2754
+ taskSets: (_) => de_TaskSets(_, context)
2755
+ });
2756
+ }, "de_DescribeTaskSetsResponse");
2757
+ var de_DescribeTasksResponse = /* @__PURE__ */ __name((output, context) => {
2758
+ return (0, import_smithy_client.take)(output, {
2759
+ failures: import_smithy_client._json,
2760
+ tasks: (_) => de_Tasks(_, context)
2761
+ });
2762
+ }, "de_DescribeTasksResponse");
2763
+ var de_GetTaskProtectionResponse = /* @__PURE__ */ __name((output, context) => {
2764
+ return (0, import_smithy_client.take)(output, {
2765
+ failures: import_smithy_client._json,
2766
+ protectedTasks: (_) => de_ProtectedTasks(_, context)
2767
+ });
2768
+ }, "de_GetTaskProtectionResponse");
2769
+ var de_InstanceHealthCheckResult = /* @__PURE__ */ __name((output, context) => {
2770
+ return (0, import_smithy_client.take)(output, {
2771
+ lastStatusChange: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2772
+ lastUpdated: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2773
+ status: import_smithy_client.expectString,
2774
+ type: import_smithy_client.expectString
2775
+ });
2776
+ }, "de_InstanceHealthCheckResult");
2777
+ var de_InstanceHealthCheckResultList = /* @__PURE__ */ __name((output, context) => {
2778
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2779
+ return de_InstanceHealthCheckResult(entry, context);
2780
+ });
2781
+ return retVal;
2782
+ }, "de_InstanceHealthCheckResultList");
2783
+ var de_ManagedAgent = /* @__PURE__ */ __name((output, context) => {
2784
+ return (0, import_smithy_client.take)(output, {
2785
+ lastStartedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2786
+ lastStatus: import_smithy_client.expectString,
2787
+ name: import_smithy_client.expectString,
2788
+ reason: import_smithy_client.expectString
2789
+ });
2790
+ }, "de_ManagedAgent");
2791
+ var de_ManagedAgents = /* @__PURE__ */ __name((output, context) => {
2792
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2793
+ return de_ManagedAgent(entry, context);
2794
+ });
2795
+ return retVal;
2796
+ }, "de_ManagedAgents");
2797
+ var de_ProtectedTask = /* @__PURE__ */ __name((output, context) => {
2798
+ return (0, import_smithy_client.take)(output, {
2799
+ expirationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2800
+ protectionEnabled: import_smithy_client.expectBoolean,
2801
+ taskArn: import_smithy_client.expectString
2802
+ });
2803
+ }, "de_ProtectedTask");
2804
+ var de_ProtectedTasks = /* @__PURE__ */ __name((output, context) => {
2805
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2806
+ return de_ProtectedTask(entry, context);
2807
+ });
2808
+ return retVal;
2809
+ }, "de_ProtectedTasks");
2810
+ var de_RegisterContainerInstanceResponse = /* @__PURE__ */ __name((output, context) => {
2811
+ return (0, import_smithy_client.take)(output, {
2812
+ containerInstance: (_) => de_ContainerInstance(_, context)
2813
+ });
2814
+ }, "de_RegisterContainerInstanceResponse");
2815
+ var de_RegisterTaskDefinitionResponse = /* @__PURE__ */ __name((output, context) => {
2816
+ return (0, import_smithy_client.take)(output, {
2817
+ tags: import_smithy_client._json,
2818
+ taskDefinition: (_) => de_TaskDefinition(_, context)
2819
+ });
2820
+ }, "de_RegisterTaskDefinitionResponse");
2821
+ var de_Resource = /* @__PURE__ */ __name((output, context) => {
2822
+ return (0, import_smithy_client.take)(output, {
2823
+ doubleValue: import_smithy_client.limitedParseDouble,
2824
+ integerValue: import_smithy_client.expectInt32,
2825
+ longValue: import_smithy_client.expectLong,
2826
+ name: import_smithy_client.expectString,
2827
+ stringSetValue: import_smithy_client._json,
2828
+ type: import_smithy_client.expectString
2829
+ });
2830
+ }, "de_Resource");
2831
+ var de_Resources = /* @__PURE__ */ __name((output, context) => {
2832
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2833
+ return de_Resource(entry, context);
2834
+ });
2835
+ return retVal;
2836
+ }, "de_Resources");
2837
+ var de_RunTaskResponse = /* @__PURE__ */ __name((output, context) => {
2838
+ return (0, import_smithy_client.take)(output, {
2839
+ failures: import_smithy_client._json,
2840
+ tasks: (_) => de_Tasks(_, context)
2841
+ });
2842
+ }, "de_RunTaskResponse");
2843
+ var de_Scale = /* @__PURE__ */ __name((output, context) => {
2844
+ return (0, import_smithy_client.take)(output, {
2845
+ unit: import_smithy_client.expectString,
2846
+ value: import_smithy_client.limitedParseDouble
2847
+ });
2848
+ }, "de_Scale");
2849
+ var de_Service = /* @__PURE__ */ __name((output, context) => {
2850
+ return (0, import_smithy_client.take)(output, {
2851
+ capacityProviderStrategy: import_smithy_client._json,
2852
+ clusterArn: import_smithy_client.expectString,
2853
+ createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2854
+ createdBy: import_smithy_client.expectString,
2855
+ deploymentConfiguration: import_smithy_client._json,
2856
+ deploymentController: import_smithy_client._json,
2857
+ deployments: (_) => de_Deployments(_, context),
2858
+ desiredCount: import_smithy_client.expectInt32,
2859
+ enableECSManagedTags: import_smithy_client.expectBoolean,
2860
+ enableExecuteCommand: import_smithy_client.expectBoolean,
2861
+ events: (_) => de_ServiceEvents(_, context),
2862
+ healthCheckGracePeriodSeconds: import_smithy_client.expectInt32,
2863
+ launchType: import_smithy_client.expectString,
2864
+ loadBalancers: import_smithy_client._json,
2865
+ networkConfiguration: import_smithy_client._json,
2866
+ pendingCount: import_smithy_client.expectInt32,
2867
+ placementConstraints: import_smithy_client._json,
2868
+ placementStrategy: import_smithy_client._json,
2869
+ platformFamily: import_smithy_client.expectString,
2870
+ platformVersion: import_smithy_client.expectString,
2871
+ propagateTags: import_smithy_client.expectString,
2872
+ roleArn: import_smithy_client.expectString,
2873
+ runningCount: import_smithy_client.expectInt32,
2874
+ schedulingStrategy: import_smithy_client.expectString,
2875
+ serviceArn: import_smithy_client.expectString,
2876
+ serviceName: import_smithy_client.expectString,
2877
+ serviceRegistries: import_smithy_client._json,
2878
+ status: import_smithy_client.expectString,
2879
+ tags: import_smithy_client._json,
2880
+ taskDefinition: import_smithy_client.expectString,
2881
+ taskSets: (_) => de_TaskSets(_, context)
2882
+ });
2883
+ }, "de_Service");
2884
+ var de_ServiceEvent = /* @__PURE__ */ __name((output, context) => {
2885
+ return (0, import_smithy_client.take)(output, {
2886
+ createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2887
+ id: import_smithy_client.expectString,
2888
+ message: import_smithy_client.expectString
2889
+ });
2890
+ }, "de_ServiceEvent");
2891
+ var de_ServiceEvents = /* @__PURE__ */ __name((output, context) => {
2892
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2893
+ return de_ServiceEvent(entry, context);
2894
+ });
2895
+ return retVal;
2896
+ }, "de_ServiceEvents");
2897
+ var de_Services = /* @__PURE__ */ __name((output, context) => {
2898
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2899
+ return de_Service(entry, context);
2900
+ });
2901
+ return retVal;
2902
+ }, "de_Services");
2903
+ var de_StartTaskResponse = /* @__PURE__ */ __name((output, context) => {
2904
+ return (0, import_smithy_client.take)(output, {
2905
+ failures: import_smithy_client._json,
2906
+ tasks: (_) => de_Tasks(_, context)
2907
+ });
2908
+ }, "de_StartTaskResponse");
2909
+ var de_StopTaskResponse = /* @__PURE__ */ __name((output, context) => {
2910
+ return (0, import_smithy_client.take)(output, {
2911
+ task: (_) => de_Task(_, context)
2912
+ });
2913
+ }, "de_StopTaskResponse");
2914
+ var de_Task = /* @__PURE__ */ __name((output, context) => {
2915
+ return (0, import_smithy_client.take)(output, {
2916
+ attachments: import_smithy_client._json,
2917
+ attributes: import_smithy_client._json,
2918
+ availabilityZone: import_smithy_client.expectString,
2919
+ capacityProviderName: import_smithy_client.expectString,
2920
+ clusterArn: import_smithy_client.expectString,
2921
+ connectivity: import_smithy_client.expectString,
2922
+ connectivityAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2923
+ containerInstanceArn: import_smithy_client.expectString,
2924
+ containers: (_) => de_Containers(_, context),
2925
+ cpu: import_smithy_client.expectString,
2926
+ createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2927
+ desiredStatus: import_smithy_client.expectString,
2928
+ enableExecuteCommand: import_smithy_client.expectBoolean,
2929
+ ephemeralStorage: import_smithy_client._json,
2930
+ executionStoppedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2931
+ fargateEphemeralStorage: import_smithy_client._json,
2932
+ group: import_smithy_client.expectString,
2933
+ healthStatus: import_smithy_client.expectString,
2934
+ inferenceAccelerators: import_smithy_client._json,
2935
+ lastStatus: import_smithy_client.expectString,
2936
+ launchType: import_smithy_client.expectString,
2937
+ memory: import_smithy_client.expectString,
2938
+ overrides: import_smithy_client._json,
2939
+ platformFamily: import_smithy_client.expectString,
2940
+ platformVersion: import_smithy_client.expectString,
2941
+ pullStartedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2942
+ pullStoppedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2943
+ startedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2944
+ startedBy: import_smithy_client.expectString,
2945
+ stopCode: import_smithy_client.expectString,
2946
+ stoppedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2947
+ stoppedReason: import_smithy_client.expectString,
2948
+ stoppingAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2949
+ tags: import_smithy_client._json,
2950
+ taskArn: import_smithy_client.expectString,
2951
+ taskDefinitionArn: import_smithy_client.expectString,
2952
+ version: import_smithy_client.expectLong
2953
+ });
2954
+ }, "de_Task");
2955
+ var de_TaskDefinition = /* @__PURE__ */ __name((output, context) => {
2956
+ return (0, import_smithy_client.take)(output, {
2957
+ compatibilities: import_smithy_client._json,
2958
+ containerDefinitions: import_smithy_client._json,
2959
+ cpu: import_smithy_client.expectString,
2960
+ deregisteredAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2961
+ ephemeralStorage: import_smithy_client._json,
2962
+ executionRoleArn: import_smithy_client.expectString,
2963
+ family: import_smithy_client.expectString,
2964
+ inferenceAccelerators: import_smithy_client._json,
2965
+ ipcMode: import_smithy_client.expectString,
2966
+ memory: import_smithy_client.expectString,
2967
+ networkMode: import_smithy_client.expectString,
2968
+ pidMode: import_smithy_client.expectString,
2969
+ placementConstraints: import_smithy_client._json,
2970
+ proxyConfiguration: import_smithy_client._json,
2971
+ registeredAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
2972
+ registeredBy: import_smithy_client.expectString,
2973
+ requiresAttributes: import_smithy_client._json,
2974
+ requiresCompatibilities: import_smithy_client._json,
2975
+ revision: import_smithy_client.expectInt32,
2976
+ runtimePlatform: import_smithy_client._json,
2977
+ status: import_smithy_client.expectString,
2978
+ taskDefinitionArn: import_smithy_client.expectString,
2979
+ taskRoleArn: import_smithy_client.expectString,
2980
+ volumes: import_smithy_client._json
2981
+ });
2982
+ }, "de_TaskDefinition");
2983
+ var de_TaskDefinitionList = /* @__PURE__ */ __name((output, context) => {
2984
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2985
+ return de_TaskDefinition(entry, context);
2986
+ });
2987
+ return retVal;
2988
+ }, "de_TaskDefinitionList");
2989
+ var de_Tasks = /* @__PURE__ */ __name((output, context) => {
2990
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
2991
+ return de_Task(entry, context);
2992
+ });
2993
+ return retVal;
2994
+ }, "de_Tasks");
2995
+ var de_TaskSet = /* @__PURE__ */ __name((output, context) => {
2996
+ return (0, import_smithy_client.take)(output, {
2997
+ capacityProviderStrategy: import_smithy_client._json,
2998
+ clusterArn: import_smithy_client.expectString,
2999
+ computedDesiredCount: import_smithy_client.expectInt32,
3000
+ createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3001
+ externalId: import_smithy_client.expectString,
3002
+ fargateEphemeralStorage: import_smithy_client._json,
3003
+ id: import_smithy_client.expectString,
3004
+ launchType: import_smithy_client.expectString,
3005
+ loadBalancers: import_smithy_client._json,
3006
+ networkConfiguration: import_smithy_client._json,
3007
+ pendingCount: import_smithy_client.expectInt32,
3008
+ platformFamily: import_smithy_client.expectString,
3009
+ platformVersion: import_smithy_client.expectString,
3010
+ runningCount: import_smithy_client.expectInt32,
3011
+ scale: (_) => de_Scale(_, context),
3012
+ serviceArn: import_smithy_client.expectString,
3013
+ serviceRegistries: import_smithy_client._json,
3014
+ stabilityStatus: import_smithy_client.expectString,
3015
+ stabilityStatusAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
3016
+ startedBy: import_smithy_client.expectString,
3017
+ status: import_smithy_client.expectString,
3018
+ tags: import_smithy_client._json,
3019
+ taskDefinition: import_smithy_client.expectString,
3020
+ taskSetArn: import_smithy_client.expectString,
3021
+ updatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
3022
+ });
3023
+ }, "de_TaskSet");
3024
+ var de_TaskSets = /* @__PURE__ */ __name((output, context) => {
3025
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
3026
+ return de_TaskSet(entry, context);
3027
+ });
3028
+ return retVal;
3029
+ }, "de_TaskSets");
3030
+ var de_UpdateContainerAgentResponse = /* @__PURE__ */ __name((output, context) => {
3031
+ return (0, import_smithy_client.take)(output, {
3032
+ containerInstance: (_) => de_ContainerInstance(_, context)
3033
+ });
3034
+ }, "de_UpdateContainerAgentResponse");
3035
+ var de_UpdateContainerInstancesStateResponse = /* @__PURE__ */ __name((output, context) => {
3036
+ return (0, import_smithy_client.take)(output, {
3037
+ containerInstances: (_) => de_ContainerInstances(_, context),
3038
+ failures: import_smithy_client._json
3039
+ });
3040
+ }, "de_UpdateContainerInstancesStateResponse");
3041
+ var de_UpdateServicePrimaryTaskSetResponse = /* @__PURE__ */ __name((output, context) => {
3042
+ return (0, import_smithy_client.take)(output, {
3043
+ taskSet: (_) => de_TaskSet(_, context)
3044
+ });
3045
+ }, "de_UpdateServicePrimaryTaskSetResponse");
3046
+ var de_UpdateServiceResponse = /* @__PURE__ */ __name((output, context) => {
3047
+ return (0, import_smithy_client.take)(output, {
3048
+ service: (_) => de_Service(_, context)
3049
+ });
3050
+ }, "de_UpdateServiceResponse");
3051
+ var de_UpdateTaskProtectionResponse = /* @__PURE__ */ __name((output, context) => {
3052
+ return (0, import_smithy_client.take)(output, {
3053
+ failures: import_smithy_client._json,
3054
+ protectedTasks: (_) => de_ProtectedTasks(_, context)
3055
+ });
3056
+ }, "de_UpdateTaskProtectionResponse");
3057
+ var de_UpdateTaskSetResponse = /* @__PURE__ */ __name((output, context) => {
3058
+ return (0, import_smithy_client.take)(output, {
3059
+ taskSet: (_) => de_TaskSet(_, context)
3060
+ });
3061
+ }, "de_UpdateTaskSetResponse");
3062
+ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
3063
+ httpStatusCode: output.statusCode,
3064
+ requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
3065
+ extendedRequestId: output.headers["x-amz-id-2"],
3066
+ cfId: output.headers["x-amz-cf-id"]
3067
+ }), "deserializeMetadata");
3068
+ var throwDefaultError = (0, import_smithy_client.withBaseException)(ECSServiceException);
3069
+ var buildHttpRpcRequest = /* @__PURE__ */ __name(async (context, headers, path, resolvedHostname, body) => {
3070
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
3071
+ const contents = {
3072
+ protocol,
3073
+ hostname,
3074
+ port,
3075
+ method: "POST",
3076
+ path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
3077
+ headers
3078
+ };
3079
+ if (resolvedHostname !== void 0) {
3080
+ contents.hostname = resolvedHostname;
3081
+ }
3082
+ if (body !== void 0) {
3083
+ contents.body = body;
3084
+ }
3085
+ return new import_protocol_http.HttpRequest(contents);
3086
+ }, "buildHttpRpcRequest");
3087
+ function sharedHeaders(operation) {
3088
+ return {
3089
+ "content-type": "application/x-amz-json-1.1",
3090
+ "x-amz-target": `AmazonEC2ContainerServiceV20141113.${operation}`
3091
+ };
3092
+ }
3093
+ __name(sharedHeaders, "sharedHeaders");
3094
+
3095
+ // src/commands/CreateCapacityProviderCommand.ts
3096
+ var _CreateCapacityProviderCommand = class _CreateCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3097
+ return [
3098
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3099
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3100
+ ];
3101
+ }).s("AmazonEC2ContainerServiceV20141113", "CreateCapacityProvider", {}).n("ECSClient", "CreateCapacityProviderCommand").f(void 0, void 0).ser(se_CreateCapacityProviderCommand).de(de_CreateCapacityProviderCommand).build() {
3102
+ };
3103
+ __name(_CreateCapacityProviderCommand, "CreateCapacityProviderCommand");
3104
+ var CreateCapacityProviderCommand = _CreateCapacityProviderCommand;
3105
+
3106
+ // src/commands/CreateClusterCommand.ts
3107
+
3108
+
3109
+
3110
+ var _CreateClusterCommand = class _CreateClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3111
+ return [
3112
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3113
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3114
+ ];
3115
+ }).s("AmazonEC2ContainerServiceV20141113", "CreateCluster", {}).n("ECSClient", "CreateClusterCommand").f(void 0, void 0).ser(se_CreateClusterCommand).de(de_CreateClusterCommand).build() {
3116
+ };
3117
+ __name(_CreateClusterCommand, "CreateClusterCommand");
3118
+ var CreateClusterCommand = _CreateClusterCommand;
3119
+
3120
+ // src/commands/CreateServiceCommand.ts
3121
+
3122
+
3123
+
3124
+ var _CreateServiceCommand = class _CreateServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3125
+ return [
3126
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3127
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3128
+ ];
3129
+ }).s("AmazonEC2ContainerServiceV20141113", "CreateService", {}).n("ECSClient", "CreateServiceCommand").f(void 0, void 0).ser(se_CreateServiceCommand).de(de_CreateServiceCommand).build() {
3130
+ };
3131
+ __name(_CreateServiceCommand, "CreateServiceCommand");
3132
+ var CreateServiceCommand = _CreateServiceCommand;
3133
+
3134
+ // src/commands/CreateTaskSetCommand.ts
3135
+
3136
+
3137
+
3138
+ var _CreateTaskSetCommand = class _CreateTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3139
+ return [
3140
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3141
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3142
+ ];
3143
+ }).s("AmazonEC2ContainerServiceV20141113", "CreateTaskSet", {}).n("ECSClient", "CreateTaskSetCommand").f(void 0, void 0).ser(se_CreateTaskSetCommand).de(de_CreateTaskSetCommand).build() {
3144
+ };
3145
+ __name(_CreateTaskSetCommand, "CreateTaskSetCommand");
3146
+ var CreateTaskSetCommand = _CreateTaskSetCommand;
3147
+
3148
+ // src/commands/DeleteAccountSettingCommand.ts
3149
+
3150
+
3151
+
3152
+ var _DeleteAccountSettingCommand = class _DeleteAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3153
+ return [
3154
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3155
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3156
+ ];
3157
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteAccountSetting", {}).n("ECSClient", "DeleteAccountSettingCommand").f(void 0, void 0).ser(se_DeleteAccountSettingCommand).de(de_DeleteAccountSettingCommand).build() {
3158
+ };
3159
+ __name(_DeleteAccountSettingCommand, "DeleteAccountSettingCommand");
3160
+ var DeleteAccountSettingCommand = _DeleteAccountSettingCommand;
3161
+
3162
+ // src/commands/DeleteAttributesCommand.ts
3163
+
3164
+
3165
+
3166
+ var _DeleteAttributesCommand = class _DeleteAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3167
+ return [
3168
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3169
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3170
+ ];
3171
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteAttributes", {}).n("ECSClient", "DeleteAttributesCommand").f(void 0, void 0).ser(se_DeleteAttributesCommand).de(de_DeleteAttributesCommand).build() {
3172
+ };
3173
+ __name(_DeleteAttributesCommand, "DeleteAttributesCommand");
3174
+ var DeleteAttributesCommand = _DeleteAttributesCommand;
3175
+
3176
+ // src/commands/DeleteCapacityProviderCommand.ts
3177
+
3178
+
3179
+
3180
+ var _DeleteCapacityProviderCommand = class _DeleteCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3181
+ return [
3182
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3183
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3184
+ ];
3185
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteCapacityProvider", {}).n("ECSClient", "DeleteCapacityProviderCommand").f(void 0, void 0).ser(se_DeleteCapacityProviderCommand).de(de_DeleteCapacityProviderCommand).build() {
3186
+ };
3187
+ __name(_DeleteCapacityProviderCommand, "DeleteCapacityProviderCommand");
3188
+ var DeleteCapacityProviderCommand = _DeleteCapacityProviderCommand;
3189
+
3190
+ // src/commands/DeleteClusterCommand.ts
3191
+
3192
+
3193
+
3194
+ var _DeleteClusterCommand = class _DeleteClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3195
+ return [
3196
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3197
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3198
+ ];
3199
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteCluster", {}).n("ECSClient", "DeleteClusterCommand").f(void 0, void 0).ser(se_DeleteClusterCommand).de(de_DeleteClusterCommand).build() {
3200
+ };
3201
+ __name(_DeleteClusterCommand, "DeleteClusterCommand");
3202
+ var DeleteClusterCommand = _DeleteClusterCommand;
3203
+
3204
+ // src/commands/DeleteServiceCommand.ts
3205
+
3206
+
3207
+
3208
+ var _DeleteServiceCommand = class _DeleteServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3209
+ return [
3210
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3211
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3212
+ ];
3213
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteService", {}).n("ECSClient", "DeleteServiceCommand").f(void 0, void 0).ser(se_DeleteServiceCommand).de(de_DeleteServiceCommand).build() {
3214
+ };
3215
+ __name(_DeleteServiceCommand, "DeleteServiceCommand");
3216
+ var DeleteServiceCommand = _DeleteServiceCommand;
3217
+
3218
+ // src/commands/DeleteTaskDefinitionsCommand.ts
3219
+
3220
+
3221
+
3222
+ var _DeleteTaskDefinitionsCommand = class _DeleteTaskDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3223
+ return [
3224
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3225
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3226
+ ];
3227
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteTaskDefinitions", {}).n("ECSClient", "DeleteTaskDefinitionsCommand").f(void 0, void 0).ser(se_DeleteTaskDefinitionsCommand).de(de_DeleteTaskDefinitionsCommand).build() {
3228
+ };
3229
+ __name(_DeleteTaskDefinitionsCommand, "DeleteTaskDefinitionsCommand");
3230
+ var DeleteTaskDefinitionsCommand = _DeleteTaskDefinitionsCommand;
3231
+
3232
+ // src/commands/DeleteTaskSetCommand.ts
3233
+
3234
+
3235
+
3236
+ var _DeleteTaskSetCommand = class _DeleteTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3237
+ return [
3238
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3239
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3240
+ ];
3241
+ }).s("AmazonEC2ContainerServiceV20141113", "DeleteTaskSet", {}).n("ECSClient", "DeleteTaskSetCommand").f(void 0, void 0).ser(se_DeleteTaskSetCommand).de(de_DeleteTaskSetCommand).build() {
3242
+ };
3243
+ __name(_DeleteTaskSetCommand, "DeleteTaskSetCommand");
3244
+ var DeleteTaskSetCommand = _DeleteTaskSetCommand;
3245
+
3246
+ // src/commands/DeregisterContainerInstanceCommand.ts
3247
+
3248
+
3249
+
3250
+ var _DeregisterContainerInstanceCommand = class _DeregisterContainerInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3251
+ return [
3252
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3253
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3254
+ ];
3255
+ }).s("AmazonEC2ContainerServiceV20141113", "DeregisterContainerInstance", {}).n("ECSClient", "DeregisterContainerInstanceCommand").f(void 0, void 0).ser(se_DeregisterContainerInstanceCommand).de(de_DeregisterContainerInstanceCommand).build() {
3256
+ };
3257
+ __name(_DeregisterContainerInstanceCommand, "DeregisterContainerInstanceCommand");
3258
+ var DeregisterContainerInstanceCommand = _DeregisterContainerInstanceCommand;
3259
+
3260
+ // src/commands/DeregisterTaskDefinitionCommand.ts
3261
+
3262
+
3263
+
3264
+ var _DeregisterTaskDefinitionCommand = class _DeregisterTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3265
+ return [
3266
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3267
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3268
+ ];
3269
+ }).s("AmazonEC2ContainerServiceV20141113", "DeregisterTaskDefinition", {}).n("ECSClient", "DeregisterTaskDefinitionCommand").f(void 0, void 0).ser(se_DeregisterTaskDefinitionCommand).de(de_DeregisterTaskDefinitionCommand).build() {
3270
+ };
3271
+ __name(_DeregisterTaskDefinitionCommand, "DeregisterTaskDefinitionCommand");
3272
+ var DeregisterTaskDefinitionCommand = _DeregisterTaskDefinitionCommand;
3273
+
3274
+ // src/commands/DescribeCapacityProvidersCommand.ts
3275
+
3276
+
3277
+
3278
+ var _DescribeCapacityProvidersCommand = class _DescribeCapacityProvidersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3279
+ return [
3280
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3281
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3282
+ ];
3283
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeCapacityProviders", {}).n("ECSClient", "DescribeCapacityProvidersCommand").f(void 0, void 0).ser(se_DescribeCapacityProvidersCommand).de(de_DescribeCapacityProvidersCommand).build() {
3284
+ };
3285
+ __name(_DescribeCapacityProvidersCommand, "DescribeCapacityProvidersCommand");
3286
+ var DescribeCapacityProvidersCommand = _DescribeCapacityProvidersCommand;
3287
+
3288
+ // src/commands/DescribeClustersCommand.ts
3289
+
3290
+
3291
+
3292
+ var _DescribeClustersCommand = class _DescribeClustersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3293
+ return [
3294
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3295
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3296
+ ];
3297
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeClusters", {}).n("ECSClient", "DescribeClustersCommand").f(void 0, void 0).ser(se_DescribeClustersCommand).de(de_DescribeClustersCommand).build() {
3298
+ };
3299
+ __name(_DescribeClustersCommand, "DescribeClustersCommand");
3300
+ var DescribeClustersCommand = _DescribeClustersCommand;
3301
+
3302
+ // src/commands/DescribeContainerInstancesCommand.ts
3303
+
3304
+
3305
+
3306
+ var _DescribeContainerInstancesCommand = class _DescribeContainerInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3307
+ return [
3308
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3309
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3310
+ ];
3311
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeContainerInstances", {}).n("ECSClient", "DescribeContainerInstancesCommand").f(void 0, void 0).ser(se_DescribeContainerInstancesCommand).de(de_DescribeContainerInstancesCommand).build() {
3312
+ };
3313
+ __name(_DescribeContainerInstancesCommand, "DescribeContainerInstancesCommand");
3314
+ var DescribeContainerInstancesCommand = _DescribeContainerInstancesCommand;
3315
+
3316
+ // src/commands/DescribeServicesCommand.ts
3317
+
3318
+
3319
+
3320
+ var _DescribeServicesCommand = class _DescribeServicesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3321
+ return [
3322
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3323
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3324
+ ];
3325
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeServices", {}).n("ECSClient", "DescribeServicesCommand").f(void 0, void 0).ser(se_DescribeServicesCommand).de(de_DescribeServicesCommand).build() {
3326
+ };
3327
+ __name(_DescribeServicesCommand, "DescribeServicesCommand");
3328
+ var DescribeServicesCommand = _DescribeServicesCommand;
3329
+
3330
+ // src/commands/DescribeTaskDefinitionCommand.ts
3331
+
3332
+
3333
+
3334
+ var _DescribeTaskDefinitionCommand = class _DescribeTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3335
+ return [
3336
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3337
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3338
+ ];
3339
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeTaskDefinition", {}).n("ECSClient", "DescribeTaskDefinitionCommand").f(void 0, void 0).ser(se_DescribeTaskDefinitionCommand).de(de_DescribeTaskDefinitionCommand).build() {
3340
+ };
3341
+ __name(_DescribeTaskDefinitionCommand, "DescribeTaskDefinitionCommand");
3342
+ var DescribeTaskDefinitionCommand = _DescribeTaskDefinitionCommand;
3343
+
3344
+ // src/commands/DescribeTasksCommand.ts
3345
+
3346
+
3347
+
3348
+ var _DescribeTasksCommand = class _DescribeTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3349
+ return [
3350
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3351
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3352
+ ];
3353
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeTasks", {}).n("ECSClient", "DescribeTasksCommand").f(void 0, void 0).ser(se_DescribeTasksCommand).de(de_DescribeTasksCommand).build() {
3354
+ };
3355
+ __name(_DescribeTasksCommand, "DescribeTasksCommand");
3356
+ var DescribeTasksCommand = _DescribeTasksCommand;
3357
+
3358
+ // src/commands/DescribeTaskSetsCommand.ts
3359
+
3360
+
3361
+
3362
+ var _DescribeTaskSetsCommand = class _DescribeTaskSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3363
+ return [
3364
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3365
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3366
+ ];
3367
+ }).s("AmazonEC2ContainerServiceV20141113", "DescribeTaskSets", {}).n("ECSClient", "DescribeTaskSetsCommand").f(void 0, void 0).ser(se_DescribeTaskSetsCommand).de(de_DescribeTaskSetsCommand).build() {
3368
+ };
3369
+ __name(_DescribeTaskSetsCommand, "DescribeTaskSetsCommand");
3370
+ var DescribeTaskSetsCommand = _DescribeTaskSetsCommand;
3371
+
3372
+ // src/commands/DiscoverPollEndpointCommand.ts
3373
+
3374
+
3375
+
3376
+ var _DiscoverPollEndpointCommand = class _DiscoverPollEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3377
+ return [
3378
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3379
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3380
+ ];
3381
+ }).s("AmazonEC2ContainerServiceV20141113", "DiscoverPollEndpoint", {}).n("ECSClient", "DiscoverPollEndpointCommand").f(void 0, void 0).ser(se_DiscoverPollEndpointCommand).de(de_DiscoverPollEndpointCommand).build() {
3382
+ };
3383
+ __name(_DiscoverPollEndpointCommand, "DiscoverPollEndpointCommand");
3384
+ var DiscoverPollEndpointCommand = _DiscoverPollEndpointCommand;
3385
+
3386
+ // src/commands/ExecuteCommandCommand.ts
3387
+
3388
+
3389
+
3390
+ var _ExecuteCommandCommand = class _ExecuteCommandCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3391
+ return [
3392
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3393
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3394
+ ];
3395
+ }).s("AmazonEC2ContainerServiceV20141113", "ExecuteCommand", {}).n("ECSClient", "ExecuteCommandCommand").f(void 0, ExecuteCommandResponseFilterSensitiveLog).ser(se_ExecuteCommandCommand).de(de_ExecuteCommandCommand).build() {
3396
+ };
3397
+ __name(_ExecuteCommandCommand, "ExecuteCommandCommand");
3398
+ var ExecuteCommandCommand = _ExecuteCommandCommand;
3399
+
3400
+ // src/commands/GetTaskProtectionCommand.ts
3401
+
3402
+
3403
+
3404
+ var _GetTaskProtectionCommand = class _GetTaskProtectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3405
+ return [
3406
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3407
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3408
+ ];
3409
+ }).s("AmazonEC2ContainerServiceV20141113", "GetTaskProtection", {}).n("ECSClient", "GetTaskProtectionCommand").f(void 0, void 0).ser(se_GetTaskProtectionCommand).de(de_GetTaskProtectionCommand).build() {
3410
+ };
3411
+ __name(_GetTaskProtectionCommand, "GetTaskProtectionCommand");
3412
+ var GetTaskProtectionCommand = _GetTaskProtectionCommand;
3413
+
3414
+ // src/commands/ListAccountSettingsCommand.ts
3415
+
3416
+
3417
+
3418
+ var _ListAccountSettingsCommand = class _ListAccountSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3419
+ return [
3420
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3421
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3422
+ ];
3423
+ }).s("AmazonEC2ContainerServiceV20141113", "ListAccountSettings", {}).n("ECSClient", "ListAccountSettingsCommand").f(void 0, void 0).ser(se_ListAccountSettingsCommand).de(de_ListAccountSettingsCommand).build() {
3424
+ };
3425
+ __name(_ListAccountSettingsCommand, "ListAccountSettingsCommand");
3426
+ var ListAccountSettingsCommand = _ListAccountSettingsCommand;
3427
+
3428
+ // src/commands/ListAttributesCommand.ts
3429
+
3430
+
3431
+
3432
+ var _ListAttributesCommand = class _ListAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3433
+ return [
3434
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3435
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3436
+ ];
3437
+ }).s("AmazonEC2ContainerServiceV20141113", "ListAttributes", {}).n("ECSClient", "ListAttributesCommand").f(void 0, void 0).ser(se_ListAttributesCommand).de(de_ListAttributesCommand).build() {
3438
+ };
3439
+ __name(_ListAttributesCommand, "ListAttributesCommand");
3440
+ var ListAttributesCommand = _ListAttributesCommand;
3441
+
3442
+ // src/commands/ListClustersCommand.ts
3443
+
3444
+
3445
+
3446
+ var _ListClustersCommand = class _ListClustersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3447
+ return [
3448
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3449
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3450
+ ];
3451
+ }).s("AmazonEC2ContainerServiceV20141113", "ListClusters", {}).n("ECSClient", "ListClustersCommand").f(void 0, void 0).ser(se_ListClustersCommand).de(de_ListClustersCommand).build() {
3452
+ };
3453
+ __name(_ListClustersCommand, "ListClustersCommand");
3454
+ var ListClustersCommand = _ListClustersCommand;
3455
+
3456
+ // src/commands/ListContainerInstancesCommand.ts
3457
+
3458
+
3459
+
3460
+ var _ListContainerInstancesCommand = class _ListContainerInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3461
+ return [
3462
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3463
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3464
+ ];
3465
+ }).s("AmazonEC2ContainerServiceV20141113", "ListContainerInstances", {}).n("ECSClient", "ListContainerInstancesCommand").f(void 0, void 0).ser(se_ListContainerInstancesCommand).de(de_ListContainerInstancesCommand).build() {
3466
+ };
3467
+ __name(_ListContainerInstancesCommand, "ListContainerInstancesCommand");
3468
+ var ListContainerInstancesCommand = _ListContainerInstancesCommand;
3469
+
3470
+ // src/commands/ListServicesByNamespaceCommand.ts
3471
+
3472
+
3473
+
3474
+ var _ListServicesByNamespaceCommand = class _ListServicesByNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3475
+ return [
3476
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3477
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3478
+ ];
3479
+ }).s("AmazonEC2ContainerServiceV20141113", "ListServicesByNamespace", {}).n("ECSClient", "ListServicesByNamespaceCommand").f(void 0, void 0).ser(se_ListServicesByNamespaceCommand).de(de_ListServicesByNamespaceCommand).build() {
3480
+ };
3481
+ __name(_ListServicesByNamespaceCommand, "ListServicesByNamespaceCommand");
3482
+ var ListServicesByNamespaceCommand = _ListServicesByNamespaceCommand;
3483
+
3484
+ // src/commands/ListServicesCommand.ts
3485
+
3486
+
3487
+
3488
+ var _ListServicesCommand = class _ListServicesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3489
+ return [
3490
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3491
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3492
+ ];
3493
+ }).s("AmazonEC2ContainerServiceV20141113", "ListServices", {}).n("ECSClient", "ListServicesCommand").f(void 0, void 0).ser(se_ListServicesCommand).de(de_ListServicesCommand).build() {
3494
+ };
3495
+ __name(_ListServicesCommand, "ListServicesCommand");
3496
+ var ListServicesCommand = _ListServicesCommand;
3497
+
3498
+ // src/commands/ListTagsForResourceCommand.ts
3499
+
3500
+
3501
+
3502
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3503
+ return [
3504
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3505
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3506
+ ];
3507
+ }).s("AmazonEC2ContainerServiceV20141113", "ListTagsForResource", {}).n("ECSClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
3508
+ };
3509
+ __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
3510
+ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
3511
+
3512
+ // src/commands/ListTaskDefinitionFamiliesCommand.ts
3513
+
3514
+
3515
+
3516
+ var _ListTaskDefinitionFamiliesCommand = class _ListTaskDefinitionFamiliesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3517
+ return [
3518
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3519
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3520
+ ];
3521
+ }).s("AmazonEC2ContainerServiceV20141113", "ListTaskDefinitionFamilies", {}).n("ECSClient", "ListTaskDefinitionFamiliesCommand").f(void 0, void 0).ser(se_ListTaskDefinitionFamiliesCommand).de(de_ListTaskDefinitionFamiliesCommand).build() {
3522
+ };
3523
+ __name(_ListTaskDefinitionFamiliesCommand, "ListTaskDefinitionFamiliesCommand");
3524
+ var ListTaskDefinitionFamiliesCommand = _ListTaskDefinitionFamiliesCommand;
3525
+
3526
+ // src/commands/ListTaskDefinitionsCommand.ts
3527
+
3528
+
3529
+
3530
+ var _ListTaskDefinitionsCommand = class _ListTaskDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3531
+ return [
3532
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3533
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3534
+ ];
3535
+ }).s("AmazonEC2ContainerServiceV20141113", "ListTaskDefinitions", {}).n("ECSClient", "ListTaskDefinitionsCommand").f(void 0, void 0).ser(se_ListTaskDefinitionsCommand).de(de_ListTaskDefinitionsCommand).build() {
3536
+ };
3537
+ __name(_ListTaskDefinitionsCommand, "ListTaskDefinitionsCommand");
3538
+ var ListTaskDefinitionsCommand = _ListTaskDefinitionsCommand;
3539
+
3540
+ // src/commands/ListTasksCommand.ts
3541
+
3542
+
3543
+
3544
+ var _ListTasksCommand = class _ListTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3545
+ return [
3546
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3547
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3548
+ ];
3549
+ }).s("AmazonEC2ContainerServiceV20141113", "ListTasks", {}).n("ECSClient", "ListTasksCommand").f(void 0, void 0).ser(se_ListTasksCommand).de(de_ListTasksCommand).build() {
3550
+ };
3551
+ __name(_ListTasksCommand, "ListTasksCommand");
3552
+ var ListTasksCommand = _ListTasksCommand;
3553
+
3554
+ // src/commands/PutAccountSettingCommand.ts
3555
+
3556
+
3557
+
3558
+ var _PutAccountSettingCommand = class _PutAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3559
+ return [
3560
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3561
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3562
+ ];
3563
+ }).s("AmazonEC2ContainerServiceV20141113", "PutAccountSetting", {}).n("ECSClient", "PutAccountSettingCommand").f(void 0, void 0).ser(se_PutAccountSettingCommand).de(de_PutAccountSettingCommand).build() {
3564
+ };
3565
+ __name(_PutAccountSettingCommand, "PutAccountSettingCommand");
3566
+ var PutAccountSettingCommand = _PutAccountSettingCommand;
3567
+
3568
+ // src/commands/PutAccountSettingDefaultCommand.ts
3569
+
3570
+
3571
+
3572
+ var _PutAccountSettingDefaultCommand = class _PutAccountSettingDefaultCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3573
+ return [
3574
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3575
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3576
+ ];
3577
+ }).s("AmazonEC2ContainerServiceV20141113", "PutAccountSettingDefault", {}).n("ECSClient", "PutAccountSettingDefaultCommand").f(void 0, void 0).ser(se_PutAccountSettingDefaultCommand).de(de_PutAccountSettingDefaultCommand).build() {
3578
+ };
3579
+ __name(_PutAccountSettingDefaultCommand, "PutAccountSettingDefaultCommand");
3580
+ var PutAccountSettingDefaultCommand = _PutAccountSettingDefaultCommand;
3581
+
3582
+ // src/commands/PutAttributesCommand.ts
3583
+
3584
+
3585
+
3586
+ var _PutAttributesCommand = class _PutAttributesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3587
+ return [
3588
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3589
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3590
+ ];
3591
+ }).s("AmazonEC2ContainerServiceV20141113", "PutAttributes", {}).n("ECSClient", "PutAttributesCommand").f(void 0, void 0).ser(se_PutAttributesCommand).de(de_PutAttributesCommand).build() {
3592
+ };
3593
+ __name(_PutAttributesCommand, "PutAttributesCommand");
3594
+ var PutAttributesCommand = _PutAttributesCommand;
3595
+
3596
+ // src/commands/PutClusterCapacityProvidersCommand.ts
3597
+
3598
+
3599
+
3600
+ var _PutClusterCapacityProvidersCommand = class _PutClusterCapacityProvidersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3601
+ return [
3602
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3603
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3604
+ ];
3605
+ }).s("AmazonEC2ContainerServiceV20141113", "PutClusterCapacityProviders", {}).n("ECSClient", "PutClusterCapacityProvidersCommand").f(void 0, void 0).ser(se_PutClusterCapacityProvidersCommand).de(de_PutClusterCapacityProvidersCommand).build() {
3606
+ };
3607
+ __name(_PutClusterCapacityProvidersCommand, "PutClusterCapacityProvidersCommand");
3608
+ var PutClusterCapacityProvidersCommand = _PutClusterCapacityProvidersCommand;
3609
+
3610
+ // src/commands/RegisterContainerInstanceCommand.ts
3611
+
3612
+
3613
+
3614
+ var _RegisterContainerInstanceCommand = class _RegisterContainerInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3615
+ return [
3616
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3617
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3618
+ ];
3619
+ }).s("AmazonEC2ContainerServiceV20141113", "RegisterContainerInstance", {}).n("ECSClient", "RegisterContainerInstanceCommand").f(void 0, void 0).ser(se_RegisterContainerInstanceCommand).de(de_RegisterContainerInstanceCommand).build() {
3620
+ };
3621
+ __name(_RegisterContainerInstanceCommand, "RegisterContainerInstanceCommand");
3622
+ var RegisterContainerInstanceCommand = _RegisterContainerInstanceCommand;
3623
+
3624
+ // src/commands/RegisterTaskDefinitionCommand.ts
3625
+
3626
+
3627
+
3628
+ var _RegisterTaskDefinitionCommand = class _RegisterTaskDefinitionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3629
+ return [
3630
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3631
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3632
+ ];
3633
+ }).s("AmazonEC2ContainerServiceV20141113", "RegisterTaskDefinition", {}).n("ECSClient", "RegisterTaskDefinitionCommand").f(void 0, void 0).ser(se_RegisterTaskDefinitionCommand).de(de_RegisterTaskDefinitionCommand).build() {
3634
+ };
3635
+ __name(_RegisterTaskDefinitionCommand, "RegisterTaskDefinitionCommand");
3636
+ var RegisterTaskDefinitionCommand = _RegisterTaskDefinitionCommand;
3637
+
3638
+ // src/commands/RunTaskCommand.ts
3639
+
3640
+
3641
+
3642
+ var _RunTaskCommand = class _RunTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3643
+ return [
3644
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3645
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3646
+ ];
3647
+ }).s("AmazonEC2ContainerServiceV20141113", "RunTask", {}).n("ECSClient", "RunTaskCommand").f(void 0, void 0).ser(se_RunTaskCommand).de(de_RunTaskCommand).build() {
3648
+ };
3649
+ __name(_RunTaskCommand, "RunTaskCommand");
3650
+ var RunTaskCommand = _RunTaskCommand;
3651
+
3652
+ // src/commands/StartTaskCommand.ts
3653
+
3654
+
3655
+
3656
+ var _StartTaskCommand = class _StartTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3657
+ return [
3658
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3659
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3660
+ ];
3661
+ }).s("AmazonEC2ContainerServiceV20141113", "StartTask", {}).n("ECSClient", "StartTaskCommand").f(void 0, void 0).ser(se_StartTaskCommand).de(de_StartTaskCommand).build() {
3662
+ };
3663
+ __name(_StartTaskCommand, "StartTaskCommand");
3664
+ var StartTaskCommand = _StartTaskCommand;
3665
+
3666
+ // src/commands/StopTaskCommand.ts
3667
+
3668
+
3669
+
3670
+ var _StopTaskCommand = class _StopTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3671
+ return [
3672
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3673
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3674
+ ];
3675
+ }).s("AmazonEC2ContainerServiceV20141113", "StopTask", {}).n("ECSClient", "StopTaskCommand").f(void 0, void 0).ser(se_StopTaskCommand).de(de_StopTaskCommand).build() {
3676
+ };
3677
+ __name(_StopTaskCommand, "StopTaskCommand");
3678
+ var StopTaskCommand = _StopTaskCommand;
3679
+
3680
+ // src/commands/SubmitAttachmentStateChangesCommand.ts
3681
+
3682
+
3683
+
3684
+ var _SubmitAttachmentStateChangesCommand = class _SubmitAttachmentStateChangesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3685
+ return [
3686
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3687
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3688
+ ];
3689
+ }).s("AmazonEC2ContainerServiceV20141113", "SubmitAttachmentStateChanges", {}).n("ECSClient", "SubmitAttachmentStateChangesCommand").f(void 0, void 0).ser(se_SubmitAttachmentStateChangesCommand).de(de_SubmitAttachmentStateChangesCommand).build() {
3690
+ };
3691
+ __name(_SubmitAttachmentStateChangesCommand, "SubmitAttachmentStateChangesCommand");
3692
+ var SubmitAttachmentStateChangesCommand = _SubmitAttachmentStateChangesCommand;
3693
+
3694
+ // src/commands/SubmitContainerStateChangeCommand.ts
3695
+
3696
+
3697
+
3698
+ var _SubmitContainerStateChangeCommand = class _SubmitContainerStateChangeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3699
+ return [
3700
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3701
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3702
+ ];
3703
+ }).s("AmazonEC2ContainerServiceV20141113", "SubmitContainerStateChange", {}).n("ECSClient", "SubmitContainerStateChangeCommand").f(void 0, void 0).ser(se_SubmitContainerStateChangeCommand).de(de_SubmitContainerStateChangeCommand).build() {
3704
+ };
3705
+ __name(_SubmitContainerStateChangeCommand, "SubmitContainerStateChangeCommand");
3706
+ var SubmitContainerStateChangeCommand = _SubmitContainerStateChangeCommand;
3707
+
3708
+ // src/commands/SubmitTaskStateChangeCommand.ts
3709
+
3710
+
3711
+
3712
+ var _SubmitTaskStateChangeCommand = class _SubmitTaskStateChangeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3713
+ return [
3714
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3715
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3716
+ ];
3717
+ }).s("AmazonEC2ContainerServiceV20141113", "SubmitTaskStateChange", {}).n("ECSClient", "SubmitTaskStateChangeCommand").f(void 0, void 0).ser(se_SubmitTaskStateChangeCommand).de(de_SubmitTaskStateChangeCommand).build() {
3718
+ };
3719
+ __name(_SubmitTaskStateChangeCommand, "SubmitTaskStateChangeCommand");
3720
+ var SubmitTaskStateChangeCommand = _SubmitTaskStateChangeCommand;
3721
+
3722
+ // src/commands/TagResourceCommand.ts
3723
+
3724
+
3725
+
3726
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3727
+ return [
3728
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3729
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3730
+ ];
3731
+ }).s("AmazonEC2ContainerServiceV20141113", "TagResource", {}).n("ECSClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
3732
+ };
3733
+ __name(_TagResourceCommand, "TagResourceCommand");
3734
+ var TagResourceCommand = _TagResourceCommand;
3735
+
3736
+ // src/commands/UntagResourceCommand.ts
3737
+
3738
+
3739
+
3740
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3741
+ return [
3742
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3743
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3744
+ ];
3745
+ }).s("AmazonEC2ContainerServiceV20141113", "UntagResource", {}).n("ECSClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
3746
+ };
3747
+ __name(_UntagResourceCommand, "UntagResourceCommand");
3748
+ var UntagResourceCommand = _UntagResourceCommand;
3749
+
3750
+ // src/commands/UpdateCapacityProviderCommand.ts
3751
+
3752
+
3753
+
3754
+ var _UpdateCapacityProviderCommand = class _UpdateCapacityProviderCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3755
+ return [
3756
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3757
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3758
+ ];
3759
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateCapacityProvider", {}).n("ECSClient", "UpdateCapacityProviderCommand").f(void 0, void 0).ser(se_UpdateCapacityProviderCommand).de(de_UpdateCapacityProviderCommand).build() {
3760
+ };
3761
+ __name(_UpdateCapacityProviderCommand, "UpdateCapacityProviderCommand");
3762
+ var UpdateCapacityProviderCommand = _UpdateCapacityProviderCommand;
3763
+
3764
+ // src/commands/UpdateClusterCommand.ts
3765
+
3766
+
3767
+
3768
+ var _UpdateClusterCommand = class _UpdateClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3769
+ return [
3770
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3771
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3772
+ ];
3773
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateCluster", {}).n("ECSClient", "UpdateClusterCommand").f(void 0, void 0).ser(se_UpdateClusterCommand).de(de_UpdateClusterCommand).build() {
3774
+ };
3775
+ __name(_UpdateClusterCommand, "UpdateClusterCommand");
3776
+ var UpdateClusterCommand = _UpdateClusterCommand;
3777
+
3778
+ // src/commands/UpdateClusterSettingsCommand.ts
3779
+
3780
+
3781
+
3782
+ var _UpdateClusterSettingsCommand = class _UpdateClusterSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3783
+ return [
3784
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3785
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3786
+ ];
3787
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateClusterSettings", {}).n("ECSClient", "UpdateClusterSettingsCommand").f(void 0, void 0).ser(se_UpdateClusterSettingsCommand).de(de_UpdateClusterSettingsCommand).build() {
3788
+ };
3789
+ __name(_UpdateClusterSettingsCommand, "UpdateClusterSettingsCommand");
3790
+ var UpdateClusterSettingsCommand = _UpdateClusterSettingsCommand;
3791
+
3792
+ // src/commands/UpdateContainerAgentCommand.ts
3793
+
3794
+
3795
+
3796
+ var _UpdateContainerAgentCommand = class _UpdateContainerAgentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3797
+ return [
3798
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3799
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3800
+ ];
3801
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateContainerAgent", {}).n("ECSClient", "UpdateContainerAgentCommand").f(void 0, void 0).ser(se_UpdateContainerAgentCommand).de(de_UpdateContainerAgentCommand).build() {
3802
+ };
3803
+ __name(_UpdateContainerAgentCommand, "UpdateContainerAgentCommand");
3804
+ var UpdateContainerAgentCommand = _UpdateContainerAgentCommand;
3805
+
3806
+ // src/commands/UpdateContainerInstancesStateCommand.ts
3807
+
3808
+
3809
+
3810
+ var _UpdateContainerInstancesStateCommand = class _UpdateContainerInstancesStateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3811
+ return [
3812
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3813
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3814
+ ];
3815
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateContainerInstancesState", {}).n("ECSClient", "UpdateContainerInstancesStateCommand").f(void 0, void 0).ser(se_UpdateContainerInstancesStateCommand).de(de_UpdateContainerInstancesStateCommand).build() {
3816
+ };
3817
+ __name(_UpdateContainerInstancesStateCommand, "UpdateContainerInstancesStateCommand");
3818
+ var UpdateContainerInstancesStateCommand = _UpdateContainerInstancesStateCommand;
3819
+
3820
+ // src/commands/UpdateServiceCommand.ts
3821
+
3822
+
3823
+
3824
+ var _UpdateServiceCommand = class _UpdateServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3825
+ return [
3826
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3827
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3828
+ ];
3829
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateService", {}).n("ECSClient", "UpdateServiceCommand").f(void 0, void 0).ser(se_UpdateServiceCommand).de(de_UpdateServiceCommand).build() {
3830
+ };
3831
+ __name(_UpdateServiceCommand, "UpdateServiceCommand");
3832
+ var UpdateServiceCommand = _UpdateServiceCommand;
3833
+
3834
+ // src/commands/UpdateServicePrimaryTaskSetCommand.ts
3835
+
3836
+
3837
+
3838
+ var _UpdateServicePrimaryTaskSetCommand = class _UpdateServicePrimaryTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3839
+ return [
3840
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3841
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3842
+ ];
3843
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateServicePrimaryTaskSet", {}).n("ECSClient", "UpdateServicePrimaryTaskSetCommand").f(void 0, void 0).ser(se_UpdateServicePrimaryTaskSetCommand).de(de_UpdateServicePrimaryTaskSetCommand).build() {
3844
+ };
3845
+ __name(_UpdateServicePrimaryTaskSetCommand, "UpdateServicePrimaryTaskSetCommand");
3846
+ var UpdateServicePrimaryTaskSetCommand = _UpdateServicePrimaryTaskSetCommand;
3847
+
3848
+ // src/commands/UpdateTaskProtectionCommand.ts
3849
+
3850
+
3851
+
3852
+ var _UpdateTaskProtectionCommand = class _UpdateTaskProtectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3853
+ return [
3854
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3855
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3856
+ ];
3857
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateTaskProtection", {}).n("ECSClient", "UpdateTaskProtectionCommand").f(void 0, void 0).ser(se_UpdateTaskProtectionCommand).de(de_UpdateTaskProtectionCommand).build() {
3858
+ };
3859
+ __name(_UpdateTaskProtectionCommand, "UpdateTaskProtectionCommand");
3860
+ var UpdateTaskProtectionCommand = _UpdateTaskProtectionCommand;
3861
+
3862
+ // src/commands/UpdateTaskSetCommand.ts
3863
+
3864
+
3865
+
3866
+ var _UpdateTaskSetCommand = class _UpdateTaskSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3867
+ return [
3868
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3869
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3870
+ ];
3871
+ }).s("AmazonEC2ContainerServiceV20141113", "UpdateTaskSet", {}).n("ECSClient", "UpdateTaskSetCommand").f(void 0, void 0).ser(se_UpdateTaskSetCommand).de(de_UpdateTaskSetCommand).build() {
3872
+ };
3873
+ __name(_UpdateTaskSetCommand, "UpdateTaskSetCommand");
3874
+ var UpdateTaskSetCommand = _UpdateTaskSetCommand;
3875
+
3876
+ // src/ECS.ts
3877
+ var commands = {
3878
+ CreateCapacityProviderCommand,
3879
+ CreateClusterCommand,
3880
+ CreateServiceCommand,
3881
+ CreateTaskSetCommand,
3882
+ DeleteAccountSettingCommand,
3883
+ DeleteAttributesCommand,
3884
+ DeleteCapacityProviderCommand,
3885
+ DeleteClusterCommand,
3886
+ DeleteServiceCommand,
3887
+ DeleteTaskDefinitionsCommand,
3888
+ DeleteTaskSetCommand,
3889
+ DeregisterContainerInstanceCommand,
3890
+ DeregisterTaskDefinitionCommand,
3891
+ DescribeCapacityProvidersCommand,
3892
+ DescribeClustersCommand,
3893
+ DescribeContainerInstancesCommand,
3894
+ DescribeServicesCommand,
3895
+ DescribeTaskDefinitionCommand,
3896
+ DescribeTasksCommand,
3897
+ DescribeTaskSetsCommand,
3898
+ DiscoverPollEndpointCommand,
3899
+ ExecuteCommandCommand,
3900
+ GetTaskProtectionCommand,
3901
+ ListAccountSettingsCommand,
3902
+ ListAttributesCommand,
3903
+ ListClustersCommand,
3904
+ ListContainerInstancesCommand,
3905
+ ListServicesCommand,
3906
+ ListServicesByNamespaceCommand,
3907
+ ListTagsForResourceCommand,
3908
+ ListTaskDefinitionFamiliesCommand,
3909
+ ListTaskDefinitionsCommand,
3910
+ ListTasksCommand,
3911
+ PutAccountSettingCommand,
3912
+ PutAccountSettingDefaultCommand,
3913
+ PutAttributesCommand,
3914
+ PutClusterCapacityProvidersCommand,
3915
+ RegisterContainerInstanceCommand,
3916
+ RegisterTaskDefinitionCommand,
3917
+ RunTaskCommand,
3918
+ StartTaskCommand,
3919
+ StopTaskCommand,
3920
+ SubmitAttachmentStateChangesCommand,
3921
+ SubmitContainerStateChangeCommand,
3922
+ SubmitTaskStateChangeCommand,
3923
+ TagResourceCommand,
3924
+ UntagResourceCommand,
3925
+ UpdateCapacityProviderCommand,
3926
+ UpdateClusterCommand,
3927
+ UpdateClusterSettingsCommand,
3928
+ UpdateContainerAgentCommand,
3929
+ UpdateContainerInstancesStateCommand,
3930
+ UpdateServiceCommand,
3931
+ UpdateServicePrimaryTaskSetCommand,
3932
+ UpdateTaskProtectionCommand,
3933
+ UpdateTaskSetCommand
3934
+ };
3935
+ var _ECS = class _ECS extends ECSClient {
3936
+ };
3937
+ __name(_ECS, "ECS");
3938
+ var ECS = _ECS;
3939
+ (0, import_smithy_client.createAggregatedClient)(commands, ECS);
3940
+
3941
+ // src/pagination/ListAccountSettingsPaginator.ts
3942
+
3943
+ var paginateListAccountSettings = (0, import_core.createPaginator)(ECSClient, ListAccountSettingsCommand, "nextToken", "nextToken", "maxResults");
3944
+
3945
+ // src/pagination/ListAttributesPaginator.ts
3946
+
3947
+ var paginateListAttributes = (0, import_core.createPaginator)(ECSClient, ListAttributesCommand, "nextToken", "nextToken", "maxResults");
3948
+
3949
+ // src/pagination/ListClustersPaginator.ts
3950
+
3951
+ var paginateListClusters = (0, import_core.createPaginator)(ECSClient, ListClustersCommand, "nextToken", "nextToken", "maxResults");
3952
+
3953
+ // src/pagination/ListContainerInstancesPaginator.ts
3954
+
3955
+ var paginateListContainerInstances = (0, import_core.createPaginator)(ECSClient, ListContainerInstancesCommand, "nextToken", "nextToken", "maxResults");
3956
+
3957
+ // src/pagination/ListServicesByNamespacePaginator.ts
3958
+
3959
+ var paginateListServicesByNamespace = (0, import_core.createPaginator)(ECSClient, ListServicesByNamespaceCommand, "nextToken", "nextToken", "maxResults");
3960
+
3961
+ // src/pagination/ListServicesPaginator.ts
3962
+
3963
+ var paginateListServices = (0, import_core.createPaginator)(ECSClient, ListServicesCommand, "nextToken", "nextToken", "maxResults");
3964
+
3965
+ // src/pagination/ListTaskDefinitionFamiliesPaginator.ts
3966
+
3967
+ var paginateListTaskDefinitionFamilies = (0, import_core.createPaginator)(ECSClient, ListTaskDefinitionFamiliesCommand, "nextToken", "nextToken", "maxResults");
3968
+
3969
+ // src/pagination/ListTaskDefinitionsPaginator.ts
3970
+
3971
+ var paginateListTaskDefinitions = (0, import_core.createPaginator)(ECSClient, ListTaskDefinitionsCommand, "nextToken", "nextToken", "maxResults");
3972
+
3973
+ // src/pagination/ListTasksPaginator.ts
3974
+
3975
+ var paginateListTasks = (0, import_core.createPaginator)(ECSClient, ListTasksCommand, "nextToken", "nextToken", "maxResults");
3976
+
3977
+ // src/waiters/waitForServicesInactive.ts
3978
+ var import_util_waiter = require("@smithy/util-waiter");
3979
+ var checkState = /* @__PURE__ */ __name(async (client, input) => {
3980
+ let reason;
3981
+ try {
3982
+ const result = await client.send(new DescribeServicesCommand(input));
3983
+ reason = result;
3984
+ try {
3985
+ const returnComparator = /* @__PURE__ */ __name(() => {
3986
+ const flat_1 = [].concat(...result.failures);
3987
+ const projection_3 = flat_1.map((element_2) => {
3988
+ return element_2.reason;
3989
+ });
3990
+ return projection_3;
3991
+ }, "returnComparator");
3992
+ for (const anyStringEq_4 of returnComparator()) {
3993
+ if (anyStringEq_4 == "MISSING") {
3994
+ return { state: import_util_waiter.WaiterState.FAILURE, reason };
3995
+ }
3996
+ }
3997
+ } catch (e) {
3998
+ }
3999
+ try {
4000
+ const returnComparator = /* @__PURE__ */ __name(() => {
4001
+ const flat_1 = [].concat(...result.services);
4002
+ const projection_3 = flat_1.map((element_2) => {
4003
+ return element_2.status;
4004
+ });
4005
+ return projection_3;
4006
+ }, "returnComparator");
4007
+ for (const anyStringEq_4 of returnComparator()) {
4008
+ if (anyStringEq_4 == "INACTIVE") {
4009
+ return { state: import_util_waiter.WaiterState.SUCCESS, reason };
4010
+ }
4011
+ }
4012
+ } catch (e) {
4013
+ }
4014
+ } catch (exception) {
4015
+ reason = exception;
4016
+ }
4017
+ return { state: import_util_waiter.WaiterState.RETRY, reason };
4018
+ }, "checkState");
4019
+ var waitForServicesInactive = /* @__PURE__ */ __name(async (params, input) => {
4020
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
4021
+ return (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
4022
+ }, "waitForServicesInactive");
4023
+ var waitUntilServicesInactive = /* @__PURE__ */ __name(async (params, input) => {
4024
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
4025
+ const result = await (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState);
4026
+ return (0, import_util_waiter.checkExceptions)(result);
4027
+ }, "waitUntilServicesInactive");
4028
+
4029
+ // src/waiters/waitForServicesStable.ts
4030
+
4031
+ var checkState2 = /* @__PURE__ */ __name(async (client, input) => {
4032
+ let reason;
4033
+ try {
4034
+ const result = await client.send(new DescribeServicesCommand(input));
4035
+ reason = result;
4036
+ try {
4037
+ const returnComparator = /* @__PURE__ */ __name(() => {
4038
+ const flat_1 = [].concat(...result.failures);
4039
+ const projection_3 = flat_1.map((element_2) => {
4040
+ return element_2.reason;
4041
+ });
4042
+ return projection_3;
4043
+ }, "returnComparator");
4044
+ for (const anyStringEq_4 of returnComparator()) {
4045
+ if (anyStringEq_4 == "MISSING") {
4046
+ return { state: import_util_waiter.WaiterState.FAILURE, reason };
4047
+ }
4048
+ }
4049
+ } catch (e) {
4050
+ }
4051
+ try {
4052
+ const returnComparator = /* @__PURE__ */ __name(() => {
4053
+ const flat_1 = [].concat(...result.services);
4054
+ const projection_3 = flat_1.map((element_2) => {
4055
+ return element_2.status;
4056
+ });
4057
+ return projection_3;
4058
+ }, "returnComparator");
4059
+ for (const anyStringEq_4 of returnComparator()) {
4060
+ if (anyStringEq_4 == "DRAINING") {
4061
+ return { state: import_util_waiter.WaiterState.FAILURE, reason };
4062
+ }
4063
+ }
4064
+ } catch (e) {
4065
+ }
4066
+ try {
4067
+ const returnComparator = /* @__PURE__ */ __name(() => {
4068
+ const flat_1 = [].concat(...result.services);
4069
+ const projection_3 = flat_1.map((element_2) => {
4070
+ return element_2.status;
4071
+ });
4072
+ return projection_3;
4073
+ }, "returnComparator");
4074
+ for (const anyStringEq_4 of returnComparator()) {
4075
+ if (anyStringEq_4 == "INACTIVE") {
4076
+ return { state: import_util_waiter.WaiterState.FAILURE, reason };
4077
+ }
4078
+ }
4079
+ } catch (e) {
4080
+ }
4081
+ try {
4082
+ const returnComparator = /* @__PURE__ */ __name(() => {
4083
+ const filterRes_2 = result.services.filter((element_1) => {
4084
+ return !(element_1.deployments.length == 1 && element_1.runningCount == element_1.desiredCount);
4085
+ });
4086
+ return filterRes_2.length == 0;
4087
+ }, "returnComparator");
4088
+ if (returnComparator() == true) {
4089
+ return { state: import_util_waiter.WaiterState.SUCCESS, reason };
4090
+ }
4091
+ } catch (e) {
4092
+ }
4093
+ } catch (exception) {
4094
+ reason = exception;
4095
+ }
4096
+ return { state: import_util_waiter.WaiterState.RETRY, reason };
4097
+ }, "checkState");
4098
+ var waitForServicesStable = /* @__PURE__ */ __name(async (params, input) => {
4099
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
4100
+ return (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState2);
4101
+ }, "waitForServicesStable");
4102
+ var waitUntilServicesStable = /* @__PURE__ */ __name(async (params, input) => {
4103
+ const serviceDefaults = { minDelay: 15, maxDelay: 120 };
4104
+ const result = await (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState2);
4105
+ return (0, import_util_waiter.checkExceptions)(result);
4106
+ }, "waitUntilServicesStable");
4107
+
4108
+ // src/waiters/waitForTasksRunning.ts
4109
+
4110
+ var checkState3 = /* @__PURE__ */ __name(async (client, input) => {
4111
+ let reason;
4112
+ try {
4113
+ const result = await client.send(new DescribeTasksCommand(input));
4114
+ reason = result;
4115
+ try {
4116
+ const returnComparator = /* @__PURE__ */ __name(() => {
4117
+ const flat_1 = [].concat(...result.tasks);
4118
+ const projection_3 = flat_1.map((element_2) => {
4119
+ return element_2.lastStatus;
4120
+ });
4121
+ return projection_3;
4122
+ }, "returnComparator");
4123
+ for (const anyStringEq_4 of returnComparator()) {
4124
+ if (anyStringEq_4 == "STOPPED") {
4125
+ return { state: import_util_waiter.WaiterState.FAILURE, reason };
4126
+ }
4127
+ }
4128
+ } catch (e) {
4129
+ }
4130
+ try {
4131
+ const returnComparator = /* @__PURE__ */ __name(() => {
4132
+ const flat_1 = [].concat(...result.failures);
4133
+ const projection_3 = flat_1.map((element_2) => {
4134
+ return element_2.reason;
4135
+ });
4136
+ return projection_3;
4137
+ }, "returnComparator");
4138
+ for (const anyStringEq_4 of returnComparator()) {
4139
+ if (anyStringEq_4 == "MISSING") {
4140
+ return { state: import_util_waiter.WaiterState.FAILURE, reason };
4141
+ }
4142
+ }
4143
+ } catch (e) {
4144
+ }
4145
+ try {
4146
+ const returnComparator = /* @__PURE__ */ __name(() => {
4147
+ const flat_1 = [].concat(...result.tasks);
4148
+ const projection_3 = flat_1.map((element_2) => {
4149
+ return element_2.lastStatus;
4150
+ });
4151
+ return projection_3;
4152
+ }, "returnComparator");
4153
+ let allStringEq_5 = returnComparator().length > 0;
4154
+ for (const element_4 of returnComparator()) {
4155
+ allStringEq_5 = allStringEq_5 && element_4 == "RUNNING";
4156
+ }
4157
+ if (allStringEq_5) {
4158
+ return { state: import_util_waiter.WaiterState.SUCCESS, reason };
4159
+ }
4160
+ } catch (e) {
4161
+ }
4162
+ } catch (exception) {
4163
+ reason = exception;
4164
+ }
4165
+ return { state: import_util_waiter.WaiterState.RETRY, reason };
4166
+ }, "checkState");
4167
+ var waitForTasksRunning = /* @__PURE__ */ __name(async (params, input) => {
4168
+ const serviceDefaults = { minDelay: 6, maxDelay: 120 };
4169
+ return (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState3);
4170
+ }, "waitForTasksRunning");
4171
+ var waitUntilTasksRunning = /* @__PURE__ */ __name(async (params, input) => {
4172
+ const serviceDefaults = { minDelay: 6, maxDelay: 120 };
4173
+ const result = await (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState3);
4174
+ return (0, import_util_waiter.checkExceptions)(result);
4175
+ }, "waitUntilTasksRunning");
4176
+
4177
+ // src/waiters/waitForTasksStopped.ts
4178
+
4179
+ var checkState4 = /* @__PURE__ */ __name(async (client, input) => {
4180
+ let reason;
4181
+ try {
4182
+ const result = await client.send(new DescribeTasksCommand(input));
4183
+ reason = result;
4184
+ try {
4185
+ const returnComparator = /* @__PURE__ */ __name(() => {
4186
+ const flat_1 = [].concat(...result.tasks);
4187
+ const projection_3 = flat_1.map((element_2) => {
4188
+ return element_2.lastStatus;
4189
+ });
4190
+ return projection_3;
4191
+ }, "returnComparator");
4192
+ let allStringEq_5 = returnComparator().length > 0;
4193
+ for (const element_4 of returnComparator()) {
4194
+ allStringEq_5 = allStringEq_5 && element_4 == "STOPPED";
4195
+ }
4196
+ if (allStringEq_5) {
4197
+ return { state: import_util_waiter.WaiterState.SUCCESS, reason };
4198
+ }
4199
+ } catch (e) {
4200
+ }
4201
+ } catch (exception) {
4202
+ reason = exception;
4203
+ }
4204
+ return { state: import_util_waiter.WaiterState.RETRY, reason };
4205
+ }, "checkState");
4206
+ var waitForTasksStopped = /* @__PURE__ */ __name(async (params, input) => {
4207
+ const serviceDefaults = { minDelay: 6, maxDelay: 120 };
4208
+ return (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState4);
4209
+ }, "waitForTasksStopped");
4210
+ var waitUntilTasksStopped = /* @__PURE__ */ __name(async (params, input) => {
4211
+ const serviceDefaults = { minDelay: 6, maxDelay: 120 };
4212
+ const result = await (0, import_util_waiter.createWaiter)({ ...serviceDefaults, ...params }, input, checkState4);
4213
+ return (0, import_util_waiter.checkExceptions)(result);
4214
+ }, "waitUntilTasksStopped");
4215
+ // Annotate the CommonJS export names for ESM import in node:
4216
+
4217
+ 0 && (module.exports = {
4218
+ ECSServiceException,
4219
+ __Client,
4220
+ ECSClient,
4221
+ ECS,
4222
+ $Command,
4223
+ CreateCapacityProviderCommand,
4224
+ CreateClusterCommand,
4225
+ CreateServiceCommand,
4226
+ CreateTaskSetCommand,
4227
+ DeleteAccountSettingCommand,
4228
+ DeleteAttributesCommand,
4229
+ DeleteCapacityProviderCommand,
4230
+ DeleteClusterCommand,
4231
+ DeleteServiceCommand,
4232
+ DeleteTaskDefinitionsCommand,
4233
+ DeleteTaskSetCommand,
4234
+ DeregisterContainerInstanceCommand,
4235
+ DeregisterTaskDefinitionCommand,
4236
+ DescribeCapacityProvidersCommand,
4237
+ DescribeClustersCommand,
4238
+ DescribeContainerInstancesCommand,
4239
+ DescribeServicesCommand,
4240
+ DescribeTaskDefinitionCommand,
4241
+ DescribeTaskSetsCommand,
4242
+ DescribeTasksCommand,
4243
+ DiscoverPollEndpointCommand,
4244
+ ExecuteCommandCommand,
4245
+ GetTaskProtectionCommand,
4246
+ ListAccountSettingsCommand,
4247
+ ListAttributesCommand,
4248
+ ListClustersCommand,
4249
+ ListContainerInstancesCommand,
4250
+ ListServicesByNamespaceCommand,
4251
+ ListServicesCommand,
4252
+ ListTagsForResourceCommand,
4253
+ ListTaskDefinitionFamiliesCommand,
4254
+ ListTaskDefinitionsCommand,
4255
+ ListTasksCommand,
4256
+ PutAccountSettingCommand,
4257
+ PutAccountSettingDefaultCommand,
4258
+ PutAttributesCommand,
4259
+ PutClusterCapacityProvidersCommand,
4260
+ RegisterContainerInstanceCommand,
4261
+ RegisterTaskDefinitionCommand,
4262
+ RunTaskCommand,
4263
+ StartTaskCommand,
4264
+ StopTaskCommand,
4265
+ SubmitAttachmentStateChangesCommand,
4266
+ SubmitContainerStateChangeCommand,
4267
+ SubmitTaskStateChangeCommand,
4268
+ TagResourceCommand,
4269
+ UntagResourceCommand,
4270
+ UpdateCapacityProviderCommand,
4271
+ UpdateClusterCommand,
4272
+ UpdateClusterSettingsCommand,
4273
+ UpdateContainerAgentCommand,
4274
+ UpdateContainerInstancesStateCommand,
4275
+ UpdateServiceCommand,
4276
+ UpdateServicePrimaryTaskSetCommand,
4277
+ UpdateTaskProtectionCommand,
4278
+ UpdateTaskSetCommand,
4279
+ paginateListAccountSettings,
4280
+ paginateListAttributes,
4281
+ paginateListClusters,
4282
+ paginateListContainerInstances,
4283
+ paginateListServicesByNamespace,
4284
+ paginateListServices,
4285
+ paginateListTaskDefinitionFamilies,
4286
+ paginateListTaskDefinitions,
4287
+ paginateListTasks,
4288
+ waitForServicesInactive,
4289
+ waitUntilServicesInactive,
4290
+ waitForServicesStable,
4291
+ waitUntilServicesStable,
4292
+ waitForTasksRunning,
4293
+ waitUntilTasksRunning,
4294
+ waitForTasksStopped,
4295
+ waitUntilTasksStopped,
4296
+ AccessDeniedException,
4297
+ AgentUpdateStatus,
4298
+ ClientException,
4299
+ ManagedDraining,
4300
+ ManagedScalingStatus,
4301
+ ManagedTerminationProtection,
4302
+ CapacityProviderStatus,
4303
+ CapacityProviderUpdateStatus,
4304
+ InvalidParameterException,
4305
+ LimitExceededException,
4306
+ ServerException,
4307
+ UpdateInProgressException,
4308
+ ExecuteCommandLogging,
4309
+ ClusterSettingName,
4310
+ NamespaceNotFoundException,
4311
+ ClusterNotFoundException,
4312
+ DeploymentControllerType,
4313
+ LaunchType,
4314
+ AssignPublicIp,
4315
+ PlacementConstraintType,
4316
+ PlacementStrategyType,
4317
+ PropagateTags,
4318
+ SchedulingStrategy,
4319
+ LogDriver,
4320
+ TaskFilesystemType,
4321
+ EBSResourceType,
4322
+ DeploymentRolloutState,
4323
+ ScaleUnit,
4324
+ StabilityStatus,
4325
+ PlatformTaskDefinitionIncompatibilityException,
4326
+ PlatformUnknownException,
4327
+ UnsupportedFeatureException,
4328
+ ServiceNotActiveException,
4329
+ ServiceNotFoundException,
4330
+ SettingName,
4331
+ SettingType,
4332
+ TargetType,
4333
+ TargetNotFoundException,
4334
+ ClusterContainsContainerInstancesException,
4335
+ ClusterContainsServicesException,
4336
+ ClusterContainsTasksException,
4337
+ Compatibility,
4338
+ ContainerCondition,
4339
+ EnvironmentFileType,
4340
+ FirelensConfigurationType,
4341
+ DeviceCgroupPermission,
4342
+ ApplicationProtocol,
4343
+ TransportProtocol,
4344
+ ResourceType,
4345
+ UlimitName,
4346
+ IpcMode,
4347
+ NetworkMode,
4348
+ PidMode,
4349
+ TaskDefinitionPlacementConstraintType,
4350
+ ProxyConfigurationType,
4351
+ CPUArchitecture,
4352
+ OSFamily,
4353
+ TaskDefinitionStatus,
4354
+ Scope,
4355
+ EFSAuthorizationConfigIAM,
4356
+ EFSTransitEncryption,
4357
+ TaskSetNotFoundException,
4358
+ InstanceHealthCheckState,
4359
+ InstanceHealthCheckType,
4360
+ CapacityProviderField,
4361
+ ClusterField,
4362
+ ContainerInstanceField,
4363
+ ServiceField,
4364
+ TaskDefinitionField,
4365
+ TaskField,
4366
+ Connectivity,
4367
+ HealthStatus,
4368
+ ManagedAgentName,
4369
+ TaskStopCode,
4370
+ TaskSetField,
4371
+ TargetNotConnectedException,
4372
+ ResourceNotFoundException,
4373
+ ContainerInstanceStatus,
4374
+ TaskDefinitionFamilyStatus,
4375
+ SortOrder,
4376
+ DesiredStatus,
4377
+ AttributeLimitExceededException,
4378
+ ResourceInUseException,
4379
+ PlatformDeviceType,
4380
+ BlockedException,
4381
+ ConflictException,
4382
+ MissingVersionException,
4383
+ NoUpdateAvailableException,
4384
+ SessionFilterSensitiveLog,
4385
+ ExecuteCommandResponseFilterSensitiveLog
4386
+ });
4387
+