aws-sdk-core 2.11.400 → 3.77.0

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