aws-sdk-core 2.11.344 → 3.65.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1152) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -549
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +164 -11
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/http/async_response.rb +42 -0
  111. data/lib/seahorse/client/http/response.rb +10 -5
  112. data/lib/seahorse/client/logging/formatter.rb +2 -0
  113. data/lib/seahorse/client/logging/handler.rb +2 -0
  114. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  115. data/lib/seahorse/client/net_http/handler.rb +5 -0
  116. data/lib/seahorse/client/net_http/patches.rb +9 -1
  117. data/lib/seahorse/client/networking_error.rb +28 -0
  118. data/lib/seahorse/client/plugin.rb +66 -6
  119. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  120. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  121. data/lib/seahorse/client/plugins/h2.rb +64 -0
  122. data/lib/seahorse/client/plugins/logging.rb +17 -19
  123. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  124. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  125. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  126. data/lib/seahorse/client/request_context.rb +5 -0
  127. data/lib/seahorse/model/api.rb +33 -0
  128. data/lib/seahorse/model/authorizer.rb +21 -0
  129. data/lib/seahorse/model/operation.rb +11 -0
  130. data/lib/seahorse/model/shapes.rb +44 -2
  131. data/lib/seahorse/util.rb +1 -22
  132. metadata +91 -1029
  133. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  134. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  135. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  136. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  137. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  138. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  139. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  140. data/apis/acm/2015-12-08/api-2.json +0 -843
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/acm/2015-12-08/smoke.json +0 -18
  144. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  145. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  146. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  147. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  148. data/apis/amplify/2017-07-25/api-2.json +0 -1972
  149. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  150. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  151. data/apis/apigateway/2015-07-09/api-2.json +0 -5382
  152. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  153. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  154. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  155. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  156. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  157. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  158. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  159. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  160. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  161. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  162. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  163. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  164. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  165. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  166. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  167. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  168. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  169. data/apis/appmesh/2019-01-25/api-2.json +0 -3202
  170. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  171. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  172. data/apis/appstream/2016-12-01/api-2.json +0 -2330
  173. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  174. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  175. data/apis/appstream/2016-12-01/smoke.json +0 -11
  176. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  177. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  178. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  179. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  180. data/apis/athena/2017-05-18/api-2.json +0 -984
  181. data/apis/athena/2017-05-18/examples-1.json +0 -5
  182. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  183. data/apis/athena/2017-05-18/smoke.json +0 -11
  184. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  185. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  186. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  187. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  188. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  189. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  190. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  191. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  192. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  193. data/apis/backup/2018-11-15/api-2.json +0 -2150
  194. data/apis/backup/2018-11-15/examples-1.json +0 -5
  195. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  196. data/apis/batch/2016-08-10/api-2.json +0 -1128
  197. data/apis/batch/2016-08-10/examples-1.json +0 -589
  198. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  199. data/apis/batch/2016-08-10/smoke.json +0 -11
  200. data/apis/budgets/2016-10-20/api-2.json +0 -807
  201. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  202. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  203. data/apis/ce/2017-10-25/api-2.json +0 -1035
  204. data/apis/ce/2017-10-25/examples-1.json +0 -5
  205. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  206. data/apis/chime/2018-05-01/api-2.json +0 -2902
  207. data/apis/chime/2018-05-01/examples-1.json +0 -5
  208. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  209. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  210. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  211. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  212. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  213. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  214. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  215. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  216. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  217. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  218. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  219. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  220. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  221. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  222. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  223. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  224. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  225. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  226. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  227. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  228. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  229. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  230. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  231. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  232. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  233. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  234. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  235. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  239. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  243. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  246. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  247. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  248. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  249. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  250. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  251. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  252. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  253. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  254. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  255. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  256. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  257. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  258. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  259. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  261. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  264. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  265. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  266. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  267. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  268. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  269. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  270. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  271. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  272. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  273. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  274. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  275. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  276. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  277. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  278. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  279. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  280. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  281. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  282. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  283. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  284. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  285. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  286. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  287. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  288. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  289. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  290. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  291. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  292. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  293. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  294. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  295. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  296. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  297. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  298. data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
  299. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  300. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  301. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  302. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  303. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  304. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  305. data/apis/codestar/2017-04-19/smoke.json +0 -11
  306. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  307. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  308. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  309. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
  310. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  311. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
  312. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  313. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  314. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  315. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  316. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  317. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  318. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  319. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  320. data/apis/config/2014-11-12/api-2.json +0 -3270
  321. data/apis/config/2014-11-12/examples-1.json +0 -5
  322. data/apis/config/2014-11-12/paginators-1.json +0 -16
  323. data/apis/config/2014-11-12/smoke.json +0 -19
  324. data/apis/connect/2017-08-08/api-2.json +0 -1379
  325. data/apis/connect/2017-08-08/examples-1.json +0 -5
  326. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  327. data/apis/cur/2017-01-06/api-2.json +0 -277
  328. data/apis/cur/2017-01-06/examples-1.json +0 -102
  329. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  330. data/apis/cur/2017-01-06/smoke.json +0 -11
  331. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  332. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  333. data/apis/datasync/2018-11-09/api-2.json +0 -1305
  334. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  335. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  336. data/apis/dax/2017-04-19/api-2.json +0 -1140
  337. data/apis/dax/2017-04-19/examples-1.json +0 -5
  338. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  339. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  340. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  341. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  342. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  343. data/apis/directconnect/2012-10-25/api-2.json +0 -2066
  344. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  345. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  346. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  347. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  348. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  349. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  350. data/apis/discovery/2015-11-01/smoke.json +0 -11
  351. data/apis/dlm/2018-01-12/api-2.json +0 -444
  352. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  353. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  354. data/apis/dms/2016-01-01/api-2.json +0 -2259
  355. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  356. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  357. data/apis/dms/2016-01-01/smoke.json +0 -18
  358. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  359. data/apis/docdb/2014-10-31/api-2.json +0 -2482
  360. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  361. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  362. data/apis/docdb/2014-10-31/smoke.json +0 -18
  363. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  364. data/apis/ds/2015-04-16/api-2.json +0 -2634
  365. data/apis/ds/2015-04-16/examples-1.json +0 -5
  366. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  367. data/apis/ds/2015-04-16/smoke.json +0 -20
  368. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  369. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  370. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  371. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  372. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  373. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  374. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  375. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  376. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  377. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  378. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  379. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  380. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  381. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  382. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  383. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  384. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  385. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  386. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  387. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  388. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  389. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  390. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  391. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  392. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  393. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  394. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  395. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  396. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  397. data/apis/ec2/2016-11-15/api-2.json +0 -25018
  398. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  399. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  400. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  401. data/apis/ec2/2016-11-15/smoke.json +0 -20
  402. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  403. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  404. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  405. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  406. data/apis/ecr/2015-09-21/smoke.json +0 -18
  407. data/apis/ecs/2014-11-13/api-2.json +0 -2812
  408. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  409. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  410. data/apis/ecs/2014-11-13/smoke.json +0 -18
  411. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  412. data/apis/eks/2017-11-01/api-2.json +0 -597
  413. data/apis/eks/2017-11-01/examples-1.json +0 -114
  414. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  415. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  416. data/apis/elasticache/2015-02-02/api-2.json +0 -3152
  417. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  418. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  419. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  420. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  421. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  422. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  423. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  424. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  425. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  426. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  427. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  428. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  429. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  430. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  431. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  432. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  433. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  434. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  435. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  436. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  437. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  438. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  439. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  440. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  441. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  442. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  443. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  444. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  445. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  446. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  447. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  448. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  449. data/apis/email/2010-12-01/api-2.json +0 -3182
  450. data/apis/email/2010-12-01/examples-1.json +0 -1021
  451. data/apis/email/2010-12-01/paginators-1.json +0 -18
  452. data/apis/email/2010-12-01/smoke.json +0 -18
  453. data/apis/email/2010-12-01/waiters-2.json +0 -18
  454. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  455. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  456. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  457. data/apis/es/2015-01-01/api-2.json +0 -1543
  458. data/apis/es/2015-01-01/examples-1.json +0 -5
  459. data/apis/es/2015-01-01/paginators-1.json +0 -29
  460. data/apis/es/2015-01-01/smoke.json +0 -18
  461. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  462. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  463. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  464. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  465. data/apis/events/2015-10-07/api-2.json +0 -1462
  466. data/apis/events/2015-10-07/examples-1.json +0 -5
  467. data/apis/events/2015-10-07/paginators-1.json +0 -4
  468. data/apis/events/2015-10-07/smoke.json +0 -18
  469. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  470. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  471. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  472. data/apis/firehose/2015-08-04/smoke.json +0 -18
  473. data/apis/fms/2018-01-01/api-2.json +0 -692
  474. data/apis/fms/2018-01-01/examples-1.json +0 -5
  475. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  476. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  477. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  478. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  479. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  480. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  481. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  482. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  483. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  484. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  485. data/apis/gamelift/2015-10-01/api-2.json +0 -3447
  486. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  487. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  488. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  489. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  490. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  491. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  492. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  493. data/apis/glacier/2012-06-01/smoke.json +0 -18
  494. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  495. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
  496. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  497. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  498. data/apis/glue/2017-03-31/api-2.json +0 -6291
  499. data/apis/glue/2017-03-31/examples-1.json +0 -5
  500. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  501. data/apis/glue/2017-03-31/smoke.json +0 -11
  502. data/apis/greengrass/2017-06-07/api-2.json +0 -5103
  503. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  504. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  505. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  506. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  507. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  508. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  509. data/apis/health/2016-08-04/api-2.json +0 -554
  510. data/apis/health/2016-08-04/examples-1.json +0 -5
  511. data/apis/health/2016-08-04/paginators-1.json +0 -31
  512. data/apis/health/2016-08-04/smoke.json +0 -11
  513. data/apis/iam/2010-05-08/api-2.json +0 -5778
  514. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  515. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  516. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  517. data/apis/iam/2010-05-08/smoke.json +0 -18
  518. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  519. data/apis/importexport/2010-06-01/api-2.json +0 -667
  520. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  521. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  522. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  523. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  524. data/apis/inspector/2016-02-16/smoke.json +0 -18
  525. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  526. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  527. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  528. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  529. data/apis/iot/2015-05-28/api-2.json +0 -9676
  530. data/apis/iot/2015-05-28/examples-1.json +0 -5
  531. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  532. data/apis/iot/2015-05-28/smoke.json +0 -18
  533. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  534. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  535. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  536. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  537. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  538. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  539. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  540. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  541. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  542. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  543. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  544. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  545. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  546. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  547. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  548. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  549. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  550. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  551. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  552. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  553. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  554. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  555. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  556. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  557. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  558. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  559. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  560. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  561. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  562. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  563. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  564. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  565. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  566. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  567. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  568. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  569. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  570. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  571. data/apis/kms/2014-11-01/api-2.json +0 -1834
  572. data/apis/kms/2014-11-01/examples-1.json +0 -906
  573. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  574. data/apis/kms/2014-11-01/smoke.json +0 -19
  575. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  576. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  577. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  578. data/apis/lambda/2014-11-11/api-2.json +0 -668
  579. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  580. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  581. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  582. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  583. data/apis/lambda/2015-03-31/smoke.json +0 -18
  584. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  585. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  586. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  587. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  588. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  589. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  590. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  591. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  592. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  593. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  594. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  595. data/apis/logs/2014-03-28/api-2.json +0 -1701
  596. data/apis/logs/2014-03-28/examples-1.json +0 -5
  597. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  598. data/apis/logs/2014-03-28/smoke.json +0 -19
  599. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  600. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  601. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  602. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  603. data/apis/macie/2017-12-19/api-2.json +0 -365
  604. data/apis/macie/2017-12-19/examples-1.json +0 -5
  605. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  606. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  607. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  608. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  609. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  610. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  611. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  612. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
  613. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  614. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8239
  615. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  616. data/apis/medialive/2017-10-14/api-2.json +0 -8711
  617. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  618. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  619. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  620. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  621. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  622. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  623. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  624. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  625. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  626. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  627. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  628. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  629. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  630. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  631. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  632. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  633. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  634. data/apis/mobile/2017-07-01/api-2.json +0 -551
  635. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  636. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  637. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  638. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  639. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  640. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  641. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  642. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  643. data/apis/mq/2017-11-27/api-2.json +0 -2490
  644. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  645. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  646. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  647. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  648. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  649. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  650. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  651. data/apis/neptune/2014-10-31/smoke.json +0 -18
  652. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  653. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  654. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  655. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  656. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  657. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  658. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  659. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  660. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  661. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  662. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  663. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  664. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  665. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  666. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  667. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  668. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  669. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  670. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  671. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  672. data/apis/personalize/2018-05-22/api-2.json +0 -1695
  673. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  674. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  675. data/apis/pi/2018-02-27/api-2.json +0 -253
  676. data/apis/pi/2018-02-27/examples-1.json +0 -5
  677. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  678. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  679. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  680. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  681. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  682. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  683. data/apis/polly/2016-06-10/api-2.json +0 -830
  684. data/apis/polly/2016-06-10/examples-1.json +0 -171
  685. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  686. data/apis/polly/2016-06-10/smoke.json +0 -11
  687. data/apis/pricing/2017-10-15/api-2.json +0 -227
  688. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  689. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  690. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  691. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  692. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  693. data/apis/ram/2018-01-04/api-2.json +0 -964
  694. data/apis/ram/2018-01-04/examples-1.json +0 -5
  695. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  696. data/apis/rds-data/2018-08-01/api-2.json +0 -787
  697. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  698. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  699. data/apis/rds/2013-01-10/api-2.json +0 -2903
  700. data/apis/rds/2013-01-10/examples-1.json +0 -5
  701. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  702. data/apis/rds/2013-01-10/smoke.json +0 -18
  703. data/apis/rds/2013-02-12/api-2.json +0 -3059
  704. data/apis/rds/2013-02-12/examples-1.json +0 -5
  705. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  706. data/apis/rds/2013-02-12/smoke.json +0 -18
  707. data/apis/rds/2013-09-09/api-2.json +0 -3160
  708. data/apis/rds/2013-09-09/examples-1.json +0 -5
  709. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  710. data/apis/rds/2013-09-09/smoke.json +0 -18
  711. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  712. data/apis/rds/2014-09-01/api-2.json +0 -3273
  713. data/apis/rds/2014-09-01/examples-1.json +0 -5
  714. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  715. data/apis/rds/2014-09-01/smoke.json +0 -18
  716. data/apis/rds/2014-10-31/api-2.json +0 -6576
  717. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  718. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  719. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  720. data/apis/rds/2014-10-31/smoke.json +0 -18
  721. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  722. data/apis/rds/2015-11-12/api-2.json +0 -5509
  723. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  724. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  725. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  726. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  727. data/apis/redshift/2012-12-01/api-2.json +0 -4891
  728. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  729. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  730. data/apis/redshift/2012-12-01/smoke.json +0 -18
  731. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  732. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  733. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  734. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  735. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  736. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  737. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  738. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  739. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  740. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  741. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  742. data/apis/robomaker/2018-06-29/api-2.json +0 -2093
  743. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  744. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  745. data/apis/route53/2013-04-01/api-2.json +0 -3780
  746. data/apis/route53/2013-04-01/examples-1.json +0 -762
  747. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  748. data/apis/route53/2013-04-01/smoke.json +0 -18
  749. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  750. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  751. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  752. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  753. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  754. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  755. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  756. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  757. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  758. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  759. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  760. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  761. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  762. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  763. data/apis/s3/2006-03-01/api-2.json +0 -6576
  764. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  765. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  766. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  767. data/apis/s3/2006-03-01/smoke.json +0 -11
  768. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  769. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  770. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  771. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  772. data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
  773. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  774. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  775. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  776. data/apis/sdb/2009-04-15/api-2.json +0 -955
  777. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  778. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  779. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  780. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  781. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  782. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  783. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  784. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  785. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  786. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  787. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  788. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  789. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  790. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  791. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  792. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  793. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  794. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  795. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  796. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  797. data/apis/shield/2016-06-02/api-2.json +0 -893
  798. data/apis/shield/2016-06-02/examples-1.json +0 -5
  799. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  800. data/apis/shield/2016-06-02/smoke.json +0 -11
  801. data/apis/signer/2017-08-25/api-2.json +0 -670
  802. data/apis/signer/2017-08-25/examples-1.json +0 -5
  803. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  804. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  805. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  806. data/apis/sms/2016-10-24/api-2.json +0 -1366
  807. data/apis/sms/2016-10-24/examples-1.json +0 -5
  808. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  809. data/apis/sms/2016-10-24/smoke.json +0 -18
  810. data/apis/snowball/2016-06-30/api-2.json +0 -929
  811. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  812. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  813. data/apis/snowball/2016-06-30/smoke.json +0 -11
  814. data/apis/sns/2010-03-31/api-2.json +0 -1468
  815. data/apis/sns/2010-03-31/examples-1.json +0 -5
  816. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  817. data/apis/sns/2010-03-31/resources-1.json +0 -327
  818. data/apis/sns/2010-03-31/smoke.json +0 -19
  819. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  820. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  821. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  822. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  823. data/apis/sqs/2012-11-05/smoke.json +0 -18
  824. data/apis/ssm/2014-11-06/api-2.json +0 -8914
  825. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  826. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  827. data/apis/ssm/2014-11-06/smoke.json +0 -18
  828. data/apis/states/2016-11-23/api-2.json +0 -1372
  829. data/apis/states/2016-11-23/examples-1.json +0 -5
  830. data/apis/states/2016-11-23/paginators-1.json +0 -28
  831. data/apis/states/2016-11-23/smoke.json +0 -11
  832. data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
  833. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  834. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  835. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  836. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  837. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  838. data/apis/sts/2011-06-15/api-2.json +0 -562
  839. data/apis/sts/2011-06-15/examples-1.json +0 -207
  840. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  841. data/apis/sts/2011-06-15/smoke.json +0 -19
  842. data/apis/support/2013-04-15/api-2.json +0 -772
  843. data/apis/support/2013-04-15/examples-1.json +0 -5
  844. data/apis/support/2013-04-15/paginators-1.json +0 -25
  845. data/apis/swf/2012-01-25/api-2.json +0 -2792
  846. data/apis/swf/2012-01-25/examples-1.json +0 -5
  847. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  848. data/apis/textract/2018-06-27/api-2.json +0 -572
  849. data/apis/textract/2018-06-27/examples-1.json +0 -5
  850. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  851. data/apis/transcribe/2017-10-26/api-2.json +0 -506
  852. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  853. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  854. data/apis/transfer/2018-11-05/api-2.json +0 -857
  855. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  856. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  857. data/apis/translate/2017-07-01/api-2.json +0 -408
  858. data/apis/translate/2017-07-01/examples-1.json +0 -5
  859. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  860. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  861. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  862. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  863. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  864. data/apis/waf/2015-08-24/api-2.json +0 -3857
  865. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  866. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  867. data/apis/waf/2015-08-24/smoke.json +0 -21
  868. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  869. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  870. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  871. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  872. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  873. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  874. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  875. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  876. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  877. data/apis/workspaces/2015-04-08/api-2.json +0 -1699
  878. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  879. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  880. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  881. data/apis/xray/2016-04-12/api-2.json +0 -1352
  882. data/apis/xray/2016-04-12/examples-1.json +0 -5
  883. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  884. data/bin/aws.rb +0 -180
  885. data/endpoints.json +0 -4633
  886. data/lib/aws-sdk-core/acm.rb +0 -7
  887. data/lib/aws-sdk-core/acmpca.rb +0 -7
  888. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  889. data/lib/aws-sdk-core/amplify.rb +0 -6
  890. data/lib/aws-sdk-core/api/builder.rb +0 -129
  891. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  892. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  893. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  894. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  895. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  896. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  897. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  898. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  899. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  900. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  901. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  902. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  903. data/lib/aws-sdk-core/apigateway.rb +0 -6
  904. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  905. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  906. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  907. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  908. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  909. data/lib/aws-sdk-core/appmesh.rb +0 -6
  910. data/lib/aws-sdk-core/appstream.rb +0 -7
  911. data/lib/aws-sdk-core/appsync.rb +0 -6
  912. data/lib/aws-sdk-core/athena.rb +0 -6
  913. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  914. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  915. data/lib/aws-sdk-core/backup.rb +0 -6
  916. data/lib/aws-sdk-core/batch.rb +0 -6
  917. data/lib/aws-sdk-core/budgets.rb +0 -6
  918. data/lib/aws-sdk-core/checksums.rb +0 -51
  919. data/lib/aws-sdk-core/chime.rb +0 -6
  920. data/lib/aws-sdk-core/client.rb +0 -62
  921. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  922. data/lib/aws-sdk-core/cloud9.rb +0 -6
  923. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  924. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  925. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  926. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  927. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  928. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  929. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  930. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  931. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  932. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  933. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  934. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  935. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  936. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  937. data/lib/aws-sdk-core/codebuild.rb +0 -6
  938. data/lib/aws-sdk-core/codecommit.rb +0 -6
  939. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  940. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  941. data/lib/aws-sdk-core/codestar.rb +0 -6
  942. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  943. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  944. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  945. data/lib/aws-sdk-core/comprehend.rb +0 -6
  946. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  947. data/lib/aws-sdk-core/configservice.rb +0 -6
  948. data/lib/aws-sdk-core/connect.rb +0 -6
  949. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  950. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  951. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  952. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  953. data/lib/aws-sdk-core/datasync.rb +0 -6
  954. data/lib/aws-sdk-core/dax.rb +0 -6
  955. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  956. data/lib/aws-sdk-core/directconnect.rb +0 -6
  957. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  958. data/lib/aws-sdk-core/dlm.rb +0 -6
  959. data/lib/aws-sdk-core/docdb.rb +0 -7
  960. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  961. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  962. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  963. data/lib/aws-sdk-core/ec2.rb +0 -8
  964. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  965. data/lib/aws-sdk-core/ecr.rb +0 -6
  966. data/lib/aws-sdk-core/ecs.rb +0 -7
  967. data/lib/aws-sdk-core/efs.rb +0 -6
  968. data/lib/aws-sdk-core/eks.rb +0 -7
  969. data/lib/aws-sdk-core/elasticache.rb +0 -7
  970. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  971. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  972. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  973. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  974. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  975. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  976. data/lib/aws-sdk-core/emr.rb +0 -7
  977. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  978. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  979. data/lib/aws-sdk-core/firehose.rb +0 -6
  980. data/lib/aws-sdk-core/fms.rb +0 -6
  981. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  982. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  983. data/lib/aws-sdk-core/fsx.rb +0 -6
  984. data/lib/aws-sdk-core/gamelift.rb +0 -6
  985. data/lib/aws-sdk-core/glacier.rb +0 -8
  986. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  987. data/lib/aws-sdk-core/glue.rb +0 -6
  988. data/lib/aws-sdk-core/greengrass.rb +0 -4
  989. data/lib/aws-sdk-core/groundstation.rb +0 -6
  990. data/lib/aws-sdk-core/guardduty.rb +0 -6
  991. data/lib/aws-sdk-core/health.rb +0 -6
  992. data/lib/aws-sdk-core/iam.rb +0 -8
  993. data/lib/aws-sdk-core/importexport.rb +0 -5
  994. data/lib/aws-sdk-core/inspector.rb +0 -6
  995. data/lib/aws-sdk-core/iot.rb +0 -6
  996. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  997. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  998. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  999. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1000. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1001. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1002. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1003. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1004. data/lib/aws-sdk-core/kafka.rb +0 -5
  1005. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1006. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1007. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1008. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1009. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1010. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1011. data/lib/aws-sdk-core/kms.rb +0 -6
  1012. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1013. data/lib/aws-sdk-core/lambda.rb +0 -7
  1014. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1015. data/lib/aws-sdk-core/lex.rb +0 -6
  1016. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1017. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1018. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1019. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1020. data/lib/aws-sdk-core/macie.rb +0 -6
  1021. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1022. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1023. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1024. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1025. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1026. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1027. data/lib/aws-sdk-core/medialive.rb +0 -6
  1028. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1029. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1030. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1031. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1032. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1033. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1034. data/lib/aws-sdk-core/mobile.rb +0 -6
  1035. data/lib/aws-sdk-core/mq.rb +0 -5
  1036. data/lib/aws-sdk-core/mturk.rb +0 -6
  1037. data/lib/aws-sdk-core/neptune.rb +0 -7
  1038. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1039. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1040. data/lib/aws-sdk-core/organizations.rb +0 -6
  1041. data/lib/aws-sdk-core/partitions.rb +0 -174
  1042. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1043. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1044. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1045. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1046. data/lib/aws-sdk-core/personalize.rb +0 -6
  1047. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1048. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1049. data/lib/aws-sdk-core/pi.rb +0 -6
  1050. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1051. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1052. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1053. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1054. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1055. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1056. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1057. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1058. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1059. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1060. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1061. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1062. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1063. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1064. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1065. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1066. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1067. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1068. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1069. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1070. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1071. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1072. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1073. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1074. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1075. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1076. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1077. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1078. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1079. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1080. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1081. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1082. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1083. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1084. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1085. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1086. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1087. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1088. data/lib/aws-sdk-core/polly.rb +0 -14
  1089. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1090. data/lib/aws-sdk-core/pricing.rb +0 -6
  1091. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1092. data/lib/aws-sdk-core/ram.rb +0 -6
  1093. data/lib/aws-sdk-core/rds.rb +0 -16
  1094. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1095. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1096. data/lib/aws-sdk-core/redshift.rb +0 -7
  1097. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1098. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1099. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1100. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1101. data/lib/aws-sdk-core/route53.rb +0 -7
  1102. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1103. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1104. data/lib/aws-sdk-core/s3.rb +0 -26
  1105. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1106. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1107. data/lib/aws-sdk-core/s3control.rb +0 -6
  1108. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1109. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1110. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1111. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1112. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1113. data/lib/aws-sdk-core/service.rb +0 -4
  1114. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1115. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1116. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1117. data/lib/aws-sdk-core/ses.rb +0 -7
  1118. data/lib/aws-sdk-core/shield.rb +0 -6
  1119. data/lib/aws-sdk-core/signer.rb +0 -7
  1120. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1121. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1122. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1123. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1124. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1125. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1126. data/lib/aws-sdk-core/sms.rb +0 -6
  1127. data/lib/aws-sdk-core/snowball.rb +0 -6
  1128. data/lib/aws-sdk-core/sns.rb +0 -7
  1129. data/lib/aws-sdk-core/sqs.rb +0 -7
  1130. data/lib/aws-sdk-core/ssm.rb +0 -6
  1131. data/lib/aws-sdk-core/states.rb +0 -6
  1132. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1133. data/lib/aws-sdk-core/sts.rb +0 -6
  1134. data/lib/aws-sdk-core/support.rb +0 -6
  1135. data/lib/aws-sdk-core/swf.rb +0 -6
  1136. data/lib/aws-sdk-core/textract.rb +0 -6
  1137. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1138. data/lib/aws-sdk-core/transfer.rb +0 -6
  1139. data/lib/aws-sdk-core/translate.rb +0 -6
  1140. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1141. data/lib/aws-sdk-core/version.rb +0 -3
  1142. data/lib/aws-sdk-core/waf.rb +0 -6
  1143. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1144. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1145. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1146. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1147. data/lib/aws-sdk-core/worklink.rb +0 -6
  1148. data/lib/aws-sdk-core/workmail.rb +0 -6
  1149. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1150. data/lib/aws-sdk-core/xray.rb +0 -6
  1151. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1152. data/service-models.json +0 -757
