aws-sdk-core 2.11.434 → 3.89.0

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