aws-sdk-core 2.11.343 → 3.64.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 +149 -10
  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 -768
  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 -22
  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 -2382
  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 -2809
  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 -3132
  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 -2345
  581. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  582. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  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,2809 +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
- "lastStatus":{"shape":"String"},
909
- "exitCode":{"shape":"BoxedInteger"},
910
- "reason":{"shape":"String"},
911
- "networkBindings":{"shape":"NetworkBindings"},
912
- "networkInterfaces":{"shape":"NetworkInterfaces"},
913
- "healthStatus":{"shape":"HealthStatus"},
914
- "cpu":{"shape":"String"},
915
- "memory":{"shape":"String"},
916
- "memoryReservation":{"shape":"String"},
917
- "gpuIds":{"shape":"GpuIds"}
918
- }
919
- },
920
- "ContainerCondition":{
921
- "type":"string",
922
- "enum":[
923
- "START",
924
- "COMPLETE",
925
- "SUCCESS",
926
- "HEALTHY"
927
- ]
928
- },
929
- "ContainerDefinition":{
930
- "type":"structure",
931
- "members":{
932
- "name":{"shape":"String"},
933
- "image":{"shape":"String"},
934
- "repositoryCredentials":{"shape":"RepositoryCredentials"},
935
- "cpu":{"shape":"Integer"},
936
- "memory":{"shape":"BoxedInteger"},
937
- "memoryReservation":{"shape":"BoxedInteger"},
938
- "links":{"shape":"StringList"},
939
- "portMappings":{"shape":"PortMappingList"},
940
- "essential":{"shape":"BoxedBoolean"},
941
- "entryPoint":{"shape":"StringList"},
942
- "command":{"shape":"StringList"},
943
- "environment":{"shape":"EnvironmentVariables"},
944
- "mountPoints":{"shape":"MountPointList"},
945
- "volumesFrom":{"shape":"VolumeFromList"},
946
- "linuxParameters":{"shape":"LinuxParameters"},
947
- "secrets":{"shape":"SecretList"},
948
- "dependsOn":{"shape":"ContainerDependencies"},
949
- "startTimeout":{"shape":"BoxedInteger"},
950
- "stopTimeout":{"shape":"BoxedInteger"},
951
- "hostname":{"shape":"String"},
952
- "user":{"shape":"String"},
953
- "workingDirectory":{"shape":"String"},
954
- "disableNetworking":{"shape":"BoxedBoolean"},
955
- "privileged":{"shape":"BoxedBoolean"},
956
- "readonlyRootFilesystem":{"shape":"BoxedBoolean"},
957
- "dnsServers":{"shape":"StringList"},
958
- "dnsSearchDomains":{"shape":"StringList"},
959
- "extraHosts":{"shape":"HostEntryList"},
960
- "dockerSecurityOptions":{"shape":"StringList"},
961
- "interactive":{"shape":"BoxedBoolean"},
962
- "pseudoTerminal":{"shape":"BoxedBoolean"},
963
- "dockerLabels":{"shape":"DockerLabelsMap"},
964
- "ulimits":{"shape":"UlimitList"},
965
- "logConfiguration":{"shape":"LogConfiguration"},
966
- "healthCheck":{"shape":"HealthCheck"},
967
- "systemControls":{"shape":"SystemControls"},
968
- "resourceRequirements":{"shape":"ResourceRequirements"}
969
- }
970
- },
971
- "ContainerDefinitions":{
972
- "type":"list",
973
- "member":{"shape":"ContainerDefinition"}
974
- },
975
- "ContainerDependencies":{
976
- "type":"list",
977
- "member":{"shape":"ContainerDependency"}
978
- },
979
- "ContainerDependency":{
980
- "type":"structure",
981
- "required":[
982
- "containerName",
983
- "condition"
984
- ],
985
- "members":{
986
- "containerName":{"shape":"String"},
987
- "condition":{"shape":"ContainerCondition"}
988
- }
989
- },
990
- "ContainerInstance":{
991
- "type":"structure",
992
- "members":{
993
- "containerInstanceArn":{"shape":"String"},
994
- "ec2InstanceId":{"shape":"String"},
995
- "version":{"shape":"Long"},
996
- "versionInfo":{"shape":"VersionInfo"},
997
- "remainingResources":{"shape":"Resources"},
998
- "registeredResources":{"shape":"Resources"},
999
- "status":{"shape":"String"},
1000
- "statusReason":{"shape":"String"},
1001
- "agentConnected":{"shape":"Boolean"},
1002
- "runningTasksCount":{"shape":"Integer"},
1003
- "pendingTasksCount":{"shape":"Integer"},
1004
- "agentUpdateStatus":{"shape":"AgentUpdateStatus"},
1005
- "attributes":{"shape":"Attributes"},
1006
- "registeredAt":{"shape":"Timestamp"},
1007
- "attachments":{"shape":"Attachments"},
1008
- "tags":{"shape":"Tags"}
1009
- }
1010
- },
1011
- "ContainerInstanceField":{
1012
- "type":"string",
1013
- "enum":["TAGS"]
1014
- },
1015
- "ContainerInstanceFieldList":{
1016
- "type":"list",
1017
- "member":{"shape":"ContainerInstanceField"}
1018
- },
1019
- "ContainerInstanceStatus":{
1020
- "type":"string",
1021
- "enum":[
1022
- "ACTIVE",
1023
- "DRAINING",
1024
- "REGISTERING",
1025
- "DEREGISTERING",
1026
- "REGISTRATION_FAILED"
1027
- ]
1028
- },
1029
- "ContainerInstances":{
1030
- "type":"list",
1031
- "member":{"shape":"ContainerInstance"}
1032
- },
1033
- "ContainerOverride":{
1034
- "type":"structure",
1035
- "members":{
1036
- "name":{"shape":"String"},
1037
- "command":{"shape":"StringList"},
1038
- "environment":{"shape":"EnvironmentVariables"},
1039
- "cpu":{"shape":"BoxedInteger"},
1040
- "memory":{"shape":"BoxedInteger"},
1041
- "memoryReservation":{"shape":"BoxedInteger"},
1042
- "resourceRequirements":{"shape":"ResourceRequirements"}
1043
- }
1044
- },
1045
- "ContainerOverrides":{
1046
- "type":"list",
1047
- "member":{"shape":"ContainerOverride"}
1048
- },
1049
- "ContainerStateChange":{
1050
- "type":"structure",
1051
- "members":{
1052
- "containerName":{"shape":"String"},
1053
- "exitCode":{"shape":"BoxedInteger"},
1054
- "networkBindings":{"shape":"NetworkBindings"},
1055
- "reason":{"shape":"String"},
1056
- "status":{"shape":"String"}
1057
- }
1058
- },
1059
- "ContainerStateChanges":{
1060
- "type":"list",
1061
- "member":{"shape":"ContainerStateChange"}
1062
- },
1063
- "Containers":{
1064
- "type":"list",
1065
- "member":{"shape":"Container"}
1066
- },
1067
- "CreateClusterRequest":{
1068
- "type":"structure",
1069
- "members":{
1070
- "clusterName":{"shape":"String"},
1071
- "tags":{"shape":"Tags"},
1072
- "settings":{"shape":"ClusterSettings"}
1073
- }
1074
- },
1075
- "CreateClusterResponse":{
1076
- "type":"structure",
1077
- "members":{
1078
- "cluster":{"shape":"Cluster"}
1079
- }
1080
- },
1081
- "CreateServiceRequest":{
1082
- "type":"structure",
1083
- "required":["serviceName"],
1084
- "members":{
1085
- "cluster":{"shape":"String"},
1086
- "serviceName":{"shape":"String"},
1087
- "taskDefinition":{"shape":"String"},
1088
- "loadBalancers":{"shape":"LoadBalancers"},
1089
- "serviceRegistries":{"shape":"ServiceRegistries"},
1090
- "desiredCount":{"shape":"BoxedInteger"},
1091
- "clientToken":{"shape":"String"},
1092
- "launchType":{"shape":"LaunchType"},
1093
- "platformVersion":{"shape":"String"},
1094
- "role":{"shape":"String"},
1095
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
1096
- "placementConstraints":{"shape":"PlacementConstraints"},
1097
- "placementStrategy":{"shape":"PlacementStrategies"},
1098
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1099
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
1100
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
1101
- "deploymentController":{"shape":"DeploymentController"},
1102
- "tags":{"shape":"Tags"},
1103
- "enableECSManagedTags":{"shape":"Boolean"},
1104
- "propagateTags":{"shape":"PropagateTags"}
1105
- }
1106
- },
1107
- "CreateServiceResponse":{
1108
- "type":"structure",
1109
- "members":{
1110
- "service":{"shape":"Service"}
1111
- }
1112
- },
1113
- "CreateTaskSetRequest":{
1114
- "type":"structure",
1115
- "required":[
1116
- "service",
1117
- "cluster",
1118
- "taskDefinition"
1119
- ],
1120
- "members":{
1121
- "service":{"shape":"String"},
1122
- "cluster":{"shape":"String"},
1123
- "externalId":{"shape":"String"},
1124
- "taskDefinition":{"shape":"String"},
1125
- "networkConfiguration":{"shape":"NetworkConfiguration"},
1126
- "loadBalancers":{"shape":"LoadBalancers"},
1127
- "serviceRegistries":{"shape":"ServiceRegistries"},
1128
- "launchType":{"shape":"LaunchType"},
1129
- "platformVersion":{"shape":"String"},
1130
- "scale":{"shape":"Scale"},
1131
- "clientToken":{"shape":"String"}
1132
- }
1133
- },
1134
- "CreateTaskSetResponse":{
1135
- "type":"structure",
1136
- "members":{
1137
- "taskSet":{"shape":"TaskSet"}
1138
- }
1139
- },
1140
- "DeleteAccountSettingRequest":{
1141
- "type":"structure",
1142
- "required":["name"],
1143
- "members":{
1144
- "name":{"shape":"SettingName"},
1145
- "principalArn":{"shape":"String"}
1146
- }
1147
- },
1148
- "DeleteAccountSettingResponse":{
1149
- "type":"structure",
1150
- "members":{
1151
- "setting":{"shape":"Setting"}
1152
- }
1153
- },
1154
- "DeleteAttributesRequest":{
1155
- "type":"structure",
1156
- "required":["attributes"],
1157
- "members":{
1158
- "cluster":{"shape":"String"},
1159
- "attributes":{"shape":"Attributes"}
1160
- }
1161
- },
1162
- "DeleteAttributesResponse":{
1163
- "type":"structure",
1164
- "members":{
1165
- "attributes":{"shape":"Attributes"}
1166
- }
1167
- },
1168
- "DeleteClusterRequest":{
1169
- "type":"structure",
1170
- "required":["cluster"],
1171
- "members":{
1172
- "cluster":{"shape":"String"}
1173
- }
1174
- },
1175
- "DeleteClusterResponse":{
1176
- "type":"structure",
1177
- "members":{
1178
- "cluster":{"shape":"Cluster"}
1179
- }
1180
- },
1181
- "DeleteServiceRequest":{
1182
- "type":"structure",
1183
- "required":["service"],
1184
- "members":{
1185
- "cluster":{"shape":"String"},
1186
- "service":{"shape":"String"},
1187
- "force":{"shape":"BoxedBoolean"}
1188
- }
1189
- },
1190
- "DeleteServiceResponse":{
1191
- "type":"structure",
1192
- "members":{
1193
- "service":{"shape":"Service"}
1194
- }
1195
- },
1196
- "DeleteTaskSetRequest":{
1197
- "type":"structure",
1198
- "required":[
1199
- "cluster",
1200
- "service",
1201
- "taskSet"
1202
- ],
1203
- "members":{
1204
- "cluster":{"shape":"String"},
1205
- "service":{"shape":"String"},
1206
- "taskSet":{"shape":"String"},
1207
- "force":{"shape":"BoxedBoolean"}
1208
- }
1209
- },
1210
- "DeleteTaskSetResponse":{
1211
- "type":"structure",
1212
- "members":{
1213
- "taskSet":{"shape":"TaskSet"}
1214
- }
1215
- },
1216
- "Deployment":{
1217
- "type":"structure",
1218
- "members":{
1219
- "id":{"shape":"String"},
1220
- "status":{"shape":"String"},
1221
- "taskDefinition":{"shape":"String"},
1222
- "desiredCount":{"shape":"Integer"},
1223
- "pendingCount":{"shape":"Integer"},
1224
- "runningCount":{"shape":"Integer"},
1225
- "createdAt":{"shape":"Timestamp"},
1226
- "updatedAt":{"shape":"Timestamp"},
1227
- "launchType":{"shape":"LaunchType"},
1228
- "platformVersion":{"shape":"String"},
1229
- "networkConfiguration":{"shape":"NetworkConfiguration"}
1230
- }
1231
- },
1232
- "DeploymentConfiguration":{
1233
- "type":"structure",
1234
- "members":{
1235
- "maximumPercent":{"shape":"BoxedInteger"},
1236
- "minimumHealthyPercent":{"shape":"BoxedInteger"}
1237
- }
1238
- },
1239
- "DeploymentController":{
1240
- "type":"structure",
1241
- "required":["type"],
1242
- "members":{
1243
- "type":{"shape":"DeploymentControllerType"}
1244
- }
1245
- },
1246
- "DeploymentControllerType":{
1247
- "type":"string",
1248
- "enum":[
1249
- "ECS",
1250
- "CODE_DEPLOY",
1251
- "EXTERNAL"
1252
- ]
1253
- },
1254
- "Deployments":{
1255
- "type":"list",
1256
- "member":{"shape":"Deployment"}
1257
- },
1258
- "DeregisterContainerInstanceRequest":{
1259
- "type":"structure",
1260
- "required":["containerInstance"],
1261
- "members":{
1262
- "cluster":{"shape":"String"},
1263
- "containerInstance":{"shape":"String"},
1264
- "force":{"shape":"BoxedBoolean"}
1265
- }
1266
- },
1267
- "DeregisterContainerInstanceResponse":{
1268
- "type":"structure",
1269
- "members":{
1270
- "containerInstance":{"shape":"ContainerInstance"}
1271
- }
1272
- },
1273
- "DeregisterTaskDefinitionRequest":{
1274
- "type":"structure",
1275
- "required":["taskDefinition"],
1276
- "members":{
1277
- "taskDefinition":{"shape":"String"}
1278
- }
1279
- },
1280
- "DeregisterTaskDefinitionResponse":{
1281
- "type":"structure",
1282
- "members":{
1283
- "taskDefinition":{"shape":"TaskDefinition"}
1284
- }
1285
- },
1286
- "DescribeClustersRequest":{
1287
- "type":"structure",
1288
- "members":{
1289
- "clusters":{"shape":"StringList"},
1290
- "include":{"shape":"ClusterFieldList"}
1291
- }
1292
- },
1293
- "DescribeClustersResponse":{
1294
- "type":"structure",
1295
- "members":{
1296
- "clusters":{"shape":"Clusters"},
1297
- "failures":{"shape":"Failures"}
1298
- }
1299
- },
1300
- "DescribeContainerInstancesRequest":{
1301
- "type":"structure",
1302
- "required":["containerInstances"],
1303
- "members":{
1304
- "cluster":{"shape":"String"},
1305
- "containerInstances":{"shape":"StringList"},
1306
- "include":{"shape":"ContainerInstanceFieldList"}
1307
- }
1308
- },
1309
- "DescribeContainerInstancesResponse":{
1310
- "type":"structure",
1311
- "members":{
1312
- "containerInstances":{"shape":"ContainerInstances"},
1313
- "failures":{"shape":"Failures"}
1314
- }
1315
- },
1316
- "DescribeServicesRequest":{
1317
- "type":"structure",
1318
- "required":["services"],
1319
- "members":{
1320
- "cluster":{"shape":"String"},
1321
- "services":{"shape":"StringList"},
1322
- "include":{"shape":"ServiceFieldList"}
1323
- }
1324
- },
1325
- "DescribeServicesResponse":{
1326
- "type":"structure",
1327
- "members":{
1328
- "services":{"shape":"Services"},
1329
- "failures":{"shape":"Failures"}
1330
- }
1331
- },
1332
- "DescribeTaskDefinitionRequest":{
1333
- "type":"structure",
1334
- "required":["taskDefinition"],
1335
- "members":{
1336
- "taskDefinition":{"shape":"String"},
1337
- "include":{"shape":"TaskDefinitionFieldList"}
1338
- }
1339
- },
1340
- "DescribeTaskDefinitionResponse":{
1341
- "type":"structure",
1342
- "members":{
1343
- "taskDefinition":{"shape":"TaskDefinition"},
1344
- "tags":{"shape":"Tags"}
1345
- }
1346
- },
1347
- "DescribeTaskSetsRequest":{
1348
- "type":"structure",
1349
- "required":[
1350
- "cluster",
1351
- "service"
1352
- ],
1353
- "members":{
1354
- "cluster":{"shape":"String"},
1355
- "service":{"shape":"String"},
1356
- "taskSets":{"shape":"StringList"}
1357
- }
1358
- },
1359
- "DescribeTaskSetsResponse":{
1360
- "type":"structure",
1361
- "members":{
1362
- "taskSets":{"shape":"TaskSets"},
1363
- "failures":{"shape":"Failures"}
1364
- }
1365
- },
1366
- "DescribeTasksRequest":{
1367
- "type":"structure",
1368
- "required":["tasks"],
1369
- "members":{
1370
- "cluster":{"shape":"String"},
1371
- "tasks":{"shape":"StringList"},
1372
- "include":{"shape":"TaskFieldList"}
1373
- }
1374
- },
1375
- "DescribeTasksResponse":{
1376
- "type":"structure",
1377
- "members":{
1378
- "tasks":{"shape":"Tasks"},
1379
- "failures":{"shape":"Failures"}
1380
- }
1381
- },
1382
- "DesiredStatus":{
1383
- "type":"string",
1384
- "enum":[
1385
- "RUNNING",
1386
- "PENDING",
1387
- "STOPPED"
1388
- ]
1389
- },
1390
- "Device":{
1391
- "type":"structure",
1392
- "required":["hostPath"],
1393
- "members":{
1394
- "hostPath":{"shape":"String"},
1395
- "containerPath":{"shape":"String"},
1396
- "permissions":{"shape":"DeviceCgroupPermissions"}
1397
- }
1398
- },
1399
- "DeviceCgroupPermission":{
1400
- "type":"string",
1401
- "enum":[
1402
- "read",
1403
- "write",
1404
- "mknod"
1405
- ]
1406
- },
1407
- "DeviceCgroupPermissions":{
1408
- "type":"list",
1409
- "member":{"shape":"DeviceCgroupPermission"}
1410
- },
1411
- "DevicesList":{
1412
- "type":"list",
1413
- "member":{"shape":"Device"}
1414
- },
1415
- "DiscoverPollEndpointRequest":{
1416
- "type":"structure",
1417
- "members":{
1418
- "containerInstance":{"shape":"String"},
1419
- "cluster":{"shape":"String"}
1420
- }
1421
- },
1422
- "DiscoverPollEndpointResponse":{
1423
- "type":"structure",
1424
- "members":{
1425
- "endpoint":{"shape":"String"},
1426
- "telemetryEndpoint":{"shape":"String"}
1427
- }
1428
- },
1429
- "DockerLabelsMap":{
1430
- "type":"map",
1431
- "key":{"shape":"String"},
1432
- "value":{"shape":"String"}
1433
- },
1434
- "DockerVolumeConfiguration":{
1435
- "type":"structure",
1436
- "members":{
1437
- "scope":{"shape":"Scope"},
1438
- "autoprovision":{"shape":"BoxedBoolean"},
1439
- "driver":{"shape":"String"},
1440
- "driverOpts":{"shape":"StringMap"},
1441
- "labels":{"shape":"StringMap"}
1442
- }
1443
- },
1444
- "Double":{"type":"double"},
1445
- "EnvironmentVariables":{
1446
- "type":"list",
1447
- "member":{"shape":"KeyValuePair"}
1448
- },
1449
- "Failure":{
1450
- "type":"structure",
1451
- "members":{
1452
- "arn":{"shape":"String"},
1453
- "reason":{"shape":"String"}
1454
- }
1455
- },
1456
- "Failures":{
1457
- "type":"list",
1458
- "member":{"shape":"Failure"}
1459
- },
1460
- "GpuIds":{
1461
- "type":"list",
1462
- "member":{"shape":"String"}
1463
- },
1464
- "HealthCheck":{
1465
- "type":"structure",
1466
- "required":["command"],
1467
- "members":{
1468
- "command":{"shape":"StringList"},
1469
- "interval":{"shape":"BoxedInteger"},
1470
- "timeout":{"shape":"BoxedInteger"},
1471
- "retries":{"shape":"BoxedInteger"},
1472
- "startPeriod":{"shape":"BoxedInteger"}
1473
- }
1474
- },
1475
- "HealthStatus":{
1476
- "type":"string",
1477
- "enum":[
1478
- "HEALTHY",
1479
- "UNHEALTHY",
1480
- "UNKNOWN"
1481
- ]
1482
- },
1483
- "HostEntry":{
1484
- "type":"structure",
1485
- "required":[
1486
- "hostname",
1487
- "ipAddress"
1488
- ],
1489
- "members":{
1490
- "hostname":{"shape":"String"},
1491
- "ipAddress":{"shape":"String"}
1492
- }
1493
- },
1494
- "HostEntryList":{
1495
- "type":"list",
1496
- "member":{"shape":"HostEntry"}
1497
- },
1498
- "HostVolumeProperties":{
1499
- "type":"structure",
1500
- "members":{
1501
- "sourcePath":{"shape":"String"}
1502
- }
1503
- },
1504
- "Integer":{"type":"integer"},
1505
- "InvalidParameterException":{
1506
- "type":"structure",
1507
- "members":{
1508
- },
1509
- "exception":true
1510
- },
1511
- "IpcMode":{
1512
- "type":"string",
1513
- "enum":[
1514
- "host",
1515
- "task",
1516
- "none"
1517
- ]
1518
- },
1519
- "KernelCapabilities":{
1520
- "type":"structure",
1521
- "members":{
1522
- "add":{"shape":"StringList"},
1523
- "drop":{"shape":"StringList"}
1524
- }
1525
- },
1526
- "KeyValuePair":{
1527
- "type":"structure",
1528
- "members":{
1529
- "name":{"shape":"String"},
1530
- "value":{"shape":"String"}
1531
- }
1532
- },
1533
- "LaunchType":{
1534
- "type":"string",
1535
- "enum":[
1536
- "EC2",
1537
- "FARGATE"
1538
- ]
1539
- },
1540
- "LinuxParameters":{
1541
- "type":"structure",
1542
- "members":{
1543
- "capabilities":{"shape":"KernelCapabilities"},
1544
- "devices":{"shape":"DevicesList"},
1545
- "initProcessEnabled":{"shape":"BoxedBoolean"},
1546
- "sharedMemorySize":{"shape":"BoxedInteger"},
1547
- "tmpfs":{"shape":"TmpfsList"},
1548
- "maxSwap":{"shape":"BoxedInteger"},
1549
- "swappiness":{"shape":"BoxedInteger"}
1550
- }
1551
- },
1552
- "ListAccountSettingsRequest":{
1553
- "type":"structure",
1554
- "members":{
1555
- "name":{"shape":"SettingName"},
1556
- "value":{"shape":"String"},
1557
- "principalArn":{"shape":"String"},
1558
- "effectiveSettings":{"shape":"Boolean"},
1559
- "nextToken":{"shape":"String"},
1560
- "maxResults":{"shape":"Integer"}
1561
- }
1562
- },
1563
- "ListAccountSettingsResponse":{
1564
- "type":"structure",
1565
- "members":{
1566
- "settings":{"shape":"Settings"},
1567
- "nextToken":{"shape":"String"}
1568
- }
1569
- },
1570
- "ListAttributesRequest":{
1571
- "type":"structure",
1572
- "required":["targetType"],
1573
- "members":{
1574
- "cluster":{"shape":"String"},
1575
- "targetType":{"shape":"TargetType"},
1576
- "attributeName":{"shape":"String"},
1577
- "attributeValue":{"shape":"String"},
1578
- "nextToken":{"shape":"String"},
1579
- "maxResults":{"shape":"BoxedInteger"}
1580
- }
1581
- },
1582
- "ListAttributesResponse":{
1583
- "type":"structure",
1584
- "members":{
1585
- "attributes":{"shape":"Attributes"},
1586
- "nextToken":{"shape":"String"}
1587
- }
1588
- },
1589
- "ListClustersRequest":{
1590
- "type":"structure",
1591
- "members":{
1592
- "nextToken":{"shape":"String"},
1593
- "maxResults":{"shape":"BoxedInteger"}
1594
- }
1595
- },
1596
- "ListClustersResponse":{
1597
- "type":"structure",
1598
- "members":{
1599
- "clusterArns":{"shape":"StringList"},
1600
- "nextToken":{"shape":"String"}
1601
- }
1602
- },
1603
- "ListContainerInstancesRequest":{
1604
- "type":"structure",
1605
- "members":{
1606
- "cluster":{"shape":"String"},
1607
- "filter":{"shape":"String"},
1608
- "nextToken":{"shape":"String"},
1609
- "maxResults":{"shape":"BoxedInteger"},
1610
- "status":{"shape":"ContainerInstanceStatus"}
1611
- }
1612
- },
1613
- "ListContainerInstancesResponse":{
1614
- "type":"structure",
1615
- "members":{
1616
- "containerInstanceArns":{"shape":"StringList"},
1617
- "nextToken":{"shape":"String"}
1618
- }
1619
- },
1620
- "ListServicesRequest":{
1621
- "type":"structure",
1622
- "members":{
1623
- "cluster":{"shape":"String"},
1624
- "nextToken":{"shape":"String"},
1625
- "maxResults":{"shape":"BoxedInteger"},
1626
- "launchType":{"shape":"LaunchType"},
1627
- "schedulingStrategy":{"shape":"SchedulingStrategy"}
1628
- }
1629
- },
1630
- "ListServicesResponse":{
1631
- "type":"structure",
1632
- "members":{
1633
- "serviceArns":{"shape":"StringList"},
1634
- "nextToken":{"shape":"String"}
1635
- }
1636
- },
1637
- "ListTagsForResourceRequest":{
1638
- "type":"structure",
1639
- "required":["resourceArn"],
1640
- "members":{
1641
- "resourceArn":{"shape":"String"}
1642
- }
1643
- },
1644
- "ListTagsForResourceResponse":{
1645
- "type":"structure",
1646
- "members":{
1647
- "tags":{"shape":"Tags"}
1648
- }
1649
- },
1650
- "ListTaskDefinitionFamiliesRequest":{
1651
- "type":"structure",
1652
- "members":{
1653
- "familyPrefix":{"shape":"String"},
1654
- "status":{"shape":"TaskDefinitionFamilyStatus"},
1655
- "nextToken":{"shape":"String"},
1656
- "maxResults":{"shape":"BoxedInteger"}
1657
- }
1658
- },
1659
- "ListTaskDefinitionFamiliesResponse":{
1660
- "type":"structure",
1661
- "members":{
1662
- "families":{"shape":"StringList"},
1663
- "nextToken":{"shape":"String"}
1664
- }
1665
- },
1666
- "ListTaskDefinitionsRequest":{
1667
- "type":"structure",
1668
- "members":{
1669
- "familyPrefix":{"shape":"String"},
1670
- "status":{"shape":"TaskDefinitionStatus"},
1671
- "sort":{"shape":"SortOrder"},
1672
- "nextToken":{"shape":"String"},
1673
- "maxResults":{"shape":"BoxedInteger"}
1674
- }
1675
- },
1676
- "ListTaskDefinitionsResponse":{
1677
- "type":"structure",
1678
- "members":{
1679
- "taskDefinitionArns":{"shape":"StringList"},
1680
- "nextToken":{"shape":"String"}
1681
- }
1682
- },
1683
- "ListTasksRequest":{
1684
- "type":"structure",
1685
- "members":{
1686
- "cluster":{"shape":"String"},
1687
- "containerInstance":{"shape":"String"},
1688
- "family":{"shape":"String"},
1689
- "nextToken":{"shape":"String"},
1690
- "maxResults":{"shape":"BoxedInteger"},
1691
- "startedBy":{"shape":"String"},
1692
- "serviceName":{"shape":"String"},
1693
- "desiredStatus":{"shape":"DesiredStatus"},
1694
- "launchType":{"shape":"LaunchType"}
1695
- }
1696
- },
1697
- "ListTasksResponse":{
1698
- "type":"structure",
1699
- "members":{
1700
- "taskArns":{"shape":"StringList"},
1701
- "nextToken":{"shape":"String"}
1702
- }
1703
- },
1704
- "LoadBalancer":{
1705
- "type":"structure",
1706
- "members":{
1707
- "targetGroupArn":{"shape":"String"},
1708
- "loadBalancerName":{"shape":"String"},
1709
- "containerName":{"shape":"String"},
1710
- "containerPort":{"shape":"BoxedInteger"}
1711
- }
1712
- },
1713
- "LoadBalancers":{
1714
- "type":"list",
1715
- "member":{"shape":"LoadBalancer"}
1716
- },
1717
- "LogConfiguration":{
1718
- "type":"structure",
1719
- "required":["logDriver"],
1720
- "members":{
1721
- "logDriver":{"shape":"LogDriver"},
1722
- "options":{"shape":"LogConfigurationOptionsMap"},
1723
- "secretOptions":{"shape":"SecretList"}
1724
- }
1725
- },
1726
- "LogConfigurationOptionsMap":{
1727
- "type":"map",
1728
- "key":{"shape":"String"},
1729
- "value":{"shape":"String"}
1730
- },
1731
- "LogDriver":{
1732
- "type":"string",
1733
- "enum":[
1734
- "json-file",
1735
- "syslog",
1736
- "journald",
1737
- "gelf",
1738
- "fluentd",
1739
- "awslogs",
1740
- "splunk"
1741
- ]
1742
- },
1743
- "Long":{"type":"long"},
1744
- "MissingVersionException":{
1745
- "type":"structure",
1746
- "members":{
1747
- },
1748
- "exception":true
1749
- },
1750
- "MountPoint":{
1751
- "type":"structure",
1752
- "members":{
1753
- "sourceVolume":{"shape":"String"},
1754
- "containerPath":{"shape":"String"},
1755
- "readOnly":{"shape":"BoxedBoolean"}
1756
- }
1757
- },
1758
- "MountPointList":{
1759
- "type":"list",
1760
- "member":{"shape":"MountPoint"}
1761
- },
1762
- "NetworkBinding":{
1763
- "type":"structure",
1764
- "members":{
1765
- "bindIP":{"shape":"String"},
1766
- "containerPort":{"shape":"BoxedInteger"},
1767
- "hostPort":{"shape":"BoxedInteger"},
1768
- "protocol":{"shape":"TransportProtocol"}
1769
- }
1770
- },
1771
- "NetworkBindings":{
1772
- "type":"list",
1773
- "member":{"shape":"NetworkBinding"}
1774
- },
1775
- "NetworkConfiguration":{
1776
- "type":"structure",
1777
- "members":{
1778
- "awsvpcConfiguration":{"shape":"AwsVpcConfiguration"}
1779
- }
1780
- },
1781
- "NetworkInterface":{
1782
- "type":"structure",
1783
- "members":{
1784
- "attachmentId":{"shape":"String"},
1785
- "privateIpv4Address":{"shape":"String"},
1786
- "ipv6Address":{"shape":"String"}
1787
- }
1788
- },
1789
- "NetworkInterfaces":{
1790
- "type":"list",
1791
- "member":{"shape":"NetworkInterface"}
1792
- },
1793
- "NetworkMode":{
1794
- "type":"string",
1795
- "enum":[
1796
- "bridge",
1797
- "host",
1798
- "awsvpc",
1799
- "none"
1800
- ]
1801
- },
1802
- "NoUpdateAvailableException":{
1803
- "type":"structure",
1804
- "members":{
1805
- },
1806
- "exception":true
1807
- },
1808
- "PidMode":{
1809
- "type":"string",
1810
- "enum":[
1811
- "host",
1812
- "task"
1813
- ]
1814
- },
1815
- "PlacementConstraint":{
1816
- "type":"structure",
1817
- "members":{
1818
- "type":{"shape":"PlacementConstraintType"},
1819
- "expression":{"shape":"String"}
1820
- }
1821
- },
1822
- "PlacementConstraintType":{
1823
- "type":"string",
1824
- "enum":[
1825
- "distinctInstance",
1826
- "memberOf"
1827
- ]
1828
- },
1829
- "PlacementConstraints":{
1830
- "type":"list",
1831
- "member":{"shape":"PlacementConstraint"}
1832
- },
1833
- "PlacementStrategies":{
1834
- "type":"list",
1835
- "member":{"shape":"PlacementStrategy"}
1836
- },
1837
- "PlacementStrategy":{
1838
- "type":"structure",
1839
- "members":{
1840
- "type":{"shape":"PlacementStrategyType"},
1841
- "field":{"shape":"String"}
1842
- }
1843
- },
1844
- "PlacementStrategyType":{
1845
- "type":"string",
1846
- "enum":[
1847
- "random",
1848
- "spread",
1849
- "binpack"
1850
- ]
1851
- },
1852
- "PlatformDevice":{
1853
- "type":"structure",
1854
- "required":[
1855
- "id",
1856
- "type"
1857
- ],
1858
- "members":{
1859
- "id":{"shape":"String"},
1860
- "type":{"shape":"PlatformDeviceType"}
1861
- }
1862
- },
1863
- "PlatformDeviceType":{
1864
- "type":"string",
1865
- "enum":["GPU"]
1866
- },
1867
- "PlatformDevices":{
1868
- "type":"list",
1869
- "member":{"shape":"PlatformDevice"}
1870
- },
1871
- "PlatformTaskDefinitionIncompatibilityException":{
1872
- "type":"structure",
1873
- "members":{
1874
- },
1875
- "exception":true
1876
- },
1877
- "PlatformUnknownException":{
1878
- "type":"structure",
1879
- "members":{
1880
- },
1881
- "exception":true
1882
- },
1883
- "PortMapping":{
1884
- "type":"structure",
1885
- "members":{
1886
- "containerPort":{"shape":"BoxedInteger"},
1887
- "hostPort":{"shape":"BoxedInteger"},
1888
- "protocol":{"shape":"TransportProtocol"}
1889
- }
1890
- },
1891
- "PortMappingList":{
1892
- "type":"list",
1893
- "member":{"shape":"PortMapping"}
1894
- },
1895
- "PropagateTags":{
1896
- "type":"string",
1897
- "enum":[
1898
- "TASK_DEFINITION",
1899
- "SERVICE"
1900
- ]
1901
- },
1902
- "ProxyConfiguration":{
1903
- "type":"structure",
1904
- "required":["containerName"],
1905
- "members":{
1906
- "type":{"shape":"ProxyConfigurationType"},
1907
- "containerName":{"shape":"String"},
1908
- "properties":{"shape":"ProxyConfigurationProperties"}
1909
- }
1910
- },
1911
- "ProxyConfigurationProperties":{
1912
- "type":"list",
1913
- "member":{"shape":"KeyValuePair"}
1914
- },
1915
- "ProxyConfigurationType":{
1916
- "type":"string",
1917
- "enum":["APPMESH"]
1918
- },
1919
- "PutAccountSettingDefaultRequest":{
1920
- "type":"structure",
1921
- "required":[
1922
- "name",
1923
- "value"
1924
- ],
1925
- "members":{
1926
- "name":{"shape":"SettingName"},
1927
- "value":{"shape":"String"}
1928
- }
1929
- },
1930
- "PutAccountSettingDefaultResponse":{
1931
- "type":"structure",
1932
- "members":{
1933
- "setting":{"shape":"Setting"}
1934
- }
1935
- },
1936
- "PutAccountSettingRequest":{
1937
- "type":"structure",
1938
- "required":[
1939
- "name",
1940
- "value"
1941
- ],
1942
- "members":{
1943
- "name":{"shape":"SettingName"},
1944
- "value":{"shape":"String"},
1945
- "principalArn":{"shape":"String"}
1946
- }
1947
- },
1948
- "PutAccountSettingResponse":{
1949
- "type":"structure",
1950
- "members":{
1951
- "setting":{"shape":"Setting"}
1952
- }
1953
- },
1954
- "PutAttributesRequest":{
1955
- "type":"structure",
1956
- "required":["attributes"],
1957
- "members":{
1958
- "cluster":{"shape":"String"},
1959
- "attributes":{"shape":"Attributes"}
1960
- }
1961
- },
1962
- "PutAttributesResponse":{
1963
- "type":"structure",
1964
- "members":{
1965
- "attributes":{"shape":"Attributes"}
1966
- }
1967
- },
1968
- "RegisterContainerInstanceRequest":{
1969
- "type":"structure",
1970
- "members":{
1971
- "cluster":{"shape":"String"},
1972
- "instanceIdentityDocument":{"shape":"String"},
1973
- "instanceIdentityDocumentSignature":{"shape":"String"},
1974
- "totalResources":{"shape":"Resources"},
1975
- "versionInfo":{"shape":"VersionInfo"},
1976
- "containerInstanceArn":{"shape":"String"},
1977
- "attributes":{"shape":"Attributes"},
1978
- "platformDevices":{"shape":"PlatformDevices"},
1979
- "tags":{"shape":"Tags"}
1980
- }
1981
- },
1982
- "RegisterContainerInstanceResponse":{
1983
- "type":"structure",
1984
- "members":{
1985
- "containerInstance":{"shape":"ContainerInstance"}
1986
- }
1987
- },
1988
- "RegisterTaskDefinitionRequest":{
1989
- "type":"structure",
1990
- "required":[
1991
- "family",
1992
- "containerDefinitions"
1993
- ],
1994
- "members":{
1995
- "family":{"shape":"String"},
1996
- "taskRoleArn":{"shape":"String"},
1997
- "executionRoleArn":{"shape":"String"},
1998
- "networkMode":{"shape":"NetworkMode"},
1999
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2000
- "volumes":{"shape":"VolumeList"},
2001
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2002
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2003
- "cpu":{"shape":"String"},
2004
- "memory":{"shape":"String"},
2005
- "tags":{"shape":"Tags"},
2006
- "pidMode":{"shape":"PidMode"},
2007
- "ipcMode":{"shape":"IpcMode"},
2008
- "proxyConfiguration":{"shape":"ProxyConfiguration"}
2009
- }
2010
- },
2011
- "RegisterTaskDefinitionResponse":{
2012
- "type":"structure",
2013
- "members":{
2014
- "taskDefinition":{"shape":"TaskDefinition"},
2015
- "tags":{"shape":"Tags"}
2016
- }
2017
- },
2018
- "RepositoryCredentials":{
2019
- "type":"structure",
2020
- "required":["credentialsParameter"],
2021
- "members":{
2022
- "credentialsParameter":{"shape":"String"}
2023
- }
2024
- },
2025
- "RequiresAttributes":{
2026
- "type":"list",
2027
- "member":{"shape":"Attribute"}
2028
- },
2029
- "Resource":{
2030
- "type":"structure",
2031
- "members":{
2032
- "name":{"shape":"String"},
2033
- "type":{"shape":"String"},
2034
- "doubleValue":{"shape":"Double"},
2035
- "longValue":{"shape":"Long"},
2036
- "integerValue":{"shape":"Integer"},
2037
- "stringSetValue":{"shape":"StringList"}
2038
- }
2039
- },
2040
- "ResourceNotFoundException":{
2041
- "type":"structure",
2042
- "members":{
2043
- },
2044
- "exception":true
2045
- },
2046
- "ResourceRequirement":{
2047
- "type":"structure",
2048
- "required":[
2049
- "value",
2050
- "type"
2051
- ],
2052
- "members":{
2053
- "value":{"shape":"String"},
2054
- "type":{"shape":"ResourceType"}
2055
- }
2056
- },
2057
- "ResourceRequirements":{
2058
- "type":"list",
2059
- "member":{"shape":"ResourceRequirement"}
2060
- },
2061
- "ResourceType":{
2062
- "type":"string",
2063
- "enum":["GPU"]
2064
- },
2065
- "Resources":{
2066
- "type":"list",
2067
- "member":{"shape":"Resource"}
2068
- },
2069
- "RunTaskRequest":{
2070
- "type":"structure",
2071
- "required":["taskDefinition"],
2072
- "members":{
2073
- "cluster":{"shape":"String"},
2074
- "taskDefinition":{"shape":"String"},
2075
- "overrides":{"shape":"TaskOverride"},
2076
- "count":{"shape":"BoxedInteger"},
2077
- "startedBy":{"shape":"String"},
2078
- "group":{"shape":"String"},
2079
- "placementConstraints":{"shape":"PlacementConstraints"},
2080
- "placementStrategy":{"shape":"PlacementStrategies"},
2081
- "launchType":{"shape":"LaunchType"},
2082
- "platformVersion":{"shape":"String"},
2083
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2084
- "tags":{"shape":"Tags"},
2085
- "enableECSManagedTags":{"shape":"Boolean"},
2086
- "propagateTags":{"shape":"PropagateTags"}
2087
- }
2088
- },
2089
- "RunTaskResponse":{
2090
- "type":"structure",
2091
- "members":{
2092
- "tasks":{"shape":"Tasks"},
2093
- "failures":{"shape":"Failures"}
2094
- }
2095
- },
2096
- "Scale":{
2097
- "type":"structure",
2098
- "members":{
2099
- "value":{"shape":"Double"},
2100
- "unit":{"shape":"ScaleUnit"}
2101
- }
2102
- },
2103
- "ScaleUnit":{
2104
- "type":"string",
2105
- "enum":["PERCENT"]
2106
- },
2107
- "SchedulingStrategy":{
2108
- "type":"string",
2109
- "enum":[
2110
- "REPLICA",
2111
- "DAEMON"
2112
- ]
2113
- },
2114
- "Scope":{
2115
- "type":"string",
2116
- "enum":[
2117
- "task",
2118
- "shared"
2119
- ]
2120
- },
2121
- "Secret":{
2122
- "type":"structure",
2123
- "required":[
2124
- "name",
2125
- "valueFrom"
2126
- ],
2127
- "members":{
2128
- "name":{"shape":"String"},
2129
- "valueFrom":{"shape":"String"}
2130
- }
2131
- },
2132
- "SecretList":{
2133
- "type":"list",
2134
- "member":{"shape":"Secret"}
2135
- },
2136
- "ServerException":{
2137
- "type":"structure",
2138
- "members":{
2139
- "message":{"shape":"String"}
2140
- },
2141
- "exception":true,
2142
- "fault":true
2143
- },
2144
- "Service":{
2145
- "type":"structure",
2146
- "members":{
2147
- "serviceArn":{"shape":"String"},
2148
- "serviceName":{"shape":"String"},
2149
- "clusterArn":{"shape":"String"},
2150
- "loadBalancers":{"shape":"LoadBalancers"},
2151
- "serviceRegistries":{"shape":"ServiceRegistries"},
2152
- "status":{"shape":"String"},
2153
- "desiredCount":{"shape":"Integer"},
2154
- "runningCount":{"shape":"Integer"},
2155
- "pendingCount":{"shape":"Integer"},
2156
- "launchType":{"shape":"LaunchType"},
2157
- "platformVersion":{"shape":"String"},
2158
- "taskDefinition":{"shape":"String"},
2159
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
2160
- "taskSets":{"shape":"TaskSets"},
2161
- "deployments":{"shape":"Deployments"},
2162
- "roleArn":{"shape":"String"},
2163
- "events":{"shape":"ServiceEvents"},
2164
- "createdAt":{"shape":"Timestamp"},
2165
- "placementConstraints":{"shape":"PlacementConstraints"},
2166
- "placementStrategy":{"shape":"PlacementStrategies"},
2167
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2168
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"},
2169
- "schedulingStrategy":{"shape":"SchedulingStrategy"},
2170
- "deploymentController":{"shape":"DeploymentController"},
2171
- "tags":{"shape":"Tags"},
2172
- "createdBy":{"shape":"String"},
2173
- "enableECSManagedTags":{"shape":"Boolean"},
2174
- "propagateTags":{"shape":"PropagateTags"}
2175
- }
2176
- },
2177
- "ServiceEvent":{
2178
- "type":"structure",
2179
- "members":{
2180
- "id":{"shape":"String"},
2181
- "createdAt":{"shape":"Timestamp"},
2182
- "message":{"shape":"String"}
2183
- }
2184
- },
2185
- "ServiceEvents":{
2186
- "type":"list",
2187
- "member":{"shape":"ServiceEvent"}
2188
- },
2189
- "ServiceField":{
2190
- "type":"string",
2191
- "enum":["TAGS"]
2192
- },
2193
- "ServiceFieldList":{
2194
- "type":"list",
2195
- "member":{"shape":"ServiceField"}
2196
- },
2197
- "ServiceNotActiveException":{
2198
- "type":"structure",
2199
- "members":{
2200
- },
2201
- "exception":true
2202
- },
2203
- "ServiceNotFoundException":{
2204
- "type":"structure",
2205
- "members":{
2206
- },
2207
- "exception":true
2208
- },
2209
- "ServiceRegistries":{
2210
- "type":"list",
2211
- "member":{"shape":"ServiceRegistry"}
2212
- },
2213
- "ServiceRegistry":{
2214
- "type":"structure",
2215
- "members":{
2216
- "registryArn":{"shape":"String"},
2217
- "port":{"shape":"BoxedInteger"},
2218
- "containerName":{"shape":"String"},
2219
- "containerPort":{"shape":"BoxedInteger"}
2220
- }
2221
- },
2222
- "Services":{
2223
- "type":"list",
2224
- "member":{"shape":"Service"}
2225
- },
2226
- "Setting":{
2227
- "type":"structure",
2228
- "members":{
2229
- "name":{"shape":"SettingName"},
2230
- "value":{"shape":"String"},
2231
- "principalArn":{"shape":"String"}
2232
- }
2233
- },
2234
- "SettingName":{
2235
- "type":"string",
2236
- "enum":[
2237
- "serviceLongArnFormat",
2238
- "taskLongArnFormat",
2239
- "containerInstanceLongArnFormat",
2240
- "awsvpcTrunking",
2241
- "containerInsights"
2242
- ]
2243
- },
2244
- "Settings":{
2245
- "type":"list",
2246
- "member":{"shape":"Setting"}
2247
- },
2248
- "SortOrder":{
2249
- "type":"string",
2250
- "enum":[
2251
- "ASC",
2252
- "DESC"
2253
- ]
2254
- },
2255
- "StabilityStatus":{
2256
- "type":"string",
2257
- "enum":[
2258
- "STEADY_STATE",
2259
- "STABILIZING"
2260
- ]
2261
- },
2262
- "StartTaskRequest":{
2263
- "type":"structure",
2264
- "required":[
2265
- "taskDefinition",
2266
- "containerInstances"
2267
- ],
2268
- "members":{
2269
- "cluster":{"shape":"String"},
2270
- "taskDefinition":{"shape":"String"},
2271
- "overrides":{"shape":"TaskOverride"},
2272
- "containerInstances":{"shape":"StringList"},
2273
- "startedBy":{"shape":"String"},
2274
- "group":{"shape":"String"},
2275
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2276
- "tags":{"shape":"Tags"},
2277
- "enableECSManagedTags":{"shape":"Boolean"},
2278
- "propagateTags":{"shape":"PropagateTags"}
2279
- }
2280
- },
2281
- "StartTaskResponse":{
2282
- "type":"structure",
2283
- "members":{
2284
- "tasks":{"shape":"Tasks"},
2285
- "failures":{"shape":"Failures"}
2286
- }
2287
- },
2288
- "Statistics":{
2289
- "type":"list",
2290
- "member":{"shape":"KeyValuePair"}
2291
- },
2292
- "StopTaskRequest":{
2293
- "type":"structure",
2294
- "required":["task"],
2295
- "members":{
2296
- "cluster":{"shape":"String"},
2297
- "task":{"shape":"String"},
2298
- "reason":{"shape":"String"}
2299
- }
2300
- },
2301
- "StopTaskResponse":{
2302
- "type":"structure",
2303
- "members":{
2304
- "task":{"shape":"Task"}
2305
- }
2306
- },
2307
- "String":{"type":"string"},
2308
- "StringList":{
2309
- "type":"list",
2310
- "member":{"shape":"String"}
2311
- },
2312
- "StringMap":{
2313
- "type":"map",
2314
- "key":{"shape":"String"},
2315
- "value":{"shape":"String"}
2316
- },
2317
- "SubmitAttachmentStateChangesRequest":{
2318
- "type":"structure",
2319
- "required":["attachments"],
2320
- "members":{
2321
- "cluster":{"shape":"String"},
2322
- "attachments":{"shape":"AttachmentStateChanges"}
2323
- }
2324
- },
2325
- "SubmitAttachmentStateChangesResponse":{
2326
- "type":"structure",
2327
- "members":{
2328
- "acknowledgment":{"shape":"String"}
2329
- }
2330
- },
2331
- "SubmitContainerStateChangeRequest":{
2332
- "type":"structure",
2333
- "members":{
2334
- "cluster":{"shape":"String"},
2335
- "task":{"shape":"String"},
2336
- "containerName":{"shape":"String"},
2337
- "status":{"shape":"String"},
2338
- "exitCode":{"shape":"BoxedInteger"},
2339
- "reason":{"shape":"String"},
2340
- "networkBindings":{"shape":"NetworkBindings"}
2341
- }
2342
- },
2343
- "SubmitContainerStateChangeResponse":{
2344
- "type":"structure",
2345
- "members":{
2346
- "acknowledgment":{"shape":"String"}
2347
- }
2348
- },
2349
- "SubmitTaskStateChangeRequest":{
2350
- "type":"structure",
2351
- "members":{
2352
- "cluster":{"shape":"String"},
2353
- "task":{"shape":"String"},
2354
- "status":{"shape":"String"},
2355
- "reason":{"shape":"String"},
2356
- "containers":{"shape":"ContainerStateChanges"},
2357
- "attachments":{"shape":"AttachmentStateChanges"},
2358
- "pullStartedAt":{"shape":"Timestamp"},
2359
- "pullStoppedAt":{"shape":"Timestamp"},
2360
- "executionStoppedAt":{"shape":"Timestamp"}
2361
- }
2362
- },
2363
- "SubmitTaskStateChangeResponse":{
2364
- "type":"structure",
2365
- "members":{
2366
- "acknowledgment":{"shape":"String"}
2367
- }
2368
- },
2369
- "SystemControl":{
2370
- "type":"structure",
2371
- "members":{
2372
- "namespace":{"shape":"String"},
2373
- "value":{"shape":"String"}
2374
- }
2375
- },
2376
- "SystemControls":{
2377
- "type":"list",
2378
- "member":{"shape":"SystemControl"}
2379
- },
2380
- "Tag":{
2381
- "type":"structure",
2382
- "members":{
2383
- "key":{"shape":"TagKey"},
2384
- "value":{"shape":"TagValue"}
2385
- }
2386
- },
2387
- "TagKey":{
2388
- "type":"string",
2389
- "max":128,
2390
- "min":1,
2391
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2392
- },
2393
- "TagKeys":{
2394
- "type":"list",
2395
- "member":{"shape":"TagKey"}
2396
- },
2397
- "TagResourceRequest":{
2398
- "type":"structure",
2399
- "required":[
2400
- "resourceArn",
2401
- "tags"
2402
- ],
2403
- "members":{
2404
- "resourceArn":{"shape":"String"},
2405
- "tags":{"shape":"Tags"}
2406
- }
2407
- },
2408
- "TagResourceResponse":{
2409
- "type":"structure",
2410
- "members":{
2411
- }
2412
- },
2413
- "TagValue":{
2414
- "type":"string",
2415
- "max":256,
2416
- "min":0,
2417
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2418
- },
2419
- "Tags":{
2420
- "type":"list",
2421
- "member":{"shape":"Tag"},
2422
- "max":50,
2423
- "min":0
2424
- },
2425
- "TargetNotFoundException":{
2426
- "type":"structure",
2427
- "members":{
2428
- },
2429
- "exception":true
2430
- },
2431
- "TargetType":{
2432
- "type":"string",
2433
- "enum":["container-instance"]
2434
- },
2435
- "Task":{
2436
- "type":"structure",
2437
- "members":{
2438
- "taskArn":{"shape":"String"},
2439
- "clusterArn":{"shape":"String"},
2440
- "taskDefinitionArn":{"shape":"String"},
2441
- "containerInstanceArn":{"shape":"String"},
2442
- "overrides":{"shape":"TaskOverride"},
2443
- "lastStatus":{"shape":"String"},
2444
- "desiredStatus":{"shape":"String"},
2445
- "cpu":{"shape":"String"},
2446
- "memory":{"shape":"String"},
2447
- "containers":{"shape":"Containers"},
2448
- "startedBy":{"shape":"String"},
2449
- "version":{"shape":"Long"},
2450
- "stoppedReason":{"shape":"String"},
2451
- "stopCode":{"shape":"TaskStopCode"},
2452
- "connectivity":{"shape":"Connectivity"},
2453
- "connectivityAt":{"shape":"Timestamp"},
2454
- "pullStartedAt":{"shape":"Timestamp"},
2455
- "pullStoppedAt":{"shape":"Timestamp"},
2456
- "executionStoppedAt":{"shape":"Timestamp"},
2457
- "createdAt":{"shape":"Timestamp"},
2458
- "startedAt":{"shape":"Timestamp"},
2459
- "stoppingAt":{"shape":"Timestamp"},
2460
- "stoppedAt":{"shape":"Timestamp"},
2461
- "group":{"shape":"String"},
2462
- "launchType":{"shape":"LaunchType"},
2463
- "platformVersion":{"shape":"String"},
2464
- "attachments":{"shape":"Attachments"},
2465
- "healthStatus":{"shape":"HealthStatus"},
2466
- "tags":{"shape":"Tags"}
2467
- }
2468
- },
2469
- "TaskDefinition":{
2470
- "type":"structure",
2471
- "members":{
2472
- "taskDefinitionArn":{"shape":"String"},
2473
- "containerDefinitions":{"shape":"ContainerDefinitions"},
2474
- "family":{"shape":"String"},
2475
- "taskRoleArn":{"shape":"String"},
2476
- "executionRoleArn":{"shape":"String"},
2477
- "networkMode":{"shape":"NetworkMode"},
2478
- "revision":{"shape":"Integer"},
2479
- "volumes":{"shape":"VolumeList"},
2480
- "status":{"shape":"TaskDefinitionStatus"},
2481
- "requiresAttributes":{"shape":"RequiresAttributes"},
2482
- "placementConstraints":{"shape":"TaskDefinitionPlacementConstraints"},
2483
- "compatibilities":{"shape":"CompatibilityList"},
2484
- "requiresCompatibilities":{"shape":"CompatibilityList"},
2485
- "cpu":{"shape":"String"},
2486
- "memory":{"shape":"String"},
2487
- "pidMode":{"shape":"PidMode"},
2488
- "ipcMode":{"shape":"IpcMode"},
2489
- "proxyConfiguration":{"shape":"ProxyConfiguration"}
2490
- }
2491
- },
2492
- "TaskDefinitionFamilyStatus":{
2493
- "type":"string",
2494
- "enum":[
2495
- "ACTIVE",
2496
- "INACTIVE",
2497
- "ALL"
2498
- ]
2499
- },
2500
- "TaskDefinitionField":{
2501
- "type":"string",
2502
- "enum":["TAGS"]
2503
- },
2504
- "TaskDefinitionFieldList":{
2505
- "type":"list",
2506
- "member":{"shape":"TaskDefinitionField"}
2507
- },
2508
- "TaskDefinitionPlacementConstraint":{
2509
- "type":"structure",
2510
- "members":{
2511
- "type":{"shape":"TaskDefinitionPlacementConstraintType"},
2512
- "expression":{"shape":"String"}
2513
- }
2514
- },
2515
- "TaskDefinitionPlacementConstraintType":{
2516
- "type":"string",
2517
- "enum":["memberOf"]
2518
- },
2519
- "TaskDefinitionPlacementConstraints":{
2520
- "type":"list",
2521
- "member":{"shape":"TaskDefinitionPlacementConstraint"}
2522
- },
2523
- "TaskDefinitionStatus":{
2524
- "type":"string",
2525
- "enum":[
2526
- "ACTIVE",
2527
- "INACTIVE"
2528
- ]
2529
- },
2530
- "TaskField":{
2531
- "type":"string",
2532
- "enum":["TAGS"]
2533
- },
2534
- "TaskFieldList":{
2535
- "type":"list",
2536
- "member":{"shape":"TaskField"}
2537
- },
2538
- "TaskOverride":{
2539
- "type":"structure",
2540
- "members":{
2541
- "containerOverrides":{"shape":"ContainerOverrides"},
2542
- "taskRoleArn":{"shape":"String"},
2543
- "executionRoleArn":{"shape":"String"}
2544
- }
2545
- },
2546
- "TaskSet":{
2547
- "type":"structure",
2548
- "members":{
2549
- "id":{"shape":"String"},
2550
- "taskSetArn":{"shape":"String"},
2551
- "serviceArn":{"shape":"String"},
2552
- "clusterArn":{"shape":"String"},
2553
- "startedBy":{"shape":"String"},
2554
- "externalId":{"shape":"String"},
2555
- "status":{"shape":"String"},
2556
- "taskDefinition":{"shape":"String"},
2557
- "computedDesiredCount":{"shape":"Integer"},
2558
- "pendingCount":{"shape":"Integer"},
2559
- "runningCount":{"shape":"Integer"},
2560
- "createdAt":{"shape":"Timestamp"},
2561
- "updatedAt":{"shape":"Timestamp"},
2562
- "launchType":{"shape":"LaunchType"},
2563
- "platformVersion":{"shape":"String"},
2564
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2565
- "loadBalancers":{"shape":"LoadBalancers"},
2566
- "serviceRegistries":{"shape":"ServiceRegistries"},
2567
- "scale":{"shape":"Scale"},
2568
- "stabilityStatus":{"shape":"StabilityStatus"},
2569
- "stabilityStatusAt":{"shape":"Timestamp"}
2570
- }
2571
- },
2572
- "TaskSetNotFoundException":{
2573
- "type":"structure",
2574
- "members":{
2575
- },
2576
- "exception":true
2577
- },
2578
- "TaskSets":{
2579
- "type":"list",
2580
- "member":{"shape":"TaskSet"}
2581
- },
2582
- "TaskStopCode":{
2583
- "type":"string",
2584
- "enum":[
2585
- "TaskFailedToStart",
2586
- "EssentialContainerExited",
2587
- "UserInitiated"
2588
- ]
2589
- },
2590
- "Tasks":{
2591
- "type":"list",
2592
- "member":{"shape":"Task"}
2593
- },
2594
- "Timestamp":{"type":"timestamp"},
2595
- "Tmpfs":{
2596
- "type":"structure",
2597
- "required":[
2598
- "containerPath",
2599
- "size"
2600
- ],
2601
- "members":{
2602
- "containerPath":{"shape":"String"},
2603
- "size":{"shape":"Integer"},
2604
- "mountOptions":{"shape":"StringList"}
2605
- }
2606
- },
2607
- "TmpfsList":{
2608
- "type":"list",
2609
- "member":{"shape":"Tmpfs"}
2610
- },
2611
- "TransportProtocol":{
2612
- "type":"string",
2613
- "enum":[
2614
- "tcp",
2615
- "udp"
2616
- ]
2617
- },
2618
- "Ulimit":{
2619
- "type":"structure",
2620
- "required":[
2621
- "name",
2622
- "softLimit",
2623
- "hardLimit"
2624
- ],
2625
- "members":{
2626
- "name":{"shape":"UlimitName"},
2627
- "softLimit":{"shape":"Integer"},
2628
- "hardLimit":{"shape":"Integer"}
2629
- }
2630
- },
2631
- "UlimitList":{
2632
- "type":"list",
2633
- "member":{"shape":"Ulimit"}
2634
- },
2635
- "UlimitName":{
2636
- "type":"string",
2637
- "enum":[
2638
- "core",
2639
- "cpu",
2640
- "data",
2641
- "fsize",
2642
- "locks",
2643
- "memlock",
2644
- "msgqueue",
2645
- "nice",
2646
- "nofile",
2647
- "nproc",
2648
- "rss",
2649
- "rtprio",
2650
- "rttime",
2651
- "sigpending",
2652
- "stack"
2653
- ]
2654
- },
2655
- "UnsupportedFeatureException":{
2656
- "type":"structure",
2657
- "members":{
2658
- },
2659
- "exception":true
2660
- },
2661
- "UntagResourceRequest":{
2662
- "type":"structure",
2663
- "required":[
2664
- "resourceArn",
2665
- "tagKeys"
2666
- ],
2667
- "members":{
2668
- "resourceArn":{"shape":"String"},
2669
- "tagKeys":{"shape":"TagKeys"}
2670
- }
2671
- },
2672
- "UntagResourceResponse":{
2673
- "type":"structure",
2674
- "members":{
2675
- }
2676
- },
2677
- "UpdateContainerAgentRequest":{
2678
- "type":"structure",
2679
- "required":["containerInstance"],
2680
- "members":{
2681
- "cluster":{"shape":"String"},
2682
- "containerInstance":{"shape":"String"}
2683
- }
2684
- },
2685
- "UpdateContainerAgentResponse":{
2686
- "type":"structure",
2687
- "members":{
2688
- "containerInstance":{"shape":"ContainerInstance"}
2689
- }
2690
- },
2691
- "UpdateContainerInstancesStateRequest":{
2692
- "type":"structure",
2693
- "required":[
2694
- "containerInstances",
2695
- "status"
2696
- ],
2697
- "members":{
2698
- "cluster":{"shape":"String"},
2699
- "containerInstances":{"shape":"StringList"},
2700
- "status":{"shape":"ContainerInstanceStatus"}
2701
- }
2702
- },
2703
- "UpdateContainerInstancesStateResponse":{
2704
- "type":"structure",
2705
- "members":{
2706
- "containerInstances":{"shape":"ContainerInstances"},
2707
- "failures":{"shape":"Failures"}
2708
- }
2709
- },
2710
- "UpdateInProgressException":{
2711
- "type":"structure",
2712
- "members":{
2713
- },
2714
- "exception":true
2715
- },
2716
- "UpdateServicePrimaryTaskSetRequest":{
2717
- "type":"structure",
2718
- "required":[
2719
- "cluster",
2720
- "service",
2721
- "primaryTaskSet"
2722
- ],
2723
- "members":{
2724
- "cluster":{"shape":"String"},
2725
- "service":{"shape":"String"},
2726
- "primaryTaskSet":{"shape":"String"}
2727
- }
2728
- },
2729
- "UpdateServicePrimaryTaskSetResponse":{
2730
- "type":"structure",
2731
- "members":{
2732
- "taskSet":{"shape":"TaskSet"}
2733
- }
2734
- },
2735
- "UpdateServiceRequest":{
2736
- "type":"structure",
2737
- "required":["service"],
2738
- "members":{
2739
- "cluster":{"shape":"String"},
2740
- "service":{"shape":"String"},
2741
- "desiredCount":{"shape":"BoxedInteger"},
2742
- "taskDefinition":{"shape":"String"},
2743
- "deploymentConfiguration":{"shape":"DeploymentConfiguration"},
2744
- "networkConfiguration":{"shape":"NetworkConfiguration"},
2745
- "platformVersion":{"shape":"String"},
2746
- "forceNewDeployment":{"shape":"Boolean"},
2747
- "healthCheckGracePeriodSeconds":{"shape":"BoxedInteger"}
2748
- }
2749
- },
2750
- "UpdateServiceResponse":{
2751
- "type":"structure",
2752
- "members":{
2753
- "service":{"shape":"Service"}
2754
- }
2755
- },
2756
- "UpdateTaskSetRequest":{
2757
- "type":"structure",
2758
- "required":[
2759
- "cluster",
2760
- "service",
2761
- "taskSet",
2762
- "scale"
2763
- ],
2764
- "members":{
2765
- "cluster":{"shape":"String"},
2766
- "service":{"shape":"String"},
2767
- "taskSet":{"shape":"String"},
2768
- "scale":{"shape":"Scale"}
2769
- }
2770
- },
2771
- "UpdateTaskSetResponse":{
2772
- "type":"structure",
2773
- "members":{
2774
- "taskSet":{"shape":"TaskSet"}
2775
- }
2776
- },
2777
- "VersionInfo":{
2778
- "type":"structure",
2779
- "members":{
2780
- "agentVersion":{"shape":"String"},
2781
- "agentHash":{"shape":"String"},
2782
- "dockerVersion":{"shape":"String"}
2783
- }
2784
- },
2785
- "Volume":{
2786
- "type":"structure",
2787
- "members":{
2788
- "name":{"shape":"String"},
2789
- "host":{"shape":"HostVolumeProperties"},
2790
- "dockerVolumeConfiguration":{"shape":"DockerVolumeConfiguration"}
2791
- }
2792
- },
2793
- "VolumeFrom":{
2794
- "type":"structure",
2795
- "members":{
2796
- "sourceContainer":{"shape":"String"},
2797
- "readOnly":{"shape":"BoxedBoolean"}
2798
- }
2799
- },
2800
- "VolumeFromList":{
2801
- "type":"list",
2802
- "member":{"shape":"VolumeFrom"}
2803
- },
2804
- "VolumeList":{
2805
- "type":"list",
2806
- "member":{"shape":"Volume"}
2807
- }
2808
- }
2809
- }