@@ -1,215 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "BatchDeleteImage": [
5
- {
6
- "input": {
7
- "imageIds": [
8
- {
9
- "imageTag": "precise"
10
- }
11
- ],
12
- "repositoryName": "ubuntu"
13
- },
14
- "output": {
15
- "failures": [
16
-
17
- ],
18
- "imageIds": [
19
- {
20
- "imageDigest": "sha256:examplee6d1e504117a17000003d3753086354a38375961f2e665416ef4b1b2f",
21
- "imageTag": "precise"
22
- }
23
- ]
24
- },
25
- "comments": {
26
- },
27
- "description": "This example deletes images with the tags precise and trusty in a repository called ubuntu in the default registry for an account.",
28
- "id": "batchdeleteimages-example-1470860541707",
29
- "title": "To delete multiple images"
30
- }
31
- ],
32
- "BatchGetImage": [
33
- {
34
- "input": {
35
- "imageIds": [
36
- {
37
- "imageTag": "precise"
38
- }
39
- ],
40
- "repositoryName": "ubuntu"
41
- },
42
- "output": {
43
- "failures": [
44
-
45
- ],
46
- "images": [
47
- {
48
- "imageId": {
49
- "imageDigest": "sha256:example76bdff6d83a09ba2a818f0d00000063724a9ac3ba5019c56f74ebf42a",
50
- "imageTag": "precise"
51
- },
52
- "imageManifest": "{\n \"schemaVersion\": 1,\n \"name\": \"ubuntu\",\n \"tag\": \"precise\",\n...",
53
- "registryId": "244698725403",
54
- "repositoryName": "ubuntu"
55
- }
56
- ]
57
- },
58
- "comments": {
59
- "output": {
60
- "imageManifest": "In this example, the imageManifest in the output JSON has been truncated."
61
- }
62
- },
63
- "description": "This example obtains information for an image with a specified image digest ID from the repository named ubuntu in the current account.",
64
- "id": "batchgetimage-example-1470862771437",
65
- "title": "To obtain multiple images in a single request"
66
- }
67
- ],
68
- "CreateRepository": [
69
- {
70
- "input": {
71
- "repositoryName": "project-a/nginx-web-app"
72
- },
73
- "output": {
74
- "repository": {
75
- "registryId": "012345678901",
76
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678901:repository/project-a/nginx-web-app",
77
- "repositoryName": "project-a/nginx-web-app"
78
- }
79
- },
80
- "comments": {
81
- "output": {
82
- "imageManifest": "In this example, the imageManifest in the output JSON has been truncated."
83
- }
84
- },
85
- "description": "This example creates a repository called nginx-web-app inside the project-a namespace in the default registry for an account.",
86
- "id": "createrepository-example-1470863688724",
87
- "title": "To create a new repository"
88
- }
89
- ],
90
- "DeleteRepository": [
91
- {
92
- "input": {
93
- "force": true,
94
- "repositoryName": "ubuntu"
95
- },
96
- "output": {
97
- "repository": {
98
- "registryId": "012345678901",
99
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678901:repository/ubuntu",
100
- "repositoryName": "ubuntu"
101
- }
102
- },
103
- "comments": {
104
- "output": {
105
- "imageManifest": "In this example, the imageManifest in the output JSON has been truncated."
106
- }
107
- },
108
- "description": "This example force deletes a repository named ubuntu in the default registry for an account. The force parameter is required if the repository contains images.",
109
- "id": "deleterepository-example-1470863805703",
110
- "title": "To force delete a repository"
111
- }
112
- ],
113
- "DeleteRepositoryPolicy": [
114
- {
115
- "input": {
116
- "repositoryName": "ubuntu"
117
- },
118
- "output": {
119
- "policyText": "{ ... }",
120
- "registryId": "012345678901",
121
- "repositoryName": "ubuntu"
122
- },
123
- "comments": {
124
- },
125
- "description": "This example deletes the policy associated with the repository named ubuntu in the current account.",
126
- "id": "deleterepositorypolicy-example-1470866943748",
127
- "title": "To delete the policy associated with a repository"
128
- }
129
- ],
130
- "DescribeRepositories": [
131
- {
132
- "input": {
133
- },
134
- "output": {
135
- "repositories": [
136
- {
137
- "registryId": "012345678910",
138
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678910:repository/ubuntu",
139
- "repositoryName": "ubuntu"
140
- },
141
- {
142
- "registryId": "012345678910",
143
- "repositoryArn": "arn:aws:ecr:us-west-2:012345678910:repository/test",
144
- "repositoryName": "test"
145
- }
146
- ]
147
- },
148
- "comments": {
149
- "output": {
150
- }
151
- },
152
- "description": "The following example obtains a list and description of all repositories in the default registry to which the current user has access.",
153
- "id": "describe-repositories-1470856017467",
154
- "title": "To describe all repositories in the current account"
155
- }
156
- ],
157
- "GetAuthorizationToken": [
158
- {
159
- "input": {
160
- },
161
- "output": {
162
- "authorizationData": [
163
- {
164
- "authorizationToken": "QVdTOkN...",
165
- "expiresAt": "1470951892432",
166
- "proxyEndpoint": "https://012345678901.dkr.ecr.us-west-2.amazonaws.com"
167
- }
168
- ]
169
- },
170
- "comments": {
171
- },
172
- "description": "This example gets an authorization token for your default registry.",
173
- "id": "getauthorizationtoken-example-1470867047084",
174
- "title": "To obtain an authorization token"
175
- }
176
- ],
177
- "GetRepositoryPolicy": [
178
- {
179
- "input": {
180
- "repositoryName": "ubuntu"
181
- },
182
- "output": {
183
- "policyText": "{\n \"Version\" : \"2008-10-17\",\n \"Statement\" : [ {\n \"Sid\" : \"new statement\",\n \"Effect\" : \"Allow\",\n \"Principal\" : {\n \"AWS\" : \"arn:aws:iam::012345678901:role/CodeDeployDemo\"\n },\n\"Action\" : [ \"ecr:GetDownloadUrlForLayer\", \"ecr:BatchGetImage\", \"ecr:BatchCheckLayerAvailability\" ]\n } ]\n}",
184
- "registryId": "012345678901",
185
- "repositoryName": "ubuntu"
186
- },
187
- "comments": {
188
- },
189
- "description": "This example obtains the repository policy for the repository named ubuntu.",
190
- "id": "getrepositorypolicy-example-1470867669211",
191
- "title": "To get the current policy for a repository"
192
- }
193
- ],
194
- "ListImages": [
195
- {
196
- "input": {
197
- "repositoryName": "ubuntu"
198
- },
199
- "output": {
200
- "imageIds": [
201
- {
202
- "imageDigest": "sha256:764f63476bdff6d83a09ba2a818f0d35757063724a9ac3ba5019c56f74ebf42a",
203
- "imageTag": "precise"
204
- }
205
- ]
206
- },
207
- "comments": {
208
- },
209
- "description": "This example lists all of the images in the repository named ubuntu in the default registry in the current account. ",
210
- "id": "listimages-example-1470868161594",
211
- "title": "To list all images in a repository"
212
- }
213
- ]
214
- }
215
- }
@@ -1,22 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeImages": {
4
- "input_token": "nextToken",
5
- "limit_key": "maxResults",
6
- "output_token": "nextToken",
7
- "result_key": "imageDetails"
8
- },
9
- "DescribeRepositories": {
10
- "input_token": "nextToken",
11
- "limit_key": "maxResults",
12
- "output_token": "nextToken",
13
- "result_key": "repositories"
14
- },
15
- "ListImages": {
16
- "input_token": "nextToken",
17
- "limit_key": "maxResults",
18
- "output_token": "nextToken",
19
- "result_key": "imageIds"
20
- }
21
- }
22
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "DescribeRepositories",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- },
10
- {
11
- "operationName": "ListImages",
12
- "input": {
13
- "repositoryName": "not-a-real-repository"
14
- },
15
- "errorExpectedFromService": true
16
- }
17
- ]
18
- }
@@ -1,2812 +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
- "serviceId":"ECS",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"AmazonEC2ContainerServiceV20141113",
13
- "uid":"ecs-2014-11-13"
14
- },
15
- "operations":{
16
- "CreateCluster":{
17
- "name":"CreateCluster",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CreateClusterRequest"},
23
- "output":{"shape":"CreateClusterResponse"},
24
- "errors":[
25
- {"shape":"ServerException"},
26
- {"shape":"ClientException"},
27
- {"shape":"InvalidParameterException"}
28
- ]
29
- },
30
- "CreateService":{
31
- "name":"CreateService",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"CreateServiceRequest"},
37
- "output":{"shape":"CreateServiceResponse"},
38
- "errors":[
39
- {"shape":"ServerException"},
40
- {"shape":"ClientException"},
41
- {"shape":"InvalidParameterException"},
42
- {"shape":"ClusterNotFoundException"},
43
- {"shape":"UnsupportedFeatureException"},
44
- {"shape":"PlatformUnknownException"},
45
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
46
- {"shape":"AccessDeniedException"}
47
- ]
48
- },
49
- "CreateTaskSet":{
50
- "name":"CreateTaskSet",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"CreateTaskSetRequest"},
56
- "output":{"shape":"CreateTaskSetResponse"},
57
- "errors":[
58
- {"shape":"ServerException"},
59
- {"shape":"ClientException"},
60
- {"shape":"InvalidParameterException"},
61
- {"shape":"ClusterNotFoundException"},
62
- {"shape":"UnsupportedFeatureException"},
63
- {"shape":"PlatformUnknownException"},
64
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
65
- {"shape":"AccessDeniedException"},
66
- {"shape":"ServiceNotFoundException"},
67
- {"shape":"ServiceNotActiveException"}
68
- ]
69
- },
70
- "DeleteAccountSetting":{
71
- "name":"DeleteAccountSetting",
72
- "http":{
73
- "method":"POST",
74
- "requestUri":"/"
75
- },
76
- "input":{"shape":"DeleteAccountSettingRequest"},
77
- "output":{"shape":"DeleteAccountSettingResponse"},
78
- "errors":[
79
- {"shape":"ServerException"},
80
- {"shape":"ClientException"},
81
- {"shape":"InvalidParameterException"}
82
- ]
83
- },
84
- "DeleteAttributes":{
85
- "name":"DeleteAttributes",
86
- "http":{
87
- "method":"POST",
88
- "requestUri":"/"
89
- },
90
- "input":{"shape":"DeleteAttributesRequest"},
91
- "output":{"shape":"DeleteAttributesResponse"},
92
- "errors":[
93
- {"shape":"ClusterNotFoundException"},
94
- {"shape":"TargetNotFoundException"},
95
- {"shape":"InvalidParameterException"}
96
- ]
97
- },
98
- "DeleteCluster":{
99
- "name":"DeleteCluster",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"DeleteClusterRequest"},
105
- "output":{"shape":"DeleteClusterResponse"},
106
- "errors":[
107
- {"shape":"ServerException"},
108
- {"shape":"ClientException"},
109
- {"shape":"InvalidParameterException"},
110
- {"shape":"ClusterNotFoundException"},
111
- {"shape":"ClusterContainsContainerInstancesException"},
112
- {"shape":"ClusterContainsServicesException"},
113
- {"shape":"ClusterContainsTasksException"}
114
- ]
115
- },
116
- "DeleteService":{
117
- "name":"DeleteService",
118
- "http":{
119
- "method":"POST",
120
- "requestUri":"/"
121
- },
122
- "input":{"shape":"DeleteServiceRequest"},
123
- "output":{"shape":"DeleteServiceResponse"},
124
- "errors":[
125
- {"shape":"ServerException"},
126
- {"shape":"ClientException"},
127
- {"shape":"InvalidParameterException"},
128
- {"shape":"ClusterNotFoundException"},
129
- {"shape":"ServiceNotFoundException"}
130
- ]
131
- },
132
- "DeleteTaskSet":{
133
- "name":"DeleteTaskSet",
134
- "http":{
135
- "method":"POST",
136
- "requestUri":"/"
137
- },
138
- "input":{"shape":"DeleteTaskSetRequest"},
139
- "output":{"shape":"DeleteTaskSetResponse"},
140
- "errors":[
141
- {"shape":"ServerException"},
142
- {"shape":"ClientException"},
143
- {"shape":"InvalidParameterException"},
144
- {"shape":"ClusterNotFoundException"},
145
- {"shape":"UnsupportedFeatureException"},
146
- {"shape":"AccessDeniedException"},
147
- {"shape":"ServiceNotFoundException"},
148
- {"shape":"ServiceNotActiveException"},
149
- {"shape":"TaskSetNotFoundException"}
150
- ]
151
- },
152
- "DeregisterContainerInstance":{
153
- "name":"DeregisterContainerInstance",
154
- "http":{
155
- "method":"POST",
156
- "requestUri":"/"
157
- },
158
- "input":{"shape":"DeregisterContainerInstanceRequest"},
159
- "output":{"shape":"DeregisterContainerInstanceResponse"},
160
- "errors":[
161
- {"shape":"ServerException"},
162
- {"shape":"ClientException"},
163
- {"shape":"InvalidParameterException"},
164
- {"shape":"ClusterNotFoundException"}
165
- ]
166
- },
167
- "DeregisterTaskDefinition":{
168
- "name":"DeregisterTaskDefinition",
169
- "http":{
170
- "method":"POST",
171
- "requestUri":"/"
172
- },
173
- "input":{"shape":"DeregisterTaskDefinitionRequest"},
174
- "output":{"shape":"DeregisterTaskDefinitionResponse"},
175
- "errors":[
176
- {"shape":"ServerException"},
177
- {"shape":"ClientException"},
178
- {"shape":"InvalidParameterException"}
179
- ]
180
- },
181
- "DescribeClusters":{
182
- "name":"DescribeClusters",
183
- "http":{
184
- "method":"POST",
185
- "requestUri":"/"
186
- },
187
- "input":{"shape":"DescribeClustersRequest"},
188
- "output":{"shape":"DescribeClustersResponse"},
189
- "errors":[
190
- {"shape":"ServerException"},
191
- {"shape":"ClientException"},
192
- {"shape":"InvalidParameterException"}
193
- ]
194
- },
195
- "DescribeContainerInstances":{
196
- "name":"DescribeContainerInstances",
197
- "http":{
198
- "method":"POST",
199
- "requestUri":"/"
200
- },
201
- "input":{"shape":"DescribeContainerInstancesRequest"},
202
- "output":{"shape":"DescribeContainerInstancesResponse"},
203
- "errors":[
204
- {"shape":"ServerException"},
205
- {"shape":"ClientException"},
206
- {"shape":"InvalidParameterException"},
207
- {"shape":"ClusterNotFoundException"}
208
- ]
209
- },
210
- "DescribeServices":{
211
- "name":"DescribeServices",
212
- "http":{
213
- "method":"POST",
214
- "requestUri":"/"
215
- },
216
- "input":{"shape":"DescribeServicesRequest"},
217
- "output":{"shape":"DescribeServicesResponse"},
218
- "errors":[
219
- {"shape":"ServerException"},
220
- {"shape":"ClientException"},
221
- {"shape":"InvalidParameterException"},
222
- {"shape":"ClusterNotFoundException"}
223
- ]
224
- },
225
- "DescribeTaskDefinition":{
226
- "name":"DescribeTaskDefinition",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/"
230
- },
231
- "input":{"shape":"DescribeTaskDefinitionRequest"},
232
- "output":{"shape":"DescribeTaskDefinitionResponse"},
233
- "errors":[
234
- {"shape":"ServerException"},
235
- {"shape":"ClientException"},
236
- {"shape":"InvalidParameterException"}
237
- ]
238
- },
239
- "DescribeTaskSets":{
240
- "name":"DescribeTaskSets",
241
- "http":{
242
- "method":"POST",
243
- "requestUri":"/"
244
- },
245
- "input":{"shape":"DescribeTaskSetsRequest"},
246
- "output":{"shape":"DescribeTaskSetsResponse"},
247
- "errors":[
248
- {"shape":"ServerException"},
249
- {"shape":"ClientException"},
250
- {"shape":"InvalidParameterException"},
251
- {"shape":"ClusterNotFoundException"},
252
- {"shape":"UnsupportedFeatureException"},
253
- {"shape":"AccessDeniedException"},
254
- {"shape":"ServiceNotFoundException"},
255
- {"shape":"ServiceNotActiveException"}
256
- ]
257
- },
258
- "DescribeTasks":{
259
- "name":"DescribeTasks",
260
- "http":{
261
- "method":"POST",
262
- "requestUri":"/"
263
- },
264
- "input":{"shape":"DescribeTasksRequest"},
265
- "output":{"shape":"DescribeTasksResponse"},
266
- "errors":[
267
- {"shape":"ServerException"},
268
- {"shape":"ClientException"},
269
- {"shape":"InvalidParameterException"},
270
- {"shape":"ClusterNotFoundException"}
271
- ]
272
- },
273
- "DiscoverPollEndpoint":{
274
- "name":"DiscoverPollEndpoint",
275
- "http":{
276
- "method":"POST",
277
- "requestUri":"/"
278
- },
279
- "input":{"shape":"DiscoverPollEndpointRequest"},
280
- "output":{"shape":"DiscoverPollEndpointResponse"},
281
- "errors":[
282
- {"shape":"ServerException"},
283
- {"shape":"ClientException"}
284
- ]
285
- },
286
- "ListAccountSettings":{
287
- "name":"ListAccountSettings",
288
- "http":{
289
- "method":"POST",
290
- "requestUri":"/"
291
- },
292
- "input":{"shape":"ListAccountSettingsRequest"},
293
- "output":{"shape":"ListAccountSettingsResponse"},
294
- "errors":[
295
- {"shape":"ServerException"},
296
- {"shape":"ClientException"},
297
- {"shape":"InvalidParameterException"}
298
- ]
299
- },
300
- "ListAttributes":{
301
- "name":"ListAttributes",
302
- "http":{
303
- "method":"POST",
304
- "requestUri":"/"
305
- },
306
- "input":{"shape":"ListAttributesRequest"},
307
- "output":{"shape":"ListAttributesResponse"},
308
- "errors":[
309
- {"shape":"ClusterNotFoundException"},
310
- {"shape":"InvalidParameterException"}
311
- ]
312
- },
313
- "ListClusters":{
314
- "name":"ListClusters",
315
- "http":{
316
- "method":"POST",
317
- "requestUri":"/"
318
- },
319
- "input":{"shape":"ListClustersRequest"},
320
- "output":{"shape":"ListClustersResponse"},
321
- "errors":[
322
- {"shape":"ServerException"},
323
- {"shape":"ClientException"},
324
- {"shape":"InvalidParameterException"}
325
- ]
326
- },
327
- "ListContainerInstances":{
328
- "name":"ListContainerInstances",
329
- "http":{
330
- "method":"POST",
331
- "requestUri":"/"
332
- },
333
- "input":{"shape":"ListContainerInstancesRequest"},
334
- "output":{"shape":"ListContainerInstancesResponse"},
335
- "errors":[
336
- {"shape":"ServerException"},
337
- {"shape":"ClientException"},
338
- {"shape":"InvalidParameterException"},
339
- {"shape":"ClusterNotFoundException"}
340
- ]
341
- },
342
- "ListServices":{
343
- "name":"ListServices",
344
- "http":{
345
- "method":"POST",
346
- "requestUri":"/"
347
- },
348
- "input":{"shape":"ListServicesRequest"},
349
- "output":{"shape":"ListServicesResponse"},
350
- "errors":[
351
- {"shape":"ServerException"},
352
- {"shape":"ClientException"},
353
- {"shape":"InvalidParameterException"},
354
- {"shape":"ClusterNotFoundException"}
355
- ]
356
- },
357
- "ListTagsForResource":{
358
- "name":"ListTagsForResource",
359
- "http":{
360
- "method":"POST",
361
- "requestUri":"/"
362
- },
363
- "input":{"shape":"ListTagsForResourceRequest"},
364
- "output":{"shape":"ListTagsForResourceResponse"},
365
- "errors":[
366
- {"shape":"ServerException"},
367
- {"shape":"ClientException"},
368
- {"shape":"ClusterNotFoundException"},
369
- {"shape":"InvalidParameterException"}
370
- ]
371
- },
372
- "ListTaskDefinitionFamilies":{
373
- "name":"ListTaskDefinitionFamilies",
374
- "http":{
375
- "method":"POST",
376
- "requestUri":"/"
377
- },
378
- "input":{"shape":"ListTaskDefinitionFamiliesRequest"},
379
- "output":{"shape":"ListTaskDefinitionFamiliesResponse"},
380
- "errors":[
381
- {"shape":"ServerException"},
382
- {"shape":"ClientException"},
383
- {"shape":"InvalidParameterException"}
384
- ]
385
- },
386
- "ListTaskDefinitions":{
387
- "name":"ListTaskDefinitions",
388
- "http":{
389
- "method":"POST",
390
- "requestUri":"/"
391
- },
392
- "input":{"shape":"ListTaskDefinitionsRequest"},
393
- "output":{"shape":"ListTaskDefinitionsResponse"},
394
- "errors":[
395
- {"shape":"ServerException"},
396
- {"shape":"ClientException"},
397
- {"shape":"InvalidParameterException"}
398
- ]
399
- },
400
- "ListTasks":{
401
- "name":"ListTasks",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"ListTasksRequest"},
407
- "output":{"shape":"ListTasksResponse"},
408
- "errors":[
409
- {"shape":"ServerException"},
410
- {"shape":"ClientException"},
411
- {"shape":"InvalidParameterException"},
412
- {"shape":"ClusterNotFoundException"},
413
- {"shape":"ServiceNotFoundException"}
414
- ]
415
- },
416
- "PutAccountSetting":{
417
- "name":"PutAccountSetting",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/"
421
- },
422
- "input":{"shape":"PutAccountSettingRequest"},
423
- "output":{"shape":"PutAccountSettingResponse"},
424
- "errors":[
425
- {"shape":"ServerException"},
426
- {"shape":"ClientException"},
427
- {"shape":"InvalidParameterException"}
428
- ]
429
- },
430
- "PutAccountSettingDefault":{
431
- "name":"PutAccountSettingDefault",
432
- "http":{
433
- "method":"POST",
434
- "requestUri":"/"
435
- },
436
- "input":{"shape":"PutAccountSettingDefaultRequest"},
437
- "output":{"shape":"PutAccountSettingDefaultResponse"},
438
- "errors":[
439
- {"shape":"ServerException"},
440
- {"shape":"ClientException"},
441
- {"shape":"InvalidParameterException"}
442
- ]
443
- },
444
- "PutAttributes":{
445
- "name":"PutAttributes",
446
- "http":{
447
- "method":"POST",
448
- "requestUri":"/"
449
- },
450
- "input":{"shape":"PutAttributesRequest"},
451
- "output":{"shape":"PutAttributesResponse"},
452
- "errors":[
453
- {"shape":"ClusterNotFoundException"},
454
- {"shape":"TargetNotFoundException"},
455
- {"shape":"AttributeLimitExceededException"},
456
- {"shape":"InvalidParameterException"}
457
- ]
458
- },
459
- "RegisterContainerInstance":{
460
- "name":"RegisterContainerInstance",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"RegisterContainerInstanceRequest"},
466
- "output":{"shape":"RegisterContainerInstanceResponse"},
467
- "errors":[
468
- {"shape":"ServerException"},
469
- {"shape":"ClientException"},
470
- {"shape":"InvalidParameterException"}
471
- ]
472
- },
473
- "RegisterTaskDefinition":{
474
- "name":"RegisterTaskDefinition",
475
- "http":{
476
- "method":"POST",
477
- "requestUri":"/"
478
- },
479
- "input":{"shape":"RegisterTaskDefinitionRequest"},
480
- "output":{"shape":"RegisterTaskDefinitionResponse"},
481
- "errors":[
482
- {"shape":"ServerException"},
483
- {"shape":"ClientException"},
484
- {"shape":"InvalidParameterException"}
485
- ]
486
- },
487
- "RunTask":{
488
- "name":"RunTask",
489
- "http":{
490
- "method":"POST",
491
- "requestUri":"/"
492
- },
493
- "input":{"shape":"RunTaskRequest"},
494
- "output":{"shape":"RunTaskResponse"},
495
- "errors":[
496
- {"shape":"ServerException"},
497
- {"shape":"ClientException"},
498
- {"shape":"InvalidParameterException"},
499
- {"shape":"ClusterNotFoundException"},
500
- {"shape":"UnsupportedFeatureException"},
501
- {"shape":"PlatformUnknownException"},
502
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
503
- {"shape":"AccessDeniedException"},
504
- {"shape":"BlockedException"}
505
- ]
506
- },
507
- "StartTask":{
508
- "name":"StartTask",
509
- "http":{
510
- "method":"POST",
511
- "requestUri":"/"
512
- },
513
- "input":{"shape":"StartTaskRequest"},
514
- "output":{"shape":"StartTaskResponse"},
515
- "errors":[
516
- {"shape":"ServerException"},
517
- {"shape":"ClientException"},
518
- {"shape":"InvalidParameterException"},
519
- {"shape":"ClusterNotFoundException"}
520
- ]
521
- },
522
- "StopTask":{
523
- "name":"StopTask",
524
- "http":{
525
- "method":"POST",
526
- "requestUri":"/"
527
- },
528
- "input":{"shape":"StopTaskRequest"},
529
- "output":{"shape":"StopTaskResponse"},
530
- "errors":[
531
- {"shape":"ServerException"},
532
- {"shape":"ClientException"},
533
- {"shape":"InvalidParameterException"},
534
- {"shape":"ClusterNotFoundException"}
535
- ]
536
- },
537
- "SubmitAttachmentStateChanges":{
538
- "name":"SubmitAttachmentStateChanges",
539
- "http":{
540
- "method":"POST",
541
- "requestUri":"/"
542
- },
543
- "input":{"shape":"SubmitAttachmentStateChangesRequest"},
544
- "output":{"shape":"SubmitAttachmentStateChangesResponse"},
545
- "errors":[
546
- {"shape":"ServerException"},
547
- {"shape":"ClientException"},
548
- {"shape":"AccessDeniedException"},
549
- {"shape":"InvalidParameterException"}
550
- ]
551
- },
552
- "SubmitContainerStateChange":{
553
- "name":"SubmitContainerStateChange",
554
- "http":{
555
- "method":"POST",
556
- "requestUri":"/"
557
- },
558
- "input":{"shape":"SubmitContainerStateChangeRequest"},
559
- "output":{"shape":"SubmitContainerStateChangeResponse"},
560
- "errors":[
561
- {"shape":"ServerException"},
562
- {"shape":"ClientException"},
563
- {"shape":"AccessDeniedException"}
564
- ]
565
- },
566
- "SubmitTaskStateChange":{
567
- "name":"SubmitTaskStateChange",
568
- "http":{
569
- "method":"POST",
570
- "requestUri":"/"
571
- },
572
- "input":{"shape":"SubmitTaskStateChangeRequest"},
573
- "output":{"shape":"SubmitTaskStateChangeResponse"},
574
- "errors":[
575
- {"shape":"ServerException"},
576
- {"shape":"ClientException"},
577
- {"shape":"AccessDeniedException"}
578
- ]
579
- },
580
- "TagResource":{
581
- "name":"TagResource",
582
- "http":{
583
- "method":"POST",
584
- "requestUri":"/"
585
- },
586
- "input":{"shape":"TagResourceRequest"},
587
- "output":{"shape":"TagResourceResponse"},
588
- "errors":[
589
- {"shape":"ServerException"},
590
- {"shape":"ClientException"},
591
- {"shape":"ClusterNotFoundException"},
592
- {"shape":"ResourceNotFoundException"},
593
- {"shape":"InvalidParameterException"}
594
- ]
595
- },
596
- "UntagResource":{
597
- "name":"UntagResource",
598
- "http":{
599
- "method":"POST",
600
- "requestUri":"/"
601
- },
602
- "input":{"shape":"UntagResourceRequest"},
603
- "output":{"shape":"UntagResourceResponse"},
604
- "errors":[
605
- {"shape":"ServerException"},
606
- {"shape":"ClientException"},
607
- {"shape":"ClusterNotFoundException"},
608
- {"shape":"ResourceNotFoundException"},
609
- {"shape":"InvalidParameterException"}
610
- ]
611
- },
612
- "UpdateContainerAgent":{
613
- "name":"UpdateContainerAgent",
614
- "http":{
615
- "method":"POST",
616
- "requestUri":"/"
617
- },
618
- "input":{"shape":"UpdateContainerAgentRequest"},
619
- "output":{"shape":"UpdateContainerAgentResponse"},
620
- "errors":[
621
- {"shape":"ServerException"},
622
- {"shape":"ClientException"},
623
- {"shape":"InvalidParameterException"},
624
- {"shape":"ClusterNotFoundException"},
625
- {"shape":"UpdateInProgressException"},
626
- {"shape":"NoUpdateAvailableException"},
627
- {"shape":"MissingVersionException"}
628
- ]
629
- },
630
- "UpdateContainerInstancesState":{
631
- "name":"UpdateContainerInstancesState",
632
- "http":{
633
- "method":"POST",
634
- "requestUri":"/"
635
- },
636
- "input":{"shape":"UpdateContainerInstancesStateRequest"},
637
- "output":{"shape":"UpdateContainerInstancesStateResponse"},
638
- "errors":[
639
- {"shape":"ServerException"},
640
- {"shape":"ClientException"},
641
- {"shape":"InvalidParameterException"},
642
- {"shape":"ClusterNotFoundException"}
643
- ]
644
- },
645
- "UpdateService":{
646
- "name":"UpdateService",
647
- "http":{
648
- "method":"POST",
649
- "requestUri":"/"
650
- },
651
- "input":{"shape":"UpdateServiceRequest"},
652
- "output":{"shape":"UpdateServiceResponse"},
653
- "errors":[
654
- {"shape":"ServerException"},
655
- {"shape":"ClientException"},
656
- {"shape":"InvalidParameterException"},
657
- {"shape":"ClusterNotFoundException"},
658
- {"shape":"ServiceNotFoundException"},
659
- {"shape":"ServiceNotActiveException"},
660
- {"shape":"PlatformUnknownException"},
661
- {"shape":"PlatformTaskDefinitionIncompatibilityException"},
662
- {"shape":"AccessDeniedException"}
663
- ]
664
- },
665
- "UpdateServicePrimaryTaskSet":{
666
- "name":"UpdateServicePrimaryTaskSet",
667
- "http":{
668
- "method":"POST",
669
- "requestUri":"/"
670
- },
671
- "input":{"shape":"UpdateServicePrimaryTaskSetRequest"},
672
- "output":{"shape":"UpdateServicePrimaryTaskSetResponse"},
673
- "errors":[
674
- {"shape":"ServerException"},
675
- {"shape":"ClientException"},
676
- {"shape":"InvalidParameterException"},
677
- {"shape":"ClusterNotFoundException"},
678
- {"shape":"UnsupportedFeatureException"},
679
- {"shape":"AccessDeniedException"},
680
- {"shape":"ServiceNotFoundException"},
681
- {"shape":"ServiceNotActiveException"},
682
- {"shape":"TaskSetNotFoundException"},
683
- {"shape":"AccessDeniedException"}
684
- ]
685
- },
686
- "UpdateTaskSet":{
687
- "name":"UpdateTaskSet",
688
- "http":{
689
- "method":"POST",
690
- "requestUri":"/"
691
- },
692
- "input":{"shape":"UpdateTaskSetRequest"},
693
- "output":{"shape":"UpdateTaskSetResponse"},
694
- "errors":[
695
- {"shape":"ServerException"},
696
- {"shape":"ClientException"},
697
- {"shape":"InvalidParameterException"},
698
- {"shape":"ClusterNotFoundException"},
699
- {"shape":"UnsupportedFeatureException"},
700
- {"shape":"AccessDeniedException"},
701
- {"shape":"ServiceNotFoundException"},
702
- {"shape":"ServiceNotActiveException"},
703
- {"shape":"TaskSetNotFoundException"}
704
- ]
705
- }
706
- },
707
- "shapes":{
708
- "AccessDeniedException":{
709
- "type":"structure",
710
- "members":{
711
- },
712
- "exception":true
713
- },
714
- "AgentUpdateStatus":{
715
- "type":"string",
716
- "enum":[
717
- "PENDING",
718
- "STAGING",
719
- "STAGED",
720
- "UPDATING",
721
- "UPDATED",
722
- "FAILED"
723
- ]
724
- },
725
- "AssignPublicIp":{
726
- "type":"string",
727
- "enum":[
728
- "ENABLED",
729
- "DISABLED"
730
- ]
731
- },
732
- "Attachment":{
733
- "type":"structure",
734
- "members":{
735
- "id":{"shape":"String"},
736
- "type":{"shape":"String"},
737
- "status":{"shape":"String"},
738
- "details":{"shape":"AttachmentDetails"}
739
- }
740
- },
741
- "AttachmentDetails":{
742
- "type":"list",
743
- "member":{"shape":"KeyValuePair"}
744
- },
745
- "AttachmentStateChange":{
746
- "type":"structure",
747
- "required":[
748
- "attachmentArn",
749
- "status"
750
- ],
751
- "members":{
752
- "attachmentArn":{"shape":"String"},
753
- "status":{"shape":"String"}
754
- }
755
- },
756
- "AttachmentStateChanges":{
757
- "type":"list",
758
- "member":{"shape":"AttachmentStateChange"}
759
- },
760
- "Attachments":{
761
- "type":"list",
762
- "member":{"shape":"Attachment"}
763
- },
764
- "Attribute":{
765
- "type":"structure",
766
- "required":["name"],
767
- "members":{
768
- "name":{"shape":"String"},
769
- "value":{"shape":"String"},
770
- "targetType":{"shape":"TargetType"},
771
- "targetId":{"shape":"String"}
772
- }
773
- },
774
- "AttributeLimitExceededException":{
775
- "type":"structure",
776
- "members":{
777
- },
778
- "exception":true
779
- },
780
- "Attributes":{
781
- "type":"list",
782
- "member":{"shape":"Attribute"}
783
- },
784
- "AwsVpcConfiguration":{
785
- "type":"structure",
786
- "required":["subnets"],
787
- "members":{
788
- "subnets":{"shape":"StringList"},
789
- "securityGroups":{"shape":"StringList"},
790
- "assignPublicIp":{"shape":"AssignPublicIp"}
791
- }
792
- },
793
- "BlockedException":{
794
- "type":"structure",
795
- "members":{
796
- },
797
- "exception":true
798
- },
799
- "Boolean":{"type":"boolean"},
800
- "BoxedBoolean":{
801
- "type":"boolean",
802
- "box":true
803
- },
804
- "BoxedInteger":{
805
- "type":"integer",
806
- "box":true
807
- },
808
- "ClientException":{
809
- "type":"structure",
810
- "members":{
811
- "message":{"shape":"String"}
812
- },
813
- "exception":true
814
- },
815
- "Cluster":{
816
- "type":"structure",
817
- "members":{
818
- "clusterArn":{"shape":"String"},
819
- "clusterName":{"shape":"String"},
820
- "status":{"shape":"String"},
821
- "registeredContainerInstancesCount":{"shape":"Integer"},
822
- "runningTasksCount":{"shape":"Integer"},
823
- "pendingTasksCount":{"shape":"Integer"},
824
- "activeServicesCount":{"shape":"Integer"},
825
- "statistics":{"shape":"Statistics"},
826
- "tags":{"shape":"Tags"},
827
- "settings":{"shape":"ClusterSettings"}
828
- }
829
- },
830
- "ClusterContainsContainerInstancesException":{
831
- "type":"structure",
832
- "members":{
833
- },
834
- "exception":true
835
- },
836
- "ClusterContainsServicesException":{
837
- "type":"structure",
838
- "members":{
839
- },
840
- "exception":true
841
- },
842
- "ClusterContainsTasksException":{
843
- "type":"structure",
844
- "members":{
845
- },
846
- "exception":true
847
- },
848
- "ClusterField":{
849
- "type":"string",
850
- "enum":[
851
- "STATISTICS",
852
- "TAGS"
853
- ]
854
- },
855
- "ClusterFieldList":{
856
- "type":"list",
857
- "member":{"shape":"ClusterField"}
858
- },
859
- "ClusterNotFoundException":{
860
- "type":"structure",
861
- "members":{
862
- },
863
- "exception":true
864
- },
865
- "ClusterSetting":{
866
- "type":"structure",
867
- "members":{
868
- "name":{"shape":"ClusterSettingName"},
869
- "value":{"shape":"String"}
870
- }
871
- },
872
- "ClusterSettingName":{
873
- "type":"string",
874
- "enum":["containerInsights"]
875
- },
876
- "ClusterSettings":{
877
- "type":"list",
878
- "member":{"shape":"ClusterSetting"}
879
- },
880
- "Clusters":{
881
- "type":"list",
882
- "member":{"shape":"Cluster"}
883
- },
884
- "Compatibility":{
885
- "type":"string",
886
- "enum":[
887
- "EC2",
888
- "FARGATE"
889
- ]
890
- },
891
- "CompatibilityList":{
892
- "type":"list",
893
- "member":{"shape":"Compatibility"}
894
- },
895
- "Connectivity":{
896
- "type":"string",
897
- "enum":[
898
- "CONNECTED",
899
- "DISCONNECTED"
900
- ]
901
- },
902
- "Container":{
903
- "type":"structure",
904
- "members":{
905
- "containerArn":{"shape":"String"},
906
- "taskArn":{"shape":"String"},
907
- "name":{"shape":"String"},
908
- "runtimeId":{"shape":"String"},
909
- "lastStatus":{"shape":"String"},
910
- "exitCode":{"shape":"BoxedInteger"},
911
- "reason":{"shape":"String"},
912
- "networkBindings":{"shape":"NetworkBindings"},
913
- "networkInterfaces":{"shape":"NetworkInterfaces"},
914
- "healthStatus":{"shape":"HealthStatus"},
915
- "cpu":{"shape":"String"},
916
- "memory":{"shape":"String"},
917
- "memoryReservation":{"shape":"String"},
918
- "gpuIds":{"shape":"GpuIds"}
919
- }
920
- },
921
- "ContainerCondition":{
922
- "type":"string",
923
- "enum":[
924
- "START",
925
- "COMPLETE",
926
- "SUCCESS",
927
- "HEALTHY"
928
- ]
929
- },
930
- "ContainerDefinition":{
931
- "type":"structure",
932
- "members":{
933
- "name":{"shape":"String"},
934
- "image":{"shape":"String"},
935
- "repositoryCredentials":{"shape":"RepositoryCredentials"},
936
- "cpu":{"shape":"Integer"},
937
- "memory":{"shape":"BoxedInteger"},
938
- "memoryReservation":{"shape":"BoxedInteger"},
939
- "links":{"shape":"StringList"},
940
- "portMappings":{"shape":"PortMappingList"},
941
- "essential":{"shape":"BoxedBoolean"},
942
- "entryPoint":{"shape":"StringList"},
943
- "command":{"shape":"StringList"},
944
- "environment":{"shape":"EnvironmentVariables"},
945
- "mountPoints":{"shape":"MountPointList"},
946
- "volumesFrom":{"shape":"VolumeFromList"},
947
- "linuxParameters":{"shape":"LinuxParameters"},
948
- "secrets":{"shape":"SecretList"},
949
- "dependsOn":{"shape":"ContainerDependencies"},
950
- "startTimeout":{"shape":"BoxedInteger"},
951
- "stopTimeout":{"shape":"BoxedInteger"},
952
- "hostname":{"shape":"String"},
953
- "user":{"shape":"String"},
954
- "workingDirectory":{"shape":"String"},
955
- "disableNetworking":{"shape":"BoxedBoolean"},
956
- "privileged":{"shape":"BoxedBoolean"},
957
- "readonlyRootFilesystem":{"shape":"BoxedBoolean"},
958
- "dnsServers":{"shape":"StringList"},
959
- "dnsSearchDomains":{"shape":"StringList"},
960
- "extraHosts":{"shape":"HostEntryList"},
961
- "dockerSecurityOptions":{"shape":"StringList"},
962
- "interactive":{"shape":"BoxedBoolean"},
963
- "pseudoTerminal":{"shape":"BoxedBoolean"},
964
- "dockerLabels":{"shape":"DockerLabelsMap"},
965
- "ulimits":{"shape":"UlimitList"},
966
- "logConfiguration":{"shape":"LogConfiguration"},
967
- "healthCheck":{"shape":"HealthCheck"},
968
- "systemControls":{"shape":"SystemControls"},
969
- "resourceRequirements":{"shape":"ResourceRequirements"}
970
- }
971
- },
972
- "ContainerDefinitions":{
973
- "type":"list",
974
- "member":{"shape":"ContainerDefinition"}
975
- },
976
- "ContainerDependencies":{
977
- "type":"list",
978
- "member":{"shape":"ContainerDependency"}
979
- },
980
- "ContainerDependency":{
981
- "type":"structure",
982
- "required":[
983
- "containerName",
984
- "condition"
985
- ],
986
- "members":{
987
- "containerName":{"shape":"String"},
988
- "condition":{"shape":"ContainerCondition"}
989
- }
990
- },
991
- "ContainerInstance":{
992
- "type":"structure",
993
- "members":{
994
- "containerInstanceArn":{"shape":"String"},
995
- "ec2InstanceId":{"shape":"String"},
996
- "version":{"shape":"Long"},
997
- "versionInfo":{"shape":"VersionInfo"},
998
- "remainingResources":{"shape":"Resources"},
999
- "registeredResources":{"shape":"Resources"},
1000
- "status":{"shape":"String"},
1001
- "statusReason":{"shape":"String"},
1002
- "agentConnected":{"shape":"Boolean"},
1003
- "runningTasksCount":{"shape":"Integer"},
1004
- "pendingTasksCount":{"shape":"Integer"},
1005
- "agentUpdateStatus":{"shape":"AgentUpdateStatus"},
1006
- "attributes":{"shape":"Attributes"},
1007
- "registeredAt":{"shape":"Timestamp"},
1008
- "attachments":{"shape":"Attachments"},
1009
- "tags":{"shape":"Tags"}
1010
- }
1011
- },
1012
- "ContainerInstanceField":{
1013
- "type":"string",
1014
- "enum":["TAGS"]
1015
- },
1016
- "ContainerInstanceFieldList":{
1017
- "type":"list",
1018
- "member":{"shape":"ContainerInstanceField"}
1019
- },
1020
- "ContainerInstanceStatus":{
1021
- "type":"string",
1022
- "enum":[
1023
- "ACTIVE",
1024
- "DRAINING",
1025
- "REGISTERING",
1026
- "DEREGISTERING",
1027
- "REGISTRATION_FAILED"
1028
- ]
1029
- },
1030
- "ContainerInstances":{
1031
- "type":"list",
1032
- "member":{"shape":"ContainerInstance"}
1033
- },
1034
- "ContainerOverride":{
1035
- "type":"structure",
1036
- "members":{
1037
- "name":{"shape":"String"},
1038
- "command":{"shape":"StringList"},
1039
- "environment":{"shape":"EnvironmentVariables"},
1040
- "cpu":{"shape":"BoxedInteger"},
1041
- "memory":{"shape":"BoxedInteger"},
1042
- "memoryReservation":{"shape":"BoxedInteger"},
1043
- "resourceRequirements":{"shape":"ResourceRequirements"}
1044
- }
1045
- },
1046
- "ContainerOverrides":{
1047
- "type":"list",
1048
- "member":{"shape":"ContainerOverride"}
1049
- },
1050
- "ContainerStateChange":{
1051
- "type":"structure",
1052
- "members":{
1053
- "containerName":{"shape":"String"},
1054
- "runtimeId":{"shape":"String"},
1055
- "exitCode":{"shape":"BoxedInteger"},
1056
- "networkBindings":{"shape":"NetworkBindings"},
1057
- "reason":{"shape":"String"},
1058
- "status":{"shape":"String"}
1059
- }
1060
- },
1061
- "ContainerStateChanges":{
1062
- "type":"list",
1063
- "member":{"shape":"ContainerStateChange"}
1064
- },
1065
- "Containers":{
1066
- "type":"list",
1067
- "member":{"shape":"Container"}
1068
- },
1069
- "CreateClusterRequest":{
1070
- "type":"structure",
1071
- "members":{
1072
- "clusterName":{"shape":"String"},
1073
- "tags":{"shape":"Tags"},
1074
- "settings":{"shape":"ClusterSettings"}
1075
- }
1076
- },
1077
- "CreateClusterResponse":{
1078
- "type":"structure",
1079
- "members":{
1080
- "cluster":{"shape":"Cluster"}
1081
- }
1082
- },
1083
- "CreateServiceRequest":{
1084
- "type":"structure",
1085
- "required":["serviceName"],
1086
- "members":{
1087
- "cluster":{"shape":"String"},
1088
- "serviceName":{"shape":"String"},
1089
- "taskDefinition":{"shape":"String"},
1090
- "loadBalancers":{"shape":"LoadBalancers"},
1091
- "serviceRegistries":{"shape":"ServiceRegistries"},
1092
- "desiredCount":{"shape":"BoxedInteger"},
1093
- "clientToken":{"shape":"String"},
1094
- "launchType":{"shape":"LaunchType"},
1095
- "platformVersion":{"shape":"String"},
1096
- "role":{"shape":"String"},
1097
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
1098
- "placementConstraints":{"shape":"PlacementConstraints"},
1099
- "placementStrategy":{"shape":"PlacementStrategies"},
1100
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1101
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
1102
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
1103
- "deploymentController":{"shape":"DeploymentController"},
1104
- "tags":{"shape":"Tags"},
1105
- "enableECSManagedTags":{"shape":"Boolean"},
1106
- "propagateTags":{"shape":"PropagateTags"}
1107
- }
1108
- },
1109
- "CreateServiceResponse":{
1110
- "type":"structure",
1111
- "members":{
1112
- "service":{"shape":"Service"}
1113
- }
1114
- },
1115
- "CreateTaskSetRequest":{
1116
- "type":"structure",
1117
- "required":[
1118
- "service",
1119
- "cluster",
1120
- "taskDefinition"
1121
- ],
1122
- "members":{
1123
- "service":{"shape":"String"},
1124
- "cluster":{"shape":"String"},
1125
- "externalId":{"shape":"String"},
1126
- "taskDefinition":{"shape":"String"},
1127
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1128
- "loadBalancers":{"shape":"LoadBalancers"},
1129
- "serviceRegistries":{"shape":"ServiceRegistries"},
1130
- "launchType":{"shape":"LaunchType"},
1131
- "platformVersion":{"shape":"String"},
1132
- "scale":{"shape":"Scale"},
1133
- "clientToken":{"shape":"String"}
1134
- }
1135
- },
1136
- "CreateTaskSetResponse":{
1137
- "type":"structure",
1138
- "members":{
1139
- "taskSet":{"shape":"TaskSet"}
1140
- }
1141
- },
1142
- "DeleteAccountSettingRequest":{
1143
- "type":"structure",
1144
- "required":["name"],
1145
- "members":{
1146
- "name":{"shape":"SettingName"},
1147
- "principalArn":{"shape":"String"}
1148
- }
1149
- },
1150
- "DeleteAccountSettingResponse":{
1151
- "type":"structure",
1152
- "members":{
1153
- "setting":{"shape":"Setting"}
1154
- }
1155
- },
1156
- "DeleteAttributesRequest":{
1157
- "type":"structure",
1158
- "required":["attributes"],
1159
- "members":{
1160
- "cluster":{"shape":"String"},
1161
- "attributes":{"shape":"Attributes"}
1162
- }
1163
- },
1164
- "DeleteAttributesResponse":{
1165
- "type":"structure",
1166
- "members":{
1167
- "attributes":{"shape":"Attributes"}
1168
- }
1169
- },
1170
- "DeleteClusterRequest":{
1171
- "type":"structure",
1172
- "required":["cluster"],
1173
- "members":{
1174
- "cluster":{"shape":"String"}
1175
- }
1176
- },
1177
- "DeleteClusterResponse":{
1178
- "type":"structure",
1179
- "members":{
1180
- "cluster":{"shape":"Cluster"}
1181
- }
1182
- },
1183
- "DeleteServiceRequest":{
1184
- "type":"structure",
1185
- "required":["service"],
1186
- "members":{
1187
- "cluster":{"shape":"String"},
1188
- "service":{"shape":"String"},
1189
- "force":{"shape":"BoxedBoolean"}
1190
- }
1191
- },
1192
- "DeleteServiceResponse":{
1193
- "type":"structure",
1194
- "members":{
1195
- "service":{"shape":"Service"}
1196
- }
1197
- },
1198
- "DeleteTaskSetRequest":{
1199
- "type":"structure",
1200
- "required":[
1201
- "cluster",
1202
- "service",
1203
- "taskSet"
1204
- ],
1205
- "members":{
1206
- "cluster":{"shape":"String"},
1207
- "service":{"shape":"String"},
1208
- "taskSet":{"shape":"String"},
1209
- "force":{"shape":"BoxedBoolean"}
1210
- }
1211
- },
1212
- "DeleteTaskSetResponse":{
1213
- "type":"structure",
1214
- "members":{
1215
- "taskSet":{"shape":"TaskSet"}
1216
- }
1217
- },
1218
- "Deployment":{
1219
- "type":"structure",
1220
- "members":{
1221
- "id":{"shape":"String"},
1222
- "status":{"shape":"String"},
1223
- "taskDefinition":{"shape":"String"},
1224
- "desiredCount":{"shape":"Integer"},
1225
- "pendingCount":{"shape":"Integer"},
1226
- "runningCount":{"shape":"Integer"},
1227
- "createdAt":{"shape":"Timestamp"},
1228
- "updatedAt":{"shape":"Timestamp"},
1229
- "launchType":{"shape":"LaunchType"},
1230
- "platformVersion":{"shape":"String"},
1231
- "networkConfiguration":{"shape":"NetworkConfiguration"}
1232
- }
1233
- },
1234
- "DeploymentConfiguration":{
1235
- "type":"structure",
1236
- "members":{
1237
- "maximumPercent":{"shape":"BoxedInteger"},
1238
- "minimumHealthyPercent":{"shape":"BoxedInteger"}
1239
- }
1240
- },
1241
- "DeploymentController":{
1242
- "type":"structure",
1243
- "required":["type"],
1244
- "members":{
1245
- "type":{"shape":"DeploymentControllerType"}
1246
- }
1247
- },
1248
- "DeploymentControllerType":{
1249
- "type":"string",
1250
- "enum":[
1251
- "ECS",
1252
- "CODE_DEPLOY",
1253
- "EXTERNAL"
1254
- ]
1255
- },
1256
- "Deployments":{
1257
- "type":"list",
1258
- "member":{"shape":"Deployment"}
1259
- },
1260
- "DeregisterContainerInstanceRequest":{
1261
- "type":"structure",
1262
- "required":["containerInstance"],
1263
- "members":{
1264
- "cluster":{"shape":"String"},
1265
- "containerInstance":{"shape":"String"},
1266
- "force":{"shape":"BoxedBoolean"}
1267
- }
1268
- },
1269
- "DeregisterContainerInstanceResponse":{
1270
- "type":"structure",
1271
- "members":{
1272
- "containerInstance":{"shape":"ContainerInstance"}
1273
- }
1274
- },
1275
- "DeregisterTaskDefinitionRequest":{
1276
- "type":"structure",
1277
- "required":["taskDefinition"],
1278
- "members":{
1279
- "taskDefinition":{"shape":"String"}
1280
- }
1281
- },
1282
- "DeregisterTaskDefinitionResponse":{
1283
- "type":"structure",
1284
- "members":{
1285
- "taskDefinition":{"shape":"TaskDefinition"}
1286
- }
1287
- },
1288
- "DescribeClustersRequest":{
1289
- "type":"structure",
1290
- "members":{
1291
- "clusters":{"shape":"StringList"},
1292
- "include":{"shape":"ClusterFieldList"}
1293
- }
1294
- },
1295
- "DescribeClustersResponse":{
1296
- "type":"structure",
1297
- "members":{
1298
- "clusters":{"shape":"Clusters"},
1299
- "failures":{"shape":"Failures"}
1300
- }
1301
- },
1302
- "DescribeContainerInstancesRequest":{
1303
- "type":"structure",
1304
- "required":["containerInstances"],
1305
- "members":{
1306
- "cluster":{"shape":"String"},
1307
- "containerInstances":{"shape":"StringList"},
1308
- "include":{"shape":"ContainerInstanceFieldList"}
1309
- }
1310
- },
1311
- "DescribeContainerInstancesResponse":{
1312
- "type":"structure",
1313
- "members":{
1314
- "containerInstances":{"shape":"ContainerInstances"},
1315
- "failures":{"shape":"Failures"}
1316
- }
1317
- },
1318
- "DescribeServicesRequest":{
1319
- "type":"structure",
1320
- "required":["services"],
1321
- "members":{
1322
- "cluster":{"shape":"String"},
1323
- "services":{"shape":"StringList"},
1324
- "include":{"shape":"ServiceFieldList"}
1325
- }
1326
- },
1327
- "DescribeServicesResponse":{
1328
- "type":"structure",
1329
- "members":{
1330
- "services":{"shape":"Services"},
1331
- "failures":{"shape":"Failures"}
1332
- }
1333
- },
1334
- "DescribeTaskDefinitionRequest":{
1335
- "type":"structure",
1336
- "required":["taskDefinition"],
1337
- "members":{
1338
- "taskDefinition":{"shape":"String"},
1339
- "include":{"shape":"TaskDefinitionFieldList"}
1340
- }
1341
- },
1342
- "DescribeTaskDefinitionResponse":{
1343
- "type":"structure",
1344
- "members":{
1345
- "taskDefinition":{"shape":"TaskDefinition"},
1346
- "tags":{"shape":"Tags"}
1347
- }
1348
- },
1349
- "DescribeTaskSetsRequest":{
1350
- "type":"structure",
1351
- "required":[
1352
- "cluster",
1353
- "service"
1354
- ],
1355
- "members":{
1356
- "cluster":{"shape":"String"},
1357
- "service":{"shape":"String"},
1358
- "taskSets":{"shape":"StringList"}
1359
- }
1360
- },
1361
- "DescribeTaskSetsResponse":{
1362
- "type":"structure",
1363
- "members":{
1364
- "taskSets":{"shape":"TaskSets"},
1365
- "failures":{"shape":"Failures"}
1366
- }
1367
- },
1368
- "DescribeTasksRequest":{
1369
- "type":"structure",
1370
- "required":["tasks"],
1371
- "members":{
1372
- "cluster":{"shape":"String"},
1373
- "tasks":{"shape":"StringList"},
1374
- "include":{"shape":"TaskFieldList"}
1375
- }
1376
- },
1377
- "DescribeTasksResponse":{
1378
- "type":"structure",
1379
- "members":{
1380
- "tasks":{"shape":"Tasks"},
1381
- "failures":{"shape":"Failures"}
1382
- }
1383
- },
1384
- "DesiredStatus":{
1385
- "type":"string",
1386
- "enum":[
1387
- "RUNNING",
1388
- "PENDING",
1389
- "STOPPED"
1390
- ]
1391
- },
1392
- "Device":{
1393
- "type":"structure",
1394
- "required":["hostPath"],
1395
- "members":{
1396
- "hostPath":{"shape":"String"},
1397
- "containerPath":{"shape":"String"},
1398
- "permissions":{"shape":"DeviceCgroupPermissions"}
1399
- }
1400
- },
1401
- "DeviceCgroupPermission":{
1402
- "type":"string",
1403
- "enum":[
1404
- "read",
1405
- "write",
1406
- "mknod"
1407
- ]
1408
- },
1409
- "DeviceCgroupPermissions":{
1410
- "type":"list",
1411
- "member":{"shape":"DeviceCgroupPermission"}
1412
- },
1413
- "DevicesList":{
1414
- "type":"list",
1415
- "member":{"shape":"Device"}
1416
- },
1417
- "DiscoverPollEndpointRequest":{
1418
- "type":"structure",
1419
- "members":{
1420
- "containerInstance":{"shape":"String"},
1421
- "cluster":{"shape":"String"}
1422
- }
1423
- },
1424
- "DiscoverPollEndpointResponse":{
1425
- "type":"structure",
1426
- "members":{
1427
- "endpoint":{"shape":"String"},
1428
- "telemetryEndpoint":{"shape":"String"}
1429
- }
1430
- },
1431
- "DockerLabelsMap":{
1432
- "type":"map",
1433
- "key":{"shape":"String"},
1434
- "value":{"shape":"String"}
1435
- },
1436
- "DockerVolumeConfiguration":{
1437
- "type":"structure",
1438
- "members":{
1439
- "scope":{"shape":"Scope"},
1440
- "autoprovision":{"shape":"BoxedBoolean"},
1441
- "driver":{"shape":"String"},
1442
- "driverOpts":{"shape":"StringMap"},
1443
- "labels":{"shape":"StringMap"}
1444
- }
1445
- },
1446
- "Double":{"type":"double"},
1447
- "EnvironmentVariables":{
1448
- "type":"list",
1449
- "member":{"shape":"KeyValuePair"}
1450
- },
1451
- "Failure":{
1452
- "type":"structure",
1453
- "members":{
1454
- "arn":{"shape":"String"},
1455
- "reason":{"shape":"String"}
1456
- }
1457
- },
1458
- "Failures":{
1459
- "type":"list",
1460
- "member":{"shape":"Failure"}
1461
- },
1462
- "GpuIds":{
1463
- "type":"list",
1464
- "member":{"shape":"String"}
1465
- },
1466
- "HealthCheck":{
1467
- "type":"structure",
1468
- "required":["command"],
1469
- "members":{
1470
- "command":{"shape":"StringList"},
1471
- "interval":{"shape":"BoxedInteger"},
1472
- "timeout":{"shape":"BoxedInteger"},
1473
- "retries":{"shape":"BoxedInteger"},
1474
- "startPeriod":{"shape":"BoxedInteger"}
1475
- }
1476
- },
1477
- "HealthStatus":{
1478
- "type":"string",
1479
- "enum":[
1480
- "HEALTHY",
1481
- "UNHEALTHY",
1482
- "UNKNOWN"
1483
- ]
1484
- },
1485
- "HostEntry":{
1486
- "type":"structure",
1487
- "required":[
1488
- "hostname",
1489
- "ipAddress"
1490
- ],
1491
- "members":{
1492
- "hostname":{"shape":"String"},
1493
- "ipAddress":{"shape":"String"}
1494
- }
1495
- },
1496
- "HostEntryList":{
1497
- "type":"list",
1498
- "member":{"shape":"HostEntry"}
1499
- },
1500
- "HostVolumeProperties":{
1501
- "type":"structure",
1502
- "members":{
1503
- "sourcePath":{"shape":"String"}
1504
- }
1505
- },
1506
- "Integer":{"type":"integer"},
1507
- "InvalidParameterException":{
1508
- "type":"structure",
1509
- "members":{
1510
- },
1511
- "exception":true
1512
- },
1513
- "IpcMode":{
1514
- "type":"string",
1515
- "enum":[
1516
- "host",
1517
- "task",
1518
- "none"
1519
- ]
1520
- },
1521
- "KernelCapabilities":{
1522
- "type":"structure",
1523
- "members":{
1524
- "add":{"shape":"StringList"},
1525
- "drop":{"shape":"StringList"}
1526
- }
1527
- },
1528
- "KeyValuePair":{
1529
- "type":"structure",
1530
- "members":{
1531
- "name":{"shape":"String"},
1532
- "value":{"shape":"String"}
1533
- }
1534
- },
1535
- "LaunchType":{
1536
- "type":"string",
1537
- "enum":[
1538
- "EC2",
1539
- "FARGATE"
1540
- ]
1541
- },
1542
- "LinuxParameters":{
1543
- "type":"structure",
1544
- "members":{
1545
- "capabilities":{"shape":"KernelCapabilities"},
1546
- "devices":{"shape":"DevicesList"},
1547
- "initProcessEnabled":{"shape":"BoxedBoolean"},
1548
- "sharedMemorySize":{"shape":"BoxedInteger"},
1549
- "tmpfs":{"shape":"TmpfsList"},
1550
- "maxSwap":{"shape":"BoxedInteger"},
1551
- "swappiness":{"shape":"BoxedInteger"}
1552
- }
1553
- },
1554
- "ListAccountSettingsRequest":{
1555
- "type":"structure",
1556
- "members":{
1557
- "name":{"shape":"SettingName"},
1558
- "value":{"shape":"String"},
1559
- "principalArn":{"shape":"String"},
1560
- "effectiveSettings":{"shape":"Boolean"},
1561
- "nextToken":{"shape":"String"},
1562
- "maxResults":{"shape":"Integer"}
1563
- }
1564
- },
1565
- "ListAccountSettingsResponse":{
1566
- "type":"structure",
1567
- "members":{
1568
- "settings":{"shape":"Settings"},
1569
- "nextToken":{"shape":"String"}
1570
- }
1571
- },
1572
- "ListAttributesRequest":{
1573
- "type":"structure",
1574
- "required":["targetType"],
1575
- "members":{
1576
- "cluster":{"shape":"String"},
1577
- "targetType":{"shape":"TargetType"},
1578
- "attributeName":{"shape":"String"},
1579
- "attributeValue":{"shape":"String"},
1580
- "nextToken":{"shape":"String"},
1581
- "maxResults":{"shape":"BoxedInteger"}
1582
- }
1583
- },
1584
- "ListAttributesResponse":{
1585
- "type":"structure",
1586
- "members":{
1587
- "attributes":{"shape":"Attributes"},
1588
- "nextToken":{"shape":"String"}
1589
- }
1590
- },
1591
- "ListClustersRequest":{
1592
- "type":"structure",
1593
- "members":{
1594
- "nextToken":{"shape":"String"},
1595
- "maxResults":{"shape":"BoxedInteger"}
1596
- }
1597
- },
1598
- "ListClustersResponse":{
1599
- "type":"structure",
1600
- "members":{
1601
- "clusterArns":{"shape":"StringList"},
1602
- "nextToken":{"shape":"String"}
1603
- }
1604
- },
1605
- "ListContainerInstancesRequest":{
1606
- "type":"structure",
1607
- "members":{
1608
- "cluster":{"shape":"String"},
1609
- "filter":{"shape":"String"},
1610
- "nextToken":{"shape":"String"},
1611
- "maxResults":{"shape":"BoxedInteger"},
1612
- "status":{"shape":"ContainerInstanceStatus"}
1613
- }
1614
- },
1615
- "ListContainerInstancesResponse":{
1616
- "type":"structure",
1617
- "members":{
1618
- "containerInstanceArns":{"shape":"StringList"},
1619
- "nextToken":{"shape":"String"}
1620
- }
1621
- },
1622
- "ListServicesRequest":{
1623
- "type":"structure",
1624
- "members":{
1625
- "cluster":{"shape":"String"},
1626
- "nextToken":{"shape":"String"},
1627
- "maxResults":{"shape":"BoxedInteger"},
1628
- "launchType":{"shape":"LaunchType"},
1629
- "schedulingStrategy":{"shape":"SchedulingStrategy"}
1630
- }
1631
- },
1632
- "ListServicesResponse":{
1633
- "type":"structure",
1634
- "members":{
1635
- "serviceArns":{"shape":"StringList"},
1636
- "nextToken":{"shape":"String"}
1637
- }
1638
- },
1639
- "ListTagsForResourceRequest":{
1640
- "type":"structure",
1641
- "required":["resourceArn"],
1642
- "members":{
1643
- "resourceArn":{"shape":"String"}
1644
- }
1645
- },
1646
- "ListTagsForResourceResponse":{
1647
- "type":"structure",
1648
- "members":{
1649
- "tags":{"shape":"Tags"}
1650
- }
1651
- },
1652
- "ListTaskDefinitionFamiliesRequest":{
1653
- "type":"structure",
1654
- "members":{
1655
- "familyPrefix":{"shape":"String"},
1656
- "status":{"shape":"TaskDefinitionFamilyStatus"},
1657
- "nextToken":{"shape":"String"},
1658
- "maxResults":{"shape":"BoxedInteger"}
1659
- }
1660
- },
1661
- "ListTaskDefinitionFamiliesResponse":{
1662
- "type":"structure",
1663
- "members":{
1664
- "families":{"shape":"StringList"},
1665
- "nextToken":{"shape":"String"}
1666
- }
1667
- },
1668
- "ListTaskDefinitionsRequest":{
1669
- "type":"structure",
1670
- "members":{
1671
- "familyPrefix":{"shape":"String"},
1672
- "status":{"shape":"TaskDefinitionStatus"},
1673
- "sort":{"shape":"SortOrder"},
1674
- "nextToken":{"shape":"String"},
1675
- "maxResults":{"shape":"BoxedInteger"}
1676
- }
1677
- },
1678
- "ListTaskDefinitionsResponse":{
1679
- "type":"structure",
1680
- "members":{
1681
- "taskDefinitionArns":{"shape":"StringList"},
1682
- "nextToken":{"shape":"String"}
1683
- }
1684
- },
1685
- "ListTasksRequest":{
1686
- "type":"structure",
1687
- "members":{
1688
- "cluster":{"shape":"String"},
1689
- "containerInstance":{"shape":"String"},
1690
- "family":{"shape":"String"},
1691
- "nextToken":{"shape":"String"},
1692
- "maxResults":{"shape":"BoxedInteger"},
1693
- "startedBy":{"shape":"String"},
1694
- "serviceName":{"shape":"String"},
1695
- "desiredStatus":{"shape":"DesiredStatus"},
1696
- "launchType":{"shape":"LaunchType"}
1697
- }
1698
- },
1699
- "ListTasksResponse":{
1700
- "type":"structure",
1701
- "members":{
1702
- "taskArns":{"shape":"StringList"},
1703
- "nextToken":{"shape":"String"}
1704
- }
1705
- },
1706
- "LoadBalancer":{
1707
- "type":"structure",
1708
- "members":{
1709
- "targetGroupArn":{"shape":"String"},
1710
- "loadBalancerName":{"shape":"String"},
1711
- "containerName":{"shape":"String"},
1712
- "containerPort":{"shape":"BoxedInteger"}
1713
- }
1714
- },
1715
- "LoadBalancers":{
1716
- "type":"list",
1717
- "member":{"shape":"LoadBalancer"}
1718
- },
1719
- "LogConfiguration":{
1720
- "type":"structure",
1721
- "required":["logDriver"],
1722
- "members":{
1723
- "logDriver":{"shape":"LogDriver"},
1724
- "options":{"shape":"LogConfigurationOptionsMap"},
1725
- "secretOptions":{"shape":"SecretList"}
1726
- }
1727
- },
1728
- "LogConfigurationOptionsMap":{
1729
- "type":"map",
1730
- "key":{"shape":"String"},
1731
- "value":{"shape":"String"}
1732
- },
1733
- "LogDriver":{
1734
- "type":"string",
1735
- "enum":[
1736
- "json-file",
1737
- "syslog",
1738
- "journald",
1739
- "gelf",
1740
- "fluentd",
1741
- "awslogs",
1742
- "splunk"
1743
- ]
1744
- },
1745
- "Long":{"type":"long"},
1746
- "MissingVersionException":{
1747
- "type":"structure",
1748
- "members":{
1749
- },
1750
- "exception":true
1751
- },
1752
- "MountPoint":{
1753
- "type":"structure",
1754
- "members":{
1755
- "sourceVolume":{"shape":"String"},
1756
- "containerPath":{"shape":"String"},
1757
- "readOnly":{"shape":"BoxedBoolean"}
1758
- }
1759
- },
1760
- "MountPointList":{
1761
- "type":"list",
1762
- "member":{"shape":"MountPoint"}
1763
- },
1764
- "NetworkBinding":{
1765
- "type":"structure",
1766
- "members":{
1767
- "bindIP":{"shape":"String"},
1768
- "containerPort":{"shape":"BoxedInteger"},
1769
- "hostPort":{"shape":"BoxedInteger"},
1770
- "protocol":{"shape":"TransportProtocol"}
1771
- }
1772
- },
1773
- "NetworkBindings":{
1774
- "type":"list",
1775
- "member":{"shape":"NetworkBinding"}
1776
- },
1777
- "NetworkConfiguration":{
1778
- "type":"structure",
1779
- "members":{
1780
- "awsvpcConfiguration":{"shape":"AwsVpcConfiguration"}
1781
- }
1782
- },
1783
- "NetworkInterface":{
1784
- "type":"structure",
1785
- "members":{
1786
- "attachmentId":{"shape":"String"},
1787
- "privateIpv4Address":{"shape":"String"},
1788
- "ipv6Address":{"shape":"String"}
1789
- }
1790
- },
1791
- "NetworkInterfaces":{
1792
- "type":"list",
1793
- "member":{"shape":"NetworkInterface"}
1794
- },
1795
- "NetworkMode":{
1796
- "type":"string",
1797
- "enum":[
1798
- "bridge",
1799
- "host",
1800
- "awsvpc",
1801
- "none"
1802
- ]
1803
- },
1804
- "NoUpdateAvailableException":{
1805
- "type":"structure",
1806
- "members":{
1807
- },
1808
- "exception":true
1809
- },
1810
- "PidMode":{
1811
- "type":"string",
1812
- "enum":[
1813
- "host",
1814
- "task"
1815
- ]
1816
- },
1817
- "PlacementConstraint":{
1818
- "type":"structure",
1819
- "members":{
1820
- "type":{"shape":"PlacementConstraintType"},
1821
- "expression":{"shape":"String"}
1822
- }
1823
- },
1824
- "PlacementConstraintType":{
1825
- "type":"string",
1826
- "enum":[
1827
- "distinctInstance",
1828
- "memberOf"
1829
- ]
1830
- },
1831
- "PlacementConstraints":{
1832
- "type":"list",
1833
- "member":{"shape":"PlacementConstraint"}
1834
- },
1835
- "PlacementStrategies":{
1836
- "type":"list",
1837
- "member":{"shape":"PlacementStrategy"}
1838
- },
1839
- "PlacementStrategy":{
1840
- "type":"structure",
1841
- "members":{
1842
- "type":{"shape":"PlacementStrategyType"},
1843
- "field":{"shape":"String"}
1844
- }
1845
- },
1846
- "PlacementStrategyType":{
1847
- "type":"string",
1848
- "enum":[
1849
- "random",
1850
- "spread",
1851
- "binpack"
1852
- ]
1853
- },
1854
- "PlatformDevice":{
1855
- "type":"structure",
1856
- "required":[
1857
- "id",
1858
- "type"
1859
- ],
1860
- "members":{
1861
- "id":{"shape":"String"},
1862
- "type":{"shape":"PlatformDeviceType"}
1863
- }
1864
- },
1865
- "PlatformDeviceType":{
1866
- "type":"string",
1867
- "enum":["GPU"]
1868
- },
1869
- "PlatformDevices":{
1870
- "type":"list",
1871
- "member":{"shape":"PlatformDevice"}
1872
- },
1873
- "PlatformTaskDefinitionIncompatibilityException":{
1874
- "type":"structure",
1875
- "members":{
1876
- },
1877
- "exception":true
1878
- },
1879
- "PlatformUnknownException":{
1880
- "type":"structure",
1881
- "members":{
1882
- },
1883
- "exception":true
1884
- },
1885
- "PortMapping":{
1886
- "type":"structure",
1887
- "members":{
1888
- "containerPort":{"shape":"BoxedInteger"},
1889
- "hostPort":{"shape":"BoxedInteger"},
1890
- "protocol":{"shape":"TransportProtocol"}
1891
- }
1892
- },
1893
- "PortMappingList":{
1894
- "type":"list",
1895
- "member":{"shape":"PortMapping"}
1896
- },
1897
- "PropagateTags":{
1898
- "type":"string",
1899
- "enum":[
1900
- "TASK_DEFINITION",
1901
- "SERVICE"
1902
- ]
1903
- },
1904
- "ProxyConfiguration":{
1905
- "type":"structure",
1906
- "required":["containerName"],
1907
- "members":{
1908
- "type":{"shape":"ProxyConfigurationType"},
1909
- "containerName":{"shape":"String"},
1910
- "properties":{"shape":"ProxyConfigurationProperties"}
1911
- }
1912
- },
1913
- "ProxyConfigurationProperties":{
1914
- "type":"list",
1915
- "member":{"shape":"KeyValuePair"}
1916
- },
1917
- "ProxyConfigurationType":{
1918
- "type":"string",
1919
- "enum":["APPMESH"]
1920
- },
1921
- "PutAccountSettingDefaultRequest":{
1922
- "type":"structure",
1923
- "required":[
1924
- "name",
1925
- "value"
1926
- ],
1927
- "members":{
1928
- "name":{"shape":"SettingName"},
1929
- "value":{"shape":"String"}
1930
- }
1931
- },
1932
- "PutAccountSettingDefaultResponse":{
1933
- "type":"structure",
1934
- "members":{
1935
- "setting":{"shape":"Setting"}
1936
- }
1937
- },
1938
- "PutAccountSettingRequest":{
1939
- "type":"structure",
1940
- "required":[
1941
- "name",
1942
- "value"
1943
- ],
1944
- "members":{
1945
- "name":{"shape":"SettingName"},
1946
- "value":{"shape":"String"},
1947
- "principalArn":{"shape":"String"}
1948
- }
1949
- },
1950
- "PutAccountSettingResponse":{
1951
- "type":"structure",
1952
- "members":{
1953
- "setting":{"shape":"Setting"}
1954
- }
1955
- },
1956
- "PutAttributesRequest":{
1957
- "type":"structure",
1958
- "required":["attributes"],
1959
- "members":{
1960
- "cluster":{"shape":"String"},
1961
- "attributes":{"shape":"Attributes"}
1962
- }
1963
- },
1964
- "PutAttributesResponse":{
1965
- "type":"structure",
1966
- "members":{
1967
- "attributes":{"shape":"Attributes"}
1968
- }
1969
- },
1970
- "RegisterContainerInstanceRequest":{
1971
- "type":"structure",
1972
- "members":{
1973
- "cluster":{"shape":"String"},
1974
- "instanceIdentityDocument":{"shape":"String"},
1975
- "instanceIdentityDocumentSignature":{"shape":"String"},
1976
- "totalResources":{"shape":"Resources"},
1977
- "versionInfo":{"shape":"VersionInfo"},
1978
- "containerInstanceArn":{"shape":"String"},
1979
- "attributes":{"shape":"Attributes"},
1980
- "platformDevices":{"shape":"PlatformDevices"},
1981
- "tags":{"shape":"Tags"}
1982
- }
1983
- },
1984
- "RegisterContainerInstanceResponse":{
1985
- "type":"structure",
1986
- "members":{
1987
- "containerInstance":{"shape":"ContainerInstance"}
1988
- }
1989
- },
1990
- "RegisterTaskDefinitionRequest":{
1991
- "type":"structure",
1992
- "required":[
1993
- "family",
1994
- "containerDefinitions"
1995
- ],
1996
- "members":{
1997
- "family":{"shape":"String"},
1998
- "taskRoleArn":{"shape":"String"},
1999
- "executionRoleArn":{"shape":"String"},
2000
- "networkMode":{"shape":"NetworkMode"},
2001
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2002
- "volumes":{"shape":"VolumeList"},
2003
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2004
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2005
- "cpu":{"shape":"String"},
2006
- "memory":{"shape":"String"},
2007
- "tags":{"shape":"Tags"},
2008
- "pidMode":{"shape":"PidMode"},
2009
- "ipcMode":{"shape":"IpcMode"},
2010
- "proxyConfiguration":{"shape":"ProxyConfiguration"}
2011
- }
2012
- },
2013
- "RegisterTaskDefinitionResponse":{
2014
- "type":"structure",
2015
- "members":{
2016
- "taskDefinition":{"shape":"TaskDefinition"},
2017
- "tags":{"shape":"Tags"}
2018
- }
2019
- },
2020
- "RepositoryCredentials":{
2021
- "type":"structure",
2022
- "required":["credentialsParameter"],
2023
- "members":{
2024
- "credentialsParameter":{"shape":"String"}
2025
- }
2026
- },
2027
- "RequiresAttributes":{
2028
- "type":"list",
2029
- "member":{"shape":"Attribute"}
2030
- },
2031
- "Resource":{
2032
- "type":"structure",
2033
- "members":{
2034
- "name":{"shape":"String"},
2035
- "type":{"shape":"String"},
2036
- "doubleValue":{"shape":"Double"},
2037
- "longValue":{"shape":"Long"},
2038
- "integerValue":{"shape":"Integer"},
2039
- "stringSetValue":{"shape":"StringList"}
2040
- }
2041
- },
2042
- "ResourceNotFoundException":{
2043
- "type":"structure",
2044
- "members":{
2045
- },
2046
- "exception":true
2047
- },
2048
- "ResourceRequirement":{
2049
- "type":"structure",
2050
- "required":[
2051
- "value",
2052
- "type"
2053
- ],
2054
- "members":{
2055
- "value":{"shape":"String"},
2056
- "type":{"shape":"ResourceType"}
2057
- }
2058
- },
2059
- "ResourceRequirements":{
2060
- "type":"list",
2061
- "member":{"shape":"ResourceRequirement"}
2062
- },
2063
- "ResourceType":{
2064
- "type":"string",
2065
- "enum":["GPU"]
2066
- },
2067
- "Resources":{
2068
- "type":"list",
2069
- "member":{"shape":"Resource"}
2070
- },
2071
- "RunTaskRequest":{
2072
- "type":"structure",
2073
- "required":["taskDefinition"],
2074
- "members":{
2075
- "cluster":{"shape":"String"},
2076
- "taskDefinition":{"shape":"String"},
2077
- "overrides":{"shape":"TaskOverride"},
2078
- "count":{"shape":"BoxedInteger"},
2079
- "startedBy":{"shape":"String"},
2080
- "group":{"shape":"String"},
2081
- "placementConstraints":{"shape":"PlacementConstraints"},
2082
- "placementStrategy":{"shape":"PlacementStrategies"},
2083
- "launchType":{"shape":"LaunchType"},
2084
- "platformVersion":{"shape":"String"},
2085
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2086
- "tags":{"shape":"Tags"},
2087
- "enableECSManagedTags":{"shape":"Boolean"},
2088
- "propagateTags":{"shape":"PropagateTags"}
2089
- }
2090
- },
2091
- "RunTaskResponse":{
2092
- "type":"structure",
2093
- "members":{
2094
- "tasks":{"shape":"Tasks"},
2095
- "failures":{"shape":"Failures"}
2096
- }
2097
- },
2098
- "Scale":{
2099
- "type":"structure",
2100
- "members":{
2101
- "value":{"shape":"Double"},
2102
- "unit":{"shape":"ScaleUnit"}
2103
- }
2104
- },
2105
- "ScaleUnit":{
2106
- "type":"string",
2107
- "enum":["PERCENT"]
2108
- },
2109
- "SchedulingStrategy":{
2110
- "type":"string",
2111
- "enum":[
2112
- "REPLICA",
2113
- "DAEMON"
2114
- ]
2115
- },
2116
- "Scope":{
2117
- "type":"string",
2118
- "enum":[
2119
- "task",
2120
- "shared"
2121
- ]
2122
- },
2123
- "Secret":{
2124
- "type":"structure",
2125
- "required":[
2126
- "name",
2127
- "valueFrom"
2128
- ],
2129
- "members":{
2130
- "name":{"shape":"String"},
2131
- "valueFrom":{"shape":"String"}
2132
- }
2133
- },
2134
- "SecretList":{
2135
- "type":"list",
2136
- "member":{"shape":"Secret"}
2137
- },
2138
- "ServerException":{
2139
- "type":"structure",
2140
- "members":{
2141
- "message":{"shape":"String"}
2142
- },
2143
- "exception":true,
2144
- "fault":true
2145
- },
2146
- "Service":{
2147
- "type":"structure",
2148
- "members":{
2149
- "serviceArn":{"shape":"String"},
2150
- "serviceName":{"shape":"String"},
2151
- "clusterArn":{"shape":"String"},
2152
- "loadBalancers":{"shape":"LoadBalancers"},
2153
- "serviceRegistries":{"shape":"ServiceRegistries"},
2154
- "status":{"shape":"String"},
2155
- "desiredCount":{"shape":"Integer"},
2156
- "runningCount":{"shape":"Integer"},
2157
- "pendingCount":{"shape":"Integer"},
2158
- "launchType":{"shape":"LaunchType"},
2159
- "platformVersion":{"shape":"String"},
2160
- "taskDefinition":{"shape":"String"},
2161
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
2162
- "taskSets":{"shape":"TaskSets"},
2163
- "deployments":{"shape":"Deployments"},
2164
- "roleArn":{"shape":"String"},
2165
- "events":{"shape":"ServiceEvents"},
2166
- "createdAt":{"shape":"Timestamp"},
2167
- "placementConstraints":{"shape":"PlacementConstraints"},
2168
- "placementStrategy":{"shape":"PlacementStrategies"},
2169
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2170
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
2171
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
2172
- "deploymentController":{"shape":"DeploymentController"},
2173
- "tags":{"shape":"Tags"},
2174
- "createdBy":{"shape":"String"},
2175
- "enableECSManagedTags":{"shape":"Boolean"},
2176
- "propagateTags":{"shape":"PropagateTags"}
2177
- }
2178
- },
2179
- "ServiceEvent":{
2180
- "type":"structure",
2181
- "members":{
2182
- "id":{"shape":"String"},
2183
- "createdAt":{"shape":"Timestamp"},
2184
- "message":{"shape":"String"}
2185
- }
2186
- },
2187
- "ServiceEvents":{
2188
- "type":"list",
2189
- "member":{"shape":"ServiceEvent"}
2190
- },
2191
- "ServiceField":{
2192
- "type":"string",
2193
- "enum":["TAGS"]
2194
- },
2195
- "ServiceFieldList":{
2196
- "type":"list",
2197
- "member":{"shape":"ServiceField"}
2198
- },
2199
- "ServiceNotActiveException":{
2200
- "type":"structure",
2201
- "members":{
2202
- },
2203
- "exception":true
2204
- },
2205
- "ServiceNotFoundException":{
2206
- "type":"structure",
2207
- "members":{
2208
- },
2209
- "exception":true
2210
- },
2211
- "ServiceRegistries":{
2212
- "type":"list",
2213
- "member":{"shape":"ServiceRegistry"}
2214
- },
2215
- "ServiceRegistry":{
2216
- "type":"structure",
2217
- "members":{
2218
- "registryArn":{"shape":"String"},
2219
- "port":{"shape":"BoxedInteger"},
2220
- "containerName":{"shape":"String"},
2221
- "containerPort":{"shape":"BoxedInteger"}
2222
- }
2223
- },
2224
- "Services":{
2225
- "type":"list",
2226
- "member":{"shape":"Service"}
2227
- },
2228
- "Setting":{
2229
- "type":"structure",
2230
- "members":{
2231
- "name":{"shape":"SettingName"},
2232
- "value":{"shape":"String"},
2233
- "principalArn":{"shape":"String"}
2234
- }
2235
- },
2236
- "SettingName":{
2237
- "type":"string",
2238
- "enum":[
2239
- "serviceLongArnFormat",
2240
- "taskLongArnFormat",
2241
- "containerInstanceLongArnFormat",
2242
- "awsvpcTrunking",
2243
- "containerInsights"
2244
- ]
2245
- },
2246
- "Settings":{
2247
- "type":"list",
2248
- "member":{"shape":"Setting"}
2249
- },
2250
- "SortOrder":{
2251
- "type":"string",
2252
- "enum":[
2253
- "ASC",
2254
- "DESC"
2255
- ]
2256
- },
2257
- "StabilityStatus":{
2258
- "type":"string",
2259
- "enum":[
2260
- "STEADY_STATE",
2261
- "STABILIZING"
2262
- ]
2263
- },
2264
- "StartTaskRequest":{
2265
- "type":"structure",
2266
- "required":[
2267
- "taskDefinition",
2268
- "containerInstances"
2269
- ],
2270
- "members":{
2271
- "cluster":{"shape":"String"},
2272
- "taskDefinition":{"shape":"String"},
2273
- "overrides":{"shape":"TaskOverride"},
2274
- "containerInstances":{"shape":"StringList"},
2275
- "startedBy":{"shape":"String"},
2276
- "group":{"shape":"String"},
2277
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2278
- "tags":{"shape":"Tags"},
2279
- "enableECSManagedTags":{"shape":"Boolean"},
2280
- "propagateTags":{"shape":"PropagateTags"}
2281
- }
2282
- },
2283
- "StartTaskResponse":{
2284
- "type":"structure",
2285
- "members":{
2286
- "tasks":{"shape":"Tasks"},
2287
- "failures":{"shape":"Failures"}
2288
- }
2289
- },
2290
- "Statistics":{
2291
- "type":"list",
2292
- "member":{"shape":"KeyValuePair"}
2293
- },
2294
- "StopTaskRequest":{
2295
- "type":"structure",
2296
- "required":["task"],
2297
- "members":{
2298
- "cluster":{"shape":"String"},
2299
- "task":{"shape":"String"},
2300
- "reason":{"shape":"String"}
2301
- }
2302
- },
2303
- "StopTaskResponse":{
2304
- "type":"structure",
2305
- "members":{
2306
- "task":{"shape":"Task"}
2307
- }
2308
- },
2309
- "String":{"type":"string"},
2310
- "StringList":{
2311
- "type":"list",
2312
- "member":{"shape":"String"}
2313
- },
2314
- "StringMap":{
2315
- "type":"map",
2316
- "key":{"shape":"String"},
2317
- "value":{"shape":"String"}
2318
- },
2319
- "SubmitAttachmentStateChangesRequest":{
2320
- "type":"structure",
2321
- "required":["attachments"],
2322
- "members":{
2323
- "cluster":{"shape":"String"},
2324
- "attachments":{"shape":"AttachmentStateChanges"}
2325
- }
2326
- },
2327
- "SubmitAttachmentStateChangesResponse":{
2328
- "type":"structure",
2329
- "members":{
2330
- "acknowledgment":{"shape":"String"}
2331
- }
2332
- },
2333
- "SubmitContainerStateChangeRequest":{
2334
- "type":"structure",
2335
- "members":{
2336
- "cluster":{"shape":"String"},
2337
- "task":{"shape":"String"},
2338
- "containerName":{"shape":"String"},
2339
- "runtimeId":{"shape":"String"},
2340
- "status":{"shape":"String"},
2341
- "exitCode":{"shape":"BoxedInteger"},
2342
- "reason":{"shape":"String"},
2343
- "networkBindings":{"shape":"NetworkBindings"}
2344
- }
2345
- },
2346
- "SubmitContainerStateChangeResponse":{
2347
- "type":"structure",
2348
- "members":{
2349
- "acknowledgment":{"shape":"String"}
2350
- }
2351
- },
2352
- "SubmitTaskStateChangeRequest":{
2353
- "type":"structure",
2354
- "members":{
2355
- "cluster":{"shape":"String"},
2356
- "task":{"shape":"String"},
2357
- "status":{"shape":"String"},
2358
- "reason":{"shape":"String"},
2359
- "containers":{"shape":"ContainerStateChanges"},
2360
- "attachments":{"shape":"AttachmentStateChanges"},
2361
- "pullStartedAt":{"shape":"Timestamp"},
2362
- "pullStoppedAt":{"shape":"Timestamp"},
2363
- "executionStoppedAt":{"shape":"Timestamp"}
2364
- }
2365
- },
2366
- "SubmitTaskStateChangeResponse":{
2367
- "type":"structure",
2368
- "members":{
2369
- "acknowledgment":{"shape":"String"}
2370
- }
2371
- },
2372
- "SystemControl":{
2373
- "type":"structure",
2374
- "members":{
2375
- "namespace":{"shape":"String"},
2376
- "value":{"shape":"String"}
2377
- }
2378
- },
2379
- "SystemControls":{
2380
- "type":"list",
2381
- "member":{"shape":"SystemControl"}
2382
- },
2383
- "Tag":{
2384
- "type":"structure",
2385
- "members":{
2386
- "key":{"shape":"TagKey"},
2387
- "value":{"shape":"TagValue"}
2388
- }
2389
- },
2390
- "TagKey":{
2391
- "type":"string",
2392
- "max":128,
2393
- "min":1,
2394
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2395
- },
2396
- "TagKeys":{
2397
- "type":"list",
2398
- "member":{"shape":"TagKey"}
2399
- },
2400
- "TagResourceRequest":{
2401
- "type":"structure",
2402
- "required":[
2403
- "resourceArn",
2404
- "tags"
2405
- ],
2406
- "members":{
2407
- "resourceArn":{"shape":"String"},
2408
- "tags":{"shape":"Tags"}
2409
- }
2410
- },
2411
- "TagResourceResponse":{
2412
- "type":"structure",
2413
- "members":{
2414
- }
2415
- },
2416
- "TagValue":{
2417
- "type":"string",
2418
- "max":256,
2419
- "min":0,
2420
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2421
- },
2422
- "Tags":{
2423
- "type":"list",
2424
- "member":{"shape":"Tag"},
2425
- "max":50,
2426
- "min":0
2427
- },
2428
- "TargetNotFoundException":{
2429
- "type":"structure",
2430
- "members":{
2431
- },
2432
- "exception":true
2433
- },
2434
- "TargetType":{
2435
- "type":"string",
2436
- "enum":["container-instance"]
2437
- },
2438
- "Task":{
2439
- "type":"structure",
2440
- "members":{
2441
- "taskArn":{"shape":"String"},
2442
- "clusterArn":{"shape":"String"},
2443
- "taskDefinitionArn":{"shape":"String"},
2444
- "containerInstanceArn":{"shape":"String"},
2445
- "overrides":{"shape":"TaskOverride"},
2446
- "lastStatus":{"shape":"String"},
2447
- "desiredStatus":{"shape":"String"},
2448
- "cpu":{"shape":"String"},
2449
- "memory":{"shape":"String"},
2450
- "containers":{"shape":"Containers"},
2451
- "startedBy":{"shape":"String"},
2452
- "version":{"shape":"Long"},
2453
- "stoppedReason":{"shape":"String"},
2454
- "stopCode":{"shape":"TaskStopCode"},
2455
- "connectivity":{"shape":"Connectivity"},
2456
- "connectivityAt":{"shape":"Timestamp"},
2457
- "pullStartedAt":{"shape":"Timestamp"},
2458
- "pullStoppedAt":{"shape":"Timestamp"},
2459
- "executionStoppedAt":{"shape":"Timestamp"},
2460
- "createdAt":{"shape":"Timestamp"},
2461
- "startedAt":{"shape":"Timestamp"},
2462
- "stoppingAt":{"shape":"Timestamp"},
2463
- "stoppedAt":{"shape":"Timestamp"},
2464
- "group":{"shape":"String"},
2465
- "launchType":{"shape":"LaunchType"},
2466
- "platformVersion":{"shape":"String"},
2467
- "attachments":{"shape":"Attachments"},
2468
- "healthStatus":{"shape":"HealthStatus"},
2469
- "tags":{"shape":"Tags"}
2470
- }
2471
- },
2472
- "TaskDefinition":{
2473
- "type":"structure",
2474
- "members":{
2475
- "taskDefinitionArn":{"shape":"String"},
2476
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2477
- "family":{"shape":"String"},
2478
- "taskRoleArn":{"shape":"String"},
2479
- "executionRoleArn":{"shape":"String"},
2480
- "networkMode":{"shape":"NetworkMode"},
2481
- "revision":{"shape":"Integer"},
2482
- "volumes":{"shape":"VolumeList"},
2483
- "status":{"shape":"TaskDefinitionStatus"},
2484
- "requiresAttributes":{"shape":"RequiresAttributes"},
2485
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2486
- "compatibilities":{"shape":"CompatibilityList"},
2487
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2488
- "cpu":{"shape":"String"},
2489
- "memory":{"shape":"String"},
2490
- "pidMode":{"shape":"PidMode"},
2491
- "ipcMode":{"shape":"IpcMode"},
2492
- "proxyConfiguration":{"shape":"ProxyConfiguration"}
2493
- }
2494
- },
2495
- "TaskDefinitionFamilyStatus":{
2496
- "type":"string",
2497
- "enum":[
2498
- "ACTIVE",
2499
- "INACTIVE",
2500
- "ALL"
2501
- ]
2502
- },
2503
- "TaskDefinitionField":{
2504
- "type":"string",
2505
- "enum":["TAGS"]
2506
- },
2507
- "TaskDefinitionFieldList":{
2508
- "type":"list",
2509
- "member":{"shape":"TaskDefinitionField"}
2510
- },
2511
- "TaskDefinitionPlacementConstraint":{
2512
- "type":"structure",
2513
- "members":{
2514
- "type":{"shape":"TaskDefinitionPlacementConstraintType"},
2515
- "expression":{"shape":"String"}
2516
- }
2517
- },
2518
- "TaskDefinitionPlacementConstraintType":{
2519
- "type":"string",
2520
- "enum":["memberOf"]
2521
- },
2522
- "TaskDefinitionPlacementConstraints":{
2523
- "type":"list",
2524
- "member":{"shape":"TaskDefinitionPlacementConstraint"}
2525
- },
2526
- "TaskDefinitionStatus":{
2527
- "type":"string",
2528
- "enum":[
2529
- "ACTIVE",
2530
- "INACTIVE"
2531
- ]
2532
- },
2533
- "TaskField":{
2534
- "type":"string",
2535
- "enum":["TAGS"]
2536
- },
2537
- "TaskFieldList":{
2538
- "type":"list",
2539
- "member":{"shape":"TaskField"}
2540
- },
2541
- "TaskOverride":{
2542
- "type":"structure",
2543
- "members":{
2544
- "containerOverrides":{"shape":"ContainerOverrides"},
2545
- "taskRoleArn":{"shape":"String"},
2546
- "executionRoleArn":{"shape":"String"}
2547
- }
2548
- },
2549
- "TaskSet":{
2550
- "type":"structure",
2551
- "members":{
2552
- "id":{"shape":"String"},
2553
- "taskSetArn":{"shape":"String"},
2554
- "serviceArn":{"shape":"String"},
2555
- "clusterArn":{"shape":"String"},
2556
- "startedBy":{"shape":"String"},
2557
- "externalId":{"shape":"String"},
2558
- "status":{"shape":"String"},
2559
- "taskDefinition":{"shape":"String"},
2560
- "computedDesiredCount":{"shape":"Integer"},
2561
- "pendingCount":{"shape":"Integer"},
2562
- "runningCount":{"shape":"Integer"},
2563
- "createdAt":{"shape":"Timestamp"},
2564
- "updatedAt":{"shape":"Timestamp"},
2565
- "launchType":{"shape":"LaunchType"},
2566
- "platformVersion":{"shape":"String"},
2567
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2568
- "loadBalancers":{"shape":"LoadBalancers"},
2569
- "serviceRegistries":{"shape":"ServiceRegistries"},
2570
- "scale":{"shape":"Scale"},
2571
- "stabilityStatus":{"shape":"StabilityStatus"},
2572
- "stabilityStatusAt":{"shape":"Timestamp"}
2573
- }
2574
- },
2575
- "TaskSetNotFoundException":{
2576
- "type":"structure",
2577
- "members":{
2578
- },
2579
- "exception":true
2580
- },
2581
- "TaskSets":{
2582
- "type":"list",
2583
- "member":{"shape":"TaskSet"}
2584
- },
2585
- "TaskStopCode":{
2586
- "type":"string",
2587
- "enum":[
2588
- "TaskFailedToStart",
2589
- "EssentialContainerExited",
2590
- "UserInitiated"
2591
- ]
2592
- },
2593
- "Tasks":{
2594
- "type":"list",
2595
- "member":{"shape":"Task"}
2596
- },
2597
- "Timestamp":{"type":"timestamp"},
2598
- "Tmpfs":{
2599
- "type":"structure",
2600
- "required":[
2601
- "containerPath",
2602
- "size"
2603
- ],
2604
- "members":{
2605
- "containerPath":{"shape":"String"},
2606
- "size":{"shape":"Integer"},
2607
- "mountOptions":{"shape":"StringList"}
2608
- }
2609
- },
2610
- "TmpfsList":{
2611
- "type":"list",
2612
- "member":{"shape":"Tmpfs"}
2613
- },
2614
- "TransportProtocol":{
2615
- "type":"string",
2616
- "enum":[
2617
- "tcp",
2618
- "udp"
2619
- ]
2620
- },
2621
- "Ulimit":{
2622
- "type":"structure",
2623
- "required":[
2624
- "name",
2625
- "softLimit",
2626
- "hardLimit"
2627
- ],
2628
- "members":{
2629
- "name":{"shape":"UlimitName"},
2630
- "softLimit":{"shape":"Integer"},
2631
- "hardLimit":{"shape":"Integer"}
2632
- }
2633
- },
2634
- "UlimitList":{
2635
- "type":"list",
2636
- "member":{"shape":"Ulimit"}
2637
- },
2638
- "UlimitName":{
2639
- "type":"string",
2640
- "enum":[
2641
- "core",
2642
- "cpu",
2643
- "data",
2644
- "fsize",
2645
- "locks",
2646
- "memlock",
2647
- "msgqueue",
2648
- "nice",
2649
- "nofile",
2650
- "nproc",
2651
- "rss",
2652
- "rtprio",
2653
- "rttime",
2654
- "sigpending",
2655
- "stack"
2656
- ]
2657
- },
2658
- "UnsupportedFeatureException":{
2659
- "type":"structure",
2660
- "members":{
2661
- },
2662
- "exception":true
2663
- },
2664
- "UntagResourceRequest":{
2665
- "type":"structure",
2666
- "required":[
2667
- "resourceArn",
2668
- "tagKeys"
2669
- ],
2670
- "members":{
2671
- "resourceArn":{"shape":"String"},
2672
- "tagKeys":{"shape":"TagKeys"}
2673
- }
2674
- },
2675
- "UntagResourceResponse":{
2676
- "type":"structure",
2677
- "members":{
2678
- }
2679
- },
2680
- "UpdateContainerAgentRequest":{
2681
- "type":"structure",
2682
- "required":["containerInstance"],
2683
- "members":{
2684
- "cluster":{"shape":"String"},
2685
- "containerInstance":{"shape":"String"}
2686
- }
2687
- },
2688
- "UpdateContainerAgentResponse":{
2689
- "type":"structure",
2690
- "members":{
2691
- "containerInstance":{"shape":"ContainerInstance"}
2692
- }
2693
- },
2694
- "UpdateContainerInstancesStateRequest":{
2695
- "type":"structure",
2696
- "required":[
2697
- "containerInstances",
2698
- "status"
2699
- ],
2700
- "members":{
2701
- "cluster":{"shape":"String"},
2702
- "containerInstances":{"shape":"StringList"},
2703
- "status":{"shape":"ContainerInstanceStatus"}
2704
- }
2705
- },
2706
- "UpdateContainerInstancesStateResponse":{
2707
- "type":"structure",
2708
- "members":{
2709
- "containerInstances":{"shape":"ContainerInstances"},
2710
- "failures":{"shape":"Failures"}
2711
- }
2712
- },
2713
- "UpdateInProgressException":{
2714
- "type":"structure",
2715
- "members":{
2716
- },
2717
- "exception":true
2718
- },
2719
- "UpdateServicePrimaryTaskSetRequest":{
2720
- "type":"structure",
2721
- "required":[
2722
- "cluster",
2723
- "service",
2724
- "primaryTaskSet"
2725
- ],
2726
- "members":{
2727
- "cluster":{"shape":"String"},
2728
- "service":{"shape":"String"},
2729
- "primaryTaskSet":{"shape":"String"}
2730
- }
2731
- },
2732
- "UpdateServicePrimaryTaskSetResponse":{
2733
- "type":"structure",
2734
- "members":{
2735
- "taskSet":{"shape":"TaskSet"}
2736
- }
2737
- },
2738
- "UpdateServiceRequest":{
2739
- "type":"structure",
2740
- "required":["service"],
2741
- "members":{
2742
- "cluster":{"shape":"String"},
2743
- "service":{"shape":"String"},
2744
- "desiredCount":{"shape":"BoxedInteger"},
2745
- "taskDefinition":{"shape":"String"},
2746
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
2747
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2748
- "platformVersion":{"shape":"String"},
2749
- "forceNewDeployment":{"shape":"Boolean"},
2750
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
2751
- }
2752
- },
2753
- "UpdateServiceResponse":{
2754
- "type":"structure",
2755
- "members":{
2756
- "service":{"shape":"Service"}
2757
- }
2758
- },
2759
- "UpdateTaskSetRequest":{
2760
- "type":"structure",
2761
- "required":[
2762
- "cluster",
2763
- "service",
2764
- "taskSet",
2765
- "scale"
2766
- ],
2767
- "members":{
2768
- "cluster":{"shape":"String"},
2769
- "service":{"shape":"String"},
2770
- "taskSet":{"shape":"String"},
2771
- "scale":{"shape":"Scale"}
2772
- }
2773
- },
2774
- "UpdateTaskSetResponse":{
2775
- "type":"structure",
2776
- "members":{
2777
- "taskSet":{"shape":"TaskSet"}
2778
- }
2779
- },
2780
- "VersionInfo":{
2781
- "type":"structure",
2782
- "members":{
2783
- "agentVersion":{"shape":"String"},
2784
- "agentHash":{"shape":"String"},
2785
- "dockerVersion":{"shape":"String"}
2786
- }
2787
- },
2788
- "Volume":{
2789
- "type":"structure",
2790
- "members":{
2791
- "name":{"shape":"String"},
2792
- "host":{"shape":"HostVolumeProperties"},
2793
- "dockerVolumeConfiguration":{"shape":"DockerVolumeConfiguration"}
2794
- }
2795
- },
2796
- "VolumeFrom":{
2797
- "type":"structure",
2798
- "members":{
2799
- "sourceContainer":{"shape":"String"},
2800
- "readOnly":{"shape":"BoxedBoolean"}
2801
- }
2802
- },
2803
- "VolumeFromList":{
2804
- "type":"list",
2805
- "member":{"shape":"VolumeFrom"}
2806
- },
2807
- "VolumeList":{
2808
- "type":"list",
2809
- "member":{"shape":"Volume"}
2810
- }
2811
- }
2812
- }