aws-sdk-core 2.11.409 → 3.77.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1273) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -577
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +30 -17
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +187 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1146
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -863
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -28
  140. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1125
  141. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  142. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  143. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  144. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  145. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  146. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  147. data/apis/acm/2015-12-08/api-2.json +0 -872
  148. data/apis/acm/2015-12-08/examples-1.json +0 -5
  149. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  150. data/apis/acm/2015-12-08/smoke.json +0 -18
  151. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  152. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4129
  153. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  154. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  155. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  156. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  157. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  158. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  159. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  160. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  161. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  162. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  163. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  164. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  165. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  166. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  167. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  168. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  169. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -783
  170. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  171. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  172. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  173. data/apis/application-insights/2018-11-25/api-2.json +0 -1141
  174. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  175. data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
  176. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  177. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  178. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  179. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  180. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  181. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  182. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  183. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  184. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  185. data/apis/appstream/2016-12-01/smoke.json +0 -11
  186. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  187. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  188. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  189. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  190. data/apis/athena/2017-05-18/api-2.json +0 -989
  191. data/apis/athena/2017-05-18/examples-1.json +0 -5
  192. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  193. data/apis/athena/2017-05-18/smoke.json +0 -11
  194. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  195. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  196. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  197. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  198. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  199. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  200. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  201. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  202. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  203. data/apis/backup/2018-11-15/api-2.json +0 -2150
  204. data/apis/backup/2018-11-15/examples-1.json +0 -5
  205. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  206. data/apis/batch/2016-08-10/api-2.json +0 -1137
  207. data/apis/batch/2016-08-10/examples-1.json +0 -589
  208. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  209. data/apis/batch/2016-08-10/smoke.json +0 -11
  210. data/apis/budgets/2016-10-20/api-2.json +0 -830
  211. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  212. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  213. data/apis/ce/2017-10-25/api-2.json +0 -1633
  214. data/apis/ce/2017-10-25/examples-1.json +0 -5
  215. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  216. data/apis/chime/2018-05-01/api-2.json +0 -4483
  217. data/apis/chime/2018-05-01/examples-1.json +0 -5
  218. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  219. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  220. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  221. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  222. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  223. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  224. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  225. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  226. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  227. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  228. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  229. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  230. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  231. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  232. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  233. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  234. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  235. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  239. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  243. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  244. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  245. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  246. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  247. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  250. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  254. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  257. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  258. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  259. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  262. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  263. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  265. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  266. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  267. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  268. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  269. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  270. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  271. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  272. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  273. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  274. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  275. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  276. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  277. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  278. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  279. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  280. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  281. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  282. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  283. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  284. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  285. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  286. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  287. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  288. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  289. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  290. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  291. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  292. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  293. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  295. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  296. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  297. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  298. data/apis/codebuild/2016-10-06/api-2.json +0 -1738
  299. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  300. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  301. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  302. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  303. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  304. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  305. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  306. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  307. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  308. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  309. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  311. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  312. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  313. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  314. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  315. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  316. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  317. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  318. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  319. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  320. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  321. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  322. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  323. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  324. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  325. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  326. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  327. data/apis/codestar/2017-04-19/smoke.json +0 -11
  328. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  329. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  330. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  331. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  332. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  333. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  334. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  335. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  336. data/apis/comprehend/2017-11-27/api-2.json +0 -2632
  337. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  338. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  339. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  340. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  341. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  342. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  343. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  344. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  345. data/apis/config/2014-11-12/api-2.json +0 -4340
  346. data/apis/config/2014-11-12/examples-1.json +0 -5
  347. data/apis/config/2014-11-12/paginators-1.json +0 -21
  348. data/apis/config/2014-11-12/smoke.json +0 -19
  349. data/apis/connect/2017-08-08/api-2.json +0 -2139
  350. data/apis/connect/2017-08-08/examples-1.json +0 -5
  351. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  352. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  353. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  354. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  355. data/apis/cur/2017-01-06/api-2.json +0 -277
  356. data/apis/cur/2017-01-06/examples-1.json +0 -102
  357. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  358. data/apis/cur/2017-01-06/smoke.json +0 -11
  359. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  360. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  361. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  362. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  363. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  364. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  365. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  366. data/apis/dax/2017-04-19/api-2.json +0 -1140
  367. data/apis/dax/2017-04-19/examples-1.json +0 -5
  368. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  369. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  370. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  371. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  372. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  373. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  374. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  375. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  376. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  377. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  378. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  379. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  380. data/apis/discovery/2015-11-01/smoke.json +0 -11
  381. data/apis/dlm/2018-01-12/api-2.json +0 -642
  382. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  383. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  384. data/apis/dms/2016-01-01/api-2.json +0 -2296
  385. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  386. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  387. data/apis/dms/2016-01-01/smoke.json +0 -18
  388. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  389. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  390. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  391. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  392. data/apis/docdb/2014-10-31/smoke.json +0 -18
  393. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  394. data/apis/ds/2015-04-16/api-2.json +0 -3012
  395. data/apis/ds/2015-04-16/examples-1.json +0 -5
  396. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  397. data/apis/ds/2015-04-16/smoke.json +0 -20
  398. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  399. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  400. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  401. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  402. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  403. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  404. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  405. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  406. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  407. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  408. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  409. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  410. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  411. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  412. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  413. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  414. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  415. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  416. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  417. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  418. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  419. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  420. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  421. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  422. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  423. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  424. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  425. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  426. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  427. data/apis/ec2/2016-11-15/api-2.json +0 -28674
  428. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  429. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  430. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  431. data/apis/ec2/2016-11-15/smoke.json +0 -20
  432. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  433. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  434. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  435. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  436. data/apis/ecr/2015-09-21/smoke.json +0 -18
  437. data/apis/ecs/2014-11-13/api-2.json +0 -3130
  438. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  439. data/apis/ecs/2014-11-13/paginators-1.json +0 -46
  440. data/apis/ecs/2014-11-13/smoke.json +0 -18
  441. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  442. data/apis/eks/2017-11-01/api-2.json +0 -1429
  443. data/apis/eks/2017-11-01/examples-1.json +0 -135
  444. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  445. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  446. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  447. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  448. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  449. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  450. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  451. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  452. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  453. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  454. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  455. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  456. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  457. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  458. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  459. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  460. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  461. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  462. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  463. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  464. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  465. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  466. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  467. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  468. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  469. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  470. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  471. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  472. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  473. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  474. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  475. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  476. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  477. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  478. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  479. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  480. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  481. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  482. data/apis/email/2010-12-01/api-2.json +0 -3182
  483. data/apis/email/2010-12-01/examples-1.json +0 -1021
  484. data/apis/email/2010-12-01/paginators-1.json +0 -18
  485. data/apis/email/2010-12-01/smoke.json +0 -18
  486. data/apis/email/2010-12-01/waiters-2.json +0 -18
  487. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  488. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  489. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  490. data/apis/es/2015-01-01/api-2.json +0 -1584
  491. data/apis/es/2015-01-01/examples-1.json +0 -5
  492. data/apis/es/2015-01-01/paginators-1.json +0 -29
  493. data/apis/es/2015-01-01/smoke.json +0 -18
  494. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  495. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  496. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  497. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  498. data/apis/events/2015-10-07/api-2.json +0 -1462
  499. data/apis/events/2015-10-07/examples-1.json +0 -5
  500. data/apis/events/2015-10-07/paginators-1.json +0 -4
  501. data/apis/events/2015-10-07/smoke.json +0 -18
  502. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  503. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  504. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  505. data/apis/firehose/2015-08-04/smoke.json +0 -18
  506. data/apis/fms/2018-01-01/api-2.json +0 -701
  507. data/apis/fms/2018-01-01/examples-1.json +0 -5
  508. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  509. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  510. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  511. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  512. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  513. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  514. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  515. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  516. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  517. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  518. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  519. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  520. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  521. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  522. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  523. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  524. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  525. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  526. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  527. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  528. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  529. data/apis/glacier/2012-06-01/smoke.json +0 -18
  530. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  531. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  532. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  533. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  534. data/apis/glue/2017-03-31/api-2.json +0 -6302
  535. data/apis/glue/2017-03-31/examples-1.json +0 -5
  536. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  537. data/apis/glue/2017-03-31/smoke.json +0 -11
  538. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  539. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  540. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  541. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  542. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  543. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  544. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  545. data/apis/health/2016-08-04/api-2.json +0 -554
  546. data/apis/health/2016-08-04/examples-1.json +0 -5
  547. data/apis/health/2016-08-04/paginators-1.json +0 -31
  548. data/apis/health/2016-08-04/smoke.json +0 -11
  549. data/apis/iam/2010-05-08/api-2.json +0 -5787
  550. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  551. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  552. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  553. data/apis/iam/2010-05-08/smoke.json +0 -18
  554. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  555. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  556. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  557. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  558. data/apis/importexport/2010-06-01/api-2.json +0 -667
  559. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  560. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  561. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  562. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  563. data/apis/inspector/2016-02-16/smoke.json +0 -18
  564. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  565. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  566. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  567. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  568. data/apis/iot/2015-05-28/api-2.json +0 -11037
  569. data/apis/iot/2015-05-28/examples-1.json +0 -5
  570. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  571. data/apis/iot/2015-05-28/smoke.json +0 -18
  572. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  573. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  574. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  575. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  576. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  577. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  578. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  579. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  580. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  581. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  582. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  583. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  584. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  585. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  586. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  587. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  592. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  593. data/apis/kendra/2019-02-03/api-2.json +0 -1737
  594. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  595. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  596. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  597. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  598. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  599. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  600. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  602. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  603. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  604. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  605. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  606. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  607. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  608. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  609. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  610. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2265
  611. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  612. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  613. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  614. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  615. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  616. data/apis/kms/2014-11-01/api-2.json +0 -2141
  617. data/apis/kms/2014-11-01/examples-1.json +0 -906
  618. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  619. data/apis/kms/2014-11-01/smoke.json +0 -19
  620. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  621. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  622. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  623. data/apis/lambda/2014-11-11/api-2.json +0 -668
  624. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  625. data/apis/lambda/2015-03-31/api-2.json +0 -2682
  626. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  627. data/apis/lambda/2015-03-31/paginators-1.json +0 -46
  628. data/apis/lambda/2015-03-31/smoke.json +0 -18
  629. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  630. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  631. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  632. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  633. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  634. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  635. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  636. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  637. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  638. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  639. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  640. data/apis/logs/2014-03-28/api-2.json +0 -1701
  641. data/apis/logs/2014-03-28/examples-1.json +0 -5
  642. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  643. data/apis/logs/2014-03-28/smoke.json +0 -19
  644. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  645. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  646. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  647. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  648. data/apis/macie/2017-12-19/api-2.json +0 -365
  649. data/apis/macie/2017-12-19/examples-1.json +0 -5
  650. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  651. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  652. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  653. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  654. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  655. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  656. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  657. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  658. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  659. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  660. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  661. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  662. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  663. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
  664. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  665. data/apis/medialive/2017-10-14/api-2.json +0 -10613
  666. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  667. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  668. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  669. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  670. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  671. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  672. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  673. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  674. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  675. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  676. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  677. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  678. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  679. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  680. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  681. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  682. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  683. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  684. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  685. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  686. data/apis/mobile/2017-07-01/api-2.json +0 -551
  687. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  688. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  689. data/apis/monitoring/2010-08-01/api-2.json +0 -1867
  690. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  691. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  692. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  693. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  694. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  695. data/apis/mq/2017-11-27/api-2.json +0 -2538
  696. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  697. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  698. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  699. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  700. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  701. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  702. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  703. data/apis/neptune/2014-10-31/smoke.json +0 -18
  704. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  705. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  706. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  707. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  708. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  709. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  710. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  711. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  712. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  713. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  714. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  715. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  716. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  717. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  718. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  719. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  720. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  721. data/apis/outposts/2019-12-03/api-2.json +0 -367
  722. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  723. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  724. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  725. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  726. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  727. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  728. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  729. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  730. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  731. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  732. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  733. data/apis/pi/2018-02-27/api-2.json +0 -253
  734. data/apis/pi/2018-02-27/examples-1.json +0 -5
  735. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  736. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  737. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  738. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  739. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  740. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  741. data/apis/polly/2016-06-10/api-2.json +0 -832
  742. data/apis/polly/2016-06-10/examples-1.json +0 -171
  743. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  744. data/apis/polly/2016-06-10/smoke.json +0 -11
  745. data/apis/pricing/2017-10-15/api-2.json +0 -227
  746. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  747. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  748. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  749. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  750. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  751. data/apis/qldb/2019-01-02/api-2.json +0 -776
  752. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  753. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  754. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  755. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  756. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  757. data/apis/ram/2018-01-04/api-2.json +0 -1272
  758. data/apis/ram/2018-01-04/examples-1.json +0 -5
  759. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  760. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  761. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  762. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  763. data/apis/rds/2013-01-10/api-2.json +0 -2903
  764. data/apis/rds/2013-01-10/examples-1.json +0 -5
  765. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  766. data/apis/rds/2013-01-10/smoke.json +0 -18
  767. data/apis/rds/2013-02-12/api-2.json +0 -3059
  768. data/apis/rds/2013-02-12/examples-1.json +0 -5
  769. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  770. data/apis/rds/2013-02-12/smoke.json +0 -18
  771. data/apis/rds/2013-09-09/api-2.json +0 -3160
  772. data/apis/rds/2013-09-09/examples-1.json +0 -5
  773. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  774. data/apis/rds/2013-09-09/smoke.json +0 -18
  775. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  776. data/apis/rds/2014-09-01/api-2.json +0 -3273
  777. data/apis/rds/2014-09-01/examples-1.json +0 -5
  778. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  779. data/apis/rds/2014-09-01/smoke.json +0 -18
  780. data/apis/rds/2014-10-31/api-2.json +0 -6881
  781. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  782. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  783. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  784. data/apis/rds/2014-10-31/smoke.json +0 -18
  785. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  786. data/apis/rds/2015-11-12/api-2.json +0 -5509
  787. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  788. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  789. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  790. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  791. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  792. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  793. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  794. data/apis/redshift/2012-12-01/smoke.json +0 -18
  795. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  796. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  797. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  798. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  799. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  800. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  801. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  802. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  803. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  804. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  805. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  806. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  807. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  808. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  809. data/apis/route53/2013-04-01/api-2.json +0 -3780
  810. data/apis/route53/2013-04-01/examples-1.json +0 -762
  811. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  812. data/apis/route53/2013-04-01/smoke.json +0 -18
  813. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  814. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  815. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  816. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  817. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  818. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  819. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  820. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  821. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  822. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  823. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  824. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  825. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  826. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  827. data/apis/s3/2006-03-01/api-2.json +0 -6653
  828. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  829. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  830. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  831. data/apis/s3/2006-03-01/smoke.json +0 -11
  832. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  833. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  834. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  835. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  836. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  837. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  838. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  839. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  840. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  841. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  842. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  843. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  844. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  845. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  846. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  847. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  848. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  849. data/apis/sdb/2009-04-15/api-2.json +0 -955
  850. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  851. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  852. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  853. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  854. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  855. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  856. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  857. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  858. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  859. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  860. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  861. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  862. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  863. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  864. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  865. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  866. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  867. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  868. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  869. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  870. data/apis/sesv2/2019-09-27/api-2.json +0 -2362
  871. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  872. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  873. data/apis/shield/2016-06-02/api-2.json +0 -893
  874. data/apis/shield/2016-06-02/examples-1.json +0 -5
  875. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  876. data/apis/shield/2016-06-02/smoke.json +0 -11
  877. data/apis/signer/2017-08-25/api-2.json +0 -817
  878. data/apis/signer/2017-08-25/examples-1.json +0 -5
  879. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  880. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  881. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  882. data/apis/sms/2016-10-24/api-2.json +0 -1366
  883. data/apis/sms/2016-10-24/examples-1.json +0 -5
  884. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  885. data/apis/sms/2016-10-24/smoke.json +0 -18
  886. data/apis/snowball/2016-06-30/api-2.json +0 -955
  887. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  888. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  889. data/apis/snowball/2016-06-30/smoke.json +0 -11
  890. data/apis/sns/2010-03-31/api-2.json +0 -1468
  891. data/apis/sns/2010-03-31/examples-1.json +0 -5
  892. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  893. data/apis/sns/2010-03-31/resources-1.json +0 -327
  894. data/apis/sns/2010-03-31/smoke.json +0 -19
  895. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  896. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  897. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  898. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  899. data/apis/sqs/2012-11-05/smoke.json +0 -18
  900. data/apis/ssm/2014-11-06/api-2.json +0 -9150
  901. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  902. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  903. data/apis/ssm/2014-11-06/smoke.json +0 -18
  904. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  905. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  906. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  907. data/apis/sso/2019-06-10/api-2.json +0 -281
  908. data/apis/sso/2019-06-10/examples-1.json +0 -5
  909. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  910. data/apis/states/2016-11-23/api-2.json +0 -1409
  911. data/apis/states/2016-11-23/examples-1.json +0 -5
  912. data/apis/states/2016-11-23/paginators-1.json +0 -28
  913. data/apis/states/2016-11-23/smoke.json +0 -11
  914. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  915. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  916. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  917. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  918. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  919. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  920. data/apis/sts/2011-06-15/api-2.json +0 -598
  921. data/apis/sts/2011-06-15/examples-1.json +0 -234
  922. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  923. data/apis/sts/2011-06-15/smoke.json +0 -19
  924. data/apis/support/2013-04-15/api-2.json +0 -773
  925. data/apis/support/2013-04-15/examples-1.json +0 -5
  926. data/apis/support/2013-04-15/paginators-1.json +0 -25
  927. data/apis/support/2013-04-15/smoke.json +0 -22
  928. data/apis/swf/2012-01-25/api-2.json +0 -2792
  929. data/apis/swf/2012-01-25/examples-1.json +0 -5
  930. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  931. data/apis/textract/2018-06-27/api-2.json +0 -653
  932. data/apis/textract/2018-06-27/examples-1.json +0 -5
  933. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  934. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  935. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  936. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  937. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  938. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  939. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  940. data/apis/transfer/2018-11-05/api-2.json +0 -940
  941. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  942. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  943. data/apis/translate/2017-07-01/api-2.json +0 -408
  944. data/apis/translate/2017-07-01/examples-1.json +0 -5
  945. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  946. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  947. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  948. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  949. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  950. data/apis/waf/2015-08-24/api-2.json +0 -3857
  951. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  952. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  953. data/apis/waf/2015-08-24/smoke.json +0 -21
  954. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  955. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  956. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  957. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  958. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  959. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  960. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  961. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  962. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  963. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  964. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  965. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  966. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  967. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  968. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  969. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  970. data/apis/workspaces/2015-04-08/api-2.json +0 -1994
  971. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  972. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  973. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  974. data/apis/xray/2016-04-12/api-2.json +0 -1352
  975. data/apis/xray/2016-04-12/examples-1.json +0 -5
  976. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  977. data/bin/aws.rb +0 -180
  978. data/endpoints.json +0 -5701
  979. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  980. data/lib/aws-sdk-core/acm.rb +0 -7
  981. data/lib/aws-sdk-core/acmpca.rb +0 -7
  982. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  983. data/lib/aws-sdk-core/amplify.rb +0 -6
  984. data/lib/aws-sdk-core/api/builder.rb +0 -129
  985. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  986. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  987. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  988. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  989. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  990. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  991. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  992. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  993. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  994. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  995. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  996. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  997. data/lib/aws-sdk-core/apigateway.rb +0 -6
  998. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  999. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1000. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1001. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1002. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1003. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1004. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1005. data/lib/aws-sdk-core/appstream.rb +0 -7
  1006. data/lib/aws-sdk-core/appsync.rb +0 -6
  1007. data/lib/aws-sdk-core/athena.rb +0 -6
  1008. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1009. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1010. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1011. data/lib/aws-sdk-core/backup.rb +0 -6
  1012. data/lib/aws-sdk-core/batch.rb +0 -6
  1013. data/lib/aws-sdk-core/budgets.rb +0 -6
  1014. data/lib/aws-sdk-core/checksums.rb +0 -51
  1015. data/lib/aws-sdk-core/chime.rb +0 -6
  1016. data/lib/aws-sdk-core/client.rb +0 -62
  1017. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1018. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1019. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1020. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1021. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1022. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1023. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1024. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1025. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1026. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1027. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1028. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1029. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1030. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1031. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1032. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1033. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1034. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1035. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1036. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1037. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1038. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1039. data/lib/aws-sdk-core/codestar.rb +0 -6
  1040. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1041. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1042. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1043. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1044. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1045. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1046. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1047. data/lib/aws-sdk-core/configservice.rb +0 -6
  1048. data/lib/aws-sdk-core/connect.rb +0 -6
  1049. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1050. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1051. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1052. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1053. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1054. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1055. data/lib/aws-sdk-core/datasync.rb +0 -6
  1056. data/lib/aws-sdk-core/dax.rb +0 -6
  1057. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1058. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1059. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1060. data/lib/aws-sdk-core/dlm.rb +0 -6
  1061. data/lib/aws-sdk-core/docdb.rb +0 -7
  1062. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1063. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1064. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1065. data/lib/aws-sdk-core/ec2.rb +0 -8
  1066. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1067. data/lib/aws-sdk-core/ecr.rb +0 -6
  1068. data/lib/aws-sdk-core/ecs.rb +0 -7
  1069. data/lib/aws-sdk-core/efs.rb +0 -6
  1070. data/lib/aws-sdk-core/eks.rb +0 -7
  1071. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1072. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1073. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1074. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1075. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1076. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1077. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1078. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1079. data/lib/aws-sdk-core/emr.rb +0 -7
  1080. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1081. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1082. data/lib/aws-sdk-core/firehose.rb +0 -6
  1083. data/lib/aws-sdk-core/fms.rb +0 -6
  1084. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1085. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1086. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1087. data/lib/aws-sdk-core/fsx.rb +0 -6
  1088. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1089. data/lib/aws-sdk-core/glacier.rb +0 -8
  1090. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1091. data/lib/aws-sdk-core/glue.rb +0 -6
  1092. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1093. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1094. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1095. data/lib/aws-sdk-core/health.rb +0 -6
  1096. data/lib/aws-sdk-core/iam.rb +0 -8
  1097. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1098. data/lib/aws-sdk-core/importexport.rb +0 -5
  1099. data/lib/aws-sdk-core/inspector.rb +0 -6
  1100. data/lib/aws-sdk-core/iot.rb +0 -6
  1101. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1102. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1103. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1104. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1105. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1106. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1107. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1108. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1109. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1110. data/lib/aws-sdk-core/kafka.rb +0 -5
  1111. data/lib/aws-sdk-core/kendra.rb +0 -6
  1112. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1113. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1114. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1115. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1116. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1117. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1118. data/lib/aws-sdk-core/kms.rb +0 -6
  1119. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1120. data/lib/aws-sdk-core/lambda.rb +0 -7
  1121. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1122. data/lib/aws-sdk-core/lex.rb +0 -6
  1123. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1124. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1125. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1126. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1127. data/lib/aws-sdk-core/macie.rb +0 -6
  1128. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1129. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1130. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1131. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1132. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1133. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1134. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1135. data/lib/aws-sdk-core/medialive.rb +0 -6
  1136. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1137. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1138. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1139. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1140. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1141. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1142. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1143. data/lib/aws-sdk-core/mobile.rb +0 -6
  1144. data/lib/aws-sdk-core/mq.rb +0 -5
  1145. data/lib/aws-sdk-core/mturk.rb +0 -6
  1146. data/lib/aws-sdk-core/neptune.rb +0 -7
  1147. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1148. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1149. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1150. data/lib/aws-sdk-core/organizations.rb +0 -6
  1151. data/lib/aws-sdk-core/outposts.rb +0 -6
  1152. data/lib/aws-sdk-core/partitions.rb +0 -174
  1153. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1154. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1155. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1156. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1157. data/lib/aws-sdk-core/personalize.rb +0 -6
  1158. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1159. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1160. data/lib/aws-sdk-core/pi.rb +0 -6
  1161. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1162. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1163. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1164. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1165. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1166. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1167. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1168. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1169. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1170. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1171. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1172. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1173. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1174. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1175. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1176. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1177. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1178. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1179. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1180. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1181. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1182. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1183. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1184. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1185. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1186. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1187. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1188. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1189. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1190. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1191. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1192. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1193. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1194. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1195. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1196. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1197. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1198. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1199. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1200. data/lib/aws-sdk-core/polly.rb +0 -14
  1201. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1202. data/lib/aws-sdk-core/pricing.rb +0 -6
  1203. data/lib/aws-sdk-core/qldb.rb +0 -6
  1204. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1205. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1206. data/lib/aws-sdk-core/ram.rb +0 -6
  1207. data/lib/aws-sdk-core/rds.rb +0 -16
  1208. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1209. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1210. data/lib/aws-sdk-core/redshift.rb +0 -7
  1211. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1212. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1213. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1214. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1215. data/lib/aws-sdk-core/route53.rb +0 -7
  1216. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1217. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1218. data/lib/aws-sdk-core/s3.rb +0 -26
  1219. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1220. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1221. data/lib/aws-sdk-core/s3control.rb +0 -6
  1222. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1223. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1224. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1225. data/lib/aws-sdk-core/schemas.rb +0 -6
  1226. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1227. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1228. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1229. data/lib/aws-sdk-core/service.rb +0 -4
  1230. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1231. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1232. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1233. data/lib/aws-sdk-core/ses.rb +0 -7
  1234. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1235. data/lib/aws-sdk-core/shield.rb +0 -6
  1236. data/lib/aws-sdk-core/signer.rb +0 -7
  1237. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1238. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1239. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1240. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1241. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1242. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1243. data/lib/aws-sdk-core/sms.rb +0 -6
  1244. data/lib/aws-sdk-core/snowball.rb +0 -6
  1245. data/lib/aws-sdk-core/sns.rb +0 -7
  1246. data/lib/aws-sdk-core/sqs.rb +0 -7
  1247. data/lib/aws-sdk-core/ssm.rb +0 -6
  1248. data/lib/aws-sdk-core/sso.rb +0 -6
  1249. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1250. data/lib/aws-sdk-core/states.rb +0 -6
  1251. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1252. data/lib/aws-sdk-core/sts.rb +0 -6
  1253. data/lib/aws-sdk-core/support.rb +0 -6
  1254. data/lib/aws-sdk-core/swf.rb +0 -6
  1255. data/lib/aws-sdk-core/textract.rb +0 -6
  1256. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1257. data/lib/aws-sdk-core/transfer.rb +0 -6
  1258. data/lib/aws-sdk-core/translate.rb +0 -6
  1259. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1260. data/lib/aws-sdk-core/version.rb +0 -3
  1261. data/lib/aws-sdk-core/waf.rb +0 -6
  1262. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1263. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1264. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1265. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1266. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1267. data/lib/aws-sdk-core/worklink.rb +0 -6
  1268. data/lib/aws-sdk-core/workmail.rb +0 -6
  1269. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1270. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1271. data/lib/aws-sdk-core/xray.rb +0 -6
  1272. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1273. data/service-models.json +0 -865
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,29 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeActionTargets": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults"
7
- },
8
- "DescribeProducts": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
- },
13
- "GetFindings": {
14
- "input_token": "NextToken",
15
- "output_token": "NextToken",
16
- "limit_key": "MaxResults"
17
- },
18
- "GetInsights": {
19
- "input_token": "NextToken",
20
- "output_token": "NextToken",
21
- "limit_key": "MaxResults"
22
- },
23
- "ListEnabledProductsForImport": {
24
- "input_token": "NextToken",
25
- "output_token": "NextToken",
26
- "limit_key": "MaxResults"
27
- }
28
- }
29
- }
@@ -1,1806 +0,0 @@
1
- {
2
- "metadata" : {
3
- "apiVersion" : "2017-09-08",
4
- "endpointPrefix" : "serverlessrepo",
5
- "signingName" : "serverlessrepo",
6
- "serviceFullName" : "AWSServerlessApplicationRepository",
7
- "serviceId" : "ServerlessApplicationRepository",
8
- "protocol" : "rest-json",
9
- "jsonVersion" : "1.1",
10
- "uid" : "serverlessrepo-2017-09-08",
11
- "signatureVersion" : "v4"
12
- },
13
- "operations" : {
14
- "CreateApplication" : {
15
- "name" : "CreateApplication",
16
- "http" : {
17
- "method" : "POST",
18
- "requestUri" : "/applications",
19
- "responseCode" : 201
20
- },
21
- "input" : {
22
- "shape" : "CreateApplicationRequest"
23
- },
24
- "output" : {
25
- "shape" : "CreateApplicationResponse"
26
- },
27
- "errors" : [ {
28
- "shape" : "TooManyRequestsException"
29
- }, {
30
- "shape" : "BadRequestException"
31
- }, {
32
- "shape" : "InternalServerErrorException"
33
- }, {
34
- "shape" : "ConflictException"
35
- }, {
36
- "shape" : "ForbiddenException"
37
- } ]
38
- },
39
- "CreateApplicationVersion" : {
40
- "name" : "CreateApplicationVersion",
41
- "http" : {
42
- "method" : "PUT",
43
- "requestUri" : "/applications/{applicationId}/versions/{semanticVersion}",
44
- "responseCode" : 201
45
- },
46
- "input" : {
47
- "shape" : "CreateApplicationVersionRequest"
48
- },
49
- "output" : {
50
- "shape" : "CreateApplicationVersionResponse"
51
- },
52
- "errors" : [ {
53
- "shape" : "TooManyRequestsException"
54
- }, {
55
- "shape" : "BadRequestException"
56
- }, {
57
- "shape" : "InternalServerErrorException"
58
- }, {
59
- "shape" : "ConflictException"
60
- }, {
61
- "shape" : "ForbiddenException"
62
- } ]
63
- },
64
- "CreateCloudFormationChangeSet" : {
65
- "name" : "CreateCloudFormationChangeSet",
66
- "http" : {
67
- "method" : "POST",
68
- "requestUri" : "/applications/{applicationId}/changesets",
69
- "responseCode" : 201
70
- },
71
- "input" : {
72
- "shape" : "CreateCloudFormationChangeSetRequest"
73
- },
74
- "output" : {
75
- "shape" : "CreateCloudFormationChangeSetResponse"
76
- },
77
- "errors" : [ {
78
- "shape" : "TooManyRequestsException"
79
- }, {
80
- "shape" : "BadRequestException"
81
- }, {
82
- "shape" : "InternalServerErrorException"
83
- }, {
84
- "shape" : "ForbiddenException"
85
- } ]
86
- },
87
- "CreateCloudFormationTemplate" : {
88
- "name" : "CreateCloudFormationTemplate",
89
- "http" : {
90
- "method" : "POST",
91
- "requestUri" : "/applications/{applicationId}/templates",
92
- "responseCode" : 201
93
- },
94
- "input" : {
95
- "shape" : "CreateCloudFormationTemplateRequest"
96
- },
97
- "output" : {
98
- "shape" : "CreateCloudFormationTemplateResponse"
99
- },
100
- "errors" : [ {
101
- "shape" : "NotFoundException"
102
- }, {
103
- "shape" : "TooManyRequestsException"
104
- }, {
105
- "shape" : "BadRequestException"
106
- }, {
107
- "shape" : "InternalServerErrorException"
108
- }, {
109
- "shape" : "ForbiddenException"
110
- } ]
111
- },
112
- "DeleteApplication" : {
113
- "name" : "DeleteApplication",
114
- "http" : {
115
- "method" : "DELETE",
116
- "requestUri" : "/applications/{applicationId}",
117
- "responseCode" : 204
118
- },
119
- "input" : {
120
- "shape" : "DeleteApplicationRequest"
121
- },
122
- "errors" : [ {
123
- "shape" : "BadRequestException"
124
- }, {
125
- "shape" : "InternalServerErrorException"
126
- }, {
127
- "shape" : "ForbiddenException"
128
- }, {
129
- "shape" : "NotFoundException"
130
- }, {
131
- "shape" : "TooManyRequestsException"
132
- }, {
133
- "shape" : "ConflictException"
134
- } ]
135
- },
136
- "GetApplication" : {
137
- "name" : "GetApplication",
138
- "http" : {
139
- "method" : "GET",
140
- "requestUri" : "/applications/{applicationId}",
141
- "responseCode" : 200
142
- },
143
- "input" : {
144
- "shape" : "GetApplicationRequest"
145
- },
146
- "output" : {
147
- "shape" : "GetApplicationResponse"
148
- },
149
- "errors" : [ {
150
- "shape" : "NotFoundException"
151
- }, {
152
- "shape" : "TooManyRequestsException"
153
- }, {
154
- "shape" : "BadRequestException"
155
- }, {
156
- "shape" : "InternalServerErrorException"
157
- }, {
158
- "shape" : "ForbiddenException"
159
- } ]
160
- },
161
- "GetApplicationPolicy" : {
162
- "name" : "GetApplicationPolicy",
163
- "http" : {
164
- "method" : "GET",
165
- "requestUri" : "/applications/{applicationId}/policy",
166
- "responseCode" : 200
167
- },
168
- "input" : {
169
- "shape" : "GetApplicationPolicyRequest"
170
- },
171
- "output" : {
172
- "shape" : "GetApplicationPolicyResponse"
173
- },
174
- "errors" : [ {
175
- "shape" : "NotFoundException"
176
- }, {
177
- "shape" : "TooManyRequestsException"
178
- }, {
179
- "shape" : "BadRequestException"
180
- }, {
181
- "shape" : "InternalServerErrorException"
182
- }, {
183
- "shape" : "ForbiddenException"
184
- } ]
185
- },
186
- "GetCloudFormationTemplate" : {
187
- "name" : "GetCloudFormationTemplate",
188
- "http" : {
189
- "method" : "GET",
190
- "requestUri" : "/applications/{applicationId}/templates/{templateId}",
191
- "responseCode" : 200
192
- },
193
- "input" : {
194
- "shape" : "GetCloudFormationTemplateRequest"
195
- },
196
- "output" : {
197
- "shape" : "GetCloudFormationTemplateResponse"
198
- },
199
- "errors" : [ {
200
- "shape" : "NotFoundException"
201
- }, {
202
- "shape" : "TooManyRequestsException"
203
- }, {
204
- "shape" : "BadRequestException"
205
- }, {
206
- "shape" : "InternalServerErrorException"
207
- }, {
208
- "shape" : "ForbiddenException"
209
- } ]
210
- },
211
- "ListApplicationDependencies" : {
212
- "name" : "ListApplicationDependencies",
213
- "http" : {
214
- "method" : "GET",
215
- "requestUri" : "/applications/{applicationId}/dependencies",
216
- "responseCode" : 200
217
- },
218
- "input" : {
219
- "shape" : "ListApplicationDependenciesRequest"
220
- },
221
- "output" : {
222
- "shape" : "ListApplicationDependenciesResponse"
223
- },
224
- "errors" : [ {
225
- "shape" : "NotFoundException"
226
- }, {
227
- "shape" : "TooManyRequestsException"
228
- }, {
229
- "shape" : "BadRequestException"
230
- }, {
231
- "shape" : "InternalServerErrorException"
232
- }, {
233
- "shape" : "ForbiddenException"
234
- } ]
235
- },
236
- "ListApplicationVersions" : {
237
- "name" : "ListApplicationVersions",
238
- "http" : {
239
- "method" : "GET",
240
- "requestUri" : "/applications/{applicationId}/versions",
241
- "responseCode" : 200
242
- },
243
- "input" : {
244
- "shape" : "ListApplicationVersionsRequest"
245
- },
246
- "output" : {
247
- "shape" : "ListApplicationVersionsResponse"
248
- },
249
- "errors" : [ {
250
- "shape" : "NotFoundException"
251
- }, {
252
- "shape" : "TooManyRequestsException"
253
- }, {
254
- "shape" : "BadRequestException"
255
- }, {
256
- "shape" : "InternalServerErrorException"
257
- }, {
258
- "shape" : "ForbiddenException"
259
- } ]
260
- },
261
- "ListApplications" : {
262
- "name" : "ListApplications",
263
- "http" : {
264
- "method" : "GET",
265
- "requestUri" : "/applications",
266
- "responseCode" : 200
267
- },
268
- "input" : {
269
- "shape" : "ListApplicationsRequest"
270
- },
271
- "output" : {
272
- "shape" : "ListApplicationsResponse"
273
- },
274
- "errors" : [ {
275
- "shape" : "NotFoundException"
276
- }, {
277
- "shape" : "BadRequestException"
278
- }, {
279
- "shape" : "InternalServerErrorException"
280
- }, {
281
- "shape" : "ForbiddenException"
282
- } ]
283
- },
284
- "PutApplicationPolicy" : {
285
- "name" : "PutApplicationPolicy",
286
- "http" : {
287
- "method" : "PUT",
288
- "requestUri" : "/applications/{applicationId}/policy",
289
- "responseCode" : 200
290
- },
291
- "input" : {
292
- "shape" : "PutApplicationPolicyRequest"
293
- },
294
- "output" : {
295
- "shape" : "PutApplicationPolicyResponse"
296
- },
297
- "errors" : [ {
298
- "shape" : "NotFoundException"
299
- }, {
300
- "shape" : "TooManyRequestsException"
301
- }, {
302
- "shape" : "BadRequestException"
303
- }, {
304
- "shape" : "InternalServerErrorException"
305
- }, {
306
- "shape" : "ForbiddenException"
307
- } ]
308
- },
309
- "UpdateApplication" : {
310
- "name" : "UpdateApplication",
311
- "http" : {
312
- "method" : "PATCH",
313
- "requestUri" : "/applications/{applicationId}",
314
- "responseCode" : 200
315
- },
316
- "input" : {
317
- "shape" : "UpdateApplicationRequest"
318
- },
319
- "output" : {
320
- "shape" : "UpdateApplicationResponse"
321
- },
322
- "errors" : [ {
323
- "shape" : "BadRequestException"
324
- }, {
325
- "shape" : "InternalServerErrorException"
326
- }, {
327
- "shape" : "ForbiddenException"
328
- }, {
329
- "shape" : "NotFoundException"
330
- }, {
331
- "shape" : "TooManyRequestsException"
332
- }, {
333
- "shape" : "ConflictException"
334
- } ]
335
- }
336
- },
337
- "shapes" : {
338
- "Application" : {
339
- "type" : "structure",
340
- "members" : {
341
- "ApplicationId" : {
342
- "shape" : "__string",
343
- "locationName" : "applicationId"
344
- },
345
- "Author" : {
346
- "shape" : "__string",
347
- "locationName" : "author"
348
- },
349
- "CreationTime" : {
350
- "shape" : "__string",
351
- "locationName" : "creationTime"
352
- },
353
- "Description" : {
354
- "shape" : "__string",
355
- "locationName" : "description"
356
- },
357
- "HomePageUrl" : {
358
- "shape" : "__string",
359
- "locationName" : "homePageUrl"
360
- },
361
- "IsVerifiedAuthor" : {
362
- "shape" : "__boolean",
363
- "locationName" : "isVerifiedAuthor"
364
- },
365
- "Labels" : {
366
- "shape" : "__listOf__string",
367
- "locationName" : "labels"
368
- },
369
- "LicenseUrl" : {
370
- "shape" : "__string",
371
- "locationName" : "licenseUrl"
372
- },
373
- "Name" : {
374
- "shape" : "__string",
375
- "locationName" : "name"
376
- },
377
- "ReadmeUrl" : {
378
- "shape" : "__string",
379
- "locationName" : "readmeUrl"
380
- },
381
- "SpdxLicenseId" : {
382
- "shape" : "__string",
383
- "locationName" : "spdxLicenseId"
384
- },
385
- "VerifiedAuthorUrl" : {
386
- "shape" : "__string",
387
- "locationName" : "verifiedAuthorUrl"
388
- },
389
- "Version" : {
390
- "shape" : "Version",
391
- "locationName" : "version"
392
- }
393
- },
394
- "required" : [ "Description", "Author", "ApplicationId", "Name" ]
395
- },
396
- "ApplicationDependencyPage" : {
397
- "type" : "structure",
398
- "members" : {
399
- "Dependencies" : {
400
- "shape" : "__listOfApplicationDependencySummary",
401
- "locationName" : "dependencies"
402
- },
403
- "NextToken" : {
404
- "shape" : "__string",
405
- "locationName" : "nextToken"
406
- }
407
- },
408
- "required" : [ "Dependencies" ]
409
- },
410
- "ApplicationDependencySummary" : {
411
- "type" : "structure",
412
- "members" : {
413
- "ApplicationId" : {
414
- "shape" : "__string",
415
- "locationName" : "applicationId"
416
- },
417
- "SemanticVersion" : {
418
- "shape" : "__string",
419
- "locationName" : "semanticVersion"
420
- }
421
- },
422
- "required" : [ "ApplicationId", "SemanticVersion" ]
423
- },
424
- "ApplicationPage" : {
425
- "type" : "structure",
426
- "members" : {
427
- "Applications" : {
428
- "shape" : "__listOfApplicationSummary",
429
- "locationName" : "applications"
430
- },
431
- "NextToken" : {
432
- "shape" : "__string",
433
- "locationName" : "nextToken"
434
- }
435
- },
436
- "required" : [ "Applications" ]
437
- },
438
- "ApplicationPolicy" : {
439
- "type" : "structure",
440
- "members" : {
441
- "Statements" : {
442
- "shape" : "__listOfApplicationPolicyStatement",
443
- "locationName" : "statements"
444
- }
445
- },
446
- "required" : [ "Statements" ]
447
- },
448
- "ApplicationPolicyStatement" : {
449
- "type" : "structure",
450
- "members" : {
451
- "Actions" : {
452
- "shape" : "__listOf__string",
453
- "locationName" : "actions"
454
- },
455
- "Principals" : {
456
- "shape" : "__listOf__string",
457
- "locationName" : "principals"
458
- },
459
- "StatementId" : {
460
- "shape" : "__string",
461
- "locationName" : "statementId"
462
- }
463
- },
464
- "required" : [ "Principals", "Actions" ]
465
- },
466
- "ApplicationSummary" : {
467
- "type" : "structure",
468
- "members" : {
469
- "ApplicationId" : {
470
- "shape" : "__string",
471
- "locationName" : "applicationId"
472
- },
473
- "Author" : {
474
- "shape" : "__string",
475
- "locationName" : "author"
476
- },
477
- "CreationTime" : {
478
- "shape" : "__string",
479
- "locationName" : "creationTime"
480
- },
481
- "Description" : {
482
- "shape" : "__string",
483
- "locationName" : "description"
484
- },
485
- "HomePageUrl" : {
486
- "shape" : "__string",
487
- "locationName" : "homePageUrl"
488
- },
489
- "Labels" : {
490
- "shape" : "__listOf__string",
491
- "locationName" : "labels"
492
- },
493
- "Name" : {
494
- "shape" : "__string",
495
- "locationName" : "name"
496
- },
497
- "SpdxLicenseId" : {
498
- "shape" : "__string",
499
- "locationName" : "spdxLicenseId"
500
- }
501
- },
502
- "required" : [ "Description", "Author", "ApplicationId", "Name" ]
503
- },
504
- "ApplicationVersionPage" : {
505
- "type" : "structure",
506
- "members" : {
507
- "NextToken" : {
508
- "shape" : "__string",
509
- "locationName" : "nextToken"
510
- },
511
- "Versions" : {
512
- "shape" : "__listOfVersionSummary",
513
- "locationName" : "versions"
514
- }
515
- },
516
- "required" : [ "Versions" ]
517
- },
518
- "BadRequestException" : {
519
- "type" : "structure",
520
- "members" : {
521
- "ErrorCode" : {
522
- "shape" : "__string",
523
- "locationName" : "errorCode"
524
- },
525
- "Message" : {
526
- "shape" : "__string",
527
- "locationName" : "message"
528
- }
529
- },
530
- "exception" : true,
531
- "error" : {
532
- "httpStatusCode" : 400
533
- }
534
- },
535
- "Capability" : {
536
- "type" : "string",
537
- "enum" : [ "CAPABILITY_IAM", "CAPABILITY_NAMED_IAM", "CAPABILITY_AUTO_EXPAND", "CAPABILITY_RESOURCE_POLICY" ]
538
- },
539
- "ChangeSetDetails" : {
540
- "type" : "structure",
541
- "members" : {
542
- "ApplicationId" : {
543
- "shape" : "__string",
544
- "locationName" : "applicationId"
545
- },
546
- "ChangeSetId" : {
547
- "shape" : "__string",
548
- "locationName" : "changeSetId"
549
- },
550
- "SemanticVersion" : {
551
- "shape" : "__string",
552
- "locationName" : "semanticVersion"
553
- },
554
- "StackId" : {
555
- "shape" : "__string",
556
- "locationName" : "stackId"
557
- }
558
- },
559
- "required" : [ "ChangeSetId", "ApplicationId", "StackId", "SemanticVersion" ]
560
- },
561
- "ConflictException" : {
562
- "type" : "structure",
563
- "members" : {
564
- "ErrorCode" : {
565
- "shape" : "__string",
566
- "locationName" : "errorCode"
567
- },
568
- "Message" : {
569
- "shape" : "__string",
570
- "locationName" : "message"
571
- }
572
- },
573
- "exception" : true,
574
- "error" : {
575
- "httpStatusCode" : 409
576
- }
577
- },
578
- "CreateApplicationInput" : {
579
- "type" : "structure",
580
- "members" : {
581
- "Author" : {
582
- "shape" : "__string",
583
- "locationName" : "author"
584
- },
585
- "Description" : {
586
- "shape" : "__string",
587
- "locationName" : "description"
588
- },
589
- "HomePageUrl" : {
590
- "shape" : "__string",
591
- "locationName" : "homePageUrl"
592
- },
593
- "Labels" : {
594
- "shape" : "__listOf__string",
595
- "locationName" : "labels"
596
- },
597
- "LicenseBody" : {
598
- "shape" : "__string",
599
- "locationName" : "licenseBody"
600
- },
601
- "LicenseUrl" : {
602
- "shape" : "__string",
603
- "locationName" : "licenseUrl"
604
- },
605
- "Name" : {
606
- "shape" : "__string",
607
- "locationName" : "name"
608
- },
609
- "ReadmeBody" : {
610
- "shape" : "__string",
611
- "locationName" : "readmeBody"
612
- },
613
- "ReadmeUrl" : {
614
- "shape" : "__string",
615
- "locationName" : "readmeUrl"
616
- },
617
- "SemanticVersion" : {
618
- "shape" : "__string",
619
- "locationName" : "semanticVersion"
620
- },
621
- "SourceCodeArchiveUrl" : {
622
- "shape" : "__string",
623
- "locationName" : "sourceCodeArchiveUrl"
624
- },
625
- "SourceCodeUrl" : {
626
- "shape" : "__string",
627
- "locationName" : "sourceCodeUrl"
628
- },
629
- "SpdxLicenseId" : {
630
- "shape" : "__string",
631
- "locationName" : "spdxLicenseId"
632
- },
633
- "TemplateBody" : {
634
- "shape" : "__string",
635
- "locationName" : "templateBody"
636
- },
637
- "TemplateUrl" : {
638
- "shape" : "__string",
639
- "locationName" : "templateUrl"
640
- }
641
- },
642
- "required" : [ "Description", "Name", "Author" ]
643
- },
644
- "CreateApplicationRequest" : {
645
- "type" : "structure",
646
- "members" : {
647
- "Author" : {
648
- "shape" : "__string",
649
- "locationName" : "author"
650
- },
651
- "Description" : {
652
- "shape" : "__string",
653
- "locationName" : "description"
654
- },
655
- "HomePageUrl" : {
656
- "shape" : "__string",
657
- "locationName" : "homePageUrl"
658
- },
659
- "Labels" : {
660
- "shape" : "__listOf__string",
661
- "locationName" : "labels"
662
- },
663
- "LicenseBody" : {
664
- "shape" : "__string",
665
- "locationName" : "licenseBody"
666
- },
667
- "LicenseUrl" : {
668
- "shape" : "__string",
669
- "locationName" : "licenseUrl"
670
- },
671
- "Name" : {
672
- "shape" : "__string",
673
- "locationName" : "name"
674
- },
675
- "ReadmeBody" : {
676
- "shape" : "__string",
677
- "locationName" : "readmeBody"
678
- },
679
- "ReadmeUrl" : {
680
- "shape" : "__string",
681
- "locationName" : "readmeUrl"
682
- },
683
- "SemanticVersion" : {
684
- "shape" : "__string",
685
- "locationName" : "semanticVersion"
686
- },
687
- "SourceCodeArchiveUrl" : {
688
- "shape" : "__string",
689
- "locationName" : "sourceCodeArchiveUrl"
690
- },
691
- "SourceCodeUrl" : {
692
- "shape" : "__string",
693
- "locationName" : "sourceCodeUrl"
694
- },
695
- "SpdxLicenseId" : {
696
- "shape" : "__string",
697
- "locationName" : "spdxLicenseId"
698
- },
699
- "TemplateBody" : {
700
- "shape" : "__string",
701
- "locationName" : "templateBody"
702
- },
703
- "TemplateUrl" : {
704
- "shape" : "__string",
705
- "locationName" : "templateUrl"
706
- }
707
- },
708
- "required" : [ "Description", "Name", "Author" ]
709
- },
710
- "CreateApplicationResponse" : {
711
- "type" : "structure",
712
- "members" : {
713
- "ApplicationId" : {
714
- "shape" : "__string",
715
- "locationName" : "applicationId"
716
- },
717
- "Author" : {
718
- "shape" : "__string",
719
- "locationName" : "author"
720
- },
721
- "CreationTime" : {
722
- "shape" : "__string",
723
- "locationName" : "creationTime"
724
- },
725
- "Description" : {
726
- "shape" : "__string",
727
- "locationName" : "description"
728
- },
729
- "HomePageUrl" : {
730
- "shape" : "__string",
731
- "locationName" : "homePageUrl"
732
- },
733
- "IsVerifiedAuthor" : {
734
- "shape" : "__boolean",
735
- "locationName" : "isVerifiedAuthor"
736
- },
737
- "Labels" : {
738
- "shape" : "__listOf__string",
739
- "locationName" : "labels"
740
- },
741
- "LicenseUrl" : {
742
- "shape" : "__string",
743
- "locationName" : "licenseUrl"
744
- },
745
- "Name" : {
746
- "shape" : "__string",
747
- "locationName" : "name"
748
- },
749
- "ReadmeUrl" : {
750
- "shape" : "__string",
751
- "locationName" : "readmeUrl"
752
- },
753
- "SpdxLicenseId" : {
754
- "shape" : "__string",
755
- "locationName" : "spdxLicenseId"
756
- },
757
- "VerifiedAuthorUrl" : {
758
- "shape" : "__string",
759
- "locationName" : "verifiedAuthorUrl"
760
- },
761
- "Version" : {
762
- "shape" : "Version",
763
- "locationName" : "version"
764
- }
765
- }
766
- },
767
- "CreateApplicationVersionInput" : {
768
- "type" : "structure",
769
- "members" : {
770
- "SourceCodeArchiveUrl" : {
771
- "shape" : "__string",
772
- "locationName" : "sourceCodeArchiveUrl"
773
- },
774
- "SourceCodeUrl" : {
775
- "shape" : "__string",
776
- "locationName" : "sourceCodeUrl"
777
- },
778
- "TemplateBody" : {
779
- "shape" : "__string",
780
- "locationName" : "templateBody"
781
- },
782
- "TemplateUrl" : {
783
- "shape" : "__string",
784
- "locationName" : "templateUrl"
785
- }
786
- }
787
- },
788
- "CreateApplicationVersionRequest" : {
789
- "type" : "structure",
790
- "members" : {
791
- "ApplicationId" : {
792
- "shape" : "__string",
793
- "location" : "uri",
794
- "locationName" : "applicationId"
795
- },
796
- "SemanticVersion" : {
797
- "shape" : "__string",
798
- "location" : "uri",
799
- "locationName" : "semanticVersion"
800
- },
801
- "SourceCodeArchiveUrl" : {
802
- "shape" : "__string",
803
- "locationName" : "sourceCodeArchiveUrl"
804
- },
805
- "SourceCodeUrl" : {
806
- "shape" : "__string",
807
- "locationName" : "sourceCodeUrl"
808
- },
809
- "TemplateBody" : {
810
- "shape" : "__string",
811
- "locationName" : "templateBody"
812
- },
813
- "TemplateUrl" : {
814
- "shape" : "__string",
815
- "locationName" : "templateUrl"
816
- }
817
- },
818
- "required" : [ "ApplicationId", "SemanticVersion" ]
819
- },
820
- "CreateApplicationVersionResponse" : {
821
- "type" : "structure",
822
- "members" : {
823
- "ApplicationId" : {
824
- "shape" : "__string",
825
- "locationName" : "applicationId"
826
- },
827
- "CreationTime" : {
828
- "shape" : "__string",
829
- "locationName" : "creationTime"
830
- },
831
- "ParameterDefinitions" : {
832
- "shape" : "__listOfParameterDefinition",
833
- "locationName" : "parameterDefinitions"
834
- },
835
- "RequiredCapabilities" : {
836
- "shape" : "__listOfCapability",
837
- "locationName" : "requiredCapabilities"
838
- },
839
- "ResourcesSupported" : {
840
- "shape" : "__boolean",
841
- "locationName" : "resourcesSupported"
842
- },
843
- "SemanticVersion" : {
844
- "shape" : "__string",
845
- "locationName" : "semanticVersion"
846
- },
847
- "SourceCodeArchiveUrl" : {
848
- "shape" : "__string",
849
- "locationName" : "sourceCodeArchiveUrl"
850
- },
851
- "SourceCodeUrl" : {
852
- "shape" : "__string",
853
- "locationName" : "sourceCodeUrl"
854
- },
855
- "TemplateUrl" : {
856
- "shape" : "__string",
857
- "locationName" : "templateUrl"
858
- }
859
- }
860
- },
861
- "CreateCloudFormationChangeSetInput" : {
862
- "type" : "structure",
863
- "members" : {
864
- "Capabilities" : {
865
- "shape" : "__listOf__string",
866
- "locationName" : "capabilities"
867
- },
868
- "ChangeSetName" : {
869
- "shape" : "__string",
870
- "locationName" : "changeSetName"
871
- },
872
- "ClientToken" : {
873
- "shape" : "__string",
874
- "locationName" : "clientToken"
875
- },
876
- "Description" : {
877
- "shape" : "__string",
878
- "locationName" : "description"
879
- },
880
- "NotificationArns" : {
881
- "shape" : "__listOf__string",
882
- "locationName" : "notificationArns"
883
- },
884
- "ParameterOverrides" : {
885
- "shape" : "__listOfParameterValue",
886
- "locationName" : "parameterOverrides"
887
- },
888
- "ResourceTypes" : {
889
- "shape" : "__listOf__string",
890
- "locationName" : "resourceTypes"
891
- },
892
- "RollbackConfiguration" : {
893
- "shape" : "RollbackConfiguration",
894
- "locationName" : "rollbackConfiguration"
895
- },
896
- "SemanticVersion" : {
897
- "shape" : "__string",
898
- "locationName" : "semanticVersion"
899
- },
900
- "StackName" : {
901
- "shape" : "__string",
902
- "locationName" : "stackName"
903
- },
904
- "Tags" : {
905
- "shape" : "__listOfTag",
906
- "locationName" : "tags"
907
- },
908
- "TemplateId" : {
909
- "shape" : "__string",
910
- "locationName" : "templateId"
911
- }
912
- },
913
- "required" : [ "StackName" ]
914
- },
915
- "CreateCloudFormationChangeSetRequest" : {
916
- "type" : "structure",
917
- "members" : {
918
- "ApplicationId" : {
919
- "shape" : "__string",
920
- "location" : "uri",
921
- "locationName" : "applicationId"
922
- },
923
- "Capabilities" : {
924
- "shape" : "__listOf__string",
925
- "locationName" : "capabilities"
926
- },
927
- "ChangeSetName" : {
928
- "shape" : "__string",
929
- "locationName" : "changeSetName"
930
- },
931
- "ClientToken" : {
932
- "shape" : "__string",
933
- "locationName" : "clientToken"
934
- },
935
- "Description" : {
936
- "shape" : "__string",
937
- "locationName" : "description"
938
- },
939
- "NotificationArns" : {
940
- "shape" : "__listOf__string",
941
- "locationName" : "notificationArns"
942
- },
943
- "ParameterOverrides" : {
944
- "shape" : "__listOfParameterValue",
945
- "locationName" : "parameterOverrides"
946
- },
947
- "ResourceTypes" : {
948
- "shape" : "__listOf__string",
949
- "locationName" : "resourceTypes"
950
- },
951
- "RollbackConfiguration" : {
952
- "shape" : "RollbackConfiguration",
953
- "locationName" : "rollbackConfiguration"
954
- },
955
- "SemanticVersion" : {
956
- "shape" : "__string",
957
- "locationName" : "semanticVersion"
958
- },
959
- "StackName" : {
960
- "shape" : "__string",
961
- "locationName" : "stackName"
962
- },
963
- "Tags" : {
964
- "shape" : "__listOfTag",
965
- "locationName" : "tags"
966
- },
967
- "TemplateId" : {
968
- "shape" : "__string",
969
- "locationName" : "templateId"
970
- }
971
- },
972
- "required" : [ "ApplicationId", "StackName" ]
973
- },
974
- "CreateCloudFormationChangeSetResponse" : {
975
- "type" : "structure",
976
- "members" : {
977
- "ApplicationId" : {
978
- "shape" : "__string",
979
- "locationName" : "applicationId"
980
- },
981
- "ChangeSetId" : {
982
- "shape" : "__string",
983
- "locationName" : "changeSetId"
984
- },
985
- "SemanticVersion" : {
986
- "shape" : "__string",
987
- "locationName" : "semanticVersion"
988
- },
989
- "StackId" : {
990
- "shape" : "__string",
991
- "locationName" : "stackId"
992
- }
993
- }
994
- },
995
- "CreateCloudFormationTemplateRequest" : {
996
- "type" : "structure",
997
- "members" : {
998
- "ApplicationId" : {
999
- "shape" : "__string",
1000
- "location" : "uri",
1001
- "locationName" : "applicationId"
1002
- },
1003
- "SemanticVersion" : {
1004
- "shape" : "__string",
1005
- "locationName" : "semanticVersion"
1006
- }
1007
- },
1008
- "required" : [ "ApplicationId" ]
1009
- },
1010
- "CreateCloudFormationTemplateResponse" : {
1011
- "type" : "structure",
1012
- "members" : {
1013
- "ApplicationId" : {
1014
- "shape" : "__string",
1015
- "locationName" : "applicationId"
1016
- },
1017
- "CreationTime" : {
1018
- "shape" : "__string",
1019
- "locationName" : "creationTime"
1020
- },
1021
- "ExpirationTime" : {
1022
- "shape" : "__string",
1023
- "locationName" : "expirationTime"
1024
- },
1025
- "SemanticVersion" : {
1026
- "shape" : "__string",
1027
- "locationName" : "semanticVersion"
1028
- },
1029
- "Status" : {
1030
- "shape" : "Status",
1031
- "locationName" : "status"
1032
- },
1033
- "TemplateId" : {
1034
- "shape" : "__string",
1035
- "locationName" : "templateId"
1036
- },
1037
- "TemplateUrl" : {
1038
- "shape" : "__string",
1039
- "locationName" : "templateUrl"
1040
- }
1041
- }
1042
- },
1043
- "DeleteApplicationRequest" : {
1044
- "type" : "structure",
1045
- "members" : {
1046
- "ApplicationId" : {
1047
- "shape" : "__string",
1048
- "location" : "uri",
1049
- "locationName" : "applicationId"
1050
- }
1051
- },
1052
- "required" : [ "ApplicationId" ]
1053
- },
1054
- "ForbiddenException" : {
1055
- "type" : "structure",
1056
- "members" : {
1057
- "ErrorCode" : {
1058
- "shape" : "__string",
1059
- "locationName" : "errorCode"
1060
- },
1061
- "Message" : {
1062
- "shape" : "__string",
1063
- "locationName" : "message"
1064
- }
1065
- },
1066
- "exception" : true,
1067
- "error" : {
1068
- "httpStatusCode" : 403
1069
- }
1070
- },
1071
- "GetApplicationPolicyRequest" : {
1072
- "type" : "structure",
1073
- "members" : {
1074
- "ApplicationId" : {
1075
- "shape" : "__string",
1076
- "location" : "uri",
1077
- "locationName" : "applicationId"
1078
- }
1079
- },
1080
- "required" : [ "ApplicationId" ]
1081
- },
1082
- "GetApplicationPolicyResponse" : {
1083
- "type" : "structure",
1084
- "members" : {
1085
- "Statements" : {
1086
- "shape" : "__listOfApplicationPolicyStatement",
1087
- "locationName" : "statements"
1088
- }
1089
- }
1090
- },
1091
- "GetApplicationRequest" : {
1092
- "type" : "structure",
1093
- "members" : {
1094
- "ApplicationId" : {
1095
- "shape" : "__string",
1096
- "location" : "uri",
1097
- "locationName" : "applicationId"
1098
- },
1099
- "SemanticVersion" : {
1100
- "shape" : "__string",
1101
- "location" : "querystring",
1102
- "locationName" : "semanticVersion"
1103
- }
1104
- },
1105
- "required" : [ "ApplicationId" ]
1106
- },
1107
- "GetApplicationResponse" : {
1108
- "type" : "structure",
1109
- "members" : {
1110
- "ApplicationId" : {
1111
- "shape" : "__string",
1112
- "locationName" : "applicationId"
1113
- },
1114
- "Author" : {
1115
- "shape" : "__string",
1116
- "locationName" : "author"
1117
- },
1118
- "CreationTime" : {
1119
- "shape" : "__string",
1120
- "locationName" : "creationTime"
1121
- },
1122
- "Description" : {
1123
- "shape" : "__string",
1124
- "locationName" : "description"
1125
- },
1126
- "HomePageUrl" : {
1127
- "shape" : "__string",
1128
- "locationName" : "homePageUrl"
1129
- },
1130
- "IsVerifiedAuthor" : {
1131
- "shape" : "__boolean",
1132
- "locationName" : "isVerifiedAuthor"
1133
- },
1134
- "Labels" : {
1135
- "shape" : "__listOf__string",
1136
- "locationName" : "labels"
1137
- },
1138
- "LicenseUrl" : {
1139
- "shape" : "__string",
1140
- "locationName" : "licenseUrl"
1141
- },
1142
- "Name" : {
1143
- "shape" : "__string",
1144
- "locationName" : "name"
1145
- },
1146
- "ReadmeUrl" : {
1147
- "shape" : "__string",
1148
- "locationName" : "readmeUrl"
1149
- },
1150
- "SpdxLicenseId" : {
1151
- "shape" : "__string",
1152
- "locationName" : "spdxLicenseId"
1153
- },
1154
- "VerifiedAuthorUrl" : {
1155
- "shape" : "__string",
1156
- "locationName" : "verifiedAuthorUrl"
1157
- },
1158
- "Version" : {
1159
- "shape" : "Version",
1160
- "locationName" : "version"
1161
- }
1162
- }
1163
- },
1164
- "GetCloudFormationTemplateRequest" : {
1165
- "type" : "structure",
1166
- "members" : {
1167
- "ApplicationId" : {
1168
- "shape" : "__string",
1169
- "location" : "uri",
1170
- "locationName" : "applicationId"
1171
- },
1172
- "TemplateId" : {
1173
- "shape" : "__string",
1174
- "location" : "uri",
1175
- "locationName" : "templateId"
1176
- }
1177
- },
1178
- "required" : [ "ApplicationId", "TemplateId" ]
1179
- },
1180
- "GetCloudFormationTemplateResponse" : {
1181
- "type" : "structure",
1182
- "members" : {
1183
- "ApplicationId" : {
1184
- "shape" : "__string",
1185
- "locationName" : "applicationId"
1186
- },
1187
- "CreationTime" : {
1188
- "shape" : "__string",
1189
- "locationName" : "creationTime"
1190
- },
1191
- "ExpirationTime" : {
1192
- "shape" : "__string",
1193
- "locationName" : "expirationTime"
1194
- },
1195
- "SemanticVersion" : {
1196
- "shape" : "__string",
1197
- "locationName" : "semanticVersion"
1198
- },
1199
- "Status" : {
1200
- "shape" : "Status",
1201
- "locationName" : "status"
1202
- },
1203
- "TemplateId" : {
1204
- "shape" : "__string",
1205
- "locationName" : "templateId"
1206
- },
1207
- "TemplateUrl" : {
1208
- "shape" : "__string",
1209
- "locationName" : "templateUrl"
1210
- }
1211
- }
1212
- },
1213
- "InternalServerErrorException" : {
1214
- "type" : "structure",
1215
- "members" : {
1216
- "ErrorCode" : {
1217
- "shape" : "__string",
1218
- "locationName" : "errorCode"
1219
- },
1220
- "Message" : {
1221
- "shape" : "__string",
1222
- "locationName" : "message"
1223
- }
1224
- },
1225
- "exception" : true,
1226
- "error" : {
1227
- "httpStatusCode" : 500
1228
- }
1229
- },
1230
- "ListApplicationDependenciesRequest" : {
1231
- "type" : "structure",
1232
- "members" : {
1233
- "ApplicationId" : {
1234
- "shape" : "__string",
1235
- "location" : "uri",
1236
- "locationName" : "applicationId"
1237
- },
1238
- "MaxItems" : {
1239
- "shape" : "MaxItems",
1240
- "location" : "querystring",
1241
- "locationName" : "maxItems"
1242
- },
1243
- "NextToken" : {
1244
- "shape" : "__string",
1245
- "location" : "querystring",
1246
- "locationName" : "nextToken"
1247
- },
1248
- "SemanticVersion" : {
1249
- "shape" : "__string",
1250
- "location" : "querystring",
1251
- "locationName" : "semanticVersion"
1252
- }
1253
- },
1254
- "required" : [ "ApplicationId" ]
1255
- },
1256
- "ListApplicationDependenciesResponse" : {
1257
- "type" : "structure",
1258
- "members" : {
1259
- "Dependencies" : {
1260
- "shape" : "__listOfApplicationDependencySummary",
1261
- "locationName" : "dependencies"
1262
- },
1263
- "NextToken" : {
1264
- "shape" : "__string",
1265
- "locationName" : "nextToken"
1266
- }
1267
- }
1268
- },
1269
- "ListApplicationVersionsRequest" : {
1270
- "type" : "structure",
1271
- "members" : {
1272
- "ApplicationId" : {
1273
- "shape" : "__string",
1274
- "location" : "uri",
1275
- "locationName" : "applicationId"
1276
- },
1277
- "MaxItems" : {
1278
- "shape" : "MaxItems",
1279
- "location" : "querystring",
1280
- "locationName" : "maxItems"
1281
- },
1282
- "NextToken" : {
1283
- "shape" : "__string",
1284
- "location" : "querystring",
1285
- "locationName" : "nextToken"
1286
- }
1287
- },
1288
- "required" : [ "ApplicationId" ]
1289
- },
1290
- "ListApplicationVersionsResponse" : {
1291
- "type" : "structure",
1292
- "members" : {
1293
- "NextToken" : {
1294
- "shape" : "__string",
1295
- "locationName" : "nextToken"
1296
- },
1297
- "Versions" : {
1298
- "shape" : "__listOfVersionSummary",
1299
- "locationName" : "versions"
1300
- }
1301
- }
1302
- },
1303
- "ListApplicationsRequest" : {
1304
- "type" : "structure",
1305
- "members" : {
1306
- "MaxItems" : {
1307
- "shape" : "MaxItems",
1308
- "location" : "querystring",
1309
- "locationName" : "maxItems"
1310
- },
1311
- "NextToken" : {
1312
- "shape" : "__string",
1313
- "location" : "querystring",
1314
- "locationName" : "nextToken"
1315
- }
1316
- }
1317
- },
1318
- "ListApplicationsResponse" : {
1319
- "type" : "structure",
1320
- "members" : {
1321
- "Applications" : {
1322
- "shape" : "__listOfApplicationSummary",
1323
- "locationName" : "applications"
1324
- },
1325
- "NextToken" : {
1326
- "shape" : "__string",
1327
- "locationName" : "nextToken"
1328
- }
1329
- }
1330
- },
1331
- "MaxItems" : {
1332
- "type" : "integer",
1333
- "min" : 1,
1334
- "max" : 100
1335
- },
1336
- "NotFoundException" : {
1337
- "type" : "structure",
1338
- "members" : {
1339
- "ErrorCode" : {
1340
- "shape" : "__string",
1341
- "locationName" : "errorCode"
1342
- },
1343
- "Message" : {
1344
- "shape" : "__string",
1345
- "locationName" : "message"
1346
- }
1347
- },
1348
- "exception" : true,
1349
- "error" : {
1350
- "httpStatusCode" : 404
1351
- }
1352
- },
1353
- "ParameterDefinition" : {
1354
- "type" : "structure",
1355
- "members" : {
1356
- "AllowedPattern" : {
1357
- "shape" : "__string",
1358
- "locationName" : "allowedPattern"
1359
- },
1360
- "AllowedValues" : {
1361
- "shape" : "__listOf__string",
1362
- "locationName" : "allowedValues"
1363
- },
1364
- "ConstraintDescription" : {
1365
- "shape" : "__string",
1366
- "locationName" : "constraintDescription"
1367
- },
1368
- "DefaultValue" : {
1369
- "shape" : "__string",
1370
- "locationName" : "defaultValue"
1371
- },
1372
- "Description" : {
1373
- "shape" : "__string",
1374
- "locationName" : "description"
1375
- },
1376
- "MaxLength" : {
1377
- "shape" : "__integer",
1378
- "locationName" : "maxLength"
1379
- },
1380
- "MaxValue" : {
1381
- "shape" : "__integer",
1382
- "locationName" : "maxValue"
1383
- },
1384
- "MinLength" : {
1385
- "shape" : "__integer",
1386
- "locationName" : "minLength"
1387
- },
1388
- "MinValue" : {
1389
- "shape" : "__integer",
1390
- "locationName" : "minValue"
1391
- },
1392
- "Name" : {
1393
- "shape" : "__string",
1394
- "locationName" : "name"
1395
- },
1396
- "NoEcho" : {
1397
- "shape" : "__boolean",
1398
- "locationName" : "noEcho"
1399
- },
1400
- "ReferencedByResources" : {
1401
- "shape" : "__listOf__string",
1402
- "locationName" : "referencedByResources"
1403
- },
1404
- "Type" : {
1405
- "shape" : "__string",
1406
- "locationName" : "type"
1407
- }
1408
- },
1409
- "required" : [ "ReferencedByResources", "Name" ]
1410
- },
1411
- "ParameterValue" : {
1412
- "type" : "structure",
1413
- "members" : {
1414
- "Name" : {
1415
- "shape" : "__string",
1416
- "locationName" : "name"
1417
- },
1418
- "Value" : {
1419
- "shape" : "__string",
1420
- "locationName" : "value"
1421
- }
1422
- },
1423
- "required" : [ "Value", "Name" ]
1424
- },
1425
- "PutApplicationPolicyRequest" : {
1426
- "type" : "structure",
1427
- "members" : {
1428
- "ApplicationId" : {
1429
- "shape" : "__string",
1430
- "location" : "uri",
1431
- "locationName" : "applicationId"
1432
- },
1433
- "Statements" : {
1434
- "shape" : "__listOfApplicationPolicyStatement",
1435
- "locationName" : "statements"
1436
- }
1437
- },
1438
- "required" : [ "ApplicationId", "Statements" ]
1439
- },
1440
- "PutApplicationPolicyResponse" : {
1441
- "type" : "structure",
1442
- "members" : {
1443
- "Statements" : {
1444
- "shape" : "__listOfApplicationPolicyStatement",
1445
- "locationName" : "statements"
1446
- }
1447
- }
1448
- },
1449
- "RollbackConfiguration" : {
1450
- "type" : "structure",
1451
- "members" : {
1452
- "MonitoringTimeInMinutes" : {
1453
- "shape" : "__integer",
1454
- "locationName" : "monitoringTimeInMinutes"
1455
- },
1456
- "RollbackTriggers" : {
1457
- "shape" : "__listOfRollbackTrigger",
1458
- "locationName" : "rollbackTriggers"
1459
- }
1460
- }
1461
- },
1462
- "RollbackTrigger" : {
1463
- "type" : "structure",
1464
- "members" : {
1465
- "Arn" : {
1466
- "shape" : "__string",
1467
- "locationName" : "arn"
1468
- },
1469
- "Type" : {
1470
- "shape" : "__string",
1471
- "locationName" : "type"
1472
- }
1473
- },
1474
- "required" : [ "Type", "Arn" ]
1475
- },
1476
- "Status" : {
1477
- "type" : "string",
1478
- "enum" : [ "PREPARING", "ACTIVE", "EXPIRED" ]
1479
- },
1480
- "Tag" : {
1481
- "type" : "structure",
1482
- "members" : {
1483
- "Key" : {
1484
- "shape" : "__string",
1485
- "locationName" : "key"
1486
- },
1487
- "Value" : {
1488
- "shape" : "__string",
1489
- "locationName" : "value"
1490
- }
1491
- },
1492
- "required" : [ "Value", "Key" ]
1493
- },
1494
- "TemplateDetails" : {
1495
- "type" : "structure",
1496
- "members" : {
1497
- "ApplicationId" : {
1498
- "shape" : "__string",
1499
- "locationName" : "applicationId"
1500
- },
1501
- "CreationTime" : {
1502
- "shape" : "__string",
1503
- "locationName" : "creationTime"
1504
- },
1505
- "ExpirationTime" : {
1506
- "shape" : "__string",
1507
- "locationName" : "expirationTime"
1508
- },
1509
- "SemanticVersion" : {
1510
- "shape" : "__string",
1511
- "locationName" : "semanticVersion"
1512
- },
1513
- "Status" : {
1514
- "shape" : "Status",
1515
- "locationName" : "status"
1516
- },
1517
- "TemplateId" : {
1518
- "shape" : "__string",
1519
- "locationName" : "templateId"
1520
- },
1521
- "TemplateUrl" : {
1522
- "shape" : "__string",
1523
- "locationName" : "templateUrl"
1524
- }
1525
- },
1526
- "required" : [ "Status", "TemplateUrl", "CreationTime", "ExpirationTime", "ApplicationId", "TemplateId", "SemanticVersion" ]
1527
- },
1528
- "TooManyRequestsException" : {
1529
- "type" : "structure",
1530
- "members" : {
1531
- "ErrorCode" : {
1532
- "shape" : "__string",
1533
- "locationName" : "errorCode"
1534
- },
1535
- "Message" : {
1536
- "shape" : "__string",
1537
- "locationName" : "message"
1538
- }
1539
- },
1540
- "exception" : true,
1541
- "error" : {
1542
- "httpStatusCode" : 429
1543
- }
1544
- },
1545
- "UpdateApplicationInput" : {
1546
- "type" : "structure",
1547
- "members" : {
1548
- "Author" : {
1549
- "shape" : "__string",
1550
- "locationName" : "author"
1551
- },
1552
- "Description" : {
1553
- "shape" : "__string",
1554
- "locationName" : "description"
1555
- },
1556
- "HomePageUrl" : {
1557
- "shape" : "__string",
1558
- "locationName" : "homePageUrl"
1559
- },
1560
- "Labels" : {
1561
- "shape" : "__listOf__string",
1562
- "locationName" : "labels"
1563
- },
1564
- "ReadmeBody" : {
1565
- "shape" : "__string",
1566
- "locationName" : "readmeBody"
1567
- },
1568
- "ReadmeUrl" : {
1569
- "shape" : "__string",
1570
- "locationName" : "readmeUrl"
1571
- }
1572
- }
1573
- },
1574
- "UpdateApplicationRequest" : {
1575
- "type" : "structure",
1576
- "members" : {
1577
- "ApplicationId" : {
1578
- "shape" : "__string",
1579
- "location" : "uri",
1580
- "locationName" : "applicationId"
1581
- },
1582
- "Author" : {
1583
- "shape" : "__string",
1584
- "locationName" : "author"
1585
- },
1586
- "Description" : {
1587
- "shape" : "__string",
1588
- "locationName" : "description"
1589
- },
1590
- "HomePageUrl" : {
1591
- "shape" : "__string",
1592
- "locationName" : "homePageUrl"
1593
- },
1594
- "Labels" : {
1595
- "shape" : "__listOf__string",
1596
- "locationName" : "labels"
1597
- },
1598
- "ReadmeBody" : {
1599
- "shape" : "__string",
1600
- "locationName" : "readmeBody"
1601
- },
1602
- "ReadmeUrl" : {
1603
- "shape" : "__string",
1604
- "locationName" : "readmeUrl"
1605
- }
1606
- },
1607
- "required" : [ "ApplicationId" ]
1608
- },
1609
- "UpdateApplicationResponse" : {
1610
- "type" : "structure",
1611
- "members" : {
1612
- "ApplicationId" : {
1613
- "shape" : "__string",
1614
- "locationName" : "applicationId"
1615
- },
1616
- "Author" : {
1617
- "shape" : "__string",
1618
- "locationName" : "author"
1619
- },
1620
- "CreationTime" : {
1621
- "shape" : "__string",
1622
- "locationName" : "creationTime"
1623
- },
1624
- "Description" : {
1625
- "shape" : "__string",
1626
- "locationName" : "description"
1627
- },
1628
- "HomePageUrl" : {
1629
- "shape" : "__string",
1630
- "locationName" : "homePageUrl"
1631
- },
1632
- "IsVerifiedAuthor" : {
1633
- "shape" : "__boolean",
1634
- "locationName" : "isVerifiedAuthor"
1635
- },
1636
- "Labels" : {
1637
- "shape" : "__listOf__string",
1638
- "locationName" : "labels"
1639
- },
1640
- "LicenseUrl" : {
1641
- "shape" : "__string",
1642
- "locationName" : "licenseUrl"
1643
- },
1644
- "Name" : {
1645
- "shape" : "__string",
1646
- "locationName" : "name"
1647
- },
1648
- "ReadmeUrl" : {
1649
- "shape" : "__string",
1650
- "locationName" : "readmeUrl"
1651
- },
1652
- "SpdxLicenseId" : {
1653
- "shape" : "__string",
1654
- "locationName" : "spdxLicenseId"
1655
- },
1656
- "VerifiedAuthorUrl" : {
1657
- "shape" : "__string",
1658
- "locationName" : "verifiedAuthorUrl"
1659
- },
1660
- "Version" : {
1661
- "shape" : "Version",
1662
- "locationName" : "version"
1663
- }
1664
- }
1665
- },
1666
- "Version" : {
1667
- "type" : "structure",
1668
- "members" : {
1669
- "ApplicationId" : {
1670
- "shape" : "__string",
1671
- "locationName" : "applicationId"
1672
- },
1673
- "CreationTime" : {
1674
- "shape" : "__string",
1675
- "locationName" : "creationTime"
1676
- },
1677
- "ParameterDefinitions" : {
1678
- "shape" : "__listOfParameterDefinition",
1679
- "locationName" : "parameterDefinitions"
1680
- },
1681
- "RequiredCapabilities" : {
1682
- "shape" : "__listOfCapability",
1683
- "locationName" : "requiredCapabilities"
1684
- },
1685
- "ResourcesSupported" : {
1686
- "shape" : "__boolean",
1687
- "locationName" : "resourcesSupported"
1688
- },
1689
- "SemanticVersion" : {
1690
- "shape" : "__string",
1691
- "locationName" : "semanticVersion"
1692
- },
1693
- "SourceCodeArchiveUrl" : {
1694
- "shape" : "__string",
1695
- "locationName" : "sourceCodeArchiveUrl"
1696
- },
1697
- "SourceCodeUrl" : {
1698
- "shape" : "__string",
1699
- "locationName" : "sourceCodeUrl"
1700
- },
1701
- "TemplateUrl" : {
1702
- "shape" : "__string",
1703
- "locationName" : "templateUrl"
1704
- }
1705
- },
1706
- "required" : [ "TemplateUrl", "ParameterDefinitions", "ResourcesSupported", "CreationTime", "RequiredCapabilities", "ApplicationId", "SemanticVersion" ]
1707
- },
1708
- "VersionSummary" : {
1709
- "type" : "structure",
1710
- "members" : {
1711
- "ApplicationId" : {
1712
- "shape" : "__string",
1713
- "locationName" : "applicationId"
1714
- },
1715
- "CreationTime" : {
1716
- "shape" : "__string",
1717
- "locationName" : "creationTime"
1718
- },
1719
- "SemanticVersion" : {
1720
- "shape" : "__string",
1721
- "locationName" : "semanticVersion"
1722
- },
1723
- "SourceCodeUrl" : {
1724
- "shape" : "__string",
1725
- "locationName" : "sourceCodeUrl"
1726
- }
1727
- },
1728
- "required" : [ "CreationTime", "ApplicationId", "SemanticVersion" ]
1729
- },
1730
- "__boolean" : {
1731
- "type" : "boolean"
1732
- },
1733
- "__double" : {
1734
- "type" : "double"
1735
- },
1736
- "__integer" : {
1737
- "type" : "integer"
1738
- },
1739
- "__listOfApplicationDependencySummary" : {
1740
- "type" : "list",
1741
- "member" : {
1742
- "shape" : "ApplicationDependencySummary"
1743
- }
1744
- },
1745
- "__listOfApplicationPolicyStatement" : {
1746
- "type" : "list",
1747
- "member" : {
1748
- "shape" : "ApplicationPolicyStatement"
1749
- }
1750
- },
1751
- "__listOfApplicationSummary" : {
1752
- "type" : "list",
1753
- "member" : {
1754
- "shape" : "ApplicationSummary"
1755
- }
1756
- },
1757
- "__listOfCapability" : {
1758
- "type" : "list",
1759
- "member" : {
1760
- "shape" : "Capability"
1761
- }
1762
- },
1763
- "__listOfParameterDefinition" : {
1764
- "type" : "list",
1765
- "member" : {
1766
- "shape" : "ParameterDefinition"
1767
- }
1768
- },
1769
- "__listOfParameterValue" : {
1770
- "type" : "list",
1771
- "member" : {
1772
- "shape" : "ParameterValue"
1773
- }
1774
- },
1775
- "__listOfRollbackTrigger" : {
1776
- "type" : "list",
1777
- "member" : {
1778
- "shape" : "RollbackTrigger"
1779
- }
1780
- },
1781
- "__listOfTag" : {
1782
- "type" : "list",
1783
- "member" : {
1784
- "shape" : "Tag"
1785
- }
1786
- },
1787
- "__listOfVersionSummary" : {
1788
- "type" : "list",
1789
- "member" : {
1790
- "shape" : "VersionSummary"
1791
- }
1792
- },
1793
- "__listOf__string" : {
1794
- "type" : "list",
1795
- "member" : {
1796
- "shape" : "__string"
1797
- }
1798
- },
1799
- "__long" : {
1800
- "type" : "long"
1801
- },
1802
- "__string" : {
1803
- "type" : "string"
1804
- }
1805
- }
1806
- }