aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,1396 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-11-13",
5
- "endpointPrefix":"ecs",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"Amazon ECS",
9
- "serviceFullName":"Amazon EC2 Container Service",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AmazonEC2ContainerServiceV20141113"
12
- },
13
- "operations":{
14
- "CreateCluster":{
15
- "name":"CreateCluster",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"CreateClusterRequest"},
21
- "output":{"shape":"CreateClusterResponse"},
22
- "errors":[
23
- {"shape":"ServerException"},
24
- {"shape":"ClientException"},
25
- {"shape":"InvalidParameterException"}
26
- ]
27
- },
28
- "CreateService":{
29
- "name":"CreateService",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/"
33
- },
34
- "input":{"shape":"CreateServiceRequest"},
35
- "output":{"shape":"CreateServiceResponse"},
36
- "errors":[
37
- {"shape":"ServerException"},
38
- {"shape":"ClientException"},
39
- {"shape":"InvalidParameterException"},
40
- {"shape":"ClusterNotFoundException"}
41
- ]
42
- },
43
- "DeleteCluster":{
44
- "name":"DeleteCluster",
45
- "http":{
46
- "method":"POST",
47
- "requestUri":"/"
48
- },
49
- "input":{"shape":"DeleteClusterRequest"},
50
- "output":{"shape":"DeleteClusterResponse"},
51
- "errors":[
52
- {"shape":"ServerException"},
53
- {"shape":"ClientException"},
54
- {"shape":"InvalidParameterException"},
55
- {"shape":"ClusterNotFoundException"},
56
- {"shape":"ClusterContainsContainerInstancesException"},
57
- {"shape":"ClusterContainsServicesException"}
58
- ]
59
- },
60
- "DeleteService":{
61
- "name":"DeleteService",
62
- "http":{
63
- "method":"POST",
64
- "requestUri":"/"
65
- },
66
- "input":{"shape":"DeleteServiceRequest"},
67
- "output":{"shape":"DeleteServiceResponse"},
68
- "errors":[
69
- {"shape":"ServerException"},
70
- {"shape":"ClientException"},
71
- {"shape":"InvalidParameterException"},
72
- {"shape":"ClusterNotFoundException"},
73
- {"shape":"ServiceNotFoundException"}
74
- ]
75
- },
76
- "DeregisterContainerInstance":{
77
- "name":"DeregisterContainerInstance",
78
- "http":{
79
- "method":"POST",
80
- "requestUri":"/"
81
- },
82
- "input":{"shape":"DeregisterContainerInstanceRequest"},
83
- "output":{"shape":"DeregisterContainerInstanceResponse"},
84
- "errors":[
85
- {"shape":"ServerException"},
86
- {"shape":"ClientException"},
87
- {"shape":"InvalidParameterException"},
88
- {"shape":"ClusterNotFoundException"}
89
- ]
90
- },
91
- "DeregisterTaskDefinition":{
92
- "name":"DeregisterTaskDefinition",
93
- "http":{
94
- "method":"POST",
95
- "requestUri":"/"
96
- },
97
- "input":{"shape":"DeregisterTaskDefinitionRequest"},
98
- "output":{"shape":"DeregisterTaskDefinitionResponse"},
99
- "errors":[
100
- {"shape":"ServerException"},
101
- {"shape":"ClientException"},
102
- {"shape":"InvalidParameterException"}
103
- ]
104
- },
105
- "DescribeClusters":{
106
- "name":"DescribeClusters",
107
- "http":{
108
- "method":"POST",
109
- "requestUri":"/"
110
- },
111
- "input":{"shape":"DescribeClustersRequest"},
112
- "output":{"shape":"DescribeClustersResponse"},
113
- "errors":[
114
- {"shape":"ServerException"},
115
- {"shape":"ClientException"},
116
- {"shape":"InvalidParameterException"}
117
- ]
118
- },
119
- "DescribeContainerInstances":{
120
- "name":"DescribeContainerInstances",
121
- "http":{
122
- "method":"POST",
123
- "requestUri":"/"
124
- },
125
- "input":{"shape":"DescribeContainerInstancesRequest"},
126
- "output":{"shape":"DescribeContainerInstancesResponse"},
127
- "errors":[
128
- {"shape":"ServerException"},
129
- {"shape":"ClientException"},
130
- {"shape":"InvalidParameterException"},
131
- {"shape":"ClusterNotFoundException"}
132
- ]
133
- },
134
- "DescribeServices":{
135
- "name":"DescribeServices",
136
- "http":{
137
- "method":"POST",
138
- "requestUri":"/"
139
- },
140
- "input":{"shape":"DescribeServicesRequest"},
141
- "output":{"shape":"DescribeServicesResponse"},
142
- "errors":[
143
- {"shape":"ServerException"},
144
- {"shape":"ClientException"},
145
- {"shape":"InvalidParameterException"},
146
- {"shape":"ClusterNotFoundException"}
147
- ]
148
- },
149
- "DescribeTaskDefinition":{
150
- "name":"DescribeTaskDefinition",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/"
154
- },
155
- "input":{"shape":"DescribeTaskDefinitionRequest"},
156
- "output":{"shape":"DescribeTaskDefinitionResponse"},
157
- "errors":[
158
- {"shape":"ServerException"},
159
- {"shape":"ClientException"},
160
- {"shape":"InvalidParameterException"}
161
- ]
162
- },
163
- "DescribeTasks":{
164
- "name":"DescribeTasks",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/"
168
- },
169
- "input":{"shape":"DescribeTasksRequest"},
170
- "output":{"shape":"DescribeTasksResponse"},
171
- "errors":[
172
- {"shape":"ServerException"},
173
- {"shape":"ClientException"},
174
- {"shape":"InvalidParameterException"},
175
- {"shape":"ClusterNotFoundException"}
176
- ]
177
- },
178
- "DiscoverPollEndpoint":{
179
- "name":"DiscoverPollEndpoint",
180
- "http":{
181
- "method":"POST",
182
- "requestUri":"/"
183
- },
184
- "input":{"shape":"DiscoverPollEndpointRequest"},
185
- "output":{"shape":"DiscoverPollEndpointResponse"},
186
- "errors":[
187
- {"shape":"ServerException"},
188
- {"shape":"ClientException"}
189
- ]
190
- },
191
- "ListClusters":{
192
- "name":"ListClusters",
193
- "http":{
194
- "method":"POST",
195
- "requestUri":"/"
196
- },
197
- "input":{"shape":"ListClustersRequest"},
198
- "output":{"shape":"ListClustersResponse"},
199
- "errors":[
200
- {"shape":"ServerException"},
201
- {"shape":"ClientException"},
202
- {"shape":"InvalidParameterException"}
203
- ]
204
- },
205
- "ListContainerInstances":{
206
- "name":"ListContainerInstances",
207
- "http":{
208
- "method":"POST",
209
- "requestUri":"/"
210
- },
211
- "input":{"shape":"ListContainerInstancesRequest"},
212
- "output":{"shape":"ListContainerInstancesResponse"},
213
- "errors":[
214
- {"shape":"ServerException"},
215
- {"shape":"ClientException"},
216
- {"shape":"InvalidParameterException"},
217
- {"shape":"ClusterNotFoundException"}
218
- ]
219
- },
220
- "ListServices":{
221
- "name":"ListServices",
222
- "http":{
223
- "method":"POST",
224
- "requestUri":"/"
225
- },
226
- "input":{"shape":"ListServicesRequest"},
227
- "output":{"shape":"ListServicesResponse"},
228
- "errors":[
229
- {"shape":"ServerException"},
230
- {"shape":"ClientException"},
231
- {"shape":"InvalidParameterException"},
232
- {"shape":"ClusterNotFoundException"}
233
- ]
234
- },
235
- "ListTaskDefinitionFamilies":{
236
- "name":"ListTaskDefinitionFamilies",
237
- "http":{
238
- "method":"POST",
239
- "requestUri":"/"
240
- },
241
- "input":{"shape":"ListTaskDefinitionFamiliesRequest"},
242
- "output":{"shape":"ListTaskDefinitionFamiliesResponse"},
243
- "errors":[
244
- {"shape":"ServerException"},
245
- {"shape":"ClientException"},
246
- {"shape":"InvalidParameterException"}
247
- ]
248
- },
249
- "ListTaskDefinitions":{
250
- "name":"ListTaskDefinitions",
251
- "http":{
252
- "method":"POST",
253
- "requestUri":"/"
254
- },
255
- "input":{"shape":"ListTaskDefinitionsRequest"},
256
- "output":{"shape":"ListTaskDefinitionsResponse"},
257
- "errors":[
258
- {"shape":"ServerException"},
259
- {"shape":"ClientException"},
260
- {"shape":"InvalidParameterException"}
261
- ]
262
- },
263
- "ListTasks":{
264
- "name":"ListTasks",
265
- "http":{
266
- "method":"POST",
267
- "requestUri":"/"
268
- },
269
- "input":{"shape":"ListTasksRequest"},
270
- "output":{"shape":"ListTasksResponse"},
271
- "errors":[
272
- {"shape":"ServerException"},
273
- {"shape":"ClientException"},
274
- {"shape":"InvalidParameterException"},
275
- {"shape":"ClusterNotFoundException"},
276
- {"shape":"ServiceNotFoundException"}
277
- ]
278
- },
279
- "RegisterContainerInstance":{
280
- "name":"RegisterContainerInstance",
281
- "http":{
282
- "method":"POST",
283
- "requestUri":"/"
284
- },
285
- "input":{"shape":"RegisterContainerInstanceRequest"},
286
- "output":{"shape":"RegisterContainerInstanceResponse"},
287
- "errors":[
288
- {"shape":"ServerException"},
289
- {"shape":"ClientException"}
290
- ]
291
- },
292
- "RegisterTaskDefinition":{
293
- "name":"RegisterTaskDefinition",
294
- "http":{
295
- "method":"POST",
296
- "requestUri":"/"
297
- },
298
- "input":{"shape":"RegisterTaskDefinitionRequest"},
299
- "output":{"shape":"RegisterTaskDefinitionResponse"},
300
- "errors":[
301
- {"shape":"ServerException"},
302
- {"shape":"ClientException"},
303
- {"shape":"InvalidParameterException"}
304
- ]
305
- },
306
- "RunTask":{
307
- "name":"RunTask",
308
- "http":{
309
- "method":"POST",
310
- "requestUri":"/"
311
- },
312
- "input":{"shape":"RunTaskRequest"},
313
- "output":{"shape":"RunTaskResponse"},
314
- "errors":[
315
- {"shape":"ServerException"},
316
- {"shape":"ClientException"},
317
- {"shape":"InvalidParameterException"},
318
- {"shape":"ClusterNotFoundException"}
319
- ]
320
- },
321
- "StartTask":{
322
- "name":"StartTask",
323
- "http":{
324
- "method":"POST",
325
- "requestUri":"/"
326
- },
327
- "input":{"shape":"StartTaskRequest"},
328
- "output":{"shape":"StartTaskResponse"},
329
- "errors":[
330
- {"shape":"ServerException"},
331
- {"shape":"ClientException"},
332
- {"shape":"InvalidParameterException"},
333
- {"shape":"ClusterNotFoundException"}
334
- ]
335
- },
336
- "StopTask":{
337
- "name":"StopTask",
338
- "http":{
339
- "method":"POST",
340
- "requestUri":"/"
341
- },
342
- "input":{"shape":"StopTaskRequest"},
343
- "output":{"shape":"StopTaskResponse"},
344
- "errors":[
345
- {"shape":"ServerException"},
346
- {"shape":"ClientException"},
347
- {"shape":"InvalidParameterException"},
348
- {"shape":"ClusterNotFoundException"}
349
- ]
350
- },
351
- "SubmitContainerStateChange":{
352
- "name":"SubmitContainerStateChange",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/"
356
- },
357
- "input":{"shape":"SubmitContainerStateChangeRequest"},
358
- "output":{"shape":"SubmitContainerStateChangeResponse"},
359
- "errors":[
360
- {"shape":"ServerException"},
361
- {"shape":"ClientException"}
362
- ]
363
- },
364
- "SubmitTaskStateChange":{
365
- "name":"SubmitTaskStateChange",
366
- "http":{
367
- "method":"POST",
368
- "requestUri":"/"
369
- },
370
- "input":{"shape":"SubmitTaskStateChangeRequest"},
371
- "output":{"shape":"SubmitTaskStateChangeResponse"},
372
- "errors":[
373
- {"shape":"ServerException"},
374
- {"shape":"ClientException"}
375
- ]
376
- },
377
- "UpdateContainerAgent":{
378
- "name":"UpdateContainerAgent",
379
- "http":{
380
- "method":"POST",
381
- "requestUri":"/"
382
- },
383
- "input":{"shape":"UpdateContainerAgentRequest"},
384
- "output":{"shape":"UpdateContainerAgentResponse"},
385
- "errors":[
386
- {"shape":"ServerException"},
387
- {"shape":"ClientException"},
388
- {"shape":"InvalidParameterException"},
389
- {"shape":"ClusterNotFoundException"},
390
- {"shape":"UpdateInProgressException"},
391
- {"shape":"NoUpdateAvailableException"},
392
- {"shape":"MissingVersionException"}
393
- ]
394
- },
395
- "UpdateService":{
396
- "name":"UpdateService",
397
- "http":{
398
- "method":"POST",
399
- "requestUri":"/"
400
- },
401
- "input":{"shape":"UpdateServiceRequest"},
402
- "output":{"shape":"UpdateServiceResponse"},
403
- "errors":[
404
- {"shape":"ServerException"},
405
- {"shape":"ClientException"},
406
- {"shape":"InvalidParameterException"},
407
- {"shape":"ClusterNotFoundException"},
408
- {"shape":"ServiceNotFoundException"},
409
- {"shape":"ServiceNotActiveException"}
410
- ]
411
- }
412
- },
413
- "shapes":{
414
- "AgentUpdateStatus":{
415
- "type":"string",
416
- "enum":[
417
- "PENDING",
418
- "STAGING",
419
- "STAGED",
420
- "UPDATING",
421
- "UPDATED",
422
- "FAILED"
423
- ]
424
- },
425
- "Attribute":{
426
- "type":"structure",
427
- "required":["name"],
428
- "members":{
429
- "name":{"shape":"String"},
430
- "value":{"shape":"String"}
431
- }
432
- },
433
- "Attributes":{
434
- "type":"list",
435
- "member":{"shape":"Attribute"}
436
- },
437
- "Boolean":{"type":"boolean"},
438
- "BoxedBoolean":{
439
- "type":"boolean",
440
- "box":true
441
- },
442
- "BoxedInteger":{
443
- "type":"integer",
444
- "box":true
445
- },
446
- "ClientException":{
447
- "type":"structure",
448
- "members":{
449
- "message":{"shape":"String"}
450
- },
451
- "exception":true
452
- },
453
- "Cluster":{
454
- "type":"structure",
455
- "members":{
456
- "clusterArn":{"shape":"String"},
457
- "clusterName":{"shape":"String"},
458
- "status":{"shape":"String"},
459
- "registeredContainerInstancesCount":{"shape":"Integer"},
460
- "runningTasksCount":{"shape":"Integer"},
461
- "pendingTasksCount":{"shape":"Integer"},
462
- "activeServicesCount":{"shape":"Integer"}
463
- }
464
- },
465
- "ClusterContainsContainerInstancesException":{
466
- "type":"structure",
467
- "members":{
468
- },
469
- "exception":true
470
- },
471
- "ClusterContainsServicesException":{
472
- "type":"structure",
473
- "members":{
474
- },
475
- "exception":true
476
- },
477
- "ClusterNotFoundException":{
478
- "type":"structure",
479
- "members":{
480
- },
481
- "exception":true
482
- },
483
- "Clusters":{
484
- "type":"list",
485
- "member":{"shape":"Cluster"}
486
- },
487
- "Container":{
488
- "type":"structure",
489
- "members":{
490
- "containerArn":{"shape":"String"},
491
- "taskArn":{"shape":"String"},
492
- "name":{"shape":"String"},
493
- "lastStatus":{"shape":"String"},
494
- "exitCode":{"shape":"BoxedInteger"},
495
- "reason":{"shape":"String"},
496
- "networkBindings":{"shape":"NetworkBindings"}
497
- }
498
- },
499
- "ContainerDefinition":{
500
- "type":"structure",
501
- "members":{
502
- "name":{"shape":"String"},
503
- "image":{"shape":"String"},
504
- "cpu":{"shape":"Integer"},
505
- "memory":{"shape":"Integer"},
506
- "links":{"shape":"StringList"},
507
- "portMappings":{"shape":"PortMappingList"},
508
- "essential":{"shape":"BoxedBoolean"},
509
- "entryPoint":{"shape":"StringList"},
510
- "command":{"shape":"StringList"},
511
- "environment":{"shape":"EnvironmentVariables"},
512
- "mountPoints":{"shape":"MountPointList"},
513
- "volumesFrom":{"shape":"VolumeFromList"},
514
- "hostname":{"shape":"String"},
515
- "user":{"shape":"String"},
516
- "workingDirectory":{"shape":"String"},
517
- "disableNetworking":{"shape":"BoxedBoolean"},
518
- "privileged":{"shape":"BoxedBoolean"},
519
- "readonlyRootFilesystem":{"shape":"BoxedBoolean"},
520
- "dnsServers":{"shape":"StringList"},
521
- "dnsSearchDomains":{"shape":"StringList"},
522
- "extraHosts":{"shape":"HostEntryList"},
523
- "dockerSecurityOptions":{"shape":"StringList"},
524
- "dockerLabels":{"shape":"DockerLabelsMap"},
525
- "ulimits":{"shape":"UlimitList"},
526
- "logConfiguration":{"shape":"LogConfiguration"}
527
- }
528
- },
529
- "ContainerDefinitions":{
530
- "type":"list",
531
- "member":{"shape":"ContainerDefinition"}
532
- },
533
- "ContainerInstance":{
534
- "type":"structure",
535
- "members":{
536
- "containerInstanceArn":{"shape":"String"},
537
- "ec2InstanceId":{"shape":"String"},
538
- "versionInfo":{"shape":"VersionInfo"},
539
- "remainingResources":{"shape":"Resources"},
540
- "registeredResources":{"shape":"Resources"},
541
- "status":{"shape":"String"},
542
- "agentConnected":{"shape":"Boolean"},
543
- "runningTasksCount":{"shape":"Integer"},
544
- "pendingTasksCount":{"shape":"Integer"},
545
- "agentUpdateStatus":{"shape":"AgentUpdateStatus"},
546
- "attributes":{"shape":"Attributes"}
547
- }
548
- },
549
- "ContainerInstances":{
550
- "type":"list",
551
- "member":{"shape":"ContainerInstance"}
552
- },
553
- "ContainerOverride":{
554
- "type":"structure",
555
- "members":{
556
- "name":{"shape":"String"},
557
- "command":{"shape":"StringList"},
558
- "environment":{"shape":"EnvironmentVariables"}
559
- }
560
- },
561
- "ContainerOverrides":{
562
- "type":"list",
563
- "member":{"shape":"ContainerOverride"}
564
- },
565
- "Containers":{
566
- "type":"list",
567
- "member":{"shape":"Container"}
568
- },
569
- "CreateClusterRequest":{
570
- "type":"structure",
571
- "members":{
572
- "clusterName":{"shape":"String"}
573
- }
574
- },
575
- "CreateClusterResponse":{
576
- "type":"structure",
577
- "members":{
578
- "cluster":{"shape":"Cluster"}
579
- }
580
- },
581
- "CreateServiceRequest":{
582
- "type":"structure",
583
- "required":[
584
- "serviceName",
585
- "taskDefinition",
586
- "desiredCount"
587
- ],
588
- "members":{
589
- "cluster":{"shape":"String"},
590
- "serviceName":{"shape":"String"},
591
- "taskDefinition":{"shape":"String"},
592
- "loadBalancers":{"shape":"LoadBalancers"},
593
- "desiredCount":{"shape":"BoxedInteger"},
594
- "clientToken":{"shape":"String"},
595
- "role":{"shape":"String"},
596
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"}
597
- }
598
- },
599
- "CreateServiceResponse":{
600
- "type":"structure",
601
- "members":{
602
- "service":{"shape":"Service"}
603
- }
604
- },
605
- "DeleteClusterRequest":{
606
- "type":"structure",
607
- "required":["cluster"],
608
- "members":{
609
- "cluster":{"shape":"String"}
610
- }
611
- },
612
- "DeleteClusterResponse":{
613
- "type":"structure",
614
- "members":{
615
- "cluster":{"shape":"Cluster"}
616
- }
617
- },
618
- "DeleteServiceRequest":{
619
- "type":"structure",
620
- "required":["service"],
621
- "members":{
622
- "cluster":{"shape":"String"},
623
- "service":{"shape":"String"}
624
- }
625
- },
626
- "DeleteServiceResponse":{
627
- "type":"structure",
628
- "members":{
629
- "service":{"shape":"Service"}
630
- }
631
- },
632
- "Deployment":{
633
- "type":"structure",
634
- "members":{
635
- "id":{"shape":"String"},
636
- "status":{"shape":"String"},
637
- "taskDefinition":{"shape":"String"},
638
- "desiredCount":{"shape":"Integer"},
639
- "pendingCount":{"shape":"Integer"},
640
- "runningCount":{"shape":"Integer"},
641
- "createdAt":{"shape":"Timestamp"},
642
- "updatedAt":{"shape":"Timestamp"}
643
- }
644
- },
645
- "DeploymentConfiguration":{
646
- "type":"structure",
647
- "members":{
648
- "maximumPercent":{"shape":"BoxedInteger"},
649
- "minimumHealthyPercent":{"shape":"BoxedInteger"}
650
- }
651
- },
652
- "Deployments":{
653
- "type":"list",
654
- "member":{"shape":"Deployment"}
655
- },
656
- "DeregisterContainerInstanceRequest":{
657
- "type":"structure",
658
- "required":["containerInstance"],
659
- "members":{
660
- "cluster":{"shape":"String"},
661
- "containerInstance":{"shape":"String"},
662
- "force":{"shape":"BoxedBoolean"}
663
- }
664
- },
665
- "DeregisterContainerInstanceResponse":{
666
- "type":"structure",
667
- "members":{
668
- "containerInstance":{"shape":"ContainerInstance"}
669
- }
670
- },
671
- "DeregisterTaskDefinitionRequest":{
672
- "type":"structure",
673
- "required":["taskDefinition"],
674
- "members":{
675
- "taskDefinition":{"shape":"String"}
676
- }
677
- },
678
- "DeregisterTaskDefinitionResponse":{
679
- "type":"structure",
680
- "members":{
681
- "taskDefinition":{"shape":"TaskDefinition"}
682
- }
683
- },
684
- "DescribeClustersRequest":{
685
- "type":"structure",
686
- "members":{
687
- "clusters":{"shape":"StringList"}
688
- }
689
- },
690
- "DescribeClustersResponse":{
691
- "type":"structure",
692
- "members":{
693
- "clusters":{"shape":"Clusters"},
694
- "failures":{"shape":"Failures"}
695
- }
696
- },
697
- "DescribeContainerInstancesRequest":{
698
- "type":"structure",
699
- "required":["containerInstances"],
700
- "members":{
701
- "cluster":{"shape":"String"},
702
- "containerInstances":{"shape":"StringList"}
703
- }
704
- },
705
- "DescribeContainerInstancesResponse":{
706
- "type":"structure",
707
- "members":{
708
- "containerInstances":{"shape":"ContainerInstances"},
709
- "failures":{"shape":"Failures"}
710
- }
711
- },
712
- "DescribeServicesRequest":{
713
- "type":"structure",
714
- "required":["services"],
715
- "members":{
716
- "cluster":{"shape":"String"},
717
- "services":{"shape":"StringList"}
718
- }
719
- },
720
- "DescribeServicesResponse":{
721
- "type":"structure",
722
- "members":{
723
- "services":{"shape":"Services"},
724
- "failures":{"shape":"Failures"}
725
- }
726
- },
727
- "DescribeTaskDefinitionRequest":{
728
- "type":"structure",
729
- "required":["taskDefinition"],
730
- "members":{
731
- "taskDefinition":{"shape":"String"}
732
- }
733
- },
734
- "DescribeTaskDefinitionResponse":{
735
- "type":"structure",
736
- "members":{
737
- "taskDefinition":{"shape":"TaskDefinition"}
738
- }
739
- },
740
- "DescribeTasksRequest":{
741
- "type":"structure",
742
- "required":["tasks"],
743
- "members":{
744
- "cluster":{"shape":"String"},
745
- "tasks":{"shape":"StringList"}
746
- }
747
- },
748
- "DescribeTasksResponse":{
749
- "type":"structure",
750
- "members":{
751
- "tasks":{"shape":"Tasks"},
752
- "failures":{"shape":"Failures"}
753
- }
754
- },
755
- "DesiredStatus":{
756
- "type":"string",
757
- "enum":[
758
- "RUNNING",
759
- "PENDING",
760
- "STOPPED"
761
- ]
762
- },
763
- "DiscoverPollEndpointRequest":{
764
- "type":"structure",
765
- "members":{
766
- "containerInstance":{"shape":"String"},
767
- "cluster":{"shape":"String"}
768
- }
769
- },
770
- "DiscoverPollEndpointResponse":{
771
- "type":"structure",
772
- "members":{
773
- "endpoint":{"shape":"String"},
774
- "telemetryEndpoint":{"shape":"String"}
775
- }
776
- },
777
- "DockerLabelsMap":{
778
- "type":"map",
779
- "key":{"shape":"String"},
780
- "value":{"shape":"String"}
781
- },
782
- "Double":{"type":"double"},
783
- "EnvironmentVariables":{
784
- "type":"list",
785
- "member":{"shape":"KeyValuePair"}
786
- },
787
- "Failure":{
788
- "type":"structure",
789
- "members":{
790
- "arn":{"shape":"String"},
791
- "reason":{"shape":"String"}
792
- }
793
- },
794
- "Failures":{
795
- "type":"list",
796
- "member":{"shape":"Failure"}
797
- },
798
- "HostEntry":{
799
- "type":"structure",
800
- "required":[
801
- "hostname",
802
- "ipAddress"
803
- ],
804
- "members":{
805
- "hostname":{"shape":"String"},
806
- "ipAddress":{"shape":"String"}
807
- }
808
- },
809
- "HostEntryList":{
810
- "type":"list",
811
- "member":{"shape":"HostEntry"}
812
- },
813
- "HostVolumeProperties":{
814
- "type":"structure",
815
- "members":{
816
- "sourcePath":{"shape":"String"}
817
- }
818
- },
819
- "Integer":{"type":"integer"},
820
- "InvalidParameterException":{
821
- "type":"structure",
822
- "members":{
823
- },
824
- "exception":true
825
- },
826
- "KeyValuePair":{
827
- "type":"structure",
828
- "members":{
829
- "name":{"shape":"String"},
830
- "value":{"shape":"String"}
831
- }
832
- },
833
- "ListClustersRequest":{
834
- "type":"structure",
835
- "members":{
836
- "nextToken":{"shape":"String"},
837
- "maxResults":{"shape":"BoxedInteger"}
838
- }
839
- },
840
- "ListClustersResponse":{
841
- "type":"structure",
842
- "members":{
843
- "clusterArns":{"shape":"StringList"},
844
- "nextToken":{"shape":"String"}
845
- }
846
- },
847
- "ListContainerInstancesRequest":{
848
- "type":"structure",
849
- "members":{
850
- "cluster":{"shape":"String"},
851
- "nextToken":{"shape":"String"},
852
- "maxResults":{"shape":"BoxedInteger"}
853
- }
854
- },
855
- "ListContainerInstancesResponse":{
856
- "type":"structure",
857
- "members":{
858
- "containerInstanceArns":{"shape":"StringList"},
859
- "nextToken":{"shape":"String"}
860
- }
861
- },
862
- "ListServicesRequest":{
863
- "type":"structure",
864
- "members":{
865
- "cluster":{"shape":"String"},
866
- "nextToken":{"shape":"String"},
867
- "maxResults":{"shape":"BoxedInteger"}
868
- }
869
- },
870
- "ListServicesResponse":{
871
- "type":"structure",
872
- "members":{
873
- "serviceArns":{"shape":"StringList"},
874
- "nextToken":{"shape":"String"}
875
- }
876
- },
877
- "ListTaskDefinitionFamiliesRequest":{
878
- "type":"structure",
879
- "members":{
880
- "familyPrefix":{"shape":"String"},
881
- "status":{"shape":"TaskDefinitionFamilyStatus"},
882
- "nextToken":{"shape":"String"},
883
- "maxResults":{"shape":"BoxedInteger"}
884
- }
885
- },
886
- "ListTaskDefinitionFamiliesResponse":{
887
- "type":"structure",
888
- "members":{
889
- "families":{"shape":"StringList"},
890
- "nextToken":{"shape":"String"}
891
- }
892
- },
893
- "ListTaskDefinitionsRequest":{
894
- "type":"structure",
895
- "members":{
896
- "familyPrefix":{"shape":"String"},
897
- "status":{"shape":"TaskDefinitionStatus"},
898
- "sort":{"shape":"SortOrder"},
899
- "nextToken":{"shape":"String"},
900
- "maxResults":{"shape":"BoxedInteger"}
901
- }
902
- },
903
- "ListTaskDefinitionsResponse":{
904
- "type":"structure",
905
- "members":{
906
- "taskDefinitionArns":{"shape":"StringList"},
907
- "nextToken":{"shape":"String"}
908
- }
909
- },
910
- "ListTasksRequest":{
911
- "type":"structure",
912
- "members":{
913
- "cluster":{"shape":"String"},
914
- "containerInstance":{"shape":"String"},
915
- "family":{"shape":"String"},
916
- "nextToken":{"shape":"String"},
917
- "maxResults":{"shape":"BoxedInteger"},
918
- "startedBy":{"shape":"String"},
919
- "serviceName":{"shape":"String"},
920
- "desiredStatus":{"shape":"DesiredStatus"}
921
- }
922
- },
923
- "ListTasksResponse":{
924
- "type":"structure",
925
- "members":{
926
- "taskArns":{"shape":"StringList"},
927
- "nextToken":{"shape":"String"}
928
- }
929
- },
930
- "LoadBalancer":{
931
- "type":"structure",
932
- "members":{
933
- "loadBalancerName":{"shape":"String"},
934
- "containerName":{"shape":"String"},
935
- "containerPort":{"shape":"BoxedInteger"}
936
- }
937
- },
938
- "LoadBalancers":{
939
- "type":"list",
940
- "member":{"shape":"LoadBalancer"}
941
- },
942
- "LogConfiguration":{
943
- "type":"structure",
944
- "required":["logDriver"],
945
- "members":{
946
- "logDriver":{"shape":"LogDriver"},
947
- "options":{"shape":"LogConfigurationOptionsMap"}
948
- }
949
- },
950
- "LogConfigurationOptionsMap":{
951
- "type":"map",
952
- "key":{"shape":"String"},
953
- "value":{"shape":"String"}
954
- },
955
- "LogDriver":{
956
- "type":"string",
957
- "enum":[
958
- "json-file",
959
- "syslog",
960
- "journald",
961
- "gelf",
962
- "fluentd",
963
- "awslogs"
964
- ]
965
- },
966
- "Long":{"type":"long"},
967
- "MissingVersionException":{
968
- "type":"structure",
969
- "members":{
970
- },
971
- "exception":true
972
- },
973
- "MountPoint":{
974
- "type":"structure",
975
- "members":{
976
- "sourceVolume":{"shape":"String"},
977
- "containerPath":{"shape":"String"},
978
- "readOnly":{"shape":"BoxedBoolean"}
979
- }
980
- },
981
- "MountPointList":{
982
- "type":"list",
983
- "member":{"shape":"MountPoint"}
984
- },
985
- "NetworkBinding":{
986
- "type":"structure",
987
- "members":{
988
- "bindIP":{"shape":"String"},
989
- "containerPort":{"shape":"BoxedInteger"},
990
- "hostPort":{"shape":"BoxedInteger"},
991
- "protocol":{"shape":"TransportProtocol"}
992
- }
993
- },
994
- "NetworkBindings":{
995
- "type":"list",
996
- "member":{"shape":"NetworkBinding"}
997
- },
998
- "NoUpdateAvailableException":{
999
- "type":"structure",
1000
- "members":{
1001
- },
1002
- "exception":true
1003
- },
1004
- "PortMapping":{
1005
- "type":"structure",
1006
- "members":{
1007
- "containerPort":{"shape":"Integer"},
1008
- "hostPort":{"shape":"Integer"},
1009
- "protocol":{"shape":"TransportProtocol"}
1010
- }
1011
- },
1012
- "PortMappingList":{
1013
- "type":"list",
1014
- "member":{"shape":"PortMapping"}
1015
- },
1016
- "RegisterContainerInstanceRequest":{
1017
- "type":"structure",
1018
- "members":{
1019
- "cluster":{"shape":"String"},
1020
- "instanceIdentityDocument":{"shape":"String"},
1021
- "instanceIdentityDocumentSignature":{"shape":"String"},
1022
- "totalResources":{"shape":"Resources"},
1023
- "versionInfo":{"shape":"VersionInfo"},
1024
- "containerInstanceArn":{"shape":"String"},
1025
- "attributes":{"shape":"Attributes"}
1026
- }
1027
- },
1028
- "RegisterContainerInstanceResponse":{
1029
- "type":"structure",
1030
- "members":{
1031
- "containerInstance":{"shape":"ContainerInstance"}
1032
- }
1033
- },
1034
- "RegisterTaskDefinitionRequest":{
1035
- "type":"structure",
1036
- "required":[
1037
- "family",
1038
- "containerDefinitions"
1039
- ],
1040
- "members":{
1041
- "family":{"shape":"String"},
1042
- "taskRoleArn":{"shape":"String"},
1043
- "containerDefinitions":{"shape":"ContainerDefinitions"},
1044
- "volumes":{"shape":"VolumeList"}
1045
- }
1046
- },
1047
- "RegisterTaskDefinitionResponse":{
1048
- "type":"structure",
1049
- "members":{
1050
- "taskDefinition":{"shape":"TaskDefinition"}
1051
- }
1052
- },
1053
- "RequiresAttributes":{
1054
- "type":"list",
1055
- "member":{"shape":"Attribute"}
1056
- },
1057
- "Resource":{
1058
- "type":"structure",
1059
- "members":{
1060
- "name":{"shape":"String"},
1061
- "type":{"shape":"String"},
1062
- "doubleValue":{"shape":"Double"},
1063
- "longValue":{"shape":"Long"},
1064
- "integerValue":{"shape":"Integer"},
1065
- "stringSetValue":{"shape":"StringList"}
1066
- }
1067
- },
1068
- "Resources":{
1069
- "type":"list",
1070
- "member":{"shape":"Resource"}
1071
- },
1072
- "RunTaskRequest":{
1073
- "type":"structure",
1074
- "required":["taskDefinition"],
1075
- "members":{
1076
- "cluster":{"shape":"String"},
1077
- "taskDefinition":{"shape":"String"},
1078
- "overrides":{"shape":"TaskOverride"},
1079
- "count":{"shape":"BoxedInteger"},
1080
- "startedBy":{"shape":"String"}
1081
- }
1082
- },
1083
- "RunTaskResponse":{
1084
- "type":"structure",
1085
- "members":{
1086
- "tasks":{"shape":"Tasks"},
1087
- "failures":{"shape":"Failures"}
1088
- }
1089
- },
1090
- "ServerException":{
1091
- "type":"structure",
1092
- "members":{
1093
- "message":{"shape":"String"}
1094
- },
1095
- "exception":true,
1096
- "fault":true
1097
- },
1098
- "Service":{
1099
- "type":"structure",
1100
- "members":{
1101
- "serviceArn":{"shape":"String"},
1102
- "serviceName":{"shape":"String"},
1103
- "clusterArn":{"shape":"String"},
1104
- "loadBalancers":{"shape":"LoadBalancers"},
1105
- "status":{"shape":"String"},
1106
- "desiredCount":{"shape":"Integer"},
1107
- "runningCount":{"shape":"Integer"},
1108
- "pendingCount":{"shape":"Integer"},
1109
- "taskDefinition":{"shape":"String"},
1110
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
1111
- "deployments":{"shape":"Deployments"},
1112
- "roleArn":{"shape":"String"},
1113
- "events":{"shape":"ServiceEvents"},
1114
- "createdAt":{"shape":"Timestamp"}
1115
- }
1116
- },
1117
- "ServiceEvent":{
1118
- "type":"structure",
1119
- "members":{
1120
- "id":{"shape":"String"},
1121
- "createdAt":{"shape":"Timestamp"},
1122
- "message":{"shape":"String"}
1123
- }
1124
- },
1125
- "ServiceEvents":{
1126
- "type":"list",
1127
- "member":{"shape":"ServiceEvent"}
1128
- },
1129
- "ServiceNotActiveException":{
1130
- "type":"structure",
1131
- "members":{
1132
- },
1133
- "exception":true
1134
- },
1135
- "ServiceNotFoundException":{
1136
- "type":"structure",
1137
- "members":{
1138
- },
1139
- "exception":true
1140
- },
1141
- "Services":{
1142
- "type":"list",
1143
- "member":{"shape":"Service"}
1144
- },
1145
- "SortOrder":{
1146
- "type":"string",
1147
- "enum":[
1148
- "ASC",
1149
- "DESC"
1150
- ]
1151
- },
1152
- "StartTaskRequest":{
1153
- "type":"structure",
1154
- "required":[
1155
- "taskDefinition",
1156
- "containerInstances"
1157
- ],
1158
- "members":{
1159
- "cluster":{"shape":"String"},
1160
- "taskDefinition":{"shape":"String"},
1161
- "overrides":{"shape":"TaskOverride"},
1162
- "containerInstances":{"shape":"StringList"},
1163
- "startedBy":{"shape":"String"}
1164
- }
1165
- },
1166
- "StartTaskResponse":{
1167
- "type":"structure",
1168
- "members":{
1169
- "tasks":{"shape":"Tasks"},
1170
- "failures":{"shape":"Failures"}
1171
- }
1172
- },
1173
- "StopTaskRequest":{
1174
- "type":"structure",
1175
- "required":["task"],
1176
- "members":{
1177
- "cluster":{"shape":"String"},
1178
- "task":{"shape":"String"},
1179
- "reason":{"shape":"String"}
1180
- }
1181
- },
1182
- "StopTaskResponse":{
1183
- "type":"structure",
1184
- "members":{
1185
- "task":{"shape":"Task"}
1186
- }
1187
- },
1188
- "String":{"type":"string"},
1189
- "StringList":{
1190
- "type":"list",
1191
- "member":{"shape":"String"}
1192
- },
1193
- "SubmitContainerStateChangeRequest":{
1194
- "type":"structure",
1195
- "members":{
1196
- "cluster":{"shape":"String"},
1197
- "task":{"shape":"String"},
1198
- "containerName":{"shape":"String"},
1199
- "status":{"shape":"String"},
1200
- "exitCode":{"shape":"BoxedInteger"},
1201
- "reason":{"shape":"String"},
1202
- "networkBindings":{"shape":"NetworkBindings"}
1203
- }
1204
- },
1205
- "SubmitContainerStateChangeResponse":{
1206
- "type":"structure",
1207
- "members":{
1208
- "acknowledgment":{"shape":"String"}
1209
- }
1210
- },
1211
- "SubmitTaskStateChangeRequest":{
1212
- "type":"structure",
1213
- "members":{
1214
- "cluster":{"shape":"String"},
1215
- "task":{"shape":"String"},
1216
- "status":{"shape":"String"},
1217
- "reason":{"shape":"String"}
1218
- }
1219
- },
1220
- "SubmitTaskStateChangeResponse":{
1221
- "type":"structure",
1222
- "members":{
1223
- "acknowledgment":{"shape":"String"}
1224
- }
1225
- },
1226
- "Task":{
1227
- "type":"structure",
1228
- "members":{
1229
- "taskArn":{"shape":"String"},
1230
- "clusterArn":{"shape":"String"},
1231
- "taskDefinitionArn":{"shape":"String"},
1232
- "containerInstanceArn":{"shape":"String"},
1233
- "overrides":{"shape":"TaskOverride"},
1234
- "lastStatus":{"shape":"String"},
1235
- "desiredStatus":{"shape":"String"},
1236
- "containers":{"shape":"Containers"},
1237
- "startedBy":{"shape":"String"},
1238
- "stoppedReason":{"shape":"String"},
1239
- "createdAt":{"shape":"Timestamp"},
1240
- "startedAt":{"shape":"Timestamp"},
1241
- "stoppedAt":{"shape":"Timestamp"}
1242
- }
1243
- },
1244
- "TaskDefinition":{
1245
- "type":"structure",
1246
- "members":{
1247
- "taskDefinitionArn":{"shape":"String"},
1248
- "containerDefinitions":{"shape":"ContainerDefinitions"},
1249
- "family":{"shape":"String"},
1250
- "taskRoleArn":{"shape":"String"},
1251
- "revision":{"shape":"Integer"},
1252
- "volumes":{"shape":"VolumeList"},
1253
- "status":{"shape":"TaskDefinitionStatus"},
1254
- "requiresAttributes":{"shape":"RequiresAttributes"}
1255
- }
1256
- },
1257
- "TaskDefinitionFamilyStatus":{
1258
- "type":"string",
1259
- "enum":[
1260
- "ACTIVE",
1261
- "INACTIVE",
1262
- "ALL"
1263
- ]
1264
- },
1265
- "TaskDefinitionStatus":{
1266
- "type":"string",
1267
- "enum":[
1268
- "ACTIVE",
1269
- "INACTIVE"
1270
- ]
1271
- },
1272
- "TaskOverride":{
1273
- "type":"structure",
1274
- "members":{
1275
- "containerOverrides":{"shape":"ContainerOverrides"},
1276
- "taskRoleArn":{"shape":"String"}
1277
- }
1278
- },
1279
- "Tasks":{
1280
- "type":"list",
1281
- "member":{"shape":"Task"}
1282
- },
1283
- "Timestamp":{"type":"timestamp"},
1284
- "TransportProtocol":{
1285
- "type":"string",
1286
- "enum":[
1287
- "tcp",
1288
- "udp"
1289
- ]
1290
- },
1291
- "Ulimit":{
1292
- "type":"structure",
1293
- "required":[
1294
- "name",
1295
- "softLimit",
1296
- "hardLimit"
1297
- ],
1298
- "members":{
1299
- "name":{"shape":"UlimitName"},
1300
- "softLimit":{"shape":"Integer"},
1301
- "hardLimit":{"shape":"Integer"}
1302
- }
1303
- },
1304
- "UlimitList":{
1305
- "type":"list",
1306
- "member":{"shape":"Ulimit"}
1307
- },
1308
- "UlimitName":{
1309
- "type":"string",
1310
- "enum":[
1311
- "core",
1312
- "cpu",
1313
- "data",
1314
- "fsize",
1315
- "locks",
1316
- "memlock",
1317
- "msgqueue",
1318
- "nice",
1319
- "nofile",
1320
- "nproc",
1321
- "rss",
1322
- "rtprio",
1323
- "rttime",
1324
- "sigpending",
1325
- "stack"
1326
- ]
1327
- },
1328
- "UpdateContainerAgentRequest":{
1329
- "type":"structure",
1330
- "required":["containerInstance"],
1331
- "members":{
1332
- "cluster":{"shape":"String"},
1333
- "containerInstance":{"shape":"String"}
1334
- }
1335
- },
1336
- "UpdateContainerAgentResponse":{
1337
- "type":"structure",
1338
- "members":{
1339
- "containerInstance":{"shape":"ContainerInstance"}
1340
- }
1341
- },
1342
- "UpdateInProgressException":{
1343
- "type":"structure",
1344
- "members":{
1345
- },
1346
- "exception":true
1347
- },
1348
- "UpdateServiceRequest":{
1349
- "type":"structure",
1350
- "required":["service"],
1351
- "members":{
1352
- "cluster":{"shape":"String"},
1353
- "service":{"shape":"String"},
1354
- "desiredCount":{"shape":"BoxedInteger"},
1355
- "taskDefinition":{"shape":"String"},
1356
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"}
1357
- }
1358
- },
1359
- "UpdateServiceResponse":{
1360
- "type":"structure",
1361
- "members":{
1362
- "service":{"shape":"Service"}
1363
- }
1364
- },
1365
- "VersionInfo":{
1366
- "type":"structure",
1367
- "members":{
1368
- "agentVersion":{"shape":"String"},
1369
- "agentHash":{"shape":"String"},
1370
- "dockerVersion":{"shape":"String"}
1371
- }
1372
- },
1373
- "Volume":{
1374
- "type":"structure",
1375
- "members":{
1376
- "name":{"shape":"String"},
1377
- "host":{"shape":"HostVolumeProperties"}
1378
- }
1379
- },
1380
- "VolumeFrom":{
1381
- "type":"structure",
1382
- "members":{
1383
- "sourceContainer":{"shape":"String"},
1384
- "readOnly":{"shape":"BoxedBoolean"}
1385
- }
1386
- },
1387
- "VolumeFromList":{
1388
- "type":"list",
1389
- "member":{"shape":"VolumeFrom"}
1390
- },
1391
- "VolumeList":{
1392
- "type":"list",
1393
- "member":{"shape":"Volume"}
1394
- }
1395
- }
1396
- }