aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,1017 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "CreateIPSet": [
5
- {
6
- "input": {
7
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
8
- "Name": "MyIPSetFriendlyName"
9
- },
10
- "output": {
11
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
12
- "IPSet": {
13
- "IPSetDescriptors": [
14
- {
15
- "Type": "IPV4",
16
- "Value": "192.0.2.44/32"
17
- }
18
- ],
19
- "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
20
- "Name": "MyIPSetFriendlyName"
21
- }
22
- },
23
- "comments": {
24
- "input": {
25
- },
26
- "output": {
27
- }
28
- },
29
- "description": "The following example creates an IP match set named MyIPSetFriendlyName.",
30
- "id": "createipset-1472501003122",
31
- "title": "To create an IP set"
32
- }
33
- ],
34
- "CreateRule": [
35
- {
36
- "input": {
37
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
38
- "MetricName": "WAFByteHeaderRule",
39
- "Name": "WAFByteHeaderRule"
40
- },
41
- "output": {
42
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
43
- "Rule": {
44
- "MetricName": "WAFByteHeaderRule",
45
- "Name": "WAFByteHeaderRule",
46
- "Predicates": [
47
- {
48
- "DataId": "MyByteMatchSetID",
49
- "Negated": false,
50
- "Type": "ByteMatch"
51
- }
52
- ],
53
- "RuleId": "WAFRule-1-Example"
54
- }
55
- },
56
- "comments": {
57
- "input": {
58
- },
59
- "output": {
60
- }
61
- },
62
- "description": "The following example creates a rule named WAFByteHeaderRule.",
63
- "id": "createrule-1474072675555",
64
- "title": "To create a rule"
65
- }
66
- ],
67
- "CreateSizeConstraintSet": [
68
- {
69
- "input": {
70
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
71
- "Name": "MySampleSizeConstraintSet"
72
- },
73
- "output": {
74
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
75
- "SizeConstraintSet": {
76
- "Name": "MySampleSizeConstraintSet",
77
- "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
78
- "SizeConstraints": [
79
- {
80
- "ComparisonOperator": "GT",
81
- "FieldToMatch": {
82
- "Type": "QUERY_STRING"
83
- },
84
- "Size": 0,
85
- "TextTransformation": "NONE"
86
- }
87
- ]
88
- }
89
- },
90
- "comments": {
91
- "input": {
92
- },
93
- "output": {
94
- }
95
- },
96
- "description": "The following example creates size constraint set named MySampleSizeConstraintSet.",
97
- "id": "createsizeconstraint-1474299140754",
98
- "title": "To create a size constraint"
99
- }
100
- ],
101
- "CreateSqlInjectionMatchSet": [
102
- {
103
- "input": {
104
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
105
- "Name": "MySQLInjectionMatchSet"
106
- },
107
- "output": {
108
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
109
- "SqlInjectionMatchSet": {
110
- "Name": "MySQLInjectionMatchSet",
111
- "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
112
- "SqlInjectionMatchTuples": [
113
- {
114
- "FieldToMatch": {
115
- "Type": "QUERY_STRING"
116
- },
117
- "TextTransformation": "URL_DECODE"
118
- }
119
- ]
120
- }
121
- },
122
- "comments": {
123
- "input": {
124
- },
125
- "output": {
126
- }
127
- },
128
- "description": "The following example creates a SQL injection match set named MySQLInjectionMatchSet.",
129
- "id": "createsqlinjectionmatchset-1474492796105",
130
- "title": "To create a SQL injection match set"
131
- }
132
- ],
133
- "CreateWebACL": [
134
- {
135
- "input": {
136
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
137
- "DefaultAction": {
138
- "Type": "ALLOW"
139
- },
140
- "MetricName": "CreateExample",
141
- "Name": "CreateExample"
142
- },
143
- "output": {
144
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
145
- "WebACL": {
146
- "DefaultAction": {
147
- "Type": "ALLOW"
148
- },
149
- "MetricName": "CreateExample",
150
- "Name": "CreateExample",
151
- "Rules": [
152
- {
153
- "Action": {
154
- "Type": "ALLOW"
155
- },
156
- "Priority": 1,
157
- "RuleId": "WAFRule-1-Example"
158
- }
159
- ],
160
- "WebACLId": "example-46da-4444-5555-example"
161
- }
162
- },
163
- "comments": {
164
- "input": {
165
- },
166
- "output": {
167
- }
168
- },
169
- "description": "The following example creates a web ACL named CreateExample.",
170
- "id": "createwebacl-1472061481310",
171
- "title": "To create a web ACL"
172
- }
173
- ],
174
- "CreateXssMatchSet": [
175
- {
176
- "input": {
177
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
178
- "Name": "MySampleXssMatchSet"
179
- },
180
- "output": {
181
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
182
- "XssMatchSet": {
183
- "Name": "MySampleXssMatchSet",
184
- "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
185
- "XssMatchTuples": [
186
- {
187
- "FieldToMatch": {
188
- "Type": "QUERY_STRING"
189
- },
190
- "TextTransformation": "URL_DECODE"
191
- }
192
- ]
193
- }
194
- },
195
- "comments": {
196
- "input": {
197
- },
198
- "output": {
199
- }
200
- },
201
- "description": "The following example creates an XSS match set named MySampleXssMatchSet.",
202
- "id": "createxssmatchset-1474560868500",
203
- "title": "To create an XSS match set"
204
- }
205
- ],
206
- "DeleteByteMatchSet": [
207
- {
208
- "input": {
209
- "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5",
210
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
211
- },
212
- "output": {
213
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
214
- },
215
- "comments": {
216
- "input": {
217
- },
218
- "output": {
219
- }
220
- },
221
- "description": "The following example deletes a byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5.",
222
- "id": "deletebytematchset-1473367566229",
223
- "title": "To delete a byte match set"
224
- }
225
- ],
226
- "DeleteIPSet": [
227
- {
228
- "input": {
229
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
230
- "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
231
- },
232
- "output": {
233
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
234
- },
235
- "comments": {
236
- "input": {
237
- },
238
- "output": {
239
- }
240
- },
241
- "description": "The following example deletes an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
242
- "id": "deleteipset-1472767434306",
243
- "title": "To delete an IP set"
244
- }
245
- ],
246
- "DeleteRule": [
247
- {
248
- "input": {
249
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
250
- "RuleId": "WAFRule-1-Example"
251
- },
252
- "output": {
253
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
254
- },
255
- "comments": {
256
- "input": {
257
- },
258
- "output": {
259
- }
260
- },
261
- "description": "The following example deletes a rule with the ID WAFRule-1-Example.",
262
- "id": "deleterule-1474073108749",
263
- "title": "To delete a rule"
264
- }
265
- ],
266
- "DeleteSizeConstraintSet": [
267
- {
268
- "input": {
269
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
270
- "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
271
- },
272
- "output": {
273
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
274
- },
275
- "comments": {
276
- "input": {
277
- },
278
- "output": {
279
- }
280
- },
281
- "description": "The following example deletes a size constraint set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
282
- "id": "deletesizeconstraintset-1474299857905",
283
- "title": "To delete a size constraint set"
284
- }
285
- ],
286
- "DeleteSqlInjectionMatchSet": [
287
- {
288
- "input": {
289
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
290
- "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
291
- },
292
- "output": {
293
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
294
- },
295
- "comments": {
296
- "input": {
297
- },
298
- "output": {
299
- }
300
- },
301
- "description": "The following example deletes a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
302
- "id": "deletesqlinjectionmatchset-1474493373197",
303
- "title": "To delete a SQL injection match set"
304
- }
305
- ],
306
- "DeleteWebACL": [
307
- {
308
- "input": {
309
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
310
- "WebACLId": "example-46da-4444-5555-example"
311
- },
312
- "output": {
313
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
314
- },
315
- "comments": {
316
- "input": {
317
- },
318
- "output": {
319
- }
320
- },
321
- "description": "The following example deletes a web ACL with the ID example-46da-4444-5555-example.",
322
- "id": "deletewebacl-1472767755931",
323
- "title": "To delete a web ACL"
324
- }
325
- ],
326
- "DeleteXssMatchSet": [
327
- {
328
- "input": {
329
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
330
- "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
331
- },
332
- "output": {
333
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
334
- },
335
- "comments": {
336
- "input": {
337
- },
338
- "output": {
339
- }
340
- },
341
- "description": "The following example deletes an XSS match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
342
- "id": "deletexssmatchset-1474561302618",
343
- "title": "To delete an XSS match set"
344
- }
345
- ],
346
- "GetByteMatchSet": [
347
- {
348
- "input": {
349
- "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5"
350
- },
351
- "output": {
352
- "ByteMatchSet": {
353
- "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5",
354
- "ByteMatchTuples": [
355
- {
356
- "FieldToMatch": {
357
- "Data": "referer",
358
- "Type": "HEADER"
359
- },
360
- "PositionalConstraint": "CONTAINS",
361
- "TargetString": "badrefer1",
362
- "TextTransformation": "NONE"
363
- }
364
- ],
365
- "Name": "ByteMatchNameExample"
366
- }
367
- },
368
- "comments": {
369
- "input": {
370
- },
371
- "output": {
372
- }
373
- },
374
- "description": "The following example returns the details of a byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5.",
375
- "id": "getbytematchset-1473273311532",
376
- "title": "To get a byte match set"
377
- }
378
- ],
379
- "GetChangeToken": [
380
- {
381
- "input": {
382
- },
383
- "output": {
384
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
385
- },
386
- "comments": {
387
- "input": {
388
- },
389
- "output": {
390
- }
391
- },
392
- "description": "The following example returns a change token to use for a create, update or delete operation.",
393
- "id": "get-change-token-example-1471635120794",
394
- "title": "To get a change token"
395
- }
396
- ],
397
- "GetChangeTokenStatus": [
398
- {
399
- "input": {
400
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
401
- },
402
- "output": {
403
- "ChangeTokenStatus": "PENDING"
404
- },
405
- "comments": {
406
- "input": {
407
- },
408
- "output": {
409
- }
410
- },
411
- "description": "The following example returns the status of a change token with the ID abcd12f2-46da-4fdb-b8d5-fbd4c466928f.",
412
- "id": "getchangetokenstatus-1474658417107",
413
- "title": "To get the change token status"
414
- }
415
- ],
416
- "GetIPSet": [
417
- {
418
- "input": {
419
- "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
420
- },
421
- "output": {
422
- "IPSet": {
423
- "IPSetDescriptors": [
424
- {
425
- "Type": "IPV4",
426
- "Value": "192.0.2.44/32"
427
- }
428
- ],
429
- "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
430
- "Name": "MyIPSetFriendlyName"
431
- }
432
- },
433
- "comments": {
434
- "input": {
435
- },
436
- "output": {
437
- }
438
- },
439
- "description": "The following example returns the details of an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
440
- "id": "getipset-1474658688675",
441
- "title": "To get an IP set"
442
- }
443
- ],
444
- "GetRule": [
445
- {
446
- "input": {
447
- "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
448
- },
449
- "output": {
450
- "Rule": {
451
- "MetricName": "WAFByteHeaderRule",
452
- "Name": "WAFByteHeaderRule",
453
- "Predicates": [
454
- {
455
- "DataId": "MyByteMatchSetID",
456
- "Negated": false,
457
- "Type": "ByteMatch"
458
- }
459
- ],
460
- "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
461
- }
462
- },
463
- "comments": {
464
- "input": {
465
- },
466
- "output": {
467
- }
468
- },
469
- "description": "The following example returns the details of a rule with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
470
- "id": "getrule-1474659238790",
471
- "title": "To get a rule"
472
- }
473
- ],
474
- "GetSampledRequests": [
475
- {
476
- "input": {
477
- "MaxItems": 100,
478
- "RuleId": "WAFRule-1-Example",
479
- "TimeWindow": {
480
- "EndTime": "2016-09-27T15:50Z",
481
- "StartTime": "2016-09-27T15:50Z"
482
- },
483
- "WebAclId": "createwebacl-1472061481310"
484
- },
485
- "output": {
486
- "PopulationSize": 50,
487
- "SampledRequests": [
488
- {
489
- "Action": "BLOCK",
490
- "Request": {
491
- "ClientIP": "192.0.2.44",
492
- "Country": "US",
493
- "HTTPVersion": "HTTP/1.1",
494
- "Headers": [
495
- {
496
- "Name": "User-Agent",
497
- "Value": "BadBot "
498
- }
499
- ],
500
- "Method": "HEAD"
501
- },
502
- "Timestamp": "2016-09-27T14:55Z",
503
- "Weight": 1
504
- }
505
- ],
506
- "TimeWindow": {
507
- "EndTime": "2016-09-27T15:50Z",
508
- "StartTime": "2016-09-27T14:50Z"
509
- }
510
- },
511
- "comments": {
512
- "input": {
513
- },
514
- "output": {
515
- }
516
- },
517
- "description": "The following example returns detailed information about 100 requests --a sample-- that AWS WAF randomly selects from among the first 5,000 requests that your AWS resource received between the time period 2016-09-27T15:50Z to 2016-09-27T15:50Z.",
518
- "id": "getsampledrequests-1474927997195",
519
- "title": "To get a sampled requests"
520
- }
521
- ],
522
- "GetSizeConstraintSet": [
523
- {
524
- "input": {
525
- "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
526
- },
527
- "output": {
528
- "SizeConstraintSet": {
529
- "Name": "MySampleSizeConstraintSet",
530
- "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
531
- "SizeConstraints": [
532
- {
533
- "ComparisonOperator": "GT",
534
- "FieldToMatch": {
535
- "Type": "QUERY_STRING"
536
- },
537
- "Size": 0,
538
- "TextTransformation": "NONE"
539
- }
540
- ]
541
- }
542
- },
543
- "comments": {
544
- "input": {
545
- },
546
- "output": {
547
- }
548
- },
549
- "description": "The following example returns the details of a size constraint match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
550
- "id": "getsizeconstraintset-1475005422493",
551
- "title": "To get a size constraint set"
552
- }
553
- ],
554
- "GetSqlInjectionMatchSet": [
555
- {
556
- "input": {
557
- "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
558
- },
559
- "output": {
560
- "SqlInjectionMatchSet": {
561
- "Name": "MySQLInjectionMatchSet",
562
- "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
563
- "SqlInjectionMatchTuples": [
564
- {
565
- "FieldToMatch": {
566
- "Type": "QUERY_STRING"
567
- },
568
- "TextTransformation": "URL_DECODE"
569
- }
570
- ]
571
- }
572
- },
573
- "comments": {
574
- "input": {
575
- },
576
- "output": {
577
- }
578
- },
579
- "description": "The following example returns the details of a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
580
- "id": "getsqlinjectionmatchset-1475005940137",
581
- "title": "To get a SQL injection match set"
582
- }
583
- ],
584
- "GetWebACL": [
585
- {
586
- "input": {
587
- "WebACLId": "createwebacl-1472061481310"
588
- },
589
- "output": {
590
- "WebACL": {
591
- "DefaultAction": {
592
- "Type": "ALLOW"
593
- },
594
- "MetricName": "CreateExample",
595
- "Name": "CreateExample",
596
- "Rules": [
597
- {
598
- "Action": {
599
- "Type": "ALLOW"
600
- },
601
- "Priority": 1,
602
- "RuleId": "WAFRule-1-Example"
603
- }
604
- ],
605
- "WebACLId": "createwebacl-1472061481310"
606
- }
607
- },
608
- "comments": {
609
- "input": {
610
- },
611
- "output": {
612
- }
613
- },
614
- "description": "The following example returns the details of a web ACL with the ID createwebacl-1472061481310.",
615
- "id": "getwebacl-1475006348525",
616
- "title": "To get a web ACL"
617
- }
618
- ],
619
- "GetXssMatchSet": [
620
- {
621
- "input": {
622
- "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
623
- },
624
- "output": {
625
- "XssMatchSet": {
626
- "Name": "MySampleXssMatchSet",
627
- "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
628
- "XssMatchTuples": [
629
- {
630
- "FieldToMatch": {
631
- "Type": "QUERY_STRING"
632
- },
633
- "TextTransformation": "URL_DECODE"
634
- }
635
- ]
636
- }
637
- },
638
- "comments": {
639
- "input": {
640
- },
641
- "output": {
642
- }
643
- },
644
- "description": "The following example returns the details of an XSS match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
645
- "id": "getxssmatchset-1475187879017",
646
- "title": "To get an XSS match set"
647
- }
648
- ],
649
- "ListIPSets": [
650
- {
651
- "input": {
652
- "Limit": 100
653
- },
654
- "output": {
655
- "IPSets": [
656
- {
657
- "IPSetId": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
658
- "Name": "MyIPSetFriendlyName"
659
- }
660
- ]
661
- },
662
- "comments": {
663
- "input": {
664
- },
665
- "output": {
666
- }
667
- },
668
- "description": "The following example returns an array of up to 100 IP match sets.",
669
- "id": "listipsets-1472235676229",
670
- "title": "To list IP sets"
671
- }
672
- ],
673
- "ListRules": [
674
- {
675
- "input": {
676
- "Limit": 100
677
- },
678
- "output": {
679
- "Rules": [
680
- {
681
- "Name": "WAFByteHeaderRule",
682
- "RuleId": "WAFRule-1-Example"
683
- }
684
- ]
685
- },
686
- "comments": {
687
- "input": {
688
- },
689
- "output": {
690
- }
691
- },
692
- "description": "The following example returns an array of up to 100 rules.",
693
- "id": "listrules-1475258406433",
694
- "title": "To list rules"
695
- }
696
- ],
697
- "ListSizeConstraintSets": [
698
- {
699
- "input": {
700
- "Limit": 100
701
- },
702
- "output": {
703
- "SizeConstraintSets": [
704
- {
705
- "Name": "MySampleSizeConstraintSet",
706
- "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
707
- }
708
- ]
709
- },
710
- "comments": {
711
- "input": {
712
- },
713
- "output": {
714
- }
715
- },
716
- "description": "The following example returns an array of up to 100 size contraint match sets.",
717
- "id": "listsizeconstraintsets-1474300067597",
718
- "title": "To list a size constraint sets"
719
- }
720
- ],
721
- "ListSqlInjectionMatchSets": [
722
- {
723
- "input": {
724
- "Limit": 100
725
- },
726
- "output": {
727
- "SqlInjectionMatchSets": [
728
- {
729
- "Name": "MySQLInjectionMatchSet",
730
- "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
731
- }
732
- ]
733
- },
734
- "comments": {
735
- "input": {
736
- },
737
- "output": {
738
- }
739
- },
740
- "description": "The following example returns an array of up to 100 SQL injection match sets.",
741
- "id": "listsqlinjectionmatchset-1474493560103",
742
- "title": "To list SQL injection match sets"
743
- }
744
- ],
745
- "ListWebACLs": [
746
- {
747
- "input": {
748
- "Limit": 100
749
- },
750
- "output": {
751
- "WebACLs": [
752
- {
753
- "Name": "WebACLexample",
754
- "WebACLId": "webacl-1472061481310"
755
- }
756
- ]
757
- },
758
- "comments": {
759
- "input": {
760
- },
761
- "output": {
762
- }
763
- },
764
- "description": "The following example returns an array of up to 100 web ACLs.",
765
- "id": "listwebacls-1475258732691",
766
- "title": "To list Web ACLs"
767
- }
768
- ],
769
- "ListXssMatchSets": [
770
- {
771
- "input": {
772
- "Limit": 100
773
- },
774
- "output": {
775
- "XssMatchSets": [
776
- {
777
- "Name": "MySampleXssMatchSet",
778
- "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
779
- }
780
- ]
781
- },
782
- "comments": {
783
- "input": {
784
- },
785
- "output": {
786
- }
787
- },
788
- "description": "The following example returns an array of up to 100 XSS match sets.",
789
- "id": "listxssmatchsets-1474561481168",
790
- "title": "To list XSS match sets"
791
- }
792
- ],
793
- "UpdateByteMatchSet": [
794
- {
795
- "input": {
796
- "ByteMatchSetId": "exampleIDs3t-46da-4fdb-b8d5-abc321j569j5",
797
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
798
- "Updates": [
799
- {
800
- "Action": "DELETE",
801
- "ByteMatchTuple": {
802
- "FieldToMatch": {
803
- "Data": "referer",
804
- "Type": "HEADER"
805
- },
806
- "PositionalConstraint": "CONTAINS",
807
- "TargetString": "badrefer1",
808
- "TextTransformation": "NONE"
809
- }
810
- }
811
- ]
812
- },
813
- "output": {
814
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
815
- },
816
- "comments": {
817
- "input": {
818
- },
819
- "output": {
820
- }
821
- },
822
- "description": "The following example deletes a ByteMatchTuple object (filters) in an byte match set with the ID exampleIDs3t-46da-4fdb-b8d5-abc321j569j5.",
823
- "id": "updatebytematchset-1475259074558",
824
- "title": "To update a byte match set"
825
- }
826
- ],
827
- "UpdateIPSet": [
828
- {
829
- "input": {
830
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
831
- "IPSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
832
- "Updates": [
833
- {
834
- "Action": "DELETE",
835
- "IPSetDescriptor": {
836
- "Type": "IPV4",
837
- "Value": "192.0.2.44/32"
838
- }
839
- }
840
- ]
841
- },
842
- "output": {
843
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
844
- },
845
- "comments": {
846
- "input": {
847
- },
848
- "output": {
849
- }
850
- },
851
- "description": "The following example deletes an IPSetDescriptor object in an IP match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
852
- "id": "updateipset-1475259733625",
853
- "title": "To update an IP set"
854
- }
855
- ],
856
- "UpdateRule": [
857
- {
858
- "input": {
859
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
860
- "RuleId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
861
- "Updates": [
862
- {
863
- "Action": "DELETE",
864
- "Predicate": {
865
- "DataId": "MyByteMatchSetID",
866
- "Negated": false,
867
- "Type": "ByteMatch"
868
- }
869
- }
870
- ]
871
- },
872
- "output": {
873
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
874
- },
875
- "comments": {
876
- "input": {
877
- },
878
- "output": {
879
- }
880
- },
881
- "description": "The following example deletes a Predicate object in a rule with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
882
- "id": "updaterule-1475260064720",
883
- "title": "To update a rule"
884
- }
885
- ],
886
- "UpdateSizeConstraintSet": [
887
- {
888
- "input": {
889
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
890
- "SizeConstraintSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
891
- "Updates": [
892
- {
893
- "Action": "DELETE",
894
- "SizeConstraint": {
895
- "ComparisonOperator": "GT",
896
- "FieldToMatch": {
897
- "Type": "QUERY_STRING"
898
- },
899
- "Size": 0,
900
- "TextTransformation": "NONE"
901
- }
902
- }
903
- ]
904
- },
905
- "output": {
906
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
907
- },
908
- "comments": {
909
- "input": {
910
- },
911
- "output": {
912
- }
913
- },
914
- "description": "The following example deletes a SizeConstraint object (filters) in a size constraint set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
915
- "id": "updatesizeconstraintset-1475531697891",
916
- "title": "To update a size constraint set"
917
- }
918
- ],
919
- "UpdateSqlInjectionMatchSet": [
920
- {
921
- "input": {
922
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
923
- "SqlInjectionMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5",
924
- "Updates": [
925
- {
926
- "Action": "DELETE",
927
- "SqlInjectionMatchTuple": {
928
- "FieldToMatch": {
929
- "Type": "QUERY_STRING"
930
- },
931
- "TextTransformation": "URL_DECODE"
932
- }
933
- }
934
- ]
935
- },
936
- "output": {
937
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
938
- },
939
- "comments": {
940
- "input": {
941
- },
942
- "output": {
943
- }
944
- },
945
- "description": "The following example deletes a SqlInjectionMatchTuple object (filters) in a SQL injection match set with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
946
- "id": "updatesqlinjectionmatchset-1475532094686",
947
- "title": "To update a SQL injection match set"
948
- }
949
- ],
950
- "UpdateWebACL": [
951
- {
952
- "input": {
953
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
954
- "DefaultAction": {
955
- "Type": "ALLOW"
956
- },
957
- "Updates": [
958
- {
959
- "Action": "DELETE",
960
- "ActivatedRule": {
961
- "Action": {
962
- "Type": "ALLOW"
963
- },
964
- "Priority": 1,
965
- "RuleId": "WAFRule-1-Example"
966
- }
967
- }
968
- ],
969
- "WebACLId": "webacl-1472061481310"
970
- },
971
- "output": {
972
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
973
- },
974
- "comments": {
975
- "input": {
976
- },
977
- "output": {
978
- }
979
- },
980
- "description": "The following example deletes an ActivatedRule object in a WebACL with the ID webacl-1472061481310.",
981
- "id": "updatewebacl-1475533627385",
982
- "title": "To update a Web ACL"
983
- }
984
- ],
985
- "UpdateXssMatchSet": [
986
- {
987
- "input": {
988
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f",
989
- "Updates": [
990
- {
991
- "Action": "DELETE",
992
- "XssMatchTuple": {
993
- "FieldToMatch": {
994
- "Type": "QUERY_STRING"
995
- },
996
- "TextTransformation": "URL_DECODE"
997
- }
998
- }
999
- ],
1000
- "XssMatchSetId": "example1ds3t-46da-4fdb-b8d5-abc321j569j5"
1001
- },
1002
- "output": {
1003
- "ChangeToken": "abcd12f2-46da-4fdb-b8d5-fbd4c466928f"
1004
- },
1005
- "comments": {
1006
- "input": {
1007
- },
1008
- "output": {
1009
- }
1010
- },
1011
- "description": "The following example deletes an XssMatchTuple object (filters) in an XssMatchSet with the ID example1ds3t-46da-4fdb-b8d5-abc321j569j5.",
1012
- "id": "updatexssmatchset-1475534098881",
1013
- "title": "To update an XSS match set"
1014
- }
1015
- ]
1016
- }
1017
- }