aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,2241 +0,0 @@
1
- {
2
- "metadata" : {
3
- "apiVersion" : "2017-11-27",
4
- "endpointPrefix": "mq",
5
- "signingName" : "mq",
6
- "serviceFullName": "AmazonMQ",
7
- "serviceId": "mq",
8
- "protocol" : "rest-json",
9
- "jsonVersion" : "1.1",
10
- "uid": "mq-2017-11-27",
11
- "signatureVersion" : "v4"
12
- },
13
- "operations" : {
14
- "CreateBroker" : {
15
- "name" : "CreateBroker",
16
- "http" : {
17
- "method" : "POST",
18
- "requestUri" : "/v1/brokers",
19
- "responseCode" : 200
20
- },
21
- "input" : {
22
- "shape" : "CreateBrokerRequest"
23
- },
24
- "output" : {
25
- "shape" : "CreateBrokerResponse"
26
- },
27
- "errors" : [ {
28
- "shape" : "BadRequestException"
29
- }, {
30
- "shape" : "UnauthorizedException"
31
- }, {
32
- "shape" : "InternalServerErrorException"
33
- }, {
34
- "shape" : "ConflictException"
35
- }, {
36
- "shape" : "ForbiddenException"
37
- } ]
38
- },
39
- "CreateConfiguration" : {
40
- "name" : "CreateConfiguration",
41
- "http" : {
42
- "method" : "POST",
43
- "requestUri" : "/v1/configurations",
44
- "responseCode" : 200
45
- },
46
- "input" : {
47
- "shape" : "CreateConfigurationRequest"
48
- },
49
- "output" : {
50
- "shape" : "CreateConfigurationResponse"
51
- },
52
- "errors" : [ {
53
- "shape" : "BadRequestException"
54
- }, {
55
- "shape" : "InternalServerErrorException"
56
- }, {
57
- "shape" : "ConflictException"
58
- }, {
59
- "shape": "ForbiddenException"
60
- }
61
- ]
62
- },
63
- "CreateTags": {
64
- "name": "CreateTags",
65
- "http": {
66
- "method": "POST",
67
- "requestUri": "/v1/tags/{resource-arn}",
68
- "responseCode": 204
69
- },
70
- "input": {
71
- "shape": "CreateTagsRequest"
72
- },
73
- "errors": [
74
- {
75
- "shape": "NotFoundException"
76
- },
77
- {
78
- "shape": "BadRequestException"
79
- },
80
- {
81
- "shape": "InternalServerErrorException"
82
- },
83
- {
84
- "shape" : "ForbiddenException"
85
- } ]
86
- },
87
- "CreateUser" : {
88
- "name" : "CreateUser",
89
- "http" : {
90
- "method" : "POST",
91
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
92
- "responseCode" : 200
93
- },
94
- "input" : {
95
- "shape" : "CreateUserRequest"
96
- },
97
- "output" : {
98
- "shape" : "CreateUserResponse"
99
- },
100
- "errors" : [ {
101
- "shape" : "NotFoundException"
102
- }, {
103
- "shape" : "BadRequestException"
104
- }, {
105
- "shape" : "InternalServerErrorException"
106
- }, {
107
- "shape" : "ConflictException"
108
- }, {
109
- "shape" : "ForbiddenException"
110
- } ]
111
- },
112
- "DeleteBroker" : {
113
- "name" : "DeleteBroker",
114
- "http" : {
115
- "method" : "DELETE",
116
- "requestUri" : "/v1/brokers/{broker-id}",
117
- "responseCode" : 200
118
- },
119
- "input" : {
120
- "shape" : "DeleteBrokerRequest"
121
- },
122
- "output" : {
123
- "shape" : "DeleteBrokerResponse"
124
- },
125
- "errors": [
126
- {
127
- "shape": "NotFoundException"
128
- },
129
- {
130
- "shape": "BadRequestException"
131
- },
132
- {
133
- "shape": "InternalServerErrorException"
134
- },
135
- {
136
- "shape": "ForbiddenException"
137
- }
138
- ]
139
- },
140
- "DeleteTags": {
141
- "name": "DeleteTags",
142
- "http": {
143
- "method": "DELETE",
144
- "requestUri": "/v1/tags/{resource-arn}",
145
- "responseCode": 204
146
- },
147
- "input": {
148
- "shape": "DeleteTagsRequest"
149
- },
150
- "errors" : [ {
151
- "shape" : "NotFoundException"
152
- }, {
153
- "shape" : "BadRequestException"
154
- }, {
155
- "shape" : "InternalServerErrorException"
156
- }, {
157
- "shape" : "ForbiddenException"
158
- } ]
159
- },
160
- "DeleteUser" : {
161
- "name" : "DeleteUser",
162
- "http" : {
163
- "method" : "DELETE",
164
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
165
- "responseCode" : 200
166
- },
167
- "input" : {
168
- "shape" : "DeleteUserRequest"
169
- },
170
- "output" : {
171
- "shape" : "DeleteUserResponse"
172
- },
173
- "errors" : [ {
174
- "shape" : "NotFoundException"
175
- }, {
176
- "shape" : "BadRequestException"
177
- }, {
178
- "shape" : "InternalServerErrorException"
179
- }, {
180
- "shape" : "ForbiddenException"
181
- } ]
182
- },
183
- "DescribeBroker" : {
184
- "name" : "DescribeBroker",
185
- "http" : {
186
- "method" : "GET",
187
- "requestUri" : "/v1/brokers/{broker-id}",
188
- "responseCode" : 200
189
- },
190
- "input" : {
191
- "shape" : "DescribeBrokerRequest"
192
- },
193
- "output" : {
194
- "shape" : "DescribeBrokerResponse"
195
- },
196
- "errors" : [ {
197
- "shape" : "NotFoundException"
198
- }, {
199
- "shape" : "BadRequestException"
200
- }, {
201
- "shape" : "InternalServerErrorException"
202
- }, {
203
- "shape" : "ForbiddenException"
204
- } ]
205
- },
206
- "DescribeConfiguration" : {
207
- "name" : "DescribeConfiguration",
208
- "http" : {
209
- "method" : "GET",
210
- "requestUri" : "/v1/configurations/{configuration-id}",
211
- "responseCode" : 200
212
- },
213
- "input" : {
214
- "shape" : "DescribeConfigurationRequest"
215
- },
216
- "output" : {
217
- "shape" : "DescribeConfigurationResponse"
218
- },
219
- "errors" : [ {
220
- "shape" : "NotFoundException"
221
- }, {
222
- "shape" : "BadRequestException"
223
- }, {
224
- "shape" : "InternalServerErrorException"
225
- }, {
226
- "shape" : "ForbiddenException"
227
- } ]
228
- },
229
- "DescribeConfigurationRevision" : {
230
- "name" : "DescribeConfigurationRevision",
231
- "http" : {
232
- "method" : "GET",
233
- "requestUri" : "/v1/configurations/{configuration-id}/revisions/{configuration-revision}",
234
- "responseCode" : 200
235
- },
236
- "input" : {
237
- "shape" : "DescribeConfigurationRevisionRequest"
238
- },
239
- "output" : {
240
- "shape" : "DescribeConfigurationRevisionResponse"
241
- },
242
- "errors" : [ {
243
- "shape" : "NotFoundException"
244
- }, {
245
- "shape" : "BadRequestException"
246
- }, {
247
- "shape" : "InternalServerErrorException"
248
- }, {
249
- "shape" : "ForbiddenException"
250
- } ]
251
- },
252
- "DescribeUser" : {
253
- "name" : "DescribeUser",
254
- "http" : {
255
- "method" : "GET",
256
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
257
- "responseCode" : 200
258
- },
259
- "input" : {
260
- "shape" : "DescribeUserRequest"
261
- },
262
- "output" : {
263
- "shape" : "DescribeUserResponse"
264
- },
265
- "errors" : [ {
266
- "shape" : "NotFoundException"
267
- }, {
268
- "shape" : "BadRequestException"
269
- }, {
270
- "shape" : "InternalServerErrorException"
271
- }, {
272
- "shape" : "ForbiddenException"
273
- } ]
274
- },
275
- "ListBrokers" : {
276
- "name" : "ListBrokers",
277
- "http" : {
278
- "method" : "GET",
279
- "requestUri" : "/v1/brokers",
280
- "responseCode" : 200
281
- },
282
- "input" : {
283
- "shape" : "ListBrokersRequest"
284
- },
285
- "output" : {
286
- "shape" : "ListBrokersResponse"
287
- },
288
- "errors" : [ {
289
- "shape" : "BadRequestException"
290
- }, {
291
- "shape" : "InternalServerErrorException"
292
- }, {
293
- "shape" : "ForbiddenException"
294
- } ]
295
- },
296
- "ListConfigurationRevisions" : {
297
- "name" : "ListConfigurationRevisions",
298
- "http" : {
299
- "method" : "GET",
300
- "requestUri" : "/v1/configurations/{configuration-id}/revisions",
301
- "responseCode" : 200
302
- },
303
- "input" : {
304
- "shape" : "ListConfigurationRevisionsRequest"
305
- },
306
- "output" : {
307
- "shape" : "ListConfigurationRevisionsResponse"
308
- },
309
- "errors" : [ {
310
- "shape" : "NotFoundException"
311
- }, {
312
- "shape" : "BadRequestException"
313
- }, {
314
- "shape" : "InternalServerErrorException"
315
- }, {
316
- "shape" : "ForbiddenException"
317
- } ]
318
- },
319
- "ListConfigurations" : {
320
- "name" : "ListConfigurations",
321
- "http" : {
322
- "method" : "GET",
323
- "requestUri" : "/v1/configurations",
324
- "responseCode" : 200
325
- },
326
- "input" : {
327
- "shape" : "ListConfigurationsRequest"
328
- },
329
- "output" : {
330
- "shape" : "ListConfigurationsResponse"
331
- },
332
- "errors" : [ {
333
- "shape" : "BadRequestException"
334
- }, {
335
- "shape" : "InternalServerErrorException"
336
- }, {
337
- "shape" : "ForbiddenException"
338
- } ]
339
- },
340
- "ListTags": {
341
- "name": "ListTags",
342
- "http": {
343
- "method": "GET",
344
- "requestUri": "/v1/tags/{resource-arn}",
345
- "responseCode": 200
346
- },
347
- "input": {
348
- "shape": "ListTagsRequest"
349
- },
350
- "output": {
351
- "shape": "ListTagsResponse"
352
- },
353
- "errors": [
354
- {
355
- "shape": "NotFoundException"
356
- },
357
- {
358
- "shape": "BadRequestException"
359
- },
360
- {
361
- "shape": "InternalServerErrorException"
362
- },
363
- {
364
- "shape": "ForbiddenException"
365
- }
366
- ]
367
- },
368
- "ListUsers" : {
369
- "name" : "ListUsers",
370
- "http" : {
371
- "method" : "GET",
372
- "requestUri" : "/v1/brokers/{broker-id}/users",
373
- "responseCode" : 200
374
- },
375
- "input" : {
376
- "shape" : "ListUsersRequest"
377
- },
378
- "output" : {
379
- "shape" : "ListUsersResponse"
380
- },
381
- "errors" : [ {
382
- "shape" : "NotFoundException"
383
- }, {
384
- "shape" : "BadRequestException"
385
- }, {
386
- "shape" : "InternalServerErrorException"
387
- }, {
388
- "shape" : "ForbiddenException"
389
- } ]
390
- },
391
- "RebootBroker" : {
392
- "name" : "RebootBroker",
393
- "http" : {
394
- "method" : "POST",
395
- "requestUri" : "/v1/brokers/{broker-id}/reboot",
396
- "responseCode" : 200
397
- },
398
- "input" : {
399
- "shape" : "RebootBrokerRequest"
400
- },
401
- "output" : {
402
- "shape" : "RebootBrokerResponse"
403
- },
404
- "errors" : [ {
405
- "shape" : "NotFoundException"
406
- }, {
407
- "shape" : "BadRequestException"
408
- }, {
409
- "shape" : "InternalServerErrorException"
410
- }, {
411
- "shape" : "ForbiddenException"
412
- } ]
413
- },
414
- "UpdateBroker" : {
415
- "name" : "UpdateBroker",
416
- "http" : {
417
- "method" : "PUT",
418
- "requestUri" : "/v1/brokers/{broker-id}",
419
- "responseCode" : 200
420
- },
421
- "input" : {
422
- "shape" : "UpdateBrokerRequest"
423
- },
424
- "output" : {
425
- "shape" : "UpdateBrokerResponse"
426
- },
427
- "errors" : [ {
428
- "shape" : "NotFoundException"
429
- }, {
430
- "shape" : "BadRequestException"
431
- }, {
432
- "shape" : "InternalServerErrorException"
433
- }, {
434
- "shape" : "ConflictException"
435
- }, {
436
- "shape" : "ForbiddenException"
437
- } ]
438
- },
439
- "UpdateConfiguration" : {
440
- "name" : "UpdateConfiguration",
441
- "http" : {
442
- "method" : "PUT",
443
- "requestUri" : "/v1/configurations/{configuration-id}",
444
- "responseCode" : 200
445
- },
446
- "input" : {
447
- "shape" : "UpdateConfigurationRequest"
448
- },
449
- "output" : {
450
- "shape" : "UpdateConfigurationResponse"
451
- },
452
- "errors" : [ {
453
- "shape" : "NotFoundException"
454
- }, {
455
- "shape" : "BadRequestException"
456
- }, {
457
- "shape" : "InternalServerErrorException"
458
- }, {
459
- "shape" : "ConflictException"
460
- }, {
461
- "shape" : "ForbiddenException"
462
- } ]
463
- },
464
- "UpdateUser" : {
465
- "name" : "UpdateUser",
466
- "http" : {
467
- "method" : "PUT",
468
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
469
- "responseCode" : 200
470
- },
471
- "input" : {
472
- "shape" : "UpdateUserRequest"
473
- },
474
- "output" : {
475
- "shape" : "UpdateUserResponse"
476
- },
477
- "errors" : [ {
478
- "shape" : "NotFoundException"
479
- }, {
480
- "shape" : "BadRequestException"
481
- }, {
482
- "shape" : "InternalServerErrorException"
483
- }, {
484
- "shape" : "ConflictException"
485
- }, {
486
- "shape" : "ForbiddenException"
487
- } ]
488
- }
489
- },
490
- "shapes" : {
491
- "BadRequestException" : {
492
- "type" : "structure",
493
- "members" : {
494
- "ErrorAttribute" : {
495
- "shape" : "__string",
496
- "locationName" : "errorAttribute"
497
- },
498
- "Message" : {
499
- "shape" : "__string",
500
- "locationName" : "message"
501
- }
502
- },
503
- "exception" : true,
504
- "error" : {
505
- "httpStatusCode" : 400
506
- }
507
- },
508
- "BrokerInstance" : {
509
- "type" : "structure",
510
- "members" : {
511
- "ConsoleURL" : {
512
- "shape" : "__string",
513
- "locationName" : "consoleURL"
514
- },
515
- "Endpoints" : {
516
- "shape" : "__listOf__string",
517
- "locationName" : "endpoints"
518
- },
519
- "IpAddress" : {
520
- "shape" : "__string",
521
- "locationName" : "ipAddress"
522
- }
523
- }
524
- },
525
- "BrokerState" : {
526
- "type" : "string",
527
- "enum" : [ "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS" ]
528
- },
529
- "BrokerSummary" : {
530
- "type" : "structure",
531
- "members" : {
532
- "BrokerArn" : {
533
- "shape" : "__string",
534
- "locationName" : "brokerArn"
535
- },
536
- "BrokerId" : {
537
- "shape" : "__string",
538
- "locationName" : "brokerId"
539
- },
540
- "BrokerName" : {
541
- "shape" : "__string",
542
- "locationName" : "brokerName"
543
- },
544
- "BrokerState" : {
545
- "shape" : "BrokerState",
546
- "locationName" : "brokerState"
547
- },
548
- "Created" : {
549
- "shape" : "__timestampIso8601",
550
- "locationName" : "created"
551
- },
552
- "DeploymentMode" : {
553
- "shape" : "DeploymentMode",
554
- "locationName" : "deploymentMode"
555
- },
556
- "HostInstanceType" : {
557
- "shape" : "__string",
558
- "locationName" : "hostInstanceType"
559
- }
560
- }
561
- },
562
- "ChangeType" : {
563
- "type" : "string",
564
- "enum" : [ "CREATE", "UPDATE", "DELETE" ]
565
- },
566
- "Configuration" : {
567
- "type" : "structure",
568
- "members" : {
569
- "Arn" : {
570
- "shape" : "__string",
571
- "locationName" : "arn"
572
- },
573
- "Created" : {
574
- "shape" : "__timestampIso8601",
575
- "locationName" : "created"
576
- },
577
- "Description" : {
578
- "shape" : "__string",
579
- "locationName" : "description"
580
- },
581
- "EngineType" : {
582
- "shape" : "EngineType",
583
- "locationName" : "engineType"
584
- },
585
- "EngineVersion" : {
586
- "shape" : "__string",
587
- "locationName" : "engineVersion"
588
- },
589
- "Id" : {
590
- "shape" : "__string",
591
- "locationName" : "id"
592
- },
593
- "LatestRevision" : {
594
- "shape" : "ConfigurationRevision",
595
- "locationName" : "latestRevision"
596
- },
597
- "Name" : {
598
- "shape" : "__string",
599
- "locationName" : "name"
600
- },
601
- "Tags": {
602
- "shape": "__mapOf__string",
603
- "locationName": "tags"
604
- }
605
- }
606
- },
607
- "ConfigurationId" : {
608
- "type" : "structure",
609
- "members" : {
610
- "Id" : {
611
- "shape" : "__string",
612
- "locationName" : "id"
613
- },
614
- "Revision" : {
615
- "shape" : "__integer",
616
- "locationName" : "revision"
617
- }
618
- }
619
- },
620
- "ConfigurationRevision" : {
621
- "type" : "structure",
622
- "members" : {
623
- "Created" : {
624
- "shape" : "__timestampIso8601",
625
- "locationName" : "created"
626
- },
627
- "Description" : {
628
- "shape" : "__string",
629
- "locationName" : "description"
630
- },
631
- "Revision" : {
632
- "shape" : "__integer",
633
- "locationName" : "revision"
634
- }
635
- }
636
- },
637
- "Configurations" : {
638
- "type" : "structure",
639
- "members" : {
640
- "Current" : {
641
- "shape" : "ConfigurationId",
642
- "locationName" : "current"
643
- },
644
- "History" : {
645
- "shape" : "__listOfConfigurationId",
646
- "locationName" : "history"
647
- },
648
- "Pending" : {
649
- "shape" : "ConfigurationId",
650
- "locationName" : "pending"
651
- }
652
- }
653
- },
654
- "ConflictException" : {
655
- "type" : "structure",
656
- "members" : {
657
- "ErrorAttribute" : {
658
- "shape" : "__string",
659
- "locationName" : "errorAttribute"
660
- },
661
- "Message" : {
662
- "shape" : "__string",
663
- "locationName" : "message"
664
- }
665
- },
666
- "exception" : true,
667
- "error" : {
668
- "httpStatusCode" : 409
669
- }
670
- },
671
- "CreateBrokerInput" : {
672
- "type" : "structure",
673
- "members" : {
674
- "AutoMinorVersionUpgrade" : {
675
- "shape" : "__boolean",
676
- "locationName" : "autoMinorVersionUpgrade"
677
- },
678
- "BrokerName" : {
679
- "shape" : "__string",
680
- "locationName" : "brokerName"
681
- },
682
- "Configuration" : {
683
- "shape" : "ConfigurationId",
684
- "locationName" : "configuration"
685
- },
686
- "CreatorRequestId" : {
687
- "shape" : "__string",
688
- "locationName" : "creatorRequestId",
689
- "idempotencyToken" : true
690
- },
691
- "DeploymentMode" : {
692
- "shape" : "DeploymentMode",
693
- "locationName" : "deploymentMode"
694
- },
695
- "EngineType" : {
696
- "shape" : "EngineType",
697
- "locationName" : "engineType"
698
- },
699
- "EngineVersion" : {
700
- "shape" : "__string",
701
- "locationName" : "engineVersion"
702
- },
703
- "HostInstanceType" : {
704
- "shape" : "__string",
705
- "locationName" : "hostInstanceType"
706
- },
707
- "Logs" : {
708
- "shape" : "Logs",
709
- "locationName" : "logs"
710
- },
711
- "MaintenanceWindowStartTime" : {
712
- "shape" : "WeeklyStartTime",
713
- "locationName" : "maintenanceWindowStartTime"
714
- },
715
- "PubliclyAccessible" : {
716
- "shape" : "__boolean",
717
- "locationName" : "publiclyAccessible"
718
- },
719
- "SecurityGroups" : {
720
- "shape" : "__listOf__string",
721
- "locationName" : "securityGroups"
722
- },
723
- "SubnetIds" : {
724
- "shape" : "__listOf__string",
725
- "locationName" : "subnetIds"
726
- },
727
- "Tags": {
728
- "shape": "__mapOf__string",
729
- "locationName": "tags"
730
- },
731
- "Users" : {
732
- "shape" : "__listOfUser",
733
- "locationName" : "users"
734
- }
735
- }
736
- },
737
- "CreateBrokerOutput" : {
738
- "type" : "structure",
739
- "members" : {
740
- "BrokerArn" : {
741
- "shape" : "__string",
742
- "locationName" : "brokerArn"
743
- },
744
- "BrokerId" : {
745
- "shape" : "__string",
746
- "locationName" : "brokerId"
747
- }
748
- }
749
- },
750
- "CreateBrokerRequest" : {
751
- "type" : "structure",
752
- "members" : {
753
- "AutoMinorVersionUpgrade" : {
754
- "shape" : "__boolean",
755
- "locationName" : "autoMinorVersionUpgrade"
756
- },
757
- "BrokerName" : {
758
- "shape" : "__string",
759
- "locationName" : "brokerName"
760
- },
761
- "Configuration" : {
762
- "shape" : "ConfigurationId",
763
- "locationName" : "configuration"
764
- },
765
- "CreatorRequestId" : {
766
- "shape" : "__string",
767
- "locationName" : "creatorRequestId",
768
- "idempotencyToken" : true
769
- },
770
- "DeploymentMode" : {
771
- "shape" : "DeploymentMode",
772
- "locationName" : "deploymentMode"
773
- },
774
- "EngineType" : {
775
- "shape" : "EngineType",
776
- "locationName" : "engineType"
777
- },
778
- "EngineVersion" : {
779
- "shape" : "__string",
780
- "locationName" : "engineVersion"
781
- },
782
- "HostInstanceType" : {
783
- "shape" : "__string",
784
- "locationName" : "hostInstanceType"
785
- },
786
- "Logs" : {
787
- "shape" : "Logs",
788
- "locationName" : "logs"
789
- },
790
- "MaintenanceWindowStartTime" : {
791
- "shape" : "WeeklyStartTime",
792
- "locationName" : "maintenanceWindowStartTime"
793
- },
794
- "PubliclyAccessible" : {
795
- "shape" : "__boolean",
796
- "locationName" : "publiclyAccessible"
797
- },
798
- "SecurityGroups" : {
799
- "shape" : "__listOf__string",
800
- "locationName" : "securityGroups"
801
- },
802
- "SubnetIds" : {
803
- "shape" : "__listOf__string",
804
- "locationName" : "subnetIds"
805
- },
806
- "Tags": {
807
- "shape": "__mapOf__string",
808
- "locationName": "tags"
809
- },
810
- "Users" : {
811
- "shape" : "__listOfUser",
812
- "locationName" : "users"
813
- }
814
- }
815
- },
816
- "CreateBrokerResponse" : {
817
- "type" : "structure",
818
- "members" : {
819
- "BrokerArn" : {
820
- "shape" : "__string",
821
- "locationName" : "brokerArn"
822
- },
823
- "BrokerId" : {
824
- "shape" : "__string",
825
- "locationName" : "brokerId"
826
- }
827
- }
828
- },
829
- "CreateConfigurationInput" : {
830
- "type" : "structure",
831
- "members" : {
832
- "EngineType" : {
833
- "shape" : "EngineType",
834
- "locationName" : "engineType"
835
- },
836
- "EngineVersion" : {
837
- "shape" : "__string",
838
- "locationName" : "engineVersion"
839
- },
840
- "Name" : {
841
- "shape" : "__string",
842
- "locationName" : "name"
843
- },
844
- "Tags": {
845
- "shape": "__mapOf__string",
846
- "locationName": "tags"
847
- }
848
- }
849
- },
850
- "CreateConfigurationOutput" : {
851
- "type" : "structure",
852
- "members" : {
853
- "Arn" : {
854
- "shape" : "__string",
855
- "locationName" : "arn"
856
- },
857
- "Created" : {
858
- "shape" : "__timestampIso8601",
859
- "locationName" : "created"
860
- },
861
- "Id" : {
862
- "shape" : "__string",
863
- "locationName" : "id"
864
- },
865
- "LatestRevision" : {
866
- "shape" : "ConfigurationRevision",
867
- "locationName" : "latestRevision"
868
- },
869
- "Name" : {
870
- "shape" : "__string",
871
- "locationName" : "name"
872
- }
873
- }
874
- },
875
- "CreateConfigurationRequest" : {
876
- "type" : "structure",
877
- "members" : {
878
- "EngineType" : {
879
- "shape" : "EngineType",
880
- "locationName" : "engineType"
881
- },
882
- "EngineVersion" : {
883
- "shape" : "__string",
884
- "locationName" : "engineVersion"
885
- },
886
- "Name" : {
887
- "shape" : "__string",
888
- "locationName" : "name"
889
- },
890
- "Tags": {
891
- "shape": "__mapOf__string",
892
- "locationName": "tags"
893
- }
894
- }
895
- },
896
- "CreateConfigurationResponse" : {
897
- "type" : "structure",
898
- "members" : {
899
- "Arn" : {
900
- "shape" : "__string",
901
- "locationName" : "arn"
902
- },
903
- "Created" : {
904
- "shape" : "__timestampIso8601",
905
- "locationName" : "created"
906
- },
907
- "Id" : {
908
- "shape" : "__string",
909
- "locationName" : "id"
910
- },
911
- "LatestRevision" : {
912
- "shape" : "ConfigurationRevision",
913
- "locationName" : "latestRevision"
914
- },
915
- "Name" : {
916
- "shape" : "__string",
917
- "locationName" : "name"
918
- }
919
- }
920
- },
921
- "CreateTagsRequest": {
922
- "type": "structure",
923
- "members": {
924
- "ResourceArn": {
925
- "shape": "__string",
926
- "location": "uri",
927
- "locationName": "resource-arn"
928
- },
929
- "Tags": {
930
- "shape": "__mapOf__string",
931
- "locationName": "tags"
932
- }
933
- },
934
- "required": [
935
- "ResourceArn"
936
- ]
937
- },
938
- "CreateUserInput" : {
939
- "type" : "structure",
940
- "members" : {
941
- "ConsoleAccess" : {
942
- "shape" : "__boolean",
943
- "locationName" : "consoleAccess"
944
- },
945
- "Groups" : {
946
- "shape" : "__listOf__string",
947
- "locationName" : "groups"
948
- },
949
- "Password" : {
950
- "shape" : "__string",
951
- "locationName" : "password"
952
- }
953
- }
954
- },
955
- "CreateUserRequest" : {
956
- "type" : "structure",
957
- "members" : {
958
- "BrokerId" : {
959
- "shape" : "__string",
960
- "location" : "uri",
961
- "locationName" : "broker-id"
962
- },
963
- "ConsoleAccess" : {
964
- "shape" : "__boolean",
965
- "locationName" : "consoleAccess"
966
- },
967
- "Groups" : {
968
- "shape" : "__listOf__string",
969
- "locationName" : "groups"
970
- },
971
- "Password" : {
972
- "shape" : "__string",
973
- "locationName" : "password"
974
- },
975
- "Username" : {
976
- "shape" : "__string",
977
- "location" : "uri",
978
- "locationName" : "username"
979
- }
980
- },
981
- "required" : [ "Username", "BrokerId" ]
982
- },
983
- "CreateUserResponse" : {
984
- "type" : "structure",
985
- "members" : { }
986
- },
987
- "DayOfWeek" : {
988
- "type" : "string",
989
- "enum" : [ "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY" ]
990
- },
991
- "DeleteBrokerOutput" : {
992
- "type" : "structure",
993
- "members" : {
994
- "BrokerId" : {
995
- "shape" : "__string",
996
- "locationName" : "brokerId"
997
- }
998
- }
999
- },
1000
- "DeleteBrokerRequest" : {
1001
- "type" : "structure",
1002
- "members" : {
1003
- "BrokerId" : {
1004
- "shape" : "__string",
1005
- "location" : "uri",
1006
- "locationName" : "broker-id"
1007
- }
1008
- },
1009
- "required" : [ "BrokerId" ]
1010
- },
1011
- "DeleteBrokerResponse" : {
1012
- "type" : "structure",
1013
- "members" : {
1014
- "BrokerId" : {
1015
- "shape" : "__string",
1016
- "locationName" : "brokerId"
1017
- }
1018
- }
1019
- },
1020
- "DeleteTagsRequest": {
1021
- "type": "structure",
1022
- "members": {
1023
- "ResourceArn": {
1024
- "shape": "__string",
1025
- "location": "uri",
1026
- "locationName": "resource-arn"
1027
- },
1028
- "TagKeys": {
1029
- "shape": "__listOf__string",
1030
- "location": "querystring",
1031
- "locationName": "tagKeys"
1032
- }
1033
- },
1034
- "required": [
1035
- "TagKeys",
1036
- "ResourceArn"
1037
- ]
1038
- },
1039
- "DeleteUserRequest" : {
1040
- "type" : "structure",
1041
- "members" : {
1042
- "BrokerId" : {
1043
- "shape" : "__string",
1044
- "location" : "uri",
1045
- "locationName" : "broker-id"
1046
- },
1047
- "Username" : {
1048
- "shape" : "__string",
1049
- "location" : "uri",
1050
- "locationName" : "username"
1051
- }
1052
- },
1053
- "required" : [ "Username", "BrokerId" ]
1054
- },
1055
- "DeleteUserResponse" : {
1056
- "type" : "structure",
1057
- "members" : { }
1058
- },
1059
- "DeploymentMode" : {
1060
- "type" : "string",
1061
- "enum" : [ "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ" ]
1062
- },
1063
- "DescribeBrokerOutput" : {
1064
- "type" : "structure",
1065
- "members" : {
1066
- "AutoMinorVersionUpgrade" : {
1067
- "shape" : "__boolean",
1068
- "locationName" : "autoMinorVersionUpgrade"
1069
- },
1070
- "BrokerArn" : {
1071
- "shape" : "__string",
1072
- "locationName" : "brokerArn"
1073
- },
1074
- "BrokerId" : {
1075
- "shape" : "__string",
1076
- "locationName" : "brokerId"
1077
- },
1078
- "BrokerInstances" : {
1079
- "shape" : "__listOfBrokerInstance",
1080
- "locationName" : "brokerInstances"
1081
- },
1082
- "BrokerName" : {
1083
- "shape" : "__string",
1084
- "locationName" : "brokerName"
1085
- },
1086
- "BrokerState" : {
1087
- "shape" : "BrokerState",
1088
- "locationName" : "brokerState"
1089
- },
1090
- "Configurations" : {
1091
- "shape" : "Configurations",
1092
- "locationName" : "configurations"
1093
- },
1094
- "Created" : {
1095
- "shape" : "__timestampIso8601",
1096
- "locationName" : "created"
1097
- },
1098
- "DeploymentMode" : {
1099
- "shape" : "DeploymentMode",
1100
- "locationName" : "deploymentMode"
1101
- },
1102
- "EngineType" : {
1103
- "shape" : "EngineType",
1104
- "locationName" : "engineType"
1105
- },
1106
- "EngineVersion" : {
1107
- "shape" : "__string",
1108
- "locationName" : "engineVersion"
1109
- },
1110
- "HostInstanceType" : {
1111
- "shape" : "__string",
1112
- "locationName" : "hostInstanceType"
1113
- },
1114
- "Logs" : {
1115
- "shape" : "LogsSummary",
1116
- "locationName" : "logs"
1117
- },
1118
- "MaintenanceWindowStartTime" : {
1119
- "shape" : "WeeklyStartTime",
1120
- "locationName" : "maintenanceWindowStartTime"
1121
- },
1122
- "PendingEngineVersion" : {
1123
- "shape" : "__string",
1124
- "locationName" : "pendingEngineVersion"
1125
- },
1126
- "PubliclyAccessible" : {
1127
- "shape" : "__boolean",
1128
- "locationName" : "publiclyAccessible"
1129
- },
1130
- "SecurityGroups" : {
1131
- "shape" : "__listOf__string",
1132
- "locationName" : "securityGroups"
1133
- },
1134
- "SubnetIds" : {
1135
- "shape" : "__listOf__string",
1136
- "locationName" : "subnetIds"
1137
- },
1138
- "Tags": {
1139
- "shape": "__mapOf__string",
1140
- "locationName": "tags"
1141
- },
1142
- "Users" : {
1143
- "shape" : "__listOfUserSummary",
1144
- "locationName" : "users"
1145
- }
1146
- }
1147
- },
1148
- "DescribeBrokerRequest" : {
1149
- "type" : "structure",
1150
- "members" : {
1151
- "BrokerId" : {
1152
- "shape" : "__string",
1153
- "location" : "uri",
1154
- "locationName" : "broker-id"
1155
- }
1156
- },
1157
- "required" : [ "BrokerId" ]
1158
- },
1159
- "DescribeBrokerResponse" : {
1160
- "type" : "structure",
1161
- "members" : {
1162
- "AutoMinorVersionUpgrade" : {
1163
- "shape" : "__boolean",
1164
- "locationName" : "autoMinorVersionUpgrade"
1165
- },
1166
- "BrokerArn" : {
1167
- "shape" : "__string",
1168
- "locationName" : "brokerArn"
1169
- },
1170
- "BrokerId" : {
1171
- "shape" : "__string",
1172
- "locationName" : "brokerId"
1173
- },
1174
- "BrokerInstances" : {
1175
- "shape" : "__listOfBrokerInstance",
1176
- "locationName" : "brokerInstances"
1177
- },
1178
- "BrokerName" : {
1179
- "shape" : "__string",
1180
- "locationName" : "brokerName"
1181
- },
1182
- "BrokerState" : {
1183
- "shape" : "BrokerState",
1184
- "locationName" : "brokerState"
1185
- },
1186
- "Configurations" : {
1187
- "shape" : "Configurations",
1188
- "locationName" : "configurations"
1189
- },
1190
- "Created" : {
1191
- "shape" : "__timestampIso8601",
1192
- "locationName" : "created"
1193
- },
1194
- "DeploymentMode" : {
1195
- "shape" : "DeploymentMode",
1196
- "locationName" : "deploymentMode"
1197
- },
1198
- "EngineType" : {
1199
- "shape" : "EngineType",
1200
- "locationName" : "engineType"
1201
- },
1202
- "EngineVersion" : {
1203
- "shape" : "__string",
1204
- "locationName" : "engineVersion"
1205
- },
1206
- "HostInstanceType" : {
1207
- "shape" : "__string",
1208
- "locationName" : "hostInstanceType"
1209
- },
1210
- "Logs" : {
1211
- "shape" : "LogsSummary",
1212
- "locationName" : "logs"
1213
- },
1214
- "MaintenanceWindowStartTime" : {
1215
- "shape" : "WeeklyStartTime",
1216
- "locationName" : "maintenanceWindowStartTime"
1217
- },
1218
- "PendingEngineVersion" : {
1219
- "shape" : "__string",
1220
- "locationName" : "pendingEngineVersion"
1221
- },
1222
- "PubliclyAccessible" : {
1223
- "shape" : "__boolean",
1224
- "locationName" : "publiclyAccessible"
1225
- },
1226
- "SecurityGroups" : {
1227
- "shape" : "__listOf__string",
1228
- "locationName" : "securityGroups"
1229
- },
1230
- "SubnetIds" : {
1231
- "shape" : "__listOf__string",
1232
- "locationName" : "subnetIds"
1233
- },
1234
- "Tags": {
1235
- "shape": "__mapOf__string",
1236
- "locationName": "tags"
1237
- },
1238
- "Users" : {
1239
- "shape" : "__listOfUserSummary",
1240
- "locationName" : "users"
1241
- }
1242
- }
1243
- },
1244
- "DescribeConfigurationRequest" : {
1245
- "type" : "structure",
1246
- "members" : {
1247
- "ConfigurationId" : {
1248
- "shape" : "__string",
1249
- "location" : "uri",
1250
- "locationName" : "configuration-id"
1251
- }
1252
- },
1253
- "required" : [ "ConfigurationId" ]
1254
- },
1255
- "DescribeConfigurationResponse" : {
1256
- "type" : "structure",
1257
- "members" : {
1258
- "Arn" : {
1259
- "shape" : "__string",
1260
- "locationName" : "arn"
1261
- },
1262
- "Created" : {
1263
- "shape" : "__timestampIso8601",
1264
- "locationName" : "created"
1265
- },
1266
- "Description" : {
1267
- "shape" : "__string",
1268
- "locationName" : "description"
1269
- },
1270
- "EngineType" : {
1271
- "shape" : "EngineType",
1272
- "locationName" : "engineType"
1273
- },
1274
- "EngineVersion" : {
1275
- "shape" : "__string",
1276
- "locationName" : "engineVersion"
1277
- },
1278
- "Id" : {
1279
- "shape" : "__string",
1280
- "locationName" : "id"
1281
- },
1282
- "LatestRevision" : {
1283
- "shape" : "ConfigurationRevision",
1284
- "locationName" : "latestRevision"
1285
- },
1286
- "Name" : {
1287
- "shape" : "__string",
1288
- "locationName" : "name"
1289
- },
1290
- "Tags": {
1291
- "shape": "__mapOf__string",
1292
- "locationName": "tags"
1293
- }
1294
- }
1295
- },
1296
- "DescribeConfigurationRevisionOutput" : {
1297
- "type" : "structure",
1298
- "members" : {
1299
- "ConfigurationId" : {
1300
- "shape" : "__string",
1301
- "locationName" : "configurationId"
1302
- },
1303
- "Created" : {
1304
- "shape" : "__timestampIso8601",
1305
- "locationName" : "created"
1306
- },
1307
- "Data" : {
1308
- "shape" : "__string",
1309
- "locationName" : "data"
1310
- },
1311
- "Description" : {
1312
- "shape" : "__string",
1313
- "locationName" : "description"
1314
- }
1315
- }
1316
- },
1317
- "DescribeConfigurationRevisionRequest" : {
1318
- "type" : "structure",
1319
- "members" : {
1320
- "ConfigurationId" : {
1321
- "shape" : "__string",
1322
- "location" : "uri",
1323
- "locationName" : "configuration-id"
1324
- },
1325
- "ConfigurationRevision" : {
1326
- "shape" : "__string",
1327
- "location" : "uri",
1328
- "locationName" : "configuration-revision"
1329
- }
1330
- },
1331
- "required" : [ "ConfigurationRevision", "ConfigurationId" ]
1332
- },
1333
- "DescribeConfigurationRevisionResponse" : {
1334
- "type" : "structure",
1335
- "members" : {
1336
- "ConfigurationId" : {
1337
- "shape" : "__string",
1338
- "locationName" : "configurationId"
1339
- },
1340
- "Created" : {
1341
- "shape" : "__timestampIso8601",
1342
- "locationName" : "created"
1343
- },
1344
- "Data" : {
1345
- "shape" : "__string",
1346
- "locationName" : "data"
1347
- },
1348
- "Description" : {
1349
- "shape" : "__string",
1350
- "locationName" : "description"
1351
- }
1352
- }
1353
- },
1354
- "DescribeUserOutput" : {
1355
- "type" : "structure",
1356
- "members" : {
1357
- "BrokerId" : {
1358
- "shape" : "__string",
1359
- "locationName" : "brokerId"
1360
- },
1361
- "ConsoleAccess" : {
1362
- "shape" : "__boolean",
1363
- "locationName" : "consoleAccess"
1364
- },
1365
- "Groups" : {
1366
- "shape" : "__listOf__string",
1367
- "locationName" : "groups"
1368
- },
1369
- "Pending" : {
1370
- "shape" : "UserPendingChanges",
1371
- "locationName" : "pending"
1372
- },
1373
- "Username" : {
1374
- "shape" : "__string",
1375
- "locationName" : "username"
1376
- }
1377
- }
1378
- },
1379
- "DescribeUserRequest" : {
1380
- "type" : "structure",
1381
- "members" : {
1382
- "BrokerId" : {
1383
- "shape" : "__string",
1384
- "location" : "uri",
1385
- "locationName" : "broker-id"
1386
- },
1387
- "Username" : {
1388
- "shape" : "__string",
1389
- "location" : "uri",
1390
- "locationName" : "username"
1391
- }
1392
- },
1393
- "required" : [ "Username", "BrokerId" ]
1394
- },
1395
- "DescribeUserResponse" : {
1396
- "type" : "structure",
1397
- "members" : {
1398
- "BrokerId" : {
1399
- "shape" : "__string",
1400
- "locationName" : "brokerId"
1401
- },
1402
- "ConsoleAccess" : {
1403
- "shape" : "__boolean",
1404
- "locationName" : "consoleAccess"
1405
- },
1406
- "Groups" : {
1407
- "shape" : "__listOf__string",
1408
- "locationName" : "groups"
1409
- },
1410
- "Pending" : {
1411
- "shape" : "UserPendingChanges",
1412
- "locationName" : "pending"
1413
- },
1414
- "Username" : {
1415
- "shape" : "__string",
1416
- "locationName" : "username"
1417
- }
1418
- }
1419
- },
1420
- "EngineType" : {
1421
- "type" : "string",
1422
- "enum" : [ "ACTIVEMQ" ]
1423
- },
1424
- "Error" : {
1425
- "type" : "structure",
1426
- "members" : {
1427
- "ErrorAttribute" : {
1428
- "shape" : "__string",
1429
- "locationName" : "errorAttribute"
1430
- },
1431
- "Message" : {
1432
- "shape" : "__string",
1433
- "locationName" : "message"
1434
- }
1435
- }
1436
- },
1437
- "ForbiddenException" : {
1438
- "type" : "structure",
1439
- "members" : {
1440
- "ErrorAttribute" : {
1441
- "shape" : "__string",
1442
- "locationName" : "errorAttribute"
1443
- },
1444
- "Message" : {
1445
- "shape" : "__string",
1446
- "locationName" : "message"
1447
- }
1448
- },
1449
- "exception" : true,
1450
- "error" : {
1451
- "httpStatusCode" : 403
1452
- }
1453
- },
1454
- "InternalServerErrorException" : {
1455
- "type" : "structure",
1456
- "members" : {
1457
- "ErrorAttribute" : {
1458
- "shape" : "__string",
1459
- "locationName" : "errorAttribute"
1460
- },
1461
- "Message" : {
1462
- "shape" : "__string",
1463
- "locationName" : "message"
1464
- }
1465
- },
1466
- "exception" : true,
1467
- "error" : {
1468
- "httpStatusCode" : 500
1469
- }
1470
- },
1471
- "ListBrokersOutput" : {
1472
- "type" : "structure",
1473
- "members" : {
1474
- "BrokerSummaries" : {
1475
- "shape" : "__listOfBrokerSummary",
1476
- "locationName" : "brokerSummaries"
1477
- },
1478
- "NextToken" : {
1479
- "shape" : "__string",
1480
- "locationName" : "nextToken"
1481
- }
1482
- }
1483
- },
1484
- "ListBrokersRequest" : {
1485
- "type" : "structure",
1486
- "members" : {
1487
- "MaxResults" : {
1488
- "shape" : "MaxResults",
1489
- "location" : "querystring",
1490
- "locationName" : "maxResults"
1491
- },
1492
- "NextToken" : {
1493
- "shape" : "__string",
1494
- "location" : "querystring",
1495
- "locationName" : "nextToken"
1496
- }
1497
- }
1498
- },
1499
- "ListBrokersResponse" : {
1500
- "type" : "structure",
1501
- "members" : {
1502
- "BrokerSummaries" : {
1503
- "shape" : "__listOfBrokerSummary",
1504
- "locationName" : "brokerSummaries"
1505
- },
1506
- "NextToken" : {
1507
- "shape" : "__string",
1508
- "locationName" : "nextToken"
1509
- }
1510
- }
1511
- },
1512
- "ListConfigurationRevisionsOutput" : {
1513
- "type" : "structure",
1514
- "members" : {
1515
- "ConfigurationId" : {
1516
- "shape" : "__string",
1517
- "locationName" : "configurationId"
1518
- },
1519
- "MaxResults" : {
1520
- "shape" : "__integer",
1521
- "locationName" : "maxResults"
1522
- },
1523
- "NextToken" : {
1524
- "shape" : "__string",
1525
- "locationName" : "nextToken"
1526
- },
1527
- "Revisions" : {
1528
- "shape" : "__listOfConfigurationRevision",
1529
- "locationName" : "revisions"
1530
- }
1531
- }
1532
- },
1533
- "ListConfigurationRevisionsRequest" : {
1534
- "type" : "structure",
1535
- "members" : {
1536
- "ConfigurationId" : {
1537
- "shape" : "__string",
1538
- "location" : "uri",
1539
- "locationName" : "configuration-id"
1540
- },
1541
- "MaxResults" : {
1542
- "shape" : "MaxResults",
1543
- "location" : "querystring",
1544
- "locationName" : "maxResults"
1545
- },
1546
- "NextToken" : {
1547
- "shape" : "__string",
1548
- "location" : "querystring",
1549
- "locationName" : "nextToken"
1550
- }
1551
- },
1552
- "required" : [ "ConfigurationId" ]
1553
- },
1554
- "ListConfigurationRevisionsResponse" : {
1555
- "type" : "structure",
1556
- "members" : {
1557
- "ConfigurationId" : {
1558
- "shape" : "__string",
1559
- "locationName" : "configurationId"
1560
- },
1561
- "MaxResults" : {
1562
- "shape" : "__integer",
1563
- "locationName" : "maxResults"
1564
- },
1565
- "NextToken" : {
1566
- "shape" : "__string",
1567
- "locationName" : "nextToken"
1568
- },
1569
- "Revisions" : {
1570
- "shape" : "__listOfConfigurationRevision",
1571
- "locationName" : "revisions"
1572
- }
1573
- }
1574
- },
1575
- "ListConfigurationsOutput" : {
1576
- "type" : "structure",
1577
- "members" : {
1578
- "Configurations" : {
1579
- "shape" : "__listOfConfiguration",
1580
- "locationName" : "configurations"
1581
- },
1582
- "MaxResults" : {
1583
- "shape" : "__integer",
1584
- "locationName" : "maxResults"
1585
- },
1586
- "NextToken" : {
1587
- "shape" : "__string",
1588
- "locationName" : "nextToken"
1589
- }
1590
- }
1591
- },
1592
- "ListConfigurationsRequest" : {
1593
- "type" : "structure",
1594
- "members" : {
1595
- "MaxResults" : {
1596
- "shape" : "MaxResults",
1597
- "location" : "querystring",
1598
- "locationName" : "maxResults"
1599
- },
1600
- "NextToken" : {
1601
- "shape" : "__string",
1602
- "location" : "querystring",
1603
- "locationName" : "nextToken"
1604
- }
1605
- }
1606
- },
1607
- "ListConfigurationsResponse" : {
1608
- "type" : "structure",
1609
- "members" : {
1610
- "Configurations" : {
1611
- "shape" : "__listOfConfiguration",
1612
- "locationName" : "configurations"
1613
- },
1614
- "MaxResults" : {
1615
- "shape" : "__integer",
1616
- "locationName" : "maxResults"
1617
- },
1618
- "NextToken" : {
1619
- "shape" : "__string",
1620
- "locationName" : "nextToken"
1621
- }
1622
- }
1623
- },
1624
- "ListTagsRequest": {
1625
- "type": "structure",
1626
- "members": {
1627
- "ResourceArn": {
1628
- "shape": "__string",
1629
- "location": "uri",
1630
- "locationName": "resource-arn"
1631
- }
1632
- },
1633
- "required": [
1634
- "ResourceArn"
1635
- ]
1636
- },
1637
- "ListTagsResponse": {
1638
- "type": "structure",
1639
- "members": {
1640
- "Tags": {
1641
- "shape": "__mapOf__string",
1642
- "locationName": "tags"
1643
- }
1644
- }
1645
- },
1646
- "ListUsersOutput" : {
1647
- "type" : "structure",
1648
- "members" : {
1649
- "BrokerId" : {
1650
- "shape" : "__string",
1651
- "locationName" : "brokerId"
1652
- },
1653
- "MaxResults" : {
1654
- "shape" : "__integerMin5Max100",
1655
- "locationName" : "maxResults"
1656
- },
1657
- "NextToken" : {
1658
- "shape" : "__string",
1659
- "locationName" : "nextToken"
1660
- },
1661
- "Users" : {
1662
- "shape" : "__listOfUserSummary",
1663
- "locationName" : "users"
1664
- }
1665
- }
1666
- },
1667
- "ListUsersRequest" : {
1668
- "type" : "structure",
1669
- "members" : {
1670
- "BrokerId" : {
1671
- "shape" : "__string",
1672
- "location" : "uri",
1673
- "locationName" : "broker-id"
1674
- },
1675
- "MaxResults" : {
1676
- "shape" : "MaxResults",
1677
- "location" : "querystring",
1678
- "locationName" : "maxResults"
1679
- },
1680
- "NextToken" : {
1681
- "shape" : "__string",
1682
- "location" : "querystring",
1683
- "locationName" : "nextToken"
1684
- }
1685
- },
1686
- "required" : [ "BrokerId" ]
1687
- },
1688
- "ListUsersResponse" : {
1689
- "type" : "structure",
1690
- "members" : {
1691
- "BrokerId" : {
1692
- "shape" : "__string",
1693
- "locationName" : "brokerId"
1694
- },
1695
- "MaxResults" : {
1696
- "shape" : "__integerMin5Max100",
1697
- "locationName" : "maxResults"
1698
- },
1699
- "NextToken" : {
1700
- "shape" : "__string",
1701
- "locationName" : "nextToken"
1702
- },
1703
- "Users" : {
1704
- "shape" : "__listOfUserSummary",
1705
- "locationName" : "users"
1706
- }
1707
- }
1708
- },
1709
- "Logs" : {
1710
- "type" : "structure",
1711
- "members" : {
1712
- "Audit" : {
1713
- "shape" : "__boolean",
1714
- "locationName" : "audit"
1715
- },
1716
- "General" : {
1717
- "shape" : "__boolean",
1718
- "locationName" : "general"
1719
- }
1720
- }
1721
- },
1722
- "LogsSummary" : {
1723
- "type" : "structure",
1724
- "members" : {
1725
- "Audit" : {
1726
- "shape" : "__boolean",
1727
- "locationName" : "audit"
1728
- },
1729
- "AuditLogGroup" : {
1730
- "shape" : "__string",
1731
- "locationName" : "auditLogGroup"
1732
- },
1733
- "General" : {
1734
- "shape" : "__boolean",
1735
- "locationName" : "general"
1736
- },
1737
- "GeneralLogGroup" : {
1738
- "shape" : "__string",
1739
- "locationName" : "generalLogGroup"
1740
- },
1741
- "Pending" : {
1742
- "shape" : "PendingLogs",
1743
- "locationName" : "pending"
1744
- }
1745
- }
1746
- },
1747
- "MaxResults" : {
1748
- "type" : "integer",
1749
- "min" : 1,
1750
- "max" : 100
1751
- },
1752
- "NotFoundException" : {
1753
- "type" : "structure",
1754
- "members" : {
1755
- "ErrorAttribute" : {
1756
- "shape" : "__string",
1757
- "locationName" : "errorAttribute"
1758
- },
1759
- "Message" : {
1760
- "shape" : "__string",
1761
- "locationName" : "message"
1762
- }
1763
- },
1764
- "exception" : true,
1765
- "error" : {
1766
- "httpStatusCode" : 404
1767
- }
1768
- },
1769
- "PendingLogs" : {
1770
- "type" : "structure",
1771
- "members" : {
1772
- "Audit" : {
1773
- "shape" : "__boolean",
1774
- "locationName" : "audit"
1775
- },
1776
- "General" : {
1777
- "shape" : "__boolean",
1778
- "locationName" : "general"
1779
- }
1780
- }
1781
- },
1782
- "RebootBrokerRequest" : {
1783
- "type" : "structure",
1784
- "members" : {
1785
- "BrokerId" : {
1786
- "shape" : "__string",
1787
- "location" : "uri",
1788
- "locationName" : "broker-id"
1789
- }
1790
- },
1791
- "required" : [ "BrokerId" ]
1792
- },
1793
- "RebootBrokerResponse" : {
1794
- "type" : "structure",
1795
- "members" : { }
1796
- },
1797
- "SanitizationWarning" : {
1798
- "type" : "structure",
1799
- "members" : {
1800
- "AttributeName" : {
1801
- "shape" : "__string",
1802
- "locationName" : "attributeName"
1803
- },
1804
- "ElementName" : {
1805
- "shape" : "__string",
1806
- "locationName" : "elementName"
1807
- },
1808
- "Reason" : {
1809
- "shape" : "SanitizationWarningReason",
1810
- "locationName" : "reason"
1811
- }
1812
- }
1813
- },
1814
- "SanitizationWarningReason" : {
1815
- "type" : "string",
1816
- "enum" : [ "DISALLOWED_ELEMENT_REMOVED", "DISALLOWED_ATTRIBUTE_REMOVED", "INVALID_ATTRIBUTE_VALUE_REMOVED" ]
1817
- },
1818
- "Tags": {
1819
- "type": "structure",
1820
- "members": {
1821
- "Tags": {
1822
- "shape": "__mapOf__string",
1823
- "locationName": "tags"
1824
- }
1825
- }
1826
- },
1827
- "UnauthorizedException" : {
1828
- "type" : "structure",
1829
- "members" : {
1830
- "ErrorAttribute" : {
1831
- "shape" : "__string",
1832
- "locationName" : "errorAttribute"
1833
- },
1834
- "Message" : {
1835
- "shape" : "__string",
1836
- "locationName" : "message"
1837
- }
1838
- },
1839
- "exception" : true,
1840
- "error" : {
1841
- "httpStatusCode" : 401
1842
- }
1843
- },
1844
- "UpdateBrokerInput" : {
1845
- "type" : "structure",
1846
- "members" : {
1847
- "AutoMinorVersionUpgrade" : {
1848
- "shape" : "__boolean",
1849
- "locationName" : "autoMinorVersionUpgrade"
1850
- },
1851
- "Configuration" : {
1852
- "shape" : "ConfigurationId",
1853
- "locationName" : "configuration"
1854
- },
1855
- "EngineVersion" : {
1856
- "shape" : "__string",
1857
- "locationName" : "engineVersion"
1858
- },
1859
- "Logs" : {
1860
- "shape" : "Logs",
1861
- "locationName" : "logs"
1862
- }
1863
- }
1864
- },
1865
- "UpdateBrokerOutput" : {
1866
- "type" : "structure",
1867
- "members" : {
1868
- "AutoMinorVersionUpgrade" : {
1869
- "shape" : "__boolean",
1870
- "locationName" : "autoMinorVersionUpgrade"
1871
- },
1872
- "BrokerId" : {
1873
- "shape" : "__string",
1874
- "locationName" : "brokerId"
1875
- },
1876
- "Configuration" : {
1877
- "shape" : "ConfigurationId",
1878
- "locationName" : "configuration"
1879
- },
1880
- "EngineVersion" : {
1881
- "shape" : "__string",
1882
- "locationName" : "engineVersion"
1883
- },
1884
- "Logs" : {
1885
- "shape" : "Logs",
1886
- "locationName" : "logs"
1887
- }
1888
- }
1889
- },
1890
- "UpdateBrokerRequest" : {
1891
- "type" : "structure",
1892
- "members" : {
1893
- "AutoMinorVersionUpgrade" : {
1894
- "shape" : "__boolean",
1895
- "locationName" : "autoMinorVersionUpgrade"
1896
- },
1897
- "BrokerId" : {
1898
- "shape" : "__string",
1899
- "location" : "uri",
1900
- "locationName" : "broker-id"
1901
- },
1902
- "Configuration" : {
1903
- "shape" : "ConfigurationId",
1904
- "locationName" : "configuration"
1905
- },
1906
- "EngineVersion" : {
1907
- "shape" : "__string",
1908
- "locationName" : "engineVersion"
1909
- },
1910
- "Logs" : {
1911
- "shape" : "Logs",
1912
- "locationName" : "logs"
1913
- }
1914
- },
1915
- "required" : [ "BrokerId" ]
1916
- },
1917
- "UpdateBrokerResponse" : {
1918
- "type" : "structure",
1919
- "members" : {
1920
- "AutoMinorVersionUpgrade" : {
1921
- "shape" : "__boolean",
1922
- "locationName" : "autoMinorVersionUpgrade"
1923
- },
1924
- "BrokerId" : {
1925
- "shape" : "__string",
1926
- "locationName" : "brokerId"
1927
- },
1928
- "Configuration" : {
1929
- "shape" : "ConfigurationId",
1930
- "locationName" : "configuration"
1931
- },
1932
- "EngineVersion" : {
1933
- "shape" : "__string",
1934
- "locationName" : "engineVersion"
1935
- },
1936
- "Logs" : {
1937
- "shape" : "Logs",
1938
- "locationName" : "logs"
1939
- }
1940
- }
1941
- },
1942
- "UpdateConfigurationInput" : {
1943
- "type" : "structure",
1944
- "members" : {
1945
- "Data" : {
1946
- "shape" : "__string",
1947
- "locationName" : "data"
1948
- },
1949
- "Description" : {
1950
- "shape" : "__string",
1951
- "locationName" : "description"
1952
- }
1953
- }
1954
- },
1955
- "UpdateConfigurationOutput" : {
1956
- "type" : "structure",
1957
- "members" : {
1958
- "Arn" : {
1959
- "shape" : "__string",
1960
- "locationName" : "arn"
1961
- },
1962
- "Created" : {
1963
- "shape" : "__timestampIso8601",
1964
- "locationName" : "created"
1965
- },
1966
- "Id" : {
1967
- "shape" : "__string",
1968
- "locationName" : "id"
1969
- },
1970
- "LatestRevision" : {
1971
- "shape" : "ConfigurationRevision",
1972
- "locationName" : "latestRevision"
1973
- },
1974
- "Name" : {
1975
- "shape" : "__string",
1976
- "locationName" : "name"
1977
- },
1978
- "Warnings" : {
1979
- "shape" : "__listOfSanitizationWarning",
1980
- "locationName" : "warnings"
1981
- }
1982
- }
1983
- },
1984
- "UpdateConfigurationRequest" : {
1985
- "type" : "structure",
1986
- "members" : {
1987
- "ConfigurationId" : {
1988
- "shape" : "__string",
1989
- "location" : "uri",
1990
- "locationName" : "configuration-id"
1991
- },
1992
- "Data" : {
1993
- "shape" : "__string",
1994
- "locationName" : "data"
1995
- },
1996
- "Description" : {
1997
- "shape" : "__string",
1998
- "locationName" : "description"
1999
- }
2000
- },
2001
- "required" : [ "ConfigurationId" ]
2002
- },
2003
- "UpdateConfigurationResponse" : {
2004
- "type" : "structure",
2005
- "members" : {
2006
- "Arn" : {
2007
- "shape" : "__string",
2008
- "locationName" : "arn"
2009
- },
2010
- "Created" : {
2011
- "shape" : "__timestampIso8601",
2012
- "locationName" : "created"
2013
- },
2014
- "Id" : {
2015
- "shape" : "__string",
2016
- "locationName" : "id"
2017
- },
2018
- "LatestRevision" : {
2019
- "shape" : "ConfigurationRevision",
2020
- "locationName" : "latestRevision"
2021
- },
2022
- "Name" : {
2023
- "shape" : "__string",
2024
- "locationName" : "name"
2025
- },
2026
- "Warnings" : {
2027
- "shape" : "__listOfSanitizationWarning",
2028
- "locationName" : "warnings"
2029
- }
2030
- }
2031
- },
2032
- "UpdateUserInput" : {
2033
- "type" : "structure",
2034
- "members" : {
2035
- "ConsoleAccess" : {
2036
- "shape" : "__boolean",
2037
- "locationName" : "consoleAccess"
2038
- },
2039
- "Groups" : {
2040
- "shape" : "__listOf__string",
2041
- "locationName" : "groups"
2042
- },
2043
- "Password" : {
2044
- "shape" : "__string",
2045
- "locationName" : "password"
2046
- }
2047
- }
2048
- },
2049
- "UpdateUserRequest" : {
2050
- "type" : "structure",
2051
- "members" : {
2052
- "BrokerId" : {
2053
- "shape" : "__string",
2054
- "location" : "uri",
2055
- "locationName" : "broker-id"
2056
- },
2057
- "ConsoleAccess" : {
2058
- "shape" : "__boolean",
2059
- "locationName" : "consoleAccess"
2060
- },
2061
- "Groups" : {
2062
- "shape" : "__listOf__string",
2063
- "locationName" : "groups"
2064
- },
2065
- "Password" : {
2066
- "shape" : "__string",
2067
- "locationName" : "password"
2068
- },
2069
- "Username" : {
2070
- "shape" : "__string",
2071
- "location" : "uri",
2072
- "locationName" : "username"
2073
- }
2074
- },
2075
- "required" : [ "Username", "BrokerId" ]
2076
- },
2077
- "UpdateUserResponse" : {
2078
- "type" : "structure",
2079
- "members" : { }
2080
- },
2081
- "User" : {
2082
- "type" : "structure",
2083
- "members" : {
2084
- "ConsoleAccess" : {
2085
- "shape" : "__boolean",
2086
- "locationName" : "consoleAccess"
2087
- },
2088
- "Groups" : {
2089
- "shape" : "__listOf__string",
2090
- "locationName" : "groups"
2091
- },
2092
- "Password" : {
2093
- "shape" : "__string",
2094
- "locationName" : "password"
2095
- },
2096
- "Username" : {
2097
- "shape" : "__string",
2098
- "locationName" : "username"
2099
- }
2100
- }
2101
- },
2102
- "UserPendingChanges" : {
2103
- "type" : "structure",
2104
- "members" : {
2105
- "ConsoleAccess" : {
2106
- "shape" : "__boolean",
2107
- "locationName" : "consoleAccess"
2108
- },
2109
- "Groups" : {
2110
- "shape" : "__listOf__string",
2111
- "locationName" : "groups"
2112
- },
2113
- "PendingChange" : {
2114
- "shape" : "ChangeType",
2115
- "locationName" : "pendingChange"
2116
- }
2117
- }
2118
- },
2119
- "UserSummary" : {
2120
- "type" : "structure",
2121
- "members" : {
2122
- "PendingChange" : {
2123
- "shape" : "ChangeType",
2124
- "locationName" : "pendingChange"
2125
- },
2126
- "Username" : {
2127
- "shape" : "__string",
2128
- "locationName" : "username"
2129
- }
2130
- }
2131
- },
2132
- "WeeklyStartTime" : {
2133
- "type" : "structure",
2134
- "members" : {
2135
- "DayOfWeek" : {
2136
- "shape" : "DayOfWeek",
2137
- "locationName" : "dayOfWeek"
2138
- },
2139
- "TimeOfDay" : {
2140
- "shape" : "__string",
2141
- "locationName" : "timeOfDay"
2142
- },
2143
- "TimeZone" : {
2144
- "shape" : "__string",
2145
- "locationName" : "timeZone"
2146
- }
2147
- }
2148
- },
2149
- "__boolean" : {
2150
- "type" : "boolean"
2151
- },
2152
- "__double" : {
2153
- "type" : "double"
2154
- },
2155
- "__integer" : {
2156
- "type" : "integer"
2157
- },
2158
- "__integerMin5Max100" : {
2159
- "type" : "integer",
2160
- "min" : 5,
2161
- "max" : 100
2162
- },
2163
- "__listOfBrokerInstance" : {
2164
- "type" : "list",
2165
- "member" : {
2166
- "shape" : "BrokerInstance"
2167
- }
2168
- },
2169
- "__listOfBrokerSummary" : {
2170
- "type" : "list",
2171
- "member" : {
2172
- "shape" : "BrokerSummary"
2173
- }
2174
- },
2175
- "__listOfConfiguration" : {
2176
- "type" : "list",
2177
- "member" : {
2178
- "shape" : "Configuration"
2179
- }
2180
- },
2181
- "__listOfConfigurationId" : {
2182
- "type" : "list",
2183
- "member" : {
2184
- "shape" : "ConfigurationId"
2185
- }
2186
- },
2187
- "__listOfConfigurationRevision" : {
2188
- "type" : "list",
2189
- "member" : {
2190
- "shape" : "ConfigurationRevision"
2191
- }
2192
- },
2193
- "__listOfSanitizationWarning" : {
2194
- "type" : "list",
2195
- "member" : {
2196
- "shape" : "SanitizationWarning"
2197
- }
2198
- },
2199
- "__listOfUser" : {
2200
- "type" : "list",
2201
- "member" : {
2202
- "shape" : "User"
2203
- }
2204
- },
2205
- "__listOfUserSummary" : {
2206
- "type" : "list",
2207
- "member" : {
2208
- "shape" : "UserSummary"
2209
- }
2210
- },
2211
- "__listOf__string" : {
2212
- "type" : "list",
2213
- "member" : {
2214
- "shape" : "__string"
2215
- }
2216
- },
2217
- "__long" : {
2218
- "type" : "long"
2219
- },
2220
- "__mapOf__string": {
2221
- "type": "map",
2222
- "key": {
2223
- "shape": "__string"
2224
- },
2225
- "value": {
2226
- "shape": "__string"
2227
- }
2228
- },
2229
- "__string" : {
2230
- "type" : "string"
2231
- },
2232
- "__timestampIso8601" : {
2233
- "type" : "timestamp",
2234
- "timestampFormat" : "iso8601"
2235
- },
2236
- "__timestampUnix" : {
2237
- "type" : "timestamp",
2238
- "timestampFormat" : "unixTimestamp"
2239
- }
2240
- }
2241
- }