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

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 +459 -26
  2. package/docs/API.md +422 -13
  3. package/docs/changelog.md +4 -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 +85 -0
  6. package/lib/fargate/rio-fargate-service-blue-green-alpha.d.ts +4 -10
  7. package/lib/fargate/rio-fargate-service-blue-green-alpha.js +59 -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,2008 @@
1
+ import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";
2
+ import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
3
+ import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectString as __expectString, limitedParseDouble as __limitedParseDouble, parseEpochTimestamp as __parseEpochTimestamp, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
4
+ import { v4 as generateIdempotencyToken } from "uuid";
5
+ import { ECSServiceException as __BaseException } from "../models/ECSServiceException";
6
+ import { AccessDeniedException, AttributeLimitExceededException, BlockedException, ClientException, ClusterContainsContainerInstancesException, ClusterContainsServicesException, ClusterContainsTasksException, ClusterNotFoundException, ConflictException, InvalidParameterException, LimitExceededException, MissingVersionException, NamespaceNotFoundException, NoUpdateAvailableException, PlatformTaskDefinitionIncompatibilityException, PlatformUnknownException, ResourceInUseException, ResourceNotFoundException, ServerException, ServiceNotActiveException, ServiceNotFoundException, TargetNotConnectedException, TargetNotFoundException, TaskSetNotFoundException, UnsupportedFeatureException, UpdateInProgressException, } from "../models/models_0";
7
+ export const se_CreateCapacityProviderCommand = async (input, context) => {
8
+ const headers = sharedHeaders("CreateCapacityProvider");
9
+ let body;
10
+ body = JSON.stringify(_json(input));
11
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
12
+ };
13
+ export const se_CreateClusterCommand = async (input, context) => {
14
+ const headers = sharedHeaders("CreateCluster");
15
+ let body;
16
+ body = JSON.stringify(_json(input));
17
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
18
+ };
19
+ export const se_CreateServiceCommand = async (input, context) => {
20
+ const headers = sharedHeaders("CreateService");
21
+ let body;
22
+ body = JSON.stringify(_json(input));
23
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
24
+ };
25
+ export const se_CreateTaskSetCommand = async (input, context) => {
26
+ const headers = sharedHeaders("CreateTaskSet");
27
+ let body;
28
+ body = JSON.stringify(se_CreateTaskSetRequest(input, context));
29
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
30
+ };
31
+ export const se_DeleteAccountSettingCommand = async (input, context) => {
32
+ const headers = sharedHeaders("DeleteAccountSetting");
33
+ let body;
34
+ body = JSON.stringify(_json(input));
35
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
36
+ };
37
+ export const se_DeleteAttributesCommand = async (input, context) => {
38
+ const headers = sharedHeaders("DeleteAttributes");
39
+ let body;
40
+ body = JSON.stringify(_json(input));
41
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
42
+ };
43
+ export const se_DeleteCapacityProviderCommand = async (input, context) => {
44
+ const headers = sharedHeaders("DeleteCapacityProvider");
45
+ let body;
46
+ body = JSON.stringify(_json(input));
47
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
48
+ };
49
+ export const se_DeleteClusterCommand = async (input, context) => {
50
+ const headers = sharedHeaders("DeleteCluster");
51
+ let body;
52
+ body = JSON.stringify(_json(input));
53
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
54
+ };
55
+ export const se_DeleteServiceCommand = async (input, context) => {
56
+ const headers = sharedHeaders("DeleteService");
57
+ let body;
58
+ body = JSON.stringify(_json(input));
59
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
60
+ };
61
+ export const se_DeleteTaskDefinitionsCommand = async (input, context) => {
62
+ const headers = sharedHeaders("DeleteTaskDefinitions");
63
+ let body;
64
+ body = JSON.stringify(_json(input));
65
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
66
+ };
67
+ export const se_DeleteTaskSetCommand = async (input, context) => {
68
+ const headers = sharedHeaders("DeleteTaskSet");
69
+ let body;
70
+ body = JSON.stringify(_json(input));
71
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
72
+ };
73
+ export const se_DeregisterContainerInstanceCommand = async (input, context) => {
74
+ const headers = sharedHeaders("DeregisterContainerInstance");
75
+ let body;
76
+ body = JSON.stringify(_json(input));
77
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
78
+ };
79
+ export const se_DeregisterTaskDefinitionCommand = async (input, context) => {
80
+ const headers = sharedHeaders("DeregisterTaskDefinition");
81
+ let body;
82
+ body = JSON.stringify(_json(input));
83
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
84
+ };
85
+ export const se_DescribeCapacityProvidersCommand = async (input, context) => {
86
+ const headers = sharedHeaders("DescribeCapacityProviders");
87
+ let body;
88
+ body = JSON.stringify(_json(input));
89
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
90
+ };
91
+ export const se_DescribeClustersCommand = async (input, context) => {
92
+ const headers = sharedHeaders("DescribeClusters");
93
+ let body;
94
+ body = JSON.stringify(_json(input));
95
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
96
+ };
97
+ export const se_DescribeContainerInstancesCommand = async (input, context) => {
98
+ const headers = sharedHeaders("DescribeContainerInstances");
99
+ let body;
100
+ body = JSON.stringify(_json(input));
101
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
102
+ };
103
+ export const se_DescribeServicesCommand = async (input, context) => {
104
+ const headers = sharedHeaders("DescribeServices");
105
+ let body;
106
+ body = JSON.stringify(_json(input));
107
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
108
+ };
109
+ export const se_DescribeTaskDefinitionCommand = async (input, context) => {
110
+ const headers = sharedHeaders("DescribeTaskDefinition");
111
+ let body;
112
+ body = JSON.stringify(_json(input));
113
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
114
+ };
115
+ export const se_DescribeTasksCommand = async (input, context) => {
116
+ const headers = sharedHeaders("DescribeTasks");
117
+ let body;
118
+ body = JSON.stringify(_json(input));
119
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
120
+ };
121
+ export const se_DescribeTaskSetsCommand = async (input, context) => {
122
+ const headers = sharedHeaders("DescribeTaskSets");
123
+ let body;
124
+ body = JSON.stringify(_json(input));
125
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
126
+ };
127
+ export const se_DiscoverPollEndpointCommand = async (input, context) => {
128
+ const headers = sharedHeaders("DiscoverPollEndpoint");
129
+ let body;
130
+ body = JSON.stringify(_json(input));
131
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
132
+ };
133
+ export const se_ExecuteCommandCommand = async (input, context) => {
134
+ const headers = sharedHeaders("ExecuteCommand");
135
+ let body;
136
+ body = JSON.stringify(_json(input));
137
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
138
+ };
139
+ export const se_GetTaskProtectionCommand = async (input, context) => {
140
+ const headers = sharedHeaders("GetTaskProtection");
141
+ let body;
142
+ body = JSON.stringify(_json(input));
143
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
144
+ };
145
+ export const se_ListAccountSettingsCommand = async (input, context) => {
146
+ const headers = sharedHeaders("ListAccountSettings");
147
+ let body;
148
+ body = JSON.stringify(_json(input));
149
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
150
+ };
151
+ export const se_ListAttributesCommand = async (input, context) => {
152
+ const headers = sharedHeaders("ListAttributes");
153
+ let body;
154
+ body = JSON.stringify(_json(input));
155
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
156
+ };
157
+ export const se_ListClustersCommand = async (input, context) => {
158
+ const headers = sharedHeaders("ListClusters");
159
+ let body;
160
+ body = JSON.stringify(_json(input));
161
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
162
+ };
163
+ export const se_ListContainerInstancesCommand = async (input, context) => {
164
+ const headers = sharedHeaders("ListContainerInstances");
165
+ let body;
166
+ body = JSON.stringify(_json(input));
167
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
168
+ };
169
+ export const se_ListServicesCommand = async (input, context) => {
170
+ const headers = sharedHeaders("ListServices");
171
+ let body;
172
+ body = JSON.stringify(_json(input));
173
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
174
+ };
175
+ export const se_ListServicesByNamespaceCommand = async (input, context) => {
176
+ const headers = sharedHeaders("ListServicesByNamespace");
177
+ let body;
178
+ body = JSON.stringify(_json(input));
179
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
180
+ };
181
+ export const se_ListTagsForResourceCommand = async (input, context) => {
182
+ const headers = sharedHeaders("ListTagsForResource");
183
+ let body;
184
+ body = JSON.stringify(_json(input));
185
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
186
+ };
187
+ export const se_ListTaskDefinitionFamiliesCommand = async (input, context) => {
188
+ const headers = sharedHeaders("ListTaskDefinitionFamilies");
189
+ let body;
190
+ body = JSON.stringify(_json(input));
191
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
192
+ };
193
+ export const se_ListTaskDefinitionsCommand = async (input, context) => {
194
+ const headers = sharedHeaders("ListTaskDefinitions");
195
+ let body;
196
+ body = JSON.stringify(_json(input));
197
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
198
+ };
199
+ export const se_ListTasksCommand = async (input, context) => {
200
+ const headers = sharedHeaders("ListTasks");
201
+ let body;
202
+ body = JSON.stringify(_json(input));
203
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
204
+ };
205
+ export const se_PutAccountSettingCommand = async (input, context) => {
206
+ const headers = sharedHeaders("PutAccountSetting");
207
+ let body;
208
+ body = JSON.stringify(_json(input));
209
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
210
+ };
211
+ export const se_PutAccountSettingDefaultCommand = async (input, context) => {
212
+ const headers = sharedHeaders("PutAccountSettingDefault");
213
+ let body;
214
+ body = JSON.stringify(_json(input));
215
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
216
+ };
217
+ export const se_PutAttributesCommand = async (input, context) => {
218
+ const headers = sharedHeaders("PutAttributes");
219
+ let body;
220
+ body = JSON.stringify(_json(input));
221
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
222
+ };
223
+ export const se_PutClusterCapacityProvidersCommand = async (input, context) => {
224
+ const headers = sharedHeaders("PutClusterCapacityProviders");
225
+ let body;
226
+ body = JSON.stringify(_json(input));
227
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
228
+ };
229
+ export const se_RegisterContainerInstanceCommand = async (input, context) => {
230
+ const headers = sharedHeaders("RegisterContainerInstance");
231
+ let body;
232
+ body = JSON.stringify(se_RegisterContainerInstanceRequest(input, context));
233
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
234
+ };
235
+ export const se_RegisterTaskDefinitionCommand = async (input, context) => {
236
+ const headers = sharedHeaders("RegisterTaskDefinition");
237
+ let body;
238
+ body = JSON.stringify(_json(input));
239
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
240
+ };
241
+ export const se_RunTaskCommand = async (input, context) => {
242
+ const headers = sharedHeaders("RunTask");
243
+ let body;
244
+ body = JSON.stringify(se_RunTaskRequest(input, context));
245
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
246
+ };
247
+ export const se_StartTaskCommand = async (input, context) => {
248
+ const headers = sharedHeaders("StartTask");
249
+ let body;
250
+ body = JSON.stringify(_json(input));
251
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
252
+ };
253
+ export const se_StopTaskCommand = async (input, context) => {
254
+ const headers = sharedHeaders("StopTask");
255
+ let body;
256
+ body = JSON.stringify(_json(input));
257
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
258
+ };
259
+ export const se_SubmitAttachmentStateChangesCommand = async (input, context) => {
260
+ const headers = sharedHeaders("SubmitAttachmentStateChanges");
261
+ let body;
262
+ body = JSON.stringify(_json(input));
263
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
264
+ };
265
+ export const se_SubmitContainerStateChangeCommand = async (input, context) => {
266
+ const headers = sharedHeaders("SubmitContainerStateChange");
267
+ let body;
268
+ body = JSON.stringify(_json(input));
269
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
270
+ };
271
+ export const se_SubmitTaskStateChangeCommand = async (input, context) => {
272
+ const headers = sharedHeaders("SubmitTaskStateChange");
273
+ let body;
274
+ body = JSON.stringify(se_SubmitTaskStateChangeRequest(input, context));
275
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
276
+ };
277
+ export const se_TagResourceCommand = async (input, context) => {
278
+ const headers = sharedHeaders("TagResource");
279
+ let body;
280
+ body = JSON.stringify(_json(input));
281
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
282
+ };
283
+ export const se_UntagResourceCommand = async (input, context) => {
284
+ const headers = sharedHeaders("UntagResource");
285
+ let body;
286
+ body = JSON.stringify(_json(input));
287
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
288
+ };
289
+ export const se_UpdateCapacityProviderCommand = async (input, context) => {
290
+ const headers = sharedHeaders("UpdateCapacityProvider");
291
+ let body;
292
+ body = JSON.stringify(_json(input));
293
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
294
+ };
295
+ export const se_UpdateClusterCommand = async (input, context) => {
296
+ const headers = sharedHeaders("UpdateCluster");
297
+ let body;
298
+ body = JSON.stringify(_json(input));
299
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
300
+ };
301
+ export const se_UpdateClusterSettingsCommand = async (input, context) => {
302
+ const headers = sharedHeaders("UpdateClusterSettings");
303
+ let body;
304
+ body = JSON.stringify(_json(input));
305
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
306
+ };
307
+ export const se_UpdateContainerAgentCommand = async (input, context) => {
308
+ const headers = sharedHeaders("UpdateContainerAgent");
309
+ let body;
310
+ body = JSON.stringify(_json(input));
311
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
312
+ };
313
+ export const se_UpdateContainerInstancesStateCommand = async (input, context) => {
314
+ const headers = sharedHeaders("UpdateContainerInstancesState");
315
+ let body;
316
+ body = JSON.stringify(_json(input));
317
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
318
+ };
319
+ export const se_UpdateServiceCommand = async (input, context) => {
320
+ const headers = sharedHeaders("UpdateService");
321
+ let body;
322
+ body = JSON.stringify(_json(input));
323
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
324
+ };
325
+ export const se_UpdateServicePrimaryTaskSetCommand = async (input, context) => {
326
+ const headers = sharedHeaders("UpdateServicePrimaryTaskSet");
327
+ let body;
328
+ body = JSON.stringify(_json(input));
329
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
330
+ };
331
+ export const se_UpdateTaskProtectionCommand = async (input, context) => {
332
+ const headers = sharedHeaders("UpdateTaskProtection");
333
+ let body;
334
+ body = JSON.stringify(_json(input));
335
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
336
+ };
337
+ export const se_UpdateTaskSetCommand = async (input, context) => {
338
+ const headers = sharedHeaders("UpdateTaskSet");
339
+ let body;
340
+ body = JSON.stringify(se_UpdateTaskSetRequest(input, context));
341
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
342
+ };
343
+ export const de_CreateCapacityProviderCommand = async (output, context) => {
344
+ if (output.statusCode >= 300) {
345
+ return de_CommandError(output, context);
346
+ }
347
+ const data = await parseBody(output.body, context);
348
+ let contents = {};
349
+ contents = _json(data);
350
+ const response = {
351
+ $metadata: deserializeMetadata(output),
352
+ ...contents,
353
+ };
354
+ return response;
355
+ };
356
+ export const de_CreateClusterCommand = async (output, context) => {
357
+ if (output.statusCode >= 300) {
358
+ return de_CommandError(output, context);
359
+ }
360
+ const data = await parseBody(output.body, context);
361
+ let contents = {};
362
+ contents = _json(data);
363
+ const response = {
364
+ $metadata: deserializeMetadata(output),
365
+ ...contents,
366
+ };
367
+ return response;
368
+ };
369
+ export const de_CreateServiceCommand = async (output, context) => {
370
+ if (output.statusCode >= 300) {
371
+ return de_CommandError(output, context);
372
+ }
373
+ const data = await parseBody(output.body, context);
374
+ let contents = {};
375
+ contents = de_CreateServiceResponse(data, context);
376
+ const response = {
377
+ $metadata: deserializeMetadata(output),
378
+ ...contents,
379
+ };
380
+ return response;
381
+ };
382
+ export const de_CreateTaskSetCommand = async (output, context) => {
383
+ if (output.statusCode >= 300) {
384
+ return de_CommandError(output, context);
385
+ }
386
+ const data = await parseBody(output.body, context);
387
+ let contents = {};
388
+ contents = de_CreateTaskSetResponse(data, context);
389
+ const response = {
390
+ $metadata: deserializeMetadata(output),
391
+ ...contents,
392
+ };
393
+ return response;
394
+ };
395
+ export const de_DeleteAccountSettingCommand = async (output, context) => {
396
+ if (output.statusCode >= 300) {
397
+ return de_CommandError(output, context);
398
+ }
399
+ const data = await parseBody(output.body, context);
400
+ let contents = {};
401
+ contents = _json(data);
402
+ const response = {
403
+ $metadata: deserializeMetadata(output),
404
+ ...contents,
405
+ };
406
+ return response;
407
+ };
408
+ export const de_DeleteAttributesCommand = async (output, context) => {
409
+ if (output.statusCode >= 300) {
410
+ return de_CommandError(output, context);
411
+ }
412
+ const data = await parseBody(output.body, context);
413
+ let contents = {};
414
+ contents = _json(data);
415
+ const response = {
416
+ $metadata: deserializeMetadata(output),
417
+ ...contents,
418
+ };
419
+ return response;
420
+ };
421
+ export const de_DeleteCapacityProviderCommand = async (output, context) => {
422
+ if (output.statusCode >= 300) {
423
+ return de_CommandError(output, context);
424
+ }
425
+ const data = await parseBody(output.body, context);
426
+ let contents = {};
427
+ contents = _json(data);
428
+ const response = {
429
+ $metadata: deserializeMetadata(output),
430
+ ...contents,
431
+ };
432
+ return response;
433
+ };
434
+ export const de_DeleteClusterCommand = async (output, context) => {
435
+ if (output.statusCode >= 300) {
436
+ return de_CommandError(output, context);
437
+ }
438
+ const data = await parseBody(output.body, context);
439
+ let contents = {};
440
+ contents = _json(data);
441
+ const response = {
442
+ $metadata: deserializeMetadata(output),
443
+ ...contents,
444
+ };
445
+ return response;
446
+ };
447
+ export const de_DeleteServiceCommand = async (output, context) => {
448
+ if (output.statusCode >= 300) {
449
+ return de_CommandError(output, context);
450
+ }
451
+ const data = await parseBody(output.body, context);
452
+ let contents = {};
453
+ contents = de_DeleteServiceResponse(data, context);
454
+ const response = {
455
+ $metadata: deserializeMetadata(output),
456
+ ...contents,
457
+ };
458
+ return response;
459
+ };
460
+ export const de_DeleteTaskDefinitionsCommand = async (output, context) => {
461
+ if (output.statusCode >= 300) {
462
+ return de_CommandError(output, context);
463
+ }
464
+ const data = await parseBody(output.body, context);
465
+ let contents = {};
466
+ contents = de_DeleteTaskDefinitionsResponse(data, context);
467
+ const response = {
468
+ $metadata: deserializeMetadata(output),
469
+ ...contents,
470
+ };
471
+ return response;
472
+ };
473
+ export const de_DeleteTaskSetCommand = async (output, context) => {
474
+ if (output.statusCode >= 300) {
475
+ return de_CommandError(output, context);
476
+ }
477
+ const data = await parseBody(output.body, context);
478
+ let contents = {};
479
+ contents = de_DeleteTaskSetResponse(data, context);
480
+ const response = {
481
+ $metadata: deserializeMetadata(output),
482
+ ...contents,
483
+ };
484
+ return response;
485
+ };
486
+ export const de_DeregisterContainerInstanceCommand = async (output, context) => {
487
+ if (output.statusCode >= 300) {
488
+ return de_CommandError(output, context);
489
+ }
490
+ const data = await parseBody(output.body, context);
491
+ let contents = {};
492
+ contents = de_DeregisterContainerInstanceResponse(data, context);
493
+ const response = {
494
+ $metadata: deserializeMetadata(output),
495
+ ...contents,
496
+ };
497
+ return response;
498
+ };
499
+ export const de_DeregisterTaskDefinitionCommand = async (output, context) => {
500
+ if (output.statusCode >= 300) {
501
+ return de_CommandError(output, context);
502
+ }
503
+ const data = await parseBody(output.body, context);
504
+ let contents = {};
505
+ contents = de_DeregisterTaskDefinitionResponse(data, context);
506
+ const response = {
507
+ $metadata: deserializeMetadata(output),
508
+ ...contents,
509
+ };
510
+ return response;
511
+ };
512
+ export const de_DescribeCapacityProvidersCommand = async (output, context) => {
513
+ if (output.statusCode >= 300) {
514
+ return de_CommandError(output, context);
515
+ }
516
+ const data = await parseBody(output.body, context);
517
+ let contents = {};
518
+ contents = _json(data);
519
+ const response = {
520
+ $metadata: deserializeMetadata(output),
521
+ ...contents,
522
+ };
523
+ return response;
524
+ };
525
+ export const de_DescribeClustersCommand = async (output, context) => {
526
+ if (output.statusCode >= 300) {
527
+ return de_CommandError(output, context);
528
+ }
529
+ const data = await parseBody(output.body, context);
530
+ let contents = {};
531
+ contents = _json(data);
532
+ const response = {
533
+ $metadata: deserializeMetadata(output),
534
+ ...contents,
535
+ };
536
+ return response;
537
+ };
538
+ export const de_DescribeContainerInstancesCommand = async (output, context) => {
539
+ if (output.statusCode >= 300) {
540
+ return de_CommandError(output, context);
541
+ }
542
+ const data = await parseBody(output.body, context);
543
+ let contents = {};
544
+ contents = de_DescribeContainerInstancesResponse(data, context);
545
+ const response = {
546
+ $metadata: deserializeMetadata(output),
547
+ ...contents,
548
+ };
549
+ return response;
550
+ };
551
+ export const de_DescribeServicesCommand = async (output, context) => {
552
+ if (output.statusCode >= 300) {
553
+ return de_CommandError(output, context);
554
+ }
555
+ const data = await parseBody(output.body, context);
556
+ let contents = {};
557
+ contents = de_DescribeServicesResponse(data, context);
558
+ const response = {
559
+ $metadata: deserializeMetadata(output),
560
+ ...contents,
561
+ };
562
+ return response;
563
+ };
564
+ export const de_DescribeTaskDefinitionCommand = async (output, context) => {
565
+ if (output.statusCode >= 300) {
566
+ return de_CommandError(output, context);
567
+ }
568
+ const data = await parseBody(output.body, context);
569
+ let contents = {};
570
+ contents = de_DescribeTaskDefinitionResponse(data, context);
571
+ const response = {
572
+ $metadata: deserializeMetadata(output),
573
+ ...contents,
574
+ };
575
+ return response;
576
+ };
577
+ export const de_DescribeTasksCommand = async (output, context) => {
578
+ if (output.statusCode >= 300) {
579
+ return de_CommandError(output, context);
580
+ }
581
+ const data = await parseBody(output.body, context);
582
+ let contents = {};
583
+ contents = de_DescribeTasksResponse(data, context);
584
+ const response = {
585
+ $metadata: deserializeMetadata(output),
586
+ ...contents,
587
+ };
588
+ return response;
589
+ };
590
+ export const de_DescribeTaskSetsCommand = async (output, context) => {
591
+ if (output.statusCode >= 300) {
592
+ return de_CommandError(output, context);
593
+ }
594
+ const data = await parseBody(output.body, context);
595
+ let contents = {};
596
+ contents = de_DescribeTaskSetsResponse(data, context);
597
+ const response = {
598
+ $metadata: deserializeMetadata(output),
599
+ ...contents,
600
+ };
601
+ return response;
602
+ };
603
+ export const de_DiscoverPollEndpointCommand = async (output, context) => {
604
+ if (output.statusCode >= 300) {
605
+ return de_CommandError(output, context);
606
+ }
607
+ const data = await parseBody(output.body, context);
608
+ let contents = {};
609
+ contents = _json(data);
610
+ const response = {
611
+ $metadata: deserializeMetadata(output),
612
+ ...contents,
613
+ };
614
+ return response;
615
+ };
616
+ export const de_ExecuteCommandCommand = async (output, context) => {
617
+ if (output.statusCode >= 300) {
618
+ return de_CommandError(output, context);
619
+ }
620
+ const data = await parseBody(output.body, context);
621
+ let contents = {};
622
+ contents = _json(data);
623
+ const response = {
624
+ $metadata: deserializeMetadata(output),
625
+ ...contents,
626
+ };
627
+ return response;
628
+ };
629
+ export const de_GetTaskProtectionCommand = async (output, context) => {
630
+ if (output.statusCode >= 300) {
631
+ return de_CommandError(output, context);
632
+ }
633
+ const data = await parseBody(output.body, context);
634
+ let contents = {};
635
+ contents = de_GetTaskProtectionResponse(data, context);
636
+ const response = {
637
+ $metadata: deserializeMetadata(output),
638
+ ...contents,
639
+ };
640
+ return response;
641
+ };
642
+ export const de_ListAccountSettingsCommand = async (output, context) => {
643
+ if (output.statusCode >= 300) {
644
+ return de_CommandError(output, context);
645
+ }
646
+ const data = await parseBody(output.body, context);
647
+ let contents = {};
648
+ contents = _json(data);
649
+ const response = {
650
+ $metadata: deserializeMetadata(output),
651
+ ...contents,
652
+ };
653
+ return response;
654
+ };
655
+ export const de_ListAttributesCommand = async (output, context) => {
656
+ if (output.statusCode >= 300) {
657
+ return de_CommandError(output, context);
658
+ }
659
+ const data = await parseBody(output.body, context);
660
+ let contents = {};
661
+ contents = _json(data);
662
+ const response = {
663
+ $metadata: deserializeMetadata(output),
664
+ ...contents,
665
+ };
666
+ return response;
667
+ };
668
+ export const de_ListClustersCommand = async (output, context) => {
669
+ if (output.statusCode >= 300) {
670
+ return de_CommandError(output, context);
671
+ }
672
+ const data = await parseBody(output.body, context);
673
+ let contents = {};
674
+ contents = _json(data);
675
+ const response = {
676
+ $metadata: deserializeMetadata(output),
677
+ ...contents,
678
+ };
679
+ return response;
680
+ };
681
+ export const de_ListContainerInstancesCommand = async (output, context) => {
682
+ if (output.statusCode >= 300) {
683
+ return de_CommandError(output, context);
684
+ }
685
+ const data = await parseBody(output.body, context);
686
+ let contents = {};
687
+ contents = _json(data);
688
+ const response = {
689
+ $metadata: deserializeMetadata(output),
690
+ ...contents,
691
+ };
692
+ return response;
693
+ };
694
+ export const de_ListServicesCommand = async (output, context) => {
695
+ if (output.statusCode >= 300) {
696
+ return de_CommandError(output, context);
697
+ }
698
+ const data = await parseBody(output.body, context);
699
+ let contents = {};
700
+ contents = _json(data);
701
+ const response = {
702
+ $metadata: deserializeMetadata(output),
703
+ ...contents,
704
+ };
705
+ return response;
706
+ };
707
+ export const de_ListServicesByNamespaceCommand = async (output, context) => {
708
+ if (output.statusCode >= 300) {
709
+ return de_CommandError(output, context);
710
+ }
711
+ const data = await parseBody(output.body, context);
712
+ let contents = {};
713
+ contents = _json(data);
714
+ const response = {
715
+ $metadata: deserializeMetadata(output),
716
+ ...contents,
717
+ };
718
+ return response;
719
+ };
720
+ export const de_ListTagsForResourceCommand = async (output, context) => {
721
+ if (output.statusCode >= 300) {
722
+ return de_CommandError(output, context);
723
+ }
724
+ const data = await parseBody(output.body, context);
725
+ let contents = {};
726
+ contents = _json(data);
727
+ const response = {
728
+ $metadata: deserializeMetadata(output),
729
+ ...contents,
730
+ };
731
+ return response;
732
+ };
733
+ export const de_ListTaskDefinitionFamiliesCommand = async (output, context) => {
734
+ if (output.statusCode >= 300) {
735
+ return de_CommandError(output, context);
736
+ }
737
+ const data = await parseBody(output.body, context);
738
+ let contents = {};
739
+ contents = _json(data);
740
+ const response = {
741
+ $metadata: deserializeMetadata(output),
742
+ ...contents,
743
+ };
744
+ return response;
745
+ };
746
+ export const de_ListTaskDefinitionsCommand = async (output, context) => {
747
+ if (output.statusCode >= 300) {
748
+ return de_CommandError(output, context);
749
+ }
750
+ const data = await parseBody(output.body, context);
751
+ let contents = {};
752
+ contents = _json(data);
753
+ const response = {
754
+ $metadata: deserializeMetadata(output),
755
+ ...contents,
756
+ };
757
+ return response;
758
+ };
759
+ export const de_ListTasksCommand = async (output, context) => {
760
+ if (output.statusCode >= 300) {
761
+ return de_CommandError(output, context);
762
+ }
763
+ const data = await parseBody(output.body, context);
764
+ let contents = {};
765
+ contents = _json(data);
766
+ const response = {
767
+ $metadata: deserializeMetadata(output),
768
+ ...contents,
769
+ };
770
+ return response;
771
+ };
772
+ export const de_PutAccountSettingCommand = async (output, context) => {
773
+ if (output.statusCode >= 300) {
774
+ return de_CommandError(output, context);
775
+ }
776
+ const data = await parseBody(output.body, context);
777
+ let contents = {};
778
+ contents = _json(data);
779
+ const response = {
780
+ $metadata: deserializeMetadata(output),
781
+ ...contents,
782
+ };
783
+ return response;
784
+ };
785
+ export const de_PutAccountSettingDefaultCommand = async (output, context) => {
786
+ if (output.statusCode >= 300) {
787
+ return de_CommandError(output, context);
788
+ }
789
+ const data = await parseBody(output.body, context);
790
+ let contents = {};
791
+ contents = _json(data);
792
+ const response = {
793
+ $metadata: deserializeMetadata(output),
794
+ ...contents,
795
+ };
796
+ return response;
797
+ };
798
+ export const de_PutAttributesCommand = async (output, context) => {
799
+ if (output.statusCode >= 300) {
800
+ return de_CommandError(output, context);
801
+ }
802
+ const data = await parseBody(output.body, context);
803
+ let contents = {};
804
+ contents = _json(data);
805
+ const response = {
806
+ $metadata: deserializeMetadata(output),
807
+ ...contents,
808
+ };
809
+ return response;
810
+ };
811
+ export const de_PutClusterCapacityProvidersCommand = async (output, context) => {
812
+ if (output.statusCode >= 300) {
813
+ return de_CommandError(output, context);
814
+ }
815
+ const data = await parseBody(output.body, context);
816
+ let contents = {};
817
+ contents = _json(data);
818
+ const response = {
819
+ $metadata: deserializeMetadata(output),
820
+ ...contents,
821
+ };
822
+ return response;
823
+ };
824
+ export const de_RegisterContainerInstanceCommand = async (output, context) => {
825
+ if (output.statusCode >= 300) {
826
+ return de_CommandError(output, context);
827
+ }
828
+ const data = await parseBody(output.body, context);
829
+ let contents = {};
830
+ contents = de_RegisterContainerInstanceResponse(data, context);
831
+ const response = {
832
+ $metadata: deserializeMetadata(output),
833
+ ...contents,
834
+ };
835
+ return response;
836
+ };
837
+ export const de_RegisterTaskDefinitionCommand = async (output, context) => {
838
+ if (output.statusCode >= 300) {
839
+ return de_CommandError(output, context);
840
+ }
841
+ const data = await parseBody(output.body, context);
842
+ let contents = {};
843
+ contents = de_RegisterTaskDefinitionResponse(data, context);
844
+ const response = {
845
+ $metadata: deserializeMetadata(output),
846
+ ...contents,
847
+ };
848
+ return response;
849
+ };
850
+ export const de_RunTaskCommand = async (output, context) => {
851
+ if (output.statusCode >= 300) {
852
+ return de_CommandError(output, context);
853
+ }
854
+ const data = await parseBody(output.body, context);
855
+ let contents = {};
856
+ contents = de_RunTaskResponse(data, context);
857
+ const response = {
858
+ $metadata: deserializeMetadata(output),
859
+ ...contents,
860
+ };
861
+ return response;
862
+ };
863
+ export const de_StartTaskCommand = async (output, context) => {
864
+ if (output.statusCode >= 300) {
865
+ return de_CommandError(output, context);
866
+ }
867
+ const data = await parseBody(output.body, context);
868
+ let contents = {};
869
+ contents = de_StartTaskResponse(data, context);
870
+ const response = {
871
+ $metadata: deserializeMetadata(output),
872
+ ...contents,
873
+ };
874
+ return response;
875
+ };
876
+ export const de_StopTaskCommand = async (output, context) => {
877
+ if (output.statusCode >= 300) {
878
+ return de_CommandError(output, context);
879
+ }
880
+ const data = await parseBody(output.body, context);
881
+ let contents = {};
882
+ contents = de_StopTaskResponse(data, context);
883
+ const response = {
884
+ $metadata: deserializeMetadata(output),
885
+ ...contents,
886
+ };
887
+ return response;
888
+ };
889
+ export const de_SubmitAttachmentStateChangesCommand = async (output, context) => {
890
+ if (output.statusCode >= 300) {
891
+ return de_CommandError(output, context);
892
+ }
893
+ const data = await parseBody(output.body, context);
894
+ let contents = {};
895
+ contents = _json(data);
896
+ const response = {
897
+ $metadata: deserializeMetadata(output),
898
+ ...contents,
899
+ };
900
+ return response;
901
+ };
902
+ export const de_SubmitContainerStateChangeCommand = async (output, context) => {
903
+ if (output.statusCode >= 300) {
904
+ return de_CommandError(output, context);
905
+ }
906
+ const data = await parseBody(output.body, context);
907
+ let contents = {};
908
+ contents = _json(data);
909
+ const response = {
910
+ $metadata: deserializeMetadata(output),
911
+ ...contents,
912
+ };
913
+ return response;
914
+ };
915
+ export const de_SubmitTaskStateChangeCommand = async (output, context) => {
916
+ if (output.statusCode >= 300) {
917
+ return de_CommandError(output, context);
918
+ }
919
+ const data = await parseBody(output.body, context);
920
+ let contents = {};
921
+ contents = _json(data);
922
+ const response = {
923
+ $metadata: deserializeMetadata(output),
924
+ ...contents,
925
+ };
926
+ return response;
927
+ };
928
+ export const de_TagResourceCommand = async (output, context) => {
929
+ if (output.statusCode >= 300) {
930
+ return de_CommandError(output, context);
931
+ }
932
+ const data = await parseBody(output.body, context);
933
+ let contents = {};
934
+ contents = _json(data);
935
+ const response = {
936
+ $metadata: deserializeMetadata(output),
937
+ ...contents,
938
+ };
939
+ return response;
940
+ };
941
+ export const de_UntagResourceCommand = async (output, context) => {
942
+ if (output.statusCode >= 300) {
943
+ return de_CommandError(output, context);
944
+ }
945
+ const data = await parseBody(output.body, context);
946
+ let contents = {};
947
+ contents = _json(data);
948
+ const response = {
949
+ $metadata: deserializeMetadata(output),
950
+ ...contents,
951
+ };
952
+ return response;
953
+ };
954
+ export const de_UpdateCapacityProviderCommand = async (output, context) => {
955
+ if (output.statusCode >= 300) {
956
+ return de_CommandError(output, context);
957
+ }
958
+ const data = await parseBody(output.body, context);
959
+ let contents = {};
960
+ contents = _json(data);
961
+ const response = {
962
+ $metadata: deserializeMetadata(output),
963
+ ...contents,
964
+ };
965
+ return response;
966
+ };
967
+ export const de_UpdateClusterCommand = async (output, context) => {
968
+ if (output.statusCode >= 300) {
969
+ return de_CommandError(output, context);
970
+ }
971
+ const data = await parseBody(output.body, context);
972
+ let contents = {};
973
+ contents = _json(data);
974
+ const response = {
975
+ $metadata: deserializeMetadata(output),
976
+ ...contents,
977
+ };
978
+ return response;
979
+ };
980
+ export const de_UpdateClusterSettingsCommand = async (output, context) => {
981
+ if (output.statusCode >= 300) {
982
+ return de_CommandError(output, context);
983
+ }
984
+ const data = await parseBody(output.body, context);
985
+ let contents = {};
986
+ contents = _json(data);
987
+ const response = {
988
+ $metadata: deserializeMetadata(output),
989
+ ...contents,
990
+ };
991
+ return response;
992
+ };
993
+ export const de_UpdateContainerAgentCommand = async (output, context) => {
994
+ if (output.statusCode >= 300) {
995
+ return de_CommandError(output, context);
996
+ }
997
+ const data = await parseBody(output.body, context);
998
+ let contents = {};
999
+ contents = de_UpdateContainerAgentResponse(data, context);
1000
+ const response = {
1001
+ $metadata: deserializeMetadata(output),
1002
+ ...contents,
1003
+ };
1004
+ return response;
1005
+ };
1006
+ export const de_UpdateContainerInstancesStateCommand = async (output, context) => {
1007
+ if (output.statusCode >= 300) {
1008
+ return de_CommandError(output, context);
1009
+ }
1010
+ const data = await parseBody(output.body, context);
1011
+ let contents = {};
1012
+ contents = de_UpdateContainerInstancesStateResponse(data, context);
1013
+ const response = {
1014
+ $metadata: deserializeMetadata(output),
1015
+ ...contents,
1016
+ };
1017
+ return response;
1018
+ };
1019
+ export const de_UpdateServiceCommand = async (output, context) => {
1020
+ if (output.statusCode >= 300) {
1021
+ return de_CommandError(output, context);
1022
+ }
1023
+ const data = await parseBody(output.body, context);
1024
+ let contents = {};
1025
+ contents = de_UpdateServiceResponse(data, context);
1026
+ const response = {
1027
+ $metadata: deserializeMetadata(output),
1028
+ ...contents,
1029
+ };
1030
+ return response;
1031
+ };
1032
+ export const de_UpdateServicePrimaryTaskSetCommand = async (output, context) => {
1033
+ if (output.statusCode >= 300) {
1034
+ return de_CommandError(output, context);
1035
+ }
1036
+ const data = await parseBody(output.body, context);
1037
+ let contents = {};
1038
+ contents = de_UpdateServicePrimaryTaskSetResponse(data, context);
1039
+ const response = {
1040
+ $metadata: deserializeMetadata(output),
1041
+ ...contents,
1042
+ };
1043
+ return response;
1044
+ };
1045
+ export const de_UpdateTaskProtectionCommand = async (output, context) => {
1046
+ if (output.statusCode >= 300) {
1047
+ return de_CommandError(output, context);
1048
+ }
1049
+ const data = await parseBody(output.body, context);
1050
+ let contents = {};
1051
+ contents = de_UpdateTaskProtectionResponse(data, context);
1052
+ const response = {
1053
+ $metadata: deserializeMetadata(output),
1054
+ ...contents,
1055
+ };
1056
+ return response;
1057
+ };
1058
+ export const de_UpdateTaskSetCommand = async (output, context) => {
1059
+ if (output.statusCode >= 300) {
1060
+ return de_CommandError(output, context);
1061
+ }
1062
+ const data = await parseBody(output.body, context);
1063
+ let contents = {};
1064
+ contents = de_UpdateTaskSetResponse(data, context);
1065
+ const response = {
1066
+ $metadata: deserializeMetadata(output),
1067
+ ...contents,
1068
+ };
1069
+ return response;
1070
+ };
1071
+ const de_CommandError = async (output, context) => {
1072
+ const parsedOutput = {
1073
+ ...output,
1074
+ body: await parseErrorBody(output.body, context),
1075
+ };
1076
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1077
+ switch (errorCode) {
1078
+ case "ClientException":
1079
+ case "com.amazonaws.ecs#ClientException":
1080
+ throw await de_ClientExceptionRes(parsedOutput, context);
1081
+ case "InvalidParameterException":
1082
+ case "com.amazonaws.ecs#InvalidParameterException":
1083
+ throw await de_InvalidParameterExceptionRes(parsedOutput, context);
1084
+ case "LimitExceededException":
1085
+ case "com.amazonaws.ecs#LimitExceededException":
1086
+ throw await de_LimitExceededExceptionRes(parsedOutput, context);
1087
+ case "ServerException":
1088
+ case "com.amazonaws.ecs#ServerException":
1089
+ throw await de_ServerExceptionRes(parsedOutput, context);
1090
+ case "UpdateInProgressException":
1091
+ case "com.amazonaws.ecs#UpdateInProgressException":
1092
+ throw await de_UpdateInProgressExceptionRes(parsedOutput, context);
1093
+ case "NamespaceNotFoundException":
1094
+ case "com.amazonaws.ecs#NamespaceNotFoundException":
1095
+ throw await de_NamespaceNotFoundExceptionRes(parsedOutput, context);
1096
+ case "AccessDeniedException":
1097
+ case "com.amazonaws.ecs#AccessDeniedException":
1098
+ throw await de_AccessDeniedExceptionRes(parsedOutput, context);
1099
+ case "ClusterNotFoundException":
1100
+ case "com.amazonaws.ecs#ClusterNotFoundException":
1101
+ throw await de_ClusterNotFoundExceptionRes(parsedOutput, context);
1102
+ case "PlatformTaskDefinitionIncompatibilityException":
1103
+ case "com.amazonaws.ecs#PlatformTaskDefinitionIncompatibilityException":
1104
+ throw await de_PlatformTaskDefinitionIncompatibilityExceptionRes(parsedOutput, context);
1105
+ case "PlatformUnknownException":
1106
+ case "com.amazonaws.ecs#PlatformUnknownException":
1107
+ throw await de_PlatformUnknownExceptionRes(parsedOutput, context);
1108
+ case "UnsupportedFeatureException":
1109
+ case "com.amazonaws.ecs#UnsupportedFeatureException":
1110
+ throw await de_UnsupportedFeatureExceptionRes(parsedOutput, context);
1111
+ case "ServiceNotActiveException":
1112
+ case "com.amazonaws.ecs#ServiceNotActiveException":
1113
+ throw await de_ServiceNotActiveExceptionRes(parsedOutput, context);
1114
+ case "ServiceNotFoundException":
1115
+ case "com.amazonaws.ecs#ServiceNotFoundException":
1116
+ throw await de_ServiceNotFoundExceptionRes(parsedOutput, context);
1117
+ case "TargetNotFoundException":
1118
+ case "com.amazonaws.ecs#TargetNotFoundException":
1119
+ throw await de_TargetNotFoundExceptionRes(parsedOutput, context);
1120
+ case "ClusterContainsContainerInstancesException":
1121
+ case "com.amazonaws.ecs#ClusterContainsContainerInstancesException":
1122
+ throw await de_ClusterContainsContainerInstancesExceptionRes(parsedOutput, context);
1123
+ case "ClusterContainsServicesException":
1124
+ case "com.amazonaws.ecs#ClusterContainsServicesException":
1125
+ throw await de_ClusterContainsServicesExceptionRes(parsedOutput, context);
1126
+ case "ClusterContainsTasksException":
1127
+ case "com.amazonaws.ecs#ClusterContainsTasksException":
1128
+ throw await de_ClusterContainsTasksExceptionRes(parsedOutput, context);
1129
+ case "TaskSetNotFoundException":
1130
+ case "com.amazonaws.ecs#TaskSetNotFoundException":
1131
+ throw await de_TaskSetNotFoundExceptionRes(parsedOutput, context);
1132
+ case "TargetNotConnectedException":
1133
+ case "com.amazonaws.ecs#TargetNotConnectedException":
1134
+ throw await de_TargetNotConnectedExceptionRes(parsedOutput, context);
1135
+ case "ResourceNotFoundException":
1136
+ case "com.amazonaws.ecs#ResourceNotFoundException":
1137
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
1138
+ case "AttributeLimitExceededException":
1139
+ case "com.amazonaws.ecs#AttributeLimitExceededException":
1140
+ throw await de_AttributeLimitExceededExceptionRes(parsedOutput, context);
1141
+ case "ResourceInUseException":
1142
+ case "com.amazonaws.ecs#ResourceInUseException":
1143
+ throw await de_ResourceInUseExceptionRes(parsedOutput, context);
1144
+ case "BlockedException":
1145
+ case "com.amazonaws.ecs#BlockedException":
1146
+ throw await de_BlockedExceptionRes(parsedOutput, context);
1147
+ case "ConflictException":
1148
+ case "com.amazonaws.ecs#ConflictException":
1149
+ throw await de_ConflictExceptionRes(parsedOutput, context);
1150
+ case "MissingVersionException":
1151
+ case "com.amazonaws.ecs#MissingVersionException":
1152
+ throw await de_MissingVersionExceptionRes(parsedOutput, context);
1153
+ case "NoUpdateAvailableException":
1154
+ case "com.amazonaws.ecs#NoUpdateAvailableException":
1155
+ throw await de_NoUpdateAvailableExceptionRes(parsedOutput, context);
1156
+ default:
1157
+ const parsedBody = parsedOutput.body;
1158
+ return throwDefaultError({
1159
+ output,
1160
+ parsedBody,
1161
+ errorCode,
1162
+ });
1163
+ }
1164
+ };
1165
+ const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1166
+ const body = parsedOutput.body;
1167
+ const deserialized = _json(body);
1168
+ const exception = new AccessDeniedException({
1169
+ $metadata: deserializeMetadata(parsedOutput),
1170
+ ...deserialized,
1171
+ });
1172
+ return __decorateServiceException(exception, body);
1173
+ };
1174
+ const de_AttributeLimitExceededExceptionRes = async (parsedOutput, context) => {
1175
+ const body = parsedOutput.body;
1176
+ const deserialized = _json(body);
1177
+ const exception = new AttributeLimitExceededException({
1178
+ $metadata: deserializeMetadata(parsedOutput),
1179
+ ...deserialized,
1180
+ });
1181
+ return __decorateServiceException(exception, body);
1182
+ };
1183
+ const de_BlockedExceptionRes = async (parsedOutput, context) => {
1184
+ const body = parsedOutput.body;
1185
+ const deserialized = _json(body);
1186
+ const exception = new BlockedException({
1187
+ $metadata: deserializeMetadata(parsedOutput),
1188
+ ...deserialized,
1189
+ });
1190
+ return __decorateServiceException(exception, body);
1191
+ };
1192
+ const de_ClientExceptionRes = async (parsedOutput, context) => {
1193
+ const body = parsedOutput.body;
1194
+ const deserialized = _json(body);
1195
+ const exception = new ClientException({
1196
+ $metadata: deserializeMetadata(parsedOutput),
1197
+ ...deserialized,
1198
+ });
1199
+ return __decorateServiceException(exception, body);
1200
+ };
1201
+ const de_ClusterContainsContainerInstancesExceptionRes = async (parsedOutput, context) => {
1202
+ const body = parsedOutput.body;
1203
+ const deserialized = _json(body);
1204
+ const exception = new ClusterContainsContainerInstancesException({
1205
+ $metadata: deserializeMetadata(parsedOutput),
1206
+ ...deserialized,
1207
+ });
1208
+ return __decorateServiceException(exception, body);
1209
+ };
1210
+ const de_ClusterContainsServicesExceptionRes = async (parsedOutput, context) => {
1211
+ const body = parsedOutput.body;
1212
+ const deserialized = _json(body);
1213
+ const exception = new ClusterContainsServicesException({
1214
+ $metadata: deserializeMetadata(parsedOutput),
1215
+ ...deserialized,
1216
+ });
1217
+ return __decorateServiceException(exception, body);
1218
+ };
1219
+ const de_ClusterContainsTasksExceptionRes = async (parsedOutput, context) => {
1220
+ const body = parsedOutput.body;
1221
+ const deserialized = _json(body);
1222
+ const exception = new ClusterContainsTasksException({
1223
+ $metadata: deserializeMetadata(parsedOutput),
1224
+ ...deserialized,
1225
+ });
1226
+ return __decorateServiceException(exception, body);
1227
+ };
1228
+ const de_ClusterNotFoundExceptionRes = async (parsedOutput, context) => {
1229
+ const body = parsedOutput.body;
1230
+ const deserialized = _json(body);
1231
+ const exception = new ClusterNotFoundException({
1232
+ $metadata: deserializeMetadata(parsedOutput),
1233
+ ...deserialized,
1234
+ });
1235
+ return __decorateServiceException(exception, body);
1236
+ };
1237
+ const de_ConflictExceptionRes = async (parsedOutput, context) => {
1238
+ const body = parsedOutput.body;
1239
+ const deserialized = _json(body);
1240
+ const exception = new ConflictException({
1241
+ $metadata: deserializeMetadata(parsedOutput),
1242
+ ...deserialized,
1243
+ });
1244
+ return __decorateServiceException(exception, body);
1245
+ };
1246
+ const de_InvalidParameterExceptionRes = async (parsedOutput, context) => {
1247
+ const body = parsedOutput.body;
1248
+ const deserialized = _json(body);
1249
+ const exception = new InvalidParameterException({
1250
+ $metadata: deserializeMetadata(parsedOutput),
1251
+ ...deserialized,
1252
+ });
1253
+ return __decorateServiceException(exception, body);
1254
+ };
1255
+ const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
1256
+ const body = parsedOutput.body;
1257
+ const deserialized = _json(body);
1258
+ const exception = new LimitExceededException({
1259
+ $metadata: deserializeMetadata(parsedOutput),
1260
+ ...deserialized,
1261
+ });
1262
+ return __decorateServiceException(exception, body);
1263
+ };
1264
+ const de_MissingVersionExceptionRes = async (parsedOutput, context) => {
1265
+ const body = parsedOutput.body;
1266
+ const deserialized = _json(body);
1267
+ const exception = new MissingVersionException({
1268
+ $metadata: deserializeMetadata(parsedOutput),
1269
+ ...deserialized,
1270
+ });
1271
+ return __decorateServiceException(exception, body);
1272
+ };
1273
+ const de_NamespaceNotFoundExceptionRes = async (parsedOutput, context) => {
1274
+ const body = parsedOutput.body;
1275
+ const deserialized = _json(body);
1276
+ const exception = new NamespaceNotFoundException({
1277
+ $metadata: deserializeMetadata(parsedOutput),
1278
+ ...deserialized,
1279
+ });
1280
+ return __decorateServiceException(exception, body);
1281
+ };
1282
+ const de_NoUpdateAvailableExceptionRes = async (parsedOutput, context) => {
1283
+ const body = parsedOutput.body;
1284
+ const deserialized = _json(body);
1285
+ const exception = new NoUpdateAvailableException({
1286
+ $metadata: deserializeMetadata(parsedOutput),
1287
+ ...deserialized,
1288
+ });
1289
+ return __decorateServiceException(exception, body);
1290
+ };
1291
+ const de_PlatformTaskDefinitionIncompatibilityExceptionRes = async (parsedOutput, context) => {
1292
+ const body = parsedOutput.body;
1293
+ const deserialized = _json(body);
1294
+ const exception = new PlatformTaskDefinitionIncompatibilityException({
1295
+ $metadata: deserializeMetadata(parsedOutput),
1296
+ ...deserialized,
1297
+ });
1298
+ return __decorateServiceException(exception, body);
1299
+ };
1300
+ const de_PlatformUnknownExceptionRes = async (parsedOutput, context) => {
1301
+ const body = parsedOutput.body;
1302
+ const deserialized = _json(body);
1303
+ const exception = new PlatformUnknownException({
1304
+ $metadata: deserializeMetadata(parsedOutput),
1305
+ ...deserialized,
1306
+ });
1307
+ return __decorateServiceException(exception, body);
1308
+ };
1309
+ const de_ResourceInUseExceptionRes = async (parsedOutput, context) => {
1310
+ const body = parsedOutput.body;
1311
+ const deserialized = _json(body);
1312
+ const exception = new ResourceInUseException({
1313
+ $metadata: deserializeMetadata(parsedOutput),
1314
+ ...deserialized,
1315
+ });
1316
+ return __decorateServiceException(exception, body);
1317
+ };
1318
+ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1319
+ const body = parsedOutput.body;
1320
+ const deserialized = _json(body);
1321
+ const exception = new ResourceNotFoundException({
1322
+ $metadata: deserializeMetadata(parsedOutput),
1323
+ ...deserialized,
1324
+ });
1325
+ return __decorateServiceException(exception, body);
1326
+ };
1327
+ const de_ServerExceptionRes = async (parsedOutput, context) => {
1328
+ const body = parsedOutput.body;
1329
+ const deserialized = _json(body);
1330
+ const exception = new ServerException({
1331
+ $metadata: deserializeMetadata(parsedOutput),
1332
+ ...deserialized,
1333
+ });
1334
+ return __decorateServiceException(exception, body);
1335
+ };
1336
+ const de_ServiceNotActiveExceptionRes = async (parsedOutput, context) => {
1337
+ const body = parsedOutput.body;
1338
+ const deserialized = _json(body);
1339
+ const exception = new ServiceNotActiveException({
1340
+ $metadata: deserializeMetadata(parsedOutput),
1341
+ ...deserialized,
1342
+ });
1343
+ return __decorateServiceException(exception, body);
1344
+ };
1345
+ const de_ServiceNotFoundExceptionRes = async (parsedOutput, context) => {
1346
+ const body = parsedOutput.body;
1347
+ const deserialized = _json(body);
1348
+ const exception = new ServiceNotFoundException({
1349
+ $metadata: deserializeMetadata(parsedOutput),
1350
+ ...deserialized,
1351
+ });
1352
+ return __decorateServiceException(exception, body);
1353
+ };
1354
+ const de_TargetNotConnectedExceptionRes = async (parsedOutput, context) => {
1355
+ const body = parsedOutput.body;
1356
+ const deserialized = _json(body);
1357
+ const exception = new TargetNotConnectedException({
1358
+ $metadata: deserializeMetadata(parsedOutput),
1359
+ ...deserialized,
1360
+ });
1361
+ return __decorateServiceException(exception, body);
1362
+ };
1363
+ const de_TargetNotFoundExceptionRes = async (parsedOutput, context) => {
1364
+ const body = parsedOutput.body;
1365
+ const deserialized = _json(body);
1366
+ const exception = new TargetNotFoundException({
1367
+ $metadata: deserializeMetadata(parsedOutput),
1368
+ ...deserialized,
1369
+ });
1370
+ return __decorateServiceException(exception, body);
1371
+ };
1372
+ const de_TaskSetNotFoundExceptionRes = async (parsedOutput, context) => {
1373
+ const body = parsedOutput.body;
1374
+ const deserialized = _json(body);
1375
+ const exception = new TaskSetNotFoundException({
1376
+ $metadata: deserializeMetadata(parsedOutput),
1377
+ ...deserialized,
1378
+ });
1379
+ return __decorateServiceException(exception, body);
1380
+ };
1381
+ const de_UnsupportedFeatureExceptionRes = async (parsedOutput, context) => {
1382
+ const body = parsedOutput.body;
1383
+ const deserialized = _json(body);
1384
+ const exception = new UnsupportedFeatureException({
1385
+ $metadata: deserializeMetadata(parsedOutput),
1386
+ ...deserialized,
1387
+ });
1388
+ return __decorateServiceException(exception, body);
1389
+ };
1390
+ const de_UpdateInProgressExceptionRes = async (parsedOutput, context) => {
1391
+ const body = parsedOutput.body;
1392
+ const deserialized = _json(body);
1393
+ const exception = new UpdateInProgressException({
1394
+ $metadata: deserializeMetadata(parsedOutput),
1395
+ ...deserialized,
1396
+ });
1397
+ return __decorateServiceException(exception, body);
1398
+ };
1399
+ const se_CreateTaskSetRequest = (input, context) => {
1400
+ return take(input, {
1401
+ capacityProviderStrategy: _json,
1402
+ clientToken: [],
1403
+ cluster: [],
1404
+ externalId: [],
1405
+ launchType: [],
1406
+ loadBalancers: _json,
1407
+ networkConfiguration: _json,
1408
+ platformVersion: [],
1409
+ scale: (_) => se_Scale(_, context),
1410
+ service: [],
1411
+ serviceRegistries: _json,
1412
+ tags: _json,
1413
+ taskDefinition: [],
1414
+ });
1415
+ };
1416
+ const se_RegisterContainerInstanceRequest = (input, context) => {
1417
+ return take(input, {
1418
+ attributes: _json,
1419
+ cluster: [],
1420
+ containerInstanceArn: [],
1421
+ instanceIdentityDocument: [],
1422
+ instanceIdentityDocumentSignature: [],
1423
+ platformDevices: _json,
1424
+ tags: _json,
1425
+ totalResources: (_) => se_Resources(_, context),
1426
+ versionInfo: _json,
1427
+ });
1428
+ };
1429
+ const se_Resource = (input, context) => {
1430
+ return take(input, {
1431
+ doubleValue: __serializeFloat,
1432
+ integerValue: [],
1433
+ longValue: [],
1434
+ name: [],
1435
+ stringSetValue: _json,
1436
+ type: [],
1437
+ });
1438
+ };
1439
+ const se_Resources = (input, context) => {
1440
+ return input
1441
+ .filter((e) => e != null)
1442
+ .map((entry) => {
1443
+ return se_Resource(entry, context);
1444
+ });
1445
+ };
1446
+ const se_RunTaskRequest = (input, context) => {
1447
+ return take(input, {
1448
+ capacityProviderStrategy: _json,
1449
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
1450
+ cluster: [],
1451
+ count: [],
1452
+ enableECSManagedTags: [],
1453
+ enableExecuteCommand: [],
1454
+ group: [],
1455
+ launchType: [],
1456
+ networkConfiguration: _json,
1457
+ overrides: _json,
1458
+ placementConstraints: _json,
1459
+ placementStrategy: _json,
1460
+ platformVersion: [],
1461
+ propagateTags: [],
1462
+ referenceId: [],
1463
+ startedBy: [],
1464
+ tags: _json,
1465
+ taskDefinition: [],
1466
+ volumeConfigurations: _json,
1467
+ });
1468
+ };
1469
+ const se_Scale = (input, context) => {
1470
+ return take(input, {
1471
+ unit: [],
1472
+ value: __serializeFloat,
1473
+ });
1474
+ };
1475
+ const se_SubmitTaskStateChangeRequest = (input, context) => {
1476
+ return take(input, {
1477
+ attachments: _json,
1478
+ cluster: [],
1479
+ containers: _json,
1480
+ executionStoppedAt: (_) => _.getTime() / 1000,
1481
+ managedAgents: _json,
1482
+ pullStartedAt: (_) => _.getTime() / 1000,
1483
+ pullStoppedAt: (_) => _.getTime() / 1000,
1484
+ reason: [],
1485
+ status: [],
1486
+ task: [],
1487
+ });
1488
+ };
1489
+ const se_UpdateTaskSetRequest = (input, context) => {
1490
+ return take(input, {
1491
+ cluster: [],
1492
+ scale: (_) => se_Scale(_, context),
1493
+ service: [],
1494
+ taskSet: [],
1495
+ });
1496
+ };
1497
+ const de_Container = (output, context) => {
1498
+ return take(output, {
1499
+ containerArn: __expectString,
1500
+ cpu: __expectString,
1501
+ exitCode: __expectInt32,
1502
+ gpuIds: _json,
1503
+ healthStatus: __expectString,
1504
+ image: __expectString,
1505
+ imageDigest: __expectString,
1506
+ lastStatus: __expectString,
1507
+ managedAgents: (_) => de_ManagedAgents(_, context),
1508
+ memory: __expectString,
1509
+ memoryReservation: __expectString,
1510
+ name: __expectString,
1511
+ networkBindings: _json,
1512
+ networkInterfaces: _json,
1513
+ reason: __expectString,
1514
+ runtimeId: __expectString,
1515
+ taskArn: __expectString,
1516
+ });
1517
+ };
1518
+ const de_ContainerInstance = (output, context) => {
1519
+ return take(output, {
1520
+ agentConnected: __expectBoolean,
1521
+ agentUpdateStatus: __expectString,
1522
+ attachments: _json,
1523
+ attributes: _json,
1524
+ capacityProviderName: __expectString,
1525
+ containerInstanceArn: __expectString,
1526
+ ec2InstanceId: __expectString,
1527
+ healthStatus: (_) => de_ContainerInstanceHealthStatus(_, context),
1528
+ pendingTasksCount: __expectInt32,
1529
+ registeredAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1530
+ registeredResources: (_) => de_Resources(_, context),
1531
+ remainingResources: (_) => de_Resources(_, context),
1532
+ runningTasksCount: __expectInt32,
1533
+ status: __expectString,
1534
+ statusReason: __expectString,
1535
+ tags: _json,
1536
+ version: __expectLong,
1537
+ versionInfo: _json,
1538
+ });
1539
+ };
1540
+ const de_ContainerInstanceHealthStatus = (output, context) => {
1541
+ return take(output, {
1542
+ details: (_) => de_InstanceHealthCheckResultList(_, context),
1543
+ overallStatus: __expectString,
1544
+ });
1545
+ };
1546
+ const de_ContainerInstances = (output, context) => {
1547
+ const retVal = (output || [])
1548
+ .filter((e) => e != null)
1549
+ .map((entry) => {
1550
+ return de_ContainerInstance(entry, context);
1551
+ });
1552
+ return retVal;
1553
+ };
1554
+ const de_Containers = (output, context) => {
1555
+ const retVal = (output || [])
1556
+ .filter((e) => e != null)
1557
+ .map((entry) => {
1558
+ return de_Container(entry, context);
1559
+ });
1560
+ return retVal;
1561
+ };
1562
+ const de_CreateServiceResponse = (output, context) => {
1563
+ return take(output, {
1564
+ service: (_) => de_Service(_, context),
1565
+ });
1566
+ };
1567
+ const de_CreateTaskSetResponse = (output, context) => {
1568
+ return take(output, {
1569
+ taskSet: (_) => de_TaskSet(_, context),
1570
+ });
1571
+ };
1572
+ const de_DeleteServiceResponse = (output, context) => {
1573
+ return take(output, {
1574
+ service: (_) => de_Service(_, context),
1575
+ });
1576
+ };
1577
+ const de_DeleteTaskDefinitionsResponse = (output, context) => {
1578
+ return take(output, {
1579
+ failures: _json,
1580
+ taskDefinitions: (_) => de_TaskDefinitionList(_, context),
1581
+ });
1582
+ };
1583
+ const de_DeleteTaskSetResponse = (output, context) => {
1584
+ return take(output, {
1585
+ taskSet: (_) => de_TaskSet(_, context),
1586
+ });
1587
+ };
1588
+ const de_Deployment = (output, context) => {
1589
+ return take(output, {
1590
+ capacityProviderStrategy: _json,
1591
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1592
+ desiredCount: __expectInt32,
1593
+ failedTasks: __expectInt32,
1594
+ fargateEphemeralStorage: _json,
1595
+ id: __expectString,
1596
+ launchType: __expectString,
1597
+ networkConfiguration: _json,
1598
+ pendingCount: __expectInt32,
1599
+ platformFamily: __expectString,
1600
+ platformVersion: __expectString,
1601
+ rolloutState: __expectString,
1602
+ rolloutStateReason: __expectString,
1603
+ runningCount: __expectInt32,
1604
+ serviceConnectConfiguration: _json,
1605
+ serviceConnectResources: _json,
1606
+ status: __expectString,
1607
+ taskDefinition: __expectString,
1608
+ updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1609
+ volumeConfigurations: _json,
1610
+ });
1611
+ };
1612
+ const de_Deployments = (output, context) => {
1613
+ const retVal = (output || [])
1614
+ .filter((e) => e != null)
1615
+ .map((entry) => {
1616
+ return de_Deployment(entry, context);
1617
+ });
1618
+ return retVal;
1619
+ };
1620
+ const de_DeregisterContainerInstanceResponse = (output, context) => {
1621
+ return take(output, {
1622
+ containerInstance: (_) => de_ContainerInstance(_, context),
1623
+ });
1624
+ };
1625
+ const de_DeregisterTaskDefinitionResponse = (output, context) => {
1626
+ return take(output, {
1627
+ taskDefinition: (_) => de_TaskDefinition(_, context),
1628
+ });
1629
+ };
1630
+ const de_DescribeContainerInstancesResponse = (output, context) => {
1631
+ return take(output, {
1632
+ containerInstances: (_) => de_ContainerInstances(_, context),
1633
+ failures: _json,
1634
+ });
1635
+ };
1636
+ const de_DescribeServicesResponse = (output, context) => {
1637
+ return take(output, {
1638
+ failures: _json,
1639
+ services: (_) => de_Services(_, context),
1640
+ });
1641
+ };
1642
+ const de_DescribeTaskDefinitionResponse = (output, context) => {
1643
+ return take(output, {
1644
+ tags: _json,
1645
+ taskDefinition: (_) => de_TaskDefinition(_, context),
1646
+ });
1647
+ };
1648
+ const de_DescribeTaskSetsResponse = (output, context) => {
1649
+ return take(output, {
1650
+ failures: _json,
1651
+ taskSets: (_) => de_TaskSets(_, context),
1652
+ });
1653
+ };
1654
+ const de_DescribeTasksResponse = (output, context) => {
1655
+ return take(output, {
1656
+ failures: _json,
1657
+ tasks: (_) => de_Tasks(_, context),
1658
+ });
1659
+ };
1660
+ const de_GetTaskProtectionResponse = (output, context) => {
1661
+ return take(output, {
1662
+ failures: _json,
1663
+ protectedTasks: (_) => de_ProtectedTasks(_, context),
1664
+ });
1665
+ };
1666
+ const de_InstanceHealthCheckResult = (output, context) => {
1667
+ return take(output, {
1668
+ lastStatusChange: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1669
+ lastUpdated: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1670
+ status: __expectString,
1671
+ type: __expectString,
1672
+ });
1673
+ };
1674
+ const de_InstanceHealthCheckResultList = (output, context) => {
1675
+ const retVal = (output || [])
1676
+ .filter((e) => e != null)
1677
+ .map((entry) => {
1678
+ return de_InstanceHealthCheckResult(entry, context);
1679
+ });
1680
+ return retVal;
1681
+ };
1682
+ const de_ManagedAgent = (output, context) => {
1683
+ return take(output, {
1684
+ lastStartedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1685
+ lastStatus: __expectString,
1686
+ name: __expectString,
1687
+ reason: __expectString,
1688
+ });
1689
+ };
1690
+ const de_ManagedAgents = (output, context) => {
1691
+ const retVal = (output || [])
1692
+ .filter((e) => e != null)
1693
+ .map((entry) => {
1694
+ return de_ManagedAgent(entry, context);
1695
+ });
1696
+ return retVal;
1697
+ };
1698
+ const de_ProtectedTask = (output, context) => {
1699
+ return take(output, {
1700
+ expirationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1701
+ protectionEnabled: __expectBoolean,
1702
+ taskArn: __expectString,
1703
+ });
1704
+ };
1705
+ const de_ProtectedTasks = (output, context) => {
1706
+ const retVal = (output || [])
1707
+ .filter((e) => e != null)
1708
+ .map((entry) => {
1709
+ return de_ProtectedTask(entry, context);
1710
+ });
1711
+ return retVal;
1712
+ };
1713
+ const de_RegisterContainerInstanceResponse = (output, context) => {
1714
+ return take(output, {
1715
+ containerInstance: (_) => de_ContainerInstance(_, context),
1716
+ });
1717
+ };
1718
+ const de_RegisterTaskDefinitionResponse = (output, context) => {
1719
+ return take(output, {
1720
+ tags: _json,
1721
+ taskDefinition: (_) => de_TaskDefinition(_, context),
1722
+ });
1723
+ };
1724
+ const de_Resource = (output, context) => {
1725
+ return take(output, {
1726
+ doubleValue: __limitedParseDouble,
1727
+ integerValue: __expectInt32,
1728
+ longValue: __expectLong,
1729
+ name: __expectString,
1730
+ stringSetValue: _json,
1731
+ type: __expectString,
1732
+ });
1733
+ };
1734
+ const de_Resources = (output, context) => {
1735
+ const retVal = (output || [])
1736
+ .filter((e) => e != null)
1737
+ .map((entry) => {
1738
+ return de_Resource(entry, context);
1739
+ });
1740
+ return retVal;
1741
+ };
1742
+ const de_RunTaskResponse = (output, context) => {
1743
+ return take(output, {
1744
+ failures: _json,
1745
+ tasks: (_) => de_Tasks(_, context),
1746
+ });
1747
+ };
1748
+ const de_Scale = (output, context) => {
1749
+ return take(output, {
1750
+ unit: __expectString,
1751
+ value: __limitedParseDouble,
1752
+ });
1753
+ };
1754
+ const de_Service = (output, context) => {
1755
+ return take(output, {
1756
+ capacityProviderStrategy: _json,
1757
+ clusterArn: __expectString,
1758
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1759
+ createdBy: __expectString,
1760
+ deploymentConfiguration: _json,
1761
+ deploymentController: _json,
1762
+ deployments: (_) => de_Deployments(_, context),
1763
+ desiredCount: __expectInt32,
1764
+ enableECSManagedTags: __expectBoolean,
1765
+ enableExecuteCommand: __expectBoolean,
1766
+ events: (_) => de_ServiceEvents(_, context),
1767
+ healthCheckGracePeriodSeconds: __expectInt32,
1768
+ launchType: __expectString,
1769
+ loadBalancers: _json,
1770
+ networkConfiguration: _json,
1771
+ pendingCount: __expectInt32,
1772
+ placementConstraints: _json,
1773
+ placementStrategy: _json,
1774
+ platformFamily: __expectString,
1775
+ platformVersion: __expectString,
1776
+ propagateTags: __expectString,
1777
+ roleArn: __expectString,
1778
+ runningCount: __expectInt32,
1779
+ schedulingStrategy: __expectString,
1780
+ serviceArn: __expectString,
1781
+ serviceName: __expectString,
1782
+ serviceRegistries: _json,
1783
+ status: __expectString,
1784
+ tags: _json,
1785
+ taskDefinition: __expectString,
1786
+ taskSets: (_) => de_TaskSets(_, context),
1787
+ });
1788
+ };
1789
+ const de_ServiceEvent = (output, context) => {
1790
+ return take(output, {
1791
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1792
+ id: __expectString,
1793
+ message: __expectString,
1794
+ });
1795
+ };
1796
+ const de_ServiceEvents = (output, context) => {
1797
+ const retVal = (output || [])
1798
+ .filter((e) => e != null)
1799
+ .map((entry) => {
1800
+ return de_ServiceEvent(entry, context);
1801
+ });
1802
+ return retVal;
1803
+ };
1804
+ const de_Services = (output, context) => {
1805
+ const retVal = (output || [])
1806
+ .filter((e) => e != null)
1807
+ .map((entry) => {
1808
+ return de_Service(entry, context);
1809
+ });
1810
+ return retVal;
1811
+ };
1812
+ const de_StartTaskResponse = (output, context) => {
1813
+ return take(output, {
1814
+ failures: _json,
1815
+ tasks: (_) => de_Tasks(_, context),
1816
+ });
1817
+ };
1818
+ const de_StopTaskResponse = (output, context) => {
1819
+ return take(output, {
1820
+ task: (_) => de_Task(_, context),
1821
+ });
1822
+ };
1823
+ const de_Task = (output, context) => {
1824
+ return take(output, {
1825
+ attachments: _json,
1826
+ attributes: _json,
1827
+ availabilityZone: __expectString,
1828
+ capacityProviderName: __expectString,
1829
+ clusterArn: __expectString,
1830
+ connectivity: __expectString,
1831
+ connectivityAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1832
+ containerInstanceArn: __expectString,
1833
+ containers: (_) => de_Containers(_, context),
1834
+ cpu: __expectString,
1835
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1836
+ desiredStatus: __expectString,
1837
+ enableExecuteCommand: __expectBoolean,
1838
+ ephemeralStorage: _json,
1839
+ executionStoppedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1840
+ fargateEphemeralStorage: _json,
1841
+ group: __expectString,
1842
+ healthStatus: __expectString,
1843
+ inferenceAccelerators: _json,
1844
+ lastStatus: __expectString,
1845
+ launchType: __expectString,
1846
+ memory: __expectString,
1847
+ overrides: _json,
1848
+ platformFamily: __expectString,
1849
+ platformVersion: __expectString,
1850
+ pullStartedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1851
+ pullStoppedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1852
+ startedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1853
+ startedBy: __expectString,
1854
+ stopCode: __expectString,
1855
+ stoppedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1856
+ stoppedReason: __expectString,
1857
+ stoppingAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1858
+ tags: _json,
1859
+ taskArn: __expectString,
1860
+ taskDefinitionArn: __expectString,
1861
+ version: __expectLong,
1862
+ });
1863
+ };
1864
+ const de_TaskDefinition = (output, context) => {
1865
+ return take(output, {
1866
+ compatibilities: _json,
1867
+ containerDefinitions: _json,
1868
+ cpu: __expectString,
1869
+ deregisteredAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1870
+ ephemeralStorage: _json,
1871
+ executionRoleArn: __expectString,
1872
+ family: __expectString,
1873
+ inferenceAccelerators: _json,
1874
+ ipcMode: __expectString,
1875
+ memory: __expectString,
1876
+ networkMode: __expectString,
1877
+ pidMode: __expectString,
1878
+ placementConstraints: _json,
1879
+ proxyConfiguration: _json,
1880
+ registeredAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1881
+ registeredBy: __expectString,
1882
+ requiresAttributes: _json,
1883
+ requiresCompatibilities: _json,
1884
+ revision: __expectInt32,
1885
+ runtimePlatform: _json,
1886
+ status: __expectString,
1887
+ taskDefinitionArn: __expectString,
1888
+ taskRoleArn: __expectString,
1889
+ volumes: _json,
1890
+ });
1891
+ };
1892
+ const de_TaskDefinitionList = (output, context) => {
1893
+ const retVal = (output || [])
1894
+ .filter((e) => e != null)
1895
+ .map((entry) => {
1896
+ return de_TaskDefinition(entry, context);
1897
+ });
1898
+ return retVal;
1899
+ };
1900
+ const de_Tasks = (output, context) => {
1901
+ const retVal = (output || [])
1902
+ .filter((e) => e != null)
1903
+ .map((entry) => {
1904
+ return de_Task(entry, context);
1905
+ });
1906
+ return retVal;
1907
+ };
1908
+ const de_TaskSet = (output, context) => {
1909
+ return take(output, {
1910
+ capacityProviderStrategy: _json,
1911
+ clusterArn: __expectString,
1912
+ computedDesiredCount: __expectInt32,
1913
+ createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1914
+ externalId: __expectString,
1915
+ fargateEphemeralStorage: _json,
1916
+ id: __expectString,
1917
+ launchType: __expectString,
1918
+ loadBalancers: _json,
1919
+ networkConfiguration: _json,
1920
+ pendingCount: __expectInt32,
1921
+ platformFamily: __expectString,
1922
+ platformVersion: __expectString,
1923
+ runningCount: __expectInt32,
1924
+ scale: (_) => de_Scale(_, context),
1925
+ serviceArn: __expectString,
1926
+ serviceRegistries: _json,
1927
+ stabilityStatus: __expectString,
1928
+ stabilityStatusAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1929
+ startedBy: __expectString,
1930
+ status: __expectString,
1931
+ tags: _json,
1932
+ taskDefinition: __expectString,
1933
+ taskSetArn: __expectString,
1934
+ updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1935
+ });
1936
+ };
1937
+ const de_TaskSets = (output, context) => {
1938
+ const retVal = (output || [])
1939
+ .filter((e) => e != null)
1940
+ .map((entry) => {
1941
+ return de_TaskSet(entry, context);
1942
+ });
1943
+ return retVal;
1944
+ };
1945
+ const de_UpdateContainerAgentResponse = (output, context) => {
1946
+ return take(output, {
1947
+ containerInstance: (_) => de_ContainerInstance(_, context),
1948
+ });
1949
+ };
1950
+ const de_UpdateContainerInstancesStateResponse = (output, context) => {
1951
+ return take(output, {
1952
+ containerInstances: (_) => de_ContainerInstances(_, context),
1953
+ failures: _json,
1954
+ });
1955
+ };
1956
+ const de_UpdateServicePrimaryTaskSetResponse = (output, context) => {
1957
+ return take(output, {
1958
+ taskSet: (_) => de_TaskSet(_, context),
1959
+ });
1960
+ };
1961
+ const de_UpdateServiceResponse = (output, context) => {
1962
+ return take(output, {
1963
+ service: (_) => de_Service(_, context),
1964
+ });
1965
+ };
1966
+ const de_UpdateTaskProtectionResponse = (output, context) => {
1967
+ return take(output, {
1968
+ failures: _json,
1969
+ protectedTasks: (_) => de_ProtectedTasks(_, context),
1970
+ });
1971
+ };
1972
+ const de_UpdateTaskSetResponse = (output, context) => {
1973
+ return take(output, {
1974
+ taskSet: (_) => de_TaskSet(_, context),
1975
+ });
1976
+ };
1977
+ const deserializeMetadata = (output) => ({
1978
+ httpStatusCode: output.statusCode,
1979
+ requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1980
+ extendedRequestId: output.headers["x-amz-id-2"],
1981
+ cfId: output.headers["x-amz-cf-id"],
1982
+ });
1983
+ const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
1984
+ const throwDefaultError = withBaseException(__BaseException);
1985
+ const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
1986
+ const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
1987
+ const contents = {
1988
+ protocol,
1989
+ hostname,
1990
+ port,
1991
+ method: "POST",
1992
+ path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
1993
+ headers,
1994
+ };
1995
+ if (resolvedHostname !== undefined) {
1996
+ contents.hostname = resolvedHostname;
1997
+ }
1998
+ if (body !== undefined) {
1999
+ contents.body = body;
2000
+ }
2001
+ return new __HttpRequest(contents);
2002
+ };
2003
+ function sharedHeaders(operation) {
2004
+ return {
2005
+ "content-type": "application/x-amz-json-1.1",
2006
+ "x-amz-target": `AmazonEC2ContainerServiceV20141113.${operation}`,
2007
+ };
2008
+ }