aws-sdk-core 2.4.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  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 +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,869 +0,0 @@
1
- {
2
- "metadata":{
3
- "apiVersion":"2013-04-15",
4
- "endpointPrefix":"support",
5
- "jsonVersion":"1.1",
6
- "serviceFullName":"AWS Support",
7
- "signatureVersion":"v4",
8
- "targetPrefix":"AWSSupport_20130415",
9
- "protocol":"json"
10
- },
11
- "operations":{
12
- "AddAttachmentsToSet":{
13
- "name":"AddAttachmentsToSet",
14
- "http":{
15
- "method":"POST",
16
- "requestUri":"/"
17
- },
18
- "input":{"shape":"AddAttachmentsToSetRequest"},
19
- "output":{"shape":"AddAttachmentsToSetResponse"},
20
- "errors":[
21
- {
22
- "shape":"InternalServerError",
23
- "exception":true,
24
- "fault":true
25
- },
26
- {
27
- "shape":"AttachmentSetIdNotFound",
28
- "exception":true
29
- },
30
- {
31
- "shape":"AttachmentSetExpired",
32
- "exception":true
33
- },
34
- {
35
- "shape":"AttachmentSetSizeLimitExceeded",
36
- "exception":true
37
- },
38
- {
39
- "shape":"AttachmentLimitExceeded",
40
- "exception":true
41
- }
42
- ]
43
- },
44
- "AddCommunicationToCase":{
45
- "name":"AddCommunicationToCase",
46
- "http":{
47
- "method":"POST",
48
- "requestUri":"/"
49
- },
50
- "input":{"shape":"AddCommunicationToCaseRequest"},
51
- "output":{"shape":"AddCommunicationToCaseResponse"},
52
- "errors":[
53
- {
54
- "shape":"InternalServerError",
55
- "exception":true,
56
- "fault":true
57
- },
58
- {
59
- "shape":"CaseIdNotFound",
60
- "exception":true
61
- },
62
- {
63
- "shape":"AttachmentSetIdNotFound",
64
- "exception":true
65
- },
66
- {
67
- "shape":"AttachmentSetExpired",
68
- "exception":true
69
- }
70
- ]
71
- },
72
- "CreateCase":{
73
- "name":"CreateCase",
74
- "http":{
75
- "method":"POST",
76
- "requestUri":"/"
77
- },
78
- "input":{"shape":"CreateCaseRequest"},
79
- "output":{"shape":"CreateCaseResponse"},
80
- "errors":[
81
- {
82
- "shape":"InternalServerError",
83
- "exception":true,
84
- "fault":true
85
- },
86
- {
87
- "shape":"CaseCreationLimitExceeded",
88
- "exception":true
89
- },
90
- {
91
- "shape":"AttachmentSetIdNotFound",
92
- "exception":true
93
- },
94
- {
95
- "shape":"AttachmentSetExpired",
96
- "exception":true
97
- }
98
- ]
99
- },
100
- "DescribeAttachment":{
101
- "name":"DescribeAttachment",
102
- "http":{
103
- "method":"POST",
104
- "requestUri":"/"
105
- },
106
- "input":{"shape":"DescribeAttachmentRequest"},
107
- "output":{"shape":"DescribeAttachmentResponse"},
108
- "errors":[
109
- {
110
- "shape":"InternalServerError",
111
- "exception":true,
112
- "fault":true
113
- },
114
- {
115
- "shape":"DescribeAttachmentLimitExceeded",
116
- "exception":true
117
- },
118
- {
119
- "shape":"AttachmentIdNotFound",
120
- "exception":true
121
- }
122
- ]
123
- },
124
- "DescribeCases":{
125
- "name":"DescribeCases",
126
- "http":{
127
- "method":"POST",
128
- "requestUri":"/"
129
- },
130
- "input":{"shape":"DescribeCasesRequest"},
131
- "output":{"shape":"DescribeCasesResponse"},
132
- "errors":[
133
- {
134
- "shape":"InternalServerError",
135
- "exception":true,
136
- "fault":true
137
- },
138
- {
139
- "shape":"CaseIdNotFound",
140
- "exception":true
141
- }
142
- ]
143
- },
144
- "DescribeCommunications":{
145
- "name":"DescribeCommunications",
146
- "http":{
147
- "method":"POST",
148
- "requestUri":"/"
149
- },
150
- "input":{"shape":"DescribeCommunicationsRequest"},
151
- "output":{"shape":"DescribeCommunicationsResponse"},
152
- "errors":[
153
- {
154
- "shape":"InternalServerError",
155
- "exception":true,
156
- "fault":true
157
- },
158
- {
159
- "shape":"CaseIdNotFound",
160
- "exception":true
161
- }
162
- ]
163
- },
164
- "DescribeServices":{
165
- "name":"DescribeServices",
166
- "http":{
167
- "method":"POST",
168
- "requestUri":"/"
169
- },
170
- "input":{"shape":"DescribeServicesRequest"},
171
- "output":{"shape":"DescribeServicesResponse"},
172
- "errors":[
173
- {
174
- "shape":"InternalServerError",
175
- "exception":true,
176
- "fault":true
177
- }
178
- ]
179
- },
180
- "DescribeSeverityLevels":{
181
- "name":"DescribeSeverityLevels",
182
- "http":{
183
- "method":"POST",
184
- "requestUri":"/"
185
- },
186
- "input":{"shape":"DescribeSeverityLevelsRequest"},
187
- "output":{"shape":"DescribeSeverityLevelsResponse"},
188
- "errors":[
189
- {
190
- "shape":"InternalServerError",
191
- "exception":true,
192
- "fault":true
193
- }
194
- ]
195
- },
196
- "DescribeTrustedAdvisorCheckRefreshStatuses":{
197
- "name":"DescribeTrustedAdvisorCheckRefreshStatuses",
198
- "http":{
199
- "method":"POST",
200
- "requestUri":"/"
201
- },
202
- "input":{"shape":"DescribeTrustedAdvisorCheckRefreshStatusesRequest"},
203
- "output":{"shape":"DescribeTrustedAdvisorCheckRefreshStatusesResponse"},
204
- "errors":[
205
- {
206
- "shape":"InternalServerError",
207
- "exception":true,
208
- "fault":true
209
- }
210
- ]
211
- },
212
- "DescribeTrustedAdvisorCheckResult":{
213
- "name":"DescribeTrustedAdvisorCheckResult",
214
- "http":{
215
- "method":"POST",
216
- "requestUri":"/"
217
- },
218
- "input":{"shape":"DescribeTrustedAdvisorCheckResultRequest"},
219
- "output":{"shape":"DescribeTrustedAdvisorCheckResultResponse"},
220
- "errors":[
221
- {
222
- "shape":"InternalServerError",
223
- "exception":true,
224
- "fault":true
225
- }
226
- ]
227
- },
228
- "DescribeTrustedAdvisorCheckSummaries":{
229
- "name":"DescribeTrustedAdvisorCheckSummaries",
230
- "http":{
231
- "method":"POST",
232
- "requestUri":"/"
233
- },
234
- "input":{"shape":"DescribeTrustedAdvisorCheckSummariesRequest"},
235
- "output":{"shape":"DescribeTrustedAdvisorCheckSummariesResponse"},
236
- "errors":[
237
- {
238
- "shape":"InternalServerError",
239
- "exception":true,
240
- "fault":true
241
- }
242
- ]
243
- },
244
- "DescribeTrustedAdvisorChecks":{
245
- "name":"DescribeTrustedAdvisorChecks",
246
- "http":{
247
- "method":"POST",
248
- "requestUri":"/"
249
- },
250
- "input":{"shape":"DescribeTrustedAdvisorChecksRequest"},
251
- "output":{"shape":"DescribeTrustedAdvisorChecksResponse"},
252
- "errors":[
253
- {
254
- "shape":"InternalServerError",
255
- "exception":true,
256
- "fault":true
257
- }
258
- ]
259
- },
260
- "RefreshTrustedAdvisorCheck":{
261
- "name":"RefreshTrustedAdvisorCheck",
262
- "http":{
263
- "method":"POST",
264
- "requestUri":"/"
265
- },
266
- "input":{"shape":"RefreshTrustedAdvisorCheckRequest"},
267
- "output":{"shape":"RefreshTrustedAdvisorCheckResponse"},
268
- "errors":[
269
- {
270
- "shape":"InternalServerError",
271
- "exception":true,
272
- "fault":true
273
- }
274
- ]
275
- },
276
- "ResolveCase":{
277
- "name":"ResolveCase",
278
- "http":{
279
- "method":"POST",
280
- "requestUri":"/"
281
- },
282
- "input":{"shape":"ResolveCaseRequest"},
283
- "output":{"shape":"ResolveCaseResponse"},
284
- "errors":[
285
- {
286
- "shape":"InternalServerError",
287
- "exception":true,
288
- "fault":true
289
- },
290
- {
291
- "shape":"CaseIdNotFound",
292
- "exception":true
293
- }
294
- ]
295
- }
296
- },
297
- "shapes":{
298
- "AddAttachmentsToSetRequest":{
299
- "type":"structure",
300
- "required":["attachments"],
301
- "members":{
302
- "attachmentSetId":{"shape":"AttachmentSetId"},
303
- "attachments":{"shape":"Attachments"}
304
- }
305
- },
306
- "AddAttachmentsToSetResponse":{
307
- "type":"structure",
308
- "members":{
309
- "attachmentSetId":{"shape":"AttachmentSetId"},
310
- "expiryTime":{"shape":"ExpiryTime"}
311
- }
312
- },
313
- "AddCommunicationToCaseRequest":{
314
- "type":"structure",
315
- "required":["communicationBody"],
316
- "members":{
317
- "caseId":{"shape":"CaseId"},
318
- "communicationBody":{"shape":"CommunicationBody"},
319
- "ccEmailAddresses":{"shape":"CcEmailAddressList"},
320
- "attachmentSetId":{"shape":"AttachmentSetId"}
321
- }
322
- },
323
- "AddCommunicationToCaseResponse":{
324
- "type":"structure",
325
- "members":{
326
- "result":{"shape":"Result"}
327
- }
328
- },
329
- "AfterTime":{"type":"string"},
330
- "Attachment":{
331
- "type":"structure",
332
- "members":{
333
- "fileName":{"shape":"FileName"},
334
- "data":{"shape":"Data"}
335
- }
336
- },
337
- "AttachmentDetails":{
338
- "type":"structure",
339
- "members":{
340
- "attachmentId":{"shape":"AttachmentId"},
341
- "fileName":{"shape":"FileName"}
342
- }
343
- },
344
- "AttachmentId":{"type":"string"},
345
- "AttachmentIdNotFound":{
346
- "type":"structure",
347
- "members":{
348
- "message":{"shape":"ErrorMessage"}
349
- },
350
- "exception":true
351
- },
352
- "AttachmentLimitExceeded":{
353
- "type":"structure",
354
- "members":{
355
- "message":{"shape":"ErrorMessage"}
356
- },
357
- "exception":true
358
- },
359
- "AttachmentSet":{
360
- "type":"list",
361
- "member":{"shape":"AttachmentDetails"}
362
- },
363
- "AttachmentSetExpired":{
364
- "type":"structure",
365
- "members":{
366
- "message":{"shape":"ErrorMessage"}
367
- },
368
- "exception":true
369
- },
370
- "AttachmentSetId":{"type":"string"},
371
- "AttachmentSetIdNotFound":{
372
- "type":"structure",
373
- "members":{
374
- "message":{"shape":"ErrorMessage"}
375
- },
376
- "exception":true
377
- },
378
- "AttachmentSetSizeLimitExceeded":{
379
- "type":"structure",
380
- "members":{
381
- "message":{"shape":"ErrorMessage"}
382
- },
383
- "exception":true
384
- },
385
- "Attachments":{
386
- "type":"list",
387
- "member":{"shape":"Attachment"}
388
- },
389
- "BeforeTime":{"type":"string"},
390
- "Boolean":{"type":"boolean"},
391
- "CaseCreationLimitExceeded":{
392
- "type":"structure",
393
- "members":{
394
- "message":{"shape":"ErrorMessage"}
395
- },
396
- "exception":true
397
- },
398
- "CaseDetails":{
399
- "type":"structure",
400
- "members":{
401
- "caseId":{"shape":"CaseId"},
402
- "displayId":{"shape":"DisplayId"},
403
- "subject":{"shape":"Subject"},
404
- "status":{"shape":"Status"},
405
- "serviceCode":{"shape":"ServiceCode"},
406
- "categoryCode":{"shape":"CategoryCode"},
407
- "severityCode":{"shape":"SeverityCode"},
408
- "submittedBy":{"shape":"SubmittedBy"},
409
- "timeCreated":{"shape":"TimeCreated"},
410
- "recentCommunications":{"shape":"RecentCaseCommunications"},
411
- "ccEmailAddresses":{"shape":"CcEmailAddressList"},
412
- "language":{"shape":"Language"}
413
- }
414
- },
415
- "CaseId":{"type":"string"},
416
- "CaseIdList":{
417
- "type":"list",
418
- "member":{"shape":"CaseId"},
419
- "min":0,
420
- "max":100
421
- },
422
- "CaseIdNotFound":{
423
- "type":"structure",
424
- "members":{
425
- "message":{"shape":"ErrorMessage"}
426
- },
427
- "exception":true
428
- },
429
- "CaseList":{
430
- "type":"list",
431
- "member":{"shape":"CaseDetails"}
432
- },
433
- "CaseStatus":{"type":"string"},
434
- "Category":{
435
- "type":"structure",
436
- "members":{
437
- "code":{"shape":"CategoryCode"},
438
- "name":{"shape":"CategoryName"}
439
- }
440
- },
441
- "CategoryCode":{"type":"string"},
442
- "CategoryList":{
443
- "type":"list",
444
- "member":{"shape":"Category"}
445
- },
446
- "CategoryName":{"type":"string"},
447
- "CcEmailAddress":{"type":"string"},
448
- "CcEmailAddressList":{
449
- "type":"list",
450
- "member":{"shape":"CcEmailAddress"}
451
- },
452
- "Communication":{
453
- "type":"structure",
454
- "members":{
455
- "caseId":{"shape":"CaseId"},
456
- "body":{"shape":"CommunicationBody"},
457
- "submittedBy":{"shape":"SubmittedBy"},
458
- "timeCreated":{"shape":"TimeCreated"},
459
- "attachmentSet":{"shape":"AttachmentSet"}
460
- }
461
- },
462
- "CommunicationBody":{"type":"string"},
463
- "CommunicationList":{
464
- "type":"list",
465
- "member":{"shape":"Communication"}
466
- },
467
- "CreateCaseRequest":{
468
- "type":"structure",
469
- "required":[
470
- "subject",
471
- "communicationBody"
472
- ],
473
- "members":{
474
- "subject":{"shape":"Subject"},
475
- "serviceCode":{"shape":"ServiceCode"},
476
- "severityCode":{"shape":"SeverityCode"},
477
- "categoryCode":{"shape":"CategoryCode"},
478
- "communicationBody":{"shape":"CommunicationBody"},
479
- "ccEmailAddresses":{"shape":"CcEmailAddressList"},
480
- "language":{"shape":"Language"},
481
- "issueType":{"shape":"IssueType"},
482
- "attachmentSetId":{"shape":"AttachmentSetId"}
483
- }
484
- },
485
- "CreateCaseResponse":{
486
- "type":"structure",
487
- "members":{
488
- "caseId":{"shape":"CaseId"}
489
- }
490
- },
491
- "Data":{"type":"blob"},
492
- "DescribeAttachmentLimitExceeded":{
493
- "type":"structure",
494
- "members":{
495
- "message":{"shape":"ErrorMessage"}
496
- },
497
- "exception":true
498
- },
499
- "DescribeAttachmentRequest":{
500
- "type":"structure",
501
- "required":["attachmentId"],
502
- "members":{
503
- "attachmentId":{"shape":"AttachmentId"}
504
- }
505
- },
506
- "DescribeAttachmentResponse":{
507
- "type":"structure",
508
- "members":{
509
- "attachment":{"shape":"Attachment"}
510
- }
511
- },
512
- "DescribeCasesRequest":{
513
- "type":"structure",
514
- "members":{
515
- "caseIdList":{"shape":"CaseIdList"},
516
- "displayId":{"shape":"DisplayId"},
517
- "afterTime":{"shape":"AfterTime"},
518
- "beforeTime":{"shape":"BeforeTime"},
519
- "includeResolvedCases":{"shape":"IncludeResolvedCases"},
520
- "nextToken":{"shape":"NextToken"},
521
- "maxResults":{"shape":"MaxResults"},
522
- "language":{"shape":"Language"},
523
- "includeCommunications":{"shape":"IncludeCommunications"}
524
- }
525
- },
526
- "DescribeCasesResponse":{
527
- "type":"structure",
528
- "members":{
529
- "cases":{"shape":"CaseList"},
530
- "nextToken":{"shape":"NextToken"}
531
- }
532
- },
533
- "DescribeCommunicationsRequest":{
534
- "type":"structure",
535
- "required":["caseId"],
536
- "members":{
537
- "caseId":{"shape":"CaseId"},
538
- "beforeTime":{"shape":"BeforeTime"},
539
- "afterTime":{"shape":"AfterTime"},
540
- "nextToken":{"shape":"NextToken"},
541
- "maxResults":{"shape":"MaxResults"}
542
- }
543
- },
544
- "DescribeCommunicationsResponse":{
545
- "type":"structure",
546
- "members":{
547
- "communications":{"shape":"CommunicationList"},
548
- "nextToken":{"shape":"NextToken"}
549
- }
550
- },
551
- "DescribeServicesRequest":{
552
- "type":"structure",
553
- "members":{
554
- "serviceCodeList":{"shape":"ServiceCodeList"},
555
- "language":{"shape":"Language"}
556
- }
557
- },
558
- "DescribeServicesResponse":{
559
- "type":"structure",
560
- "members":{
561
- "services":{"shape":"ServiceList"}
562
- }
563
- },
564
- "DescribeSeverityLevelsRequest":{
565
- "type":"structure",
566
- "members":{
567
- "language":{"shape":"Language"}
568
- }
569
- },
570
- "DescribeSeverityLevelsResponse":{
571
- "type":"structure",
572
- "members":{
573
- "severityLevels":{"shape":"SeverityLevelsList"}
574
- }
575
- },
576
- "DescribeTrustedAdvisorCheckRefreshStatusesRequest":{
577
- "type":"structure",
578
- "required":["checkIds"],
579
- "members":{
580
- "checkIds":{"shape":"StringList"}
581
- }
582
- },
583
- "DescribeTrustedAdvisorCheckRefreshStatusesResponse":{
584
- "type":"structure",
585
- "required":["statuses"],
586
- "members":{
587
- "statuses":{"shape":"TrustedAdvisorCheckRefreshStatusList"}
588
- }
589
- },
590
- "DescribeTrustedAdvisorCheckResultRequest":{
591
- "type":"structure",
592
- "required":["checkId"],
593
- "members":{
594
- "checkId":{"shape":"String"},
595
- "language":{"shape":"String"}
596
- }
597
- },
598
- "DescribeTrustedAdvisorCheckResultResponse":{
599
- "type":"structure",
600
- "members":{
601
- "result":{"shape":"TrustedAdvisorCheckResult"}
602
- }
603
- },
604
- "DescribeTrustedAdvisorCheckSummariesRequest":{
605
- "type":"structure",
606
- "required":["checkIds"],
607
- "members":{
608
- "checkIds":{"shape":"StringList"}
609
- }
610
- },
611
- "DescribeTrustedAdvisorCheckSummariesResponse":{
612
- "type":"structure",
613
- "required":["summaries"],
614
- "members":{
615
- "summaries":{"shape":"TrustedAdvisorCheckSummaryList"}
616
- }
617
- },
618
- "DescribeTrustedAdvisorChecksRequest":{
619
- "type":"structure",
620
- "required":["language"],
621
- "members":{
622
- "language":{"shape":"String"}
623
- }
624
- },
625
- "DescribeTrustedAdvisorChecksResponse":{
626
- "type":"structure",
627
- "required":["checks"],
628
- "members":{
629
- "checks":{"shape":"TrustedAdvisorCheckList"}
630
- }
631
- },
632
- "DisplayId":{"type":"string"},
633
- "Double":{"type":"double"},
634
- "ErrorMessage":{"type":"string"},
635
- "ExpiryTime":{"type":"string"},
636
- "FileName":{"type":"string"},
637
- "IncludeCommunications":{"type":"boolean"},
638
- "IncludeResolvedCases":{"type":"boolean"},
639
- "InternalServerError":{
640
- "type":"structure",
641
- "members":{
642
- "message":{"shape":"ErrorMessage"}
643
- },
644
- "exception":true,
645
- "fault":true
646
- },
647
- "IssueType":{"type":"string"},
648
- "Language":{"type":"string"},
649
- "Long":{"type":"long"},
650
- "MaxResults":{
651
- "type":"integer",
652
- "min":10,
653
- "max":100
654
- },
655
- "NextToken":{"type":"string"},
656
- "RecentCaseCommunications":{
657
- "type":"structure",
658
- "members":{
659
- "communications":{"shape":"CommunicationList"},
660
- "nextToken":{"shape":"NextToken"}
661
- }
662
- },
663
- "RefreshTrustedAdvisorCheckRequest":{
664
- "type":"structure",
665
- "required":["checkId"],
666
- "members":{
667
- "checkId":{"shape":"String"}
668
- }
669
- },
670
- "RefreshTrustedAdvisorCheckResponse":{
671
- "type":"structure",
672
- "required":["status"],
673
- "members":{
674
- "status":{"shape":"TrustedAdvisorCheckRefreshStatus"}
675
- }
676
- },
677
- "ResolveCaseRequest":{
678
- "type":"structure",
679
- "members":{
680
- "caseId":{"shape":"CaseId"}
681
- }
682
- },
683
- "ResolveCaseResponse":{
684
- "type":"structure",
685
- "members":{
686
- "initialCaseStatus":{"shape":"CaseStatus"},
687
- "finalCaseStatus":{"shape":"CaseStatus"}
688
- }
689
- },
690
- "Result":{"type":"boolean"},
691
- "Service":{
692
- "type":"structure",
693
- "members":{
694
- "code":{"shape":"ServiceCode"},
695
- "name":{"shape":"ServiceName"},
696
- "categories":{"shape":"CategoryList"}
697
- }
698
- },
699
- "ServiceCode":{
700
- "type":"string",
701
- "pattern":"[0-9a-z\\-_]+"
702
- },
703
- "ServiceCodeList":{
704
- "type":"list",
705
- "member":{"shape":"ServiceCode"},
706
- "min":0,
707
- "max":100
708
- },
709
- "ServiceList":{
710
- "type":"list",
711
- "member":{"shape":"Service"}
712
- },
713
- "ServiceName":{"type":"string"},
714
- "SeverityCode":{"type":"string"},
715
- "SeverityLevel":{
716
- "type":"structure",
717
- "members":{
718
- "code":{"shape":"SeverityLevelCode"},
719
- "name":{"shape":"SeverityLevelName"}
720
- }
721
- },
722
- "SeverityLevelCode":{"type":"string"},
723
- "SeverityLevelName":{"type":"string"},
724
- "SeverityLevelsList":{
725
- "type":"list",
726
- "member":{"shape":"SeverityLevel"}
727
- },
728
- "Status":{"type":"string"},
729
- "String":{"type":"string"},
730
- "StringList":{
731
- "type":"list",
732
- "member":{"shape":"String"}
733
- },
734
- "Subject":{"type":"string"},
735
- "SubmittedBy":{"type":"string"},
736
- "TimeCreated":{"type":"string"},
737
- "TrustedAdvisorCategorySpecificSummary":{
738
- "type":"structure",
739
- "members":{
740
- "costOptimizing":{"shape":"TrustedAdvisorCostOptimizingSummary"}
741
- }
742
- },
743
- "TrustedAdvisorCheckDescription":{
744
- "type":"structure",
745
- "required":[
746
- "id",
747
- "name",
748
- "description",
749
- "category",
750
- "metadata"
751
- ],
752
- "members":{
753
- "id":{"shape":"String"},
754
- "name":{"shape":"String"},
755
- "description":{"shape":"String"},
756
- "category":{"shape":"String"},
757
- "metadata":{"shape":"StringList"}
758
- }
759
- },
760
- "TrustedAdvisorCheckList":{
761
- "type":"list",
762
- "member":{"shape":"TrustedAdvisorCheckDescription"}
763
- },
764
- "TrustedAdvisorCheckRefreshStatus":{
765
- "type":"structure",
766
- "required":[
767
- "checkId",
768
- "status",
769
- "millisUntilNextRefreshable"
770
- ],
771
- "members":{
772
- "checkId":{"shape":"String"},
773
- "status":{"shape":"String"},
774
- "millisUntilNextRefreshable":{"shape":"Long"}
775
- }
776
- },
777
- "TrustedAdvisorCheckRefreshStatusList":{
778
- "type":"list",
779
- "member":{"shape":"TrustedAdvisorCheckRefreshStatus"}
780
- },
781
- "TrustedAdvisorCheckResult":{
782
- "type":"structure",
783
- "required":[
784
- "checkId",
785
- "timestamp",
786
- "status",
787
- "resourcesSummary",
788
- "categorySpecificSummary",
789
- "flaggedResources"
790
- ],
791
- "members":{
792
- "checkId":{"shape":"String"},
793
- "timestamp":{"shape":"String"},
794
- "status":{"shape":"String"},
795
- "resourcesSummary":{"shape":"TrustedAdvisorResourcesSummary"},
796
- "categorySpecificSummary":{"shape":"TrustedAdvisorCategorySpecificSummary"},
797
- "flaggedResources":{"shape":"TrustedAdvisorResourceDetailList"}
798
- }
799
- },
800
- "TrustedAdvisorCheckSummary":{
801
- "type":"structure",
802
- "required":[
803
- "checkId",
804
- "timestamp",
805
- "status",
806
- "resourcesSummary",
807
- "categorySpecificSummary"
808
- ],
809
- "members":{
810
- "checkId":{"shape":"String"},
811
- "timestamp":{"shape":"String"},
812
- "status":{"shape":"String"},
813
- "hasFlaggedResources":{"shape":"Boolean"},
814
- "resourcesSummary":{"shape":"TrustedAdvisorResourcesSummary"},
815
- "categorySpecificSummary":{"shape":"TrustedAdvisorCategorySpecificSummary"}
816
- }
817
- },
818
- "TrustedAdvisorCheckSummaryList":{
819
- "type":"list",
820
- "member":{"shape":"TrustedAdvisorCheckSummary"}
821
- },
822
- "TrustedAdvisorCostOptimizingSummary":{
823
- "type":"structure",
824
- "required":[
825
- "estimatedMonthlySavings",
826
- "estimatedPercentMonthlySavings"
827
- ],
828
- "members":{
829
- "estimatedMonthlySavings":{"shape":"Double"},
830
- "estimatedPercentMonthlySavings":{"shape":"Double"}
831
- }
832
- },
833
- "TrustedAdvisorResourceDetail":{
834
- "type":"structure",
835
- "required":[
836
- "status",
837
- "region",
838
- "resourceId",
839
- "metadata"
840
- ],
841
- "members":{
842
- "status":{"shape":"String"},
843
- "region":{"shape":"String"},
844
- "resourceId":{"shape":"String"},
845
- "isSuppressed":{"shape":"Boolean"},
846
- "metadata":{"shape":"StringList"}
847
- }
848
- },
849
- "TrustedAdvisorResourceDetailList":{
850
- "type":"list",
851
- "member":{"shape":"TrustedAdvisorResourceDetail"}
852
- },
853
- "TrustedAdvisorResourcesSummary":{
854
- "type":"structure",
855
- "required":[
856
- "resourcesProcessed",
857
- "resourcesFlagged",
858
- "resourcesIgnored",
859
- "resourcesSuppressed"
860
- ],
861
- "members":{
862
- "resourcesProcessed":{"shape":"Long"},
863
- "resourcesFlagged":{"shape":"Long"},
864
- "resourcesIgnored":{"shape":"Long"},
865
- "resourcesSuppressed":{"shape":"Long"}
866
- }
867
- }
868
- }
869
- }