aws-sdk-core 2.11.502 → 3.94.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1306) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -584
  4. data/lib/aws-sdk-core/arn.rb +77 -0
  5. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  6. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +102 -0
  7. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  8. data/lib/aws-sdk-core/binary.rb +6 -0
  9. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  11. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  12. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  13. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  14. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  15. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  17. data/lib/aws-sdk-core/client_stubs.rb +20 -16
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +88 -32
  20. data/lib/aws-sdk-core/deprecations.rb +16 -10
  21. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  22. data/lib/aws-sdk-core/errors.rb +167 -26
  23. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  24. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  25. data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
  26. data/lib/aws-sdk-core/json.rb +17 -19
  27. data/lib/aws-sdk-core/json/builder.rb +4 -2
  28. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  29. data/lib/aws-sdk-core/json/handler.rb +22 -3
  30. data/lib/aws-sdk-core/json/parser.rb +1 -1
  31. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  32. data/lib/aws-sdk-core/log/param_filter.rb +6 -5
  33. data/lib/aws-sdk-core/pageable_response.rb +35 -20
  34. data/lib/aws-sdk-core/pager.rb +30 -25
  35. data/lib/aws-sdk-core/param_converter.rb +3 -3
  36. data/lib/aws-sdk-core/param_validator.rb +58 -25
  37. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  38. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  39. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  40. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  41. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +281 -0
  42. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  43. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  44. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +44 -51
  45. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  46. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  47. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  48. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  49. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  50. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  51. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  52. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  53. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  54. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  55. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  56. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  57. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
  58. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  59. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +137 -0
  60. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +98 -0
  61. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +142 -0
  62. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +57 -0
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +332 -98
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +152 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +36 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +51 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  80. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +139 -96
  86. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +70 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  99. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  105. data/lib/aws-sdk-sts.rb +48 -0
  106. data/lib/aws-sdk-sts/client.rb +2210 -0
  107. data/lib/aws-sdk-sts/client_api.rb +336 -0
  108. data/lib/aws-sdk-sts/customizations.rb +2 -0
  109. data/lib/aws-sdk-sts/errors.rb +164 -0
  110. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  111. data/lib/aws-sdk-sts/presigner.rb +67 -0
  112. data/lib/aws-sdk-sts/resource.rb +24 -0
  113. data/lib/aws-sdk-sts/types.rb +1504 -0
  114. data/lib/seahorse.rb +60 -60
  115. data/lib/seahorse/client/async_base.rb +50 -0
  116. data/lib/seahorse/client/async_response.rb +62 -0
  117. data/lib/seahorse/client/base.rb +5 -9
  118. data/lib/seahorse/client/configuration.rb +4 -2
  119. data/lib/seahorse/client/h2/connection.rb +246 -0
  120. data/lib/seahorse/client/h2/handler.rb +151 -0
  121. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  122. data/lib/seahorse/client/http/async_response.rb +42 -0
  123. data/lib/seahorse/client/http/response.rb +10 -5
  124. data/lib/seahorse/client/logging/formatter.rb +6 -2
  125. data/lib/seahorse/client/logging/handler.rb +2 -0
  126. data/lib/seahorse/client/net_http/connection_pool.rb +35 -24
  127. data/lib/seahorse/client/net_http/handler.rb +12 -1
  128. data/lib/seahorse/client/net_http/patches.rb +9 -1
  129. data/lib/seahorse/client/networking_error.rb +28 -0
  130. data/lib/seahorse/client/plugin.rb +67 -6
  131. data/lib/seahorse/client/plugins/content_length.rb +5 -2
  132. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  133. data/lib/seahorse/client/plugins/h2.rb +64 -0
  134. data/lib/seahorse/client/plugins/logging.rb +17 -19
  135. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  136. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  137. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  138. data/lib/seahorse/client/request_context.rb +5 -0
  139. data/lib/seahorse/client/response.rb +3 -5
  140. data/lib/seahorse/model/api.rb +33 -0
  141. data/lib/seahorse/model/authorizer.rb +21 -0
  142. data/lib/seahorse/model/operation.rb +11 -0
  143. data/lib/seahorse/model/shapes.rb +44 -2
  144. data/lib/seahorse/util.rb +1 -22
  145. metadata +110 -1176
  146. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  147. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  148. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  149. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1195
  150. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  151. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  152. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  153. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  154. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  155. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  156. data/apis/acm/2015-12-08/api-2.json +0 -872
  157. data/apis/acm/2015-12-08/examples-1.json +0 -5
  158. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  159. data/apis/acm/2015-12-08/smoke.json +0 -18
  160. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  161. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  162. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  163. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  164. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  165. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  166. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  167. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  168. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  169. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  170. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  171. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  172. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  173. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6981
  174. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  175. data/apis/appconfig/2019-10-09/api-2.json +0 -1428
  176. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  177. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  178. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -791
  179. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  180. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  181. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  182. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  183. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  184. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  185. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  186. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  187. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  188. data/apis/appmesh/2019-01-25/api-2.json +0 -3756
  189. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  190. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  191. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  192. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  193. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  194. data/apis/appstream/2016-12-01/smoke.json +0 -11
  195. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  196. data/apis/appsync/2017-07-25/api-2.json +0 -2288
  197. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  198. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  199. data/apis/athena/2017-05-18/api-2.json +0 -989
  200. data/apis/athena/2017-05-18/examples-1.json +0 -5
  201. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  202. data/apis/athena/2017-05-18/smoke.json +0 -11
  203. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  204. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  205. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  206. data/apis/autoscaling/2011-01-01/api-2.json +0 -2467
  207. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  208. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  209. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  210. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  211. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  212. data/apis/backup/2018-11-15/api-2.json +0 -2345
  213. data/apis/backup/2018-11-15/examples-1.json +0 -5
  214. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  215. data/apis/batch/2016-08-10/api-2.json +0 -1137
  216. data/apis/batch/2016-08-10/examples-1.json +0 -589
  217. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  218. data/apis/batch/2016-08-10/smoke.json +0 -11
  219. data/apis/budgets/2016-10-20/api-2.json +0 -830
  220. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  221. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  222. data/apis/ce/2017-10-25/api-2.json +0 -1722
  223. data/apis/ce/2017-10-25/examples-1.json +0 -5
  224. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  225. data/apis/chime/2018-05-01/api-2.json +0 -5506
  226. data/apis/chime/2018-05-01/examples-1.json +0 -5
  227. data/apis/chime/2018-05-01/paginators-1.json +0 -64
  228. data/apis/cloud9/2017-09-23/api-2.json +0 -674
  229. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  230. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  234. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  235. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  236. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  237. data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
  238. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  239. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  240. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  241. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  242. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  243. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  244. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  248. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  251. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  252. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  255. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  259. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  262. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  263. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  264. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  265. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  266. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  267. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  268. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  269. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  270. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  271. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  272. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  273. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  274. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  276. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  279. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  280. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  281. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  282. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  283. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  284. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  285. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  286. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  287. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  288. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  289. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  290. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  291. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  292. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  293. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  294. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  295. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  296. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  297. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  298. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  299. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  300. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  301. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  302. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  303. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  304. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  305. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  306. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  307. data/apis/codebuild/2016-10-06/api-2.json +0 -1910
  308. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  309. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  310. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  311. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  312. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  313. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  314. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  315. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  316. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  317. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  318. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  319. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  320. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -820
  321. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  322. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  323. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -801
  324. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  325. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -15
  326. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  327. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  328. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  329. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  330. data/apis/codestar-connections/2019-12-01/api-2.json +0 -315
  331. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  332. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  333. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  334. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  335. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  336. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  337. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  338. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  339. data/apis/codestar/2017-04-19/smoke.json +0 -11
  340. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  341. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  342. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  343. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5450
  344. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  345. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  346. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  347. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  348. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  349. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  350. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  351. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1209
  352. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  353. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  354. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  355. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  356. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  357. data/apis/config/2014-11-12/api-2.json +0 -4379
  358. data/apis/config/2014-11-12/examples-1.json +0 -5
  359. data/apis/config/2014-11-12/paginators-1.json +0 -26
  360. data/apis/config/2014-11-12/smoke.json +0 -19
  361. data/apis/connect/2017-08-08/api-2.json +0 -2139
  362. data/apis/connect/2017-08-08/examples-1.json +0 -5
  363. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  364. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  365. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  366. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  367. data/apis/cur/2017-01-06/api-2.json +0 -277
  368. data/apis/cur/2017-01-06/examples-1.json +0 -102
  369. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  370. data/apis/cur/2017-01-06/smoke.json +0 -11
  371. data/apis/dataexchange/2017-07-25/api-2.json +0 -2273
  372. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  373. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  374. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  375. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  376. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  377. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  378. data/apis/dax/2017-04-19/api-2.json +0 -1140
  379. data/apis/dax/2017-04-19/examples-1.json +0 -5
  380. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  381. data/apis/detective/2018-10-26/api-2.json +0 -486
  382. data/apis/detective/2018-10-26/examples-1.json +0 -5
  383. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  384. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  385. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  386. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  387. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  388. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  389. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  390. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  391. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  392. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  393. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  394. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  395. data/apis/discovery/2015-11-01/smoke.json +0 -11
  396. data/apis/dlm/2018-01-12/api-2.json +0 -687
  397. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  398. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  399. data/apis/dms/2016-01-01/api-2.json +0 -2341
  400. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  401. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  402. data/apis/dms/2016-01-01/smoke.json +0 -18
  403. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  404. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  405. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  406. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  407. data/apis/docdb/2014-10-31/smoke.json +0 -18
  408. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  409. data/apis/ds/2015-04-16/api-2.json +0 -3019
  410. data/apis/ds/2015-04-16/examples-1.json +0 -5
  411. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  412. data/apis/ds/2015-04-16/smoke.json +0 -20
  413. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  414. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  415. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  416. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  417. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  418. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  419. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  420. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  421. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  422. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  423. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  424. data/apis/ebs/2019-11-02/api-2.json +0 -277
  425. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  426. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  427. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  428. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  429. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  430. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  431. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  432. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  433. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  434. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  436. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  437. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  438. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  439. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  440. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  441. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  442. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  443. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  444. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  445. data/apis/ec2/2016-11-15/api-2.json +0 -29632
  446. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  447. data/apis/ec2/2016-11-15/paginators-1.json +0 -558
  448. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  449. data/apis/ec2/2016-11-15/smoke.json +0 -20
  450. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  451. data/apis/ecr/2015-09-21/api-2.json +0 -1633
  452. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  453. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  454. data/apis/ecr/2015-09-21/smoke.json +0 -18
  455. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  456. data/apis/ecs/2014-11-13/api-2.json +0 -3176
  457. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  458. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  459. data/apis/ecs/2014-11-13/smoke.json +0 -18
  460. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  461. data/apis/eks/2017-11-01/api-2.json +0 -1457
  462. data/apis/eks/2017-11-01/examples-1.json +0 -135
  463. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  464. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  465. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  466. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  467. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  468. data/apis/elasticache/2015-02-02/api-2.json +0 -3758
  469. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  470. data/apis/elasticache/2015-02-02/paginators-1.json +0 -94
  471. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  472. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  473. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2567
  474. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  475. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -30
  476. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  477. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1377
  478. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  479. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  480. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  481. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  482. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  483. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  484. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  486. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  487. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  488. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  489. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  490. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  491. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2338
  492. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  493. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  494. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  495. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  496. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  497. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  498. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  499. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  500. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  501. data/apis/email/2010-12-01/api-2.json +0 -3182
  502. data/apis/email/2010-12-01/examples-1.json +0 -1021
  503. data/apis/email/2010-12-01/paginators-1.json +0 -18
  504. data/apis/email/2010-12-01/smoke.json +0 -18
  505. data/apis/email/2010-12-01/waiters-2.json +0 -18
  506. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  507. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  508. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  509. data/apis/es/2015-01-01/api-2.json +0 -2044
  510. data/apis/es/2015-01-01/examples-1.json +0 -5
  511. data/apis/es/2015-01-01/paginators-1.json +0 -44
  512. data/apis/es/2015-01-01/smoke.json +0 -18
  513. data/apis/eventbridge/2015-10-07/api-2.json +0 -1467
  514. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  515. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  516. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  517. data/apis/events/2015-10-07/api-2.json +0 -1467
  518. data/apis/events/2015-10-07/examples-1.json +0 -5
  519. data/apis/events/2015-10-07/paginators-1.json +0 -4
  520. data/apis/events/2015-10-07/smoke.json +0 -18
  521. data/apis/firehose/2015-08-04/api-2.json +0 -1552
  522. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  523. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  524. data/apis/firehose/2015-08-04/smoke.json +0 -18
  525. data/apis/fms/2018-01-01/api-2.json +0 -834
  526. data/apis/fms/2018-01-01/examples-1.json +0 -5
  527. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  528. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  529. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  530. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  531. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  532. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  533. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  534. data/apis/frauddetector/2019-11-15/api-2.json +0 -1633
  535. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  536. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  537. data/apis/fsx/2018-03-01/api-2.json +0 -1384
  538. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  539. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  540. data/apis/gamelift/2015-10-01/api-2.json +0 -4455
  541. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  542. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  543. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  545. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  546. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  547. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  548. data/apis/glacier/2012-06-01/smoke.json +0 -18
  549. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  550. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1165
  551. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  552. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  553. data/apis/glue/2017-03-31/api-2.json +0 -6344
  554. data/apis/glue/2017-03-31/examples-1.json +0 -5
  555. data/apis/glue/2017-03-31/paginators-1.json +0 -125
  556. data/apis/glue/2017-03-31/smoke.json +0 -11
  557. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  558. data/apis/groundstation/2019-05-23/api-2.json +0 -1409
  559. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  560. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  561. data/apis/guardduty/2017-11-28/api-2.json +0 -3736
  562. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  563. data/apis/guardduty/2017-11-28/paginators-1.json +0 -57
  564. data/apis/health/2016-08-04/api-2.json +0 -836
  565. data/apis/health/2016-08-04/examples-1.json +0 -5
  566. data/apis/health/2016-08-04/paginators-1.json +0 -52
  567. data/apis/health/2016-08-04/smoke.json +0 -11
  568. data/apis/iam/2010-05-08/api-2.json +0 -5797
  569. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  570. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  571. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  572. data/apis/iam/2010-05-08/smoke.json +0 -18
  573. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  574. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2431
  575. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  576. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  577. data/apis/importexport/2010-06-01/api-2.json +0 -667
  578. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  579. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  580. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  581. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  582. data/apis/inspector/2016-02-16/smoke.json +0 -18
  583. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  584. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  585. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  586. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  587. data/apis/iot/2015-05-28/api-2.json +0 -11427
  588. data/apis/iot/2015-05-28/examples-1.json +0 -5
  589. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  590. data/apis/iot/2015-05-28/smoke.json +0 -18
  591. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  592. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  593. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  594. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  595. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  596. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  597. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  598. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  599. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  600. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  601. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  602. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  603. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  604. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  605. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  606. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  607. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3580
  608. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  609. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  610. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  611. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  612. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  613. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  614. data/apis/kafka/2018-11-14/api-2.json +0 -2297
  615. data/apis/kafka/2018-11-14/paginators-1.json +0 -40
  616. data/apis/kendra/2019-02-03/api-2.json +0 -1748
  617. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  618. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  619. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  620. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  622. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  623. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  624. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  625. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  626. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  627. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  628. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  629. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  630. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  631. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  632. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  633. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  634. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  635. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  636. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  637. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  638. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  639. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  640. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  641. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  642. data/apis/kms/2014-11-01/api-2.json +0 -2155
  643. data/apis/kms/2014-11-01/examples-1.json +0 -906
  644. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  645. data/apis/kms/2014-11-01/smoke.json +0 -19
  646. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  647. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  648. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  649. data/apis/lambda/2014-11-11/api-2.json +0 -668
  650. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  651. data/apis/lambda/2015-03-31/api-2.json +0 -2946
  652. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  653. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  654. data/apis/lambda/2015-03-31/smoke.json +0 -18
  655. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  656. data/apis/lex-models/2017-04-19/api-2.json +0 -2550
  657. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  658. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  659. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  660. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  661. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  662. data/apis/lightsail/2016-11-28/api-2.json +0 -5429
  663. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  664. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  665. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  666. data/apis/logs/2014-03-28/api-2.json +0 -1701
  667. data/apis/logs/2014-03-28/examples-1.json +0 -5
  668. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  669. data/apis/logs/2014-03-28/smoke.json +0 -19
  670. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  671. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  672. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  673. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  674. data/apis/macie/2017-12-19/api-2.json +0 -365
  675. data/apis/macie/2017-12-19/examples-1.json +0 -5
  676. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  677. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1498
  678. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  679. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  680. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  681. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  682. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  683. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  684. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  685. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  686. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  687. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2405
  688. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  689. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8921
  690. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  691. data/apis/medialive/2017-10-14/api-2.json +0 -10868
  692. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  693. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  694. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1757
  695. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  696. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  697. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  698. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  699. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  700. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  701. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  702. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  703. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  704. data/apis/mediatailor/2018-04-23/api-2.json +0 -584
  705. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  706. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  707. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  708. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  709. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  710. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  711. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  712. data/apis/mobile/2017-07-01/api-2.json +0 -551
  713. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  714. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  715. data/apis/monitoring/2010-08-01/api-2.json +0 -1973
  716. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  717. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  718. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  719. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  720. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  721. data/apis/mq/2017-11-27/api-2.json +0 -2577
  722. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  723. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  724. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  725. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  726. data/apis/neptune/2014-10-31/api-2.json +0 -3583
  727. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  728. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  729. data/apis/neptune/2014-10-31/smoke.json +0 -18
  730. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  731. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  732. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  733. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  734. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  735. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  736. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  737. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  738. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  739. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  740. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  741. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  742. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  743. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  744. data/apis/organizations/2016-11-28/api-2.json +0 -2578
  745. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  746. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  747. data/apis/outposts/2019-12-03/api-2.json +0 -429
  748. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  749. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  750. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  751. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  752. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  753. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -149
  754. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  755. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  756. data/apis/personalize/2018-05-22/api-2.json +0 -1871
  757. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  758. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  759. data/apis/pi/2018-02-27/api-2.json +0 -253
  760. data/apis/pi/2018-02-27/examples-1.json +0 -5
  761. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  762. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  763. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  764. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  765. data/apis/pinpoint/2016-12-01/api-2.json +0 -12340
  766. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  767. data/apis/polly/2016-06-10/api-2.json +0 -832
  768. data/apis/polly/2016-06-10/examples-1.json +0 -171
  769. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  770. data/apis/polly/2016-06-10/smoke.json +0 -11
  771. data/apis/pricing/2017-10-15/api-2.json +0 -227
  772. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  773. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  774. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  775. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  776. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  777. data/apis/qldb/2019-01-02/api-2.json +0 -776
  778. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  779. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  780. data/apis/quicksight/2018-04-01/api-2.json +0 -5550
  781. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  782. data/apis/quicksight/2018-04-01/paginators-1.json +0 -49
  783. data/apis/ram/2018-01-04/api-2.json +0 -1315
  784. data/apis/ram/2018-01-04/examples-1.json +0 -5
  785. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  786. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  787. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  788. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  789. data/apis/rds/2013-01-10/api-2.json +0 -2903
  790. data/apis/rds/2013-01-10/examples-1.json +0 -5
  791. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  792. data/apis/rds/2013-01-10/smoke.json +0 -18
  793. data/apis/rds/2013-02-12/api-2.json +0 -3059
  794. data/apis/rds/2013-02-12/examples-1.json +0 -5
  795. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  796. data/apis/rds/2013-02-12/smoke.json +0 -18
  797. data/apis/rds/2013-09-09/api-2.json +0 -3160
  798. data/apis/rds/2013-09-09/examples-1.json +0 -5
  799. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  800. data/apis/rds/2013-09-09/smoke.json +0 -18
  801. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  802. data/apis/rds/2014-09-01/api-2.json +0 -3273
  803. data/apis/rds/2014-09-01/examples-1.json +0 -5
  804. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  805. data/apis/rds/2014-09-01/smoke.json +0 -18
  806. data/apis/rds/2014-10-31/api-2.json +0 -7703
  807. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  808. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  809. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  810. data/apis/rds/2014-10-31/smoke.json +0 -18
  811. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  812. data/apis/redshift/2012-12-01/api-2.json +0 -5526
  813. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  814. data/apis/redshift/2012-12-01/paginators-1.json +0 -112
  815. data/apis/redshift/2012-12-01/smoke.json +0 -18
  816. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  817. data/apis/rekognition/2016-06-27/api-2.json +0 -2854
  818. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  819. data/apis/rekognition/2016-06-27/paginators-1.json +0 -68
  820. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  821. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  822. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  823. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  824. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  825. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  826. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  827. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  828. data/apis/robomaker/2018-06-29/api-2.json +0 -2420
  829. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  830. data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
  831. data/apis/route53/2013-04-01/api-2.json +0 -3791
  832. data/apis/route53/2013-04-01/examples-1.json +0 -762
  833. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  834. data/apis/route53/2013-04-01/smoke.json +0 -18
  835. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  836. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  837. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  838. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  839. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  840. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  841. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  842. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  843. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  844. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  845. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  846. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  847. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  848. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  849. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  850. data/apis/s3/2006-03-01/api-2.json +0 -6653
  851. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  852. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  853. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  854. data/apis/s3/2006-03-01/smoke.json +0 -11
  855. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  856. data/apis/s3control/2018-08-20/api-2.json +0 -1585
  857. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  858. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  859. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  860. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  861. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  862. data/apis/sagemaker/2017-07-24/api-2.json +0 -9257
  863. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  864. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  865. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  866. data/apis/savingsplans/2019-06-28/api-2.json +0 -755
  867. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  868. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  869. data/apis/schemas/2019-12-02/api-2.json +0 -2867
  870. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  871. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  872. data/apis/sdb/2009-04-15/api-2.json +0 -955
  873. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  874. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  875. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  876. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  877. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  878. data/apis/securityhub/2018-10-26/api-2.json +0 -2979
  879. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  880. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  881. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  882. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  883. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  884. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  885. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  886. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3983
  887. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  888. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -89
  889. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  890. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  891. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -342
  892. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  893. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  894. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  895. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  896. data/apis/shield/2016-06-02/api-2.json +0 -968
  897. data/apis/shield/2016-06-02/examples-1.json +0 -5
  898. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  899. data/apis/shield/2016-06-02/smoke.json +0 -11
  900. data/apis/signer/2017-08-25/api-2.json +0 -822
  901. data/apis/signer/2017-08-25/examples-1.json +0 -5
  902. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  903. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  904. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  905. data/apis/sms/2016-10-24/api-2.json +0 -1366
  906. data/apis/sms/2016-10-24/examples-1.json +0 -5
  907. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  908. data/apis/sms/2016-10-24/smoke.json +0 -18
  909. data/apis/snowball/2016-06-30/api-2.json +0 -977
  910. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  911. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  912. data/apis/snowball/2016-06-30/smoke.json +0 -11
  913. data/apis/sns/2010-03-31/api-2.json +0 -1468
  914. data/apis/sns/2010-03-31/examples-1.json +0 -5
  915. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  916. data/apis/sns/2010-03-31/resources-1.json +0 -327
  917. data/apis/sns/2010-03-31/smoke.json +0 -19
  918. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  919. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  920. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  921. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  922. data/apis/sqs/2012-11-05/smoke.json +0 -18
  923. data/apis/ssm/2014-11-06/api-2.json +0 -9261
  924. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  925. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  926. data/apis/ssm/2014-11-06/smoke.json +0 -18
  927. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  928. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  929. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  930. data/apis/sso/2019-06-10/api-2.json +0 -281
  931. data/apis/sso/2019-06-10/examples-1.json +0 -5
  932. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  933. data/apis/states/2016-11-23/api-2.json +0 -1477
  934. data/apis/states/2016-11-23/examples-1.json +0 -5
  935. data/apis/states/2016-11-23/paginators-1.json +0 -28
  936. data/apis/states/2016-11-23/smoke.json +0 -11
  937. data/apis/storagegateway/2013-06-30/api-2.json +0 -3385
  938. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  939. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  940. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  941. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  942. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  943. data/apis/sts/2011-06-15/api-2.json +0 -598
  944. data/apis/sts/2011-06-15/examples-1.json +0 -271
  945. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  946. data/apis/sts/2011-06-15/smoke.json +0 -19
  947. data/apis/support/2013-04-15/api-2.json +0 -773
  948. data/apis/support/2013-04-15/examples-1.json +0 -5
  949. data/apis/support/2013-04-15/paginators-1.json +0 -25
  950. data/apis/support/2013-04-15/smoke.json +0 -22
  951. data/apis/swf/2012-01-25/api-2.json +0 -2792
  952. data/apis/swf/2012-01-25/examples-1.json +0 -5
  953. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  954. data/apis/synthetics/2017-10-11/api-2.json +0 -754
  955. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  956. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  957. data/apis/textract/2018-06-27/api-2.json +0 -653
  958. data/apis/textract/2018-06-27/examples-1.json +0 -5
  959. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  960. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -272
  961. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  962. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  963. data/apis/transcribe/2017-10-26/api-2.json +0 -1115
  964. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  965. data/apis/transcribe/2017-10-26/paginators-1.json +0 -29
  966. data/apis/transfer/2018-11-05/api-2.json +0 -1001
  967. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  968. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  969. data/apis/translate/2017-07-01/api-2.json +0 -658
  970. data/apis/translate/2017-07-01/examples-1.json +0 -5
  971. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  972. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  973. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  974. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  975. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  976. data/apis/waf/2015-08-24/api-2.json +0 -3958
  977. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  978. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  979. data/apis/waf/2015-08-24/smoke.json +0 -21
  980. data/apis/wafv2/2019-07-29/api-2.json +0 -2637
  981. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  982. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  983. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  984. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  985. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  986. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  987. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  988. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  989. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  990. data/apis/workmail/2017-10-01/api-2.json +0 -1918
  991. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  992. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  993. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  994. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  995. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  996. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  997. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  998. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  999. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1000. data/apis/xray/2016-04-12/api-2.json +0 -1355
  1001. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1002. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  1003. data/bin/aws.rb +0 -180
  1004. data/endpoints.json +0 -8026
  1005. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1006. data/lib/aws-sdk-core/acm.rb +0 -7
  1007. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1008. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1009. data/lib/aws-sdk-core/amplify.rb +0 -6
  1010. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1011. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1012. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1013. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1014. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1015. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1016. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1017. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1018. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1019. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1020. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1021. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1022. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1023. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1024. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1025. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1026. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1027. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1028. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1029. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1030. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1031. data/lib/aws-sdk-core/appstream.rb +0 -7
  1032. data/lib/aws-sdk-core/appsync.rb +0 -6
  1033. data/lib/aws-sdk-core/athena.rb +0 -6
  1034. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1035. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1036. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1037. data/lib/aws-sdk-core/backup.rb +0 -6
  1038. data/lib/aws-sdk-core/batch.rb +0 -6
  1039. data/lib/aws-sdk-core/budgets.rb +0 -6
  1040. data/lib/aws-sdk-core/checksums.rb +0 -51
  1041. data/lib/aws-sdk-core/chime.rb +0 -6
  1042. data/lib/aws-sdk-core/client.rb +0 -72
  1043. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1044. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1045. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1047. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1048. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1049. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1050. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1051. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1052. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1054. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1055. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1056. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1057. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1058. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1059. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1060. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1061. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1062. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1063. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1064. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1065. data/lib/aws-sdk-core/codestar.rb +0 -6
  1066. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1067. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1068. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1069. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1070. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1071. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1072. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1073. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1074. data/lib/aws-sdk-core/configservice.rb +0 -6
  1075. data/lib/aws-sdk-core/connect.rb +0 -6
  1076. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1077. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1078. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1079. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1080. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1081. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1082. data/lib/aws-sdk-core/datasync.rb +0 -6
  1083. data/lib/aws-sdk-core/dax.rb +0 -6
  1084. data/lib/aws-sdk-core/detective.rb +0 -6
  1085. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1086. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1087. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1088. data/lib/aws-sdk-core/dlm.rb +0 -6
  1089. data/lib/aws-sdk-core/docdb.rb +0 -7
  1090. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1091. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1092. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1093. data/lib/aws-sdk-core/ebs.rb +0 -6
  1094. data/lib/aws-sdk-core/ec2.rb +0 -8
  1095. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1096. data/lib/aws-sdk-core/ecr.rb +0 -7
  1097. data/lib/aws-sdk-core/ecs.rb +0 -7
  1098. data/lib/aws-sdk-core/efs.rb +0 -6
  1099. data/lib/aws-sdk-core/eks.rb +0 -7
  1100. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1101. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1102. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1103. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1104. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1105. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1106. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1107. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1108. data/lib/aws-sdk-core/emr.rb +0 -7
  1109. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1110. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1111. data/lib/aws-sdk-core/firehose.rb +0 -6
  1112. data/lib/aws-sdk-core/fms.rb +0 -6
  1113. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1114. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1115. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1116. data/lib/aws-sdk-core/fsx.rb +0 -6
  1117. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1118. data/lib/aws-sdk-core/glacier.rb +0 -8
  1119. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1120. data/lib/aws-sdk-core/glue.rb +0 -6
  1121. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1122. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1123. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1124. data/lib/aws-sdk-core/health.rb +0 -6
  1125. data/lib/aws-sdk-core/iam.rb +0 -8
  1126. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1127. data/lib/aws-sdk-core/importexport.rb +0 -5
  1128. data/lib/aws-sdk-core/inspector.rb +0 -6
  1129. data/lib/aws-sdk-core/iot.rb +0 -6
  1130. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1131. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1132. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1133. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1134. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1135. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1136. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1137. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1138. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1139. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1140. data/lib/aws-sdk-core/kafka.rb +0 -5
  1141. data/lib/aws-sdk-core/kendra.rb +0 -6
  1142. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1143. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1144. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1145. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1146. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1147. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1148. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1149. data/lib/aws-sdk-core/kms.rb +0 -6
  1150. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1151. data/lib/aws-sdk-core/lambda.rb +0 -7
  1152. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1153. data/lib/aws-sdk-core/lex.rb +0 -6
  1154. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1155. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1156. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1157. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1158. data/lib/aws-sdk-core/macie.rb +0 -6
  1159. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1160. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1161. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1162. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1163. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1164. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1165. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1166. data/lib/aws-sdk-core/medialive.rb +0 -6
  1167. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1168. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1169. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1170. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1171. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1172. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1173. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1174. data/lib/aws-sdk-core/mobile.rb +0 -6
  1175. data/lib/aws-sdk-core/mq.rb +0 -5
  1176. data/lib/aws-sdk-core/mturk.rb +0 -6
  1177. data/lib/aws-sdk-core/neptune.rb +0 -7
  1178. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1179. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1180. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1181. data/lib/aws-sdk-core/organizations.rb +0 -6
  1182. data/lib/aws-sdk-core/outposts.rb +0 -6
  1183. data/lib/aws-sdk-core/partitions.rb +0 -174
  1184. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1185. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1186. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1187. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1188. data/lib/aws-sdk-core/personalize.rb +0 -6
  1189. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1190. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1191. data/lib/aws-sdk-core/pi.rb +0 -6
  1192. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1193. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1194. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1195. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1197. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1198. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1199. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1200. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1201. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1202. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1203. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1204. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1205. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1206. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1207. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1208. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1209. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1210. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1211. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1212. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1213. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1214. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1215. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1216. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1217. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1218. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1219. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1220. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1221. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1222. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1223. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1224. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1225. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1226. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1227. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1228. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1229. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1230. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1231. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1232. data/lib/aws-sdk-core/polly.rb +0 -14
  1233. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1234. data/lib/aws-sdk-core/pricing.rb +0 -6
  1235. data/lib/aws-sdk-core/qldb.rb +0 -6
  1236. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1237. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1238. data/lib/aws-sdk-core/ram.rb +0 -6
  1239. data/lib/aws-sdk-core/rds.rb +0 -16
  1240. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1241. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1242. data/lib/aws-sdk-core/redshift.rb +0 -7
  1243. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1244. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1245. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1246. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1247. data/lib/aws-sdk-core/route53.rb +0 -7
  1248. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1249. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1250. data/lib/aws-sdk-core/s3.rb +0 -26
  1251. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1252. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1253. data/lib/aws-sdk-core/s3control.rb +0 -6
  1254. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1255. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1256. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1257. data/lib/aws-sdk-core/schemas.rb +0 -6
  1258. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1259. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1260. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1261. data/lib/aws-sdk-core/service.rb +0 -4
  1262. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1263. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1264. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1265. data/lib/aws-sdk-core/ses.rb +0 -7
  1266. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1267. data/lib/aws-sdk-core/shield.rb +0 -6
  1268. data/lib/aws-sdk-core/signer.rb +0 -7
  1269. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1270. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1271. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1272. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1273. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1274. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1275. data/lib/aws-sdk-core/sms.rb +0 -6
  1276. data/lib/aws-sdk-core/snowball.rb +0 -6
  1277. data/lib/aws-sdk-core/sns.rb +0 -7
  1278. data/lib/aws-sdk-core/sqs.rb +0 -7
  1279. data/lib/aws-sdk-core/ssm.rb +0 -6
  1280. data/lib/aws-sdk-core/sso.rb +0 -6
  1281. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1282. data/lib/aws-sdk-core/states.rb +0 -6
  1283. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1284. data/lib/aws-sdk-core/sts.rb +0 -6
  1285. data/lib/aws-sdk-core/support.rb +0 -6
  1286. data/lib/aws-sdk-core/swf.rb +0 -6
  1287. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1288. data/lib/aws-sdk-core/textract.rb +0 -6
  1289. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1290. data/lib/aws-sdk-core/transfer.rb +0 -6
  1291. data/lib/aws-sdk-core/translate.rb +0 -6
  1292. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1293. data/lib/aws-sdk-core/version.rb +0 -3
  1294. data/lib/aws-sdk-core/waf.rb +0 -6
  1295. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1296. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1297. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1298. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1299. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1300. data/lib/aws-sdk-core/worklink.rb +0 -6
  1301. data/lib/aws-sdk-core/workmail.rb +0 -6
  1302. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1303. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1304. data/lib/aws-sdk-core/xray.rb +0 -6
  1305. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1306. data/service-models.json +0 -889
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,2867 +0,0 @@
1
- {
2
- "metadata": {
3
- "apiVersion": "2019-12-02",
4
- "endpointPrefix": "schemas",
5
- "signingName": "schemas",
6
- "serviceFullName": "Schemas",
7
- "serviceId": "schemas",
8
- "protocol": "rest-json",
9
- "jsonVersion": "1.1",
10
- "uid": "schemas-2019-12-02",
11
- "signatureVersion": "v4"
12
- },
13
- "operations": {
14
- "CreateDiscoverer": {
15
- "name": "CreateDiscoverer",
16
- "http": {
17
- "method": "POST",
18
- "requestUri": "/v1/discoverers",
19
- "responseCode": 201
20
- },
21
- "input": {
22
- "shape": "CreateDiscovererRequest"
23
- },
24
- "output": {
25
- "shape": "CreateDiscovererResponse"
26
- },
27
- "errors": [
28
- {
29
- "shape": "BadRequestException"
30
- },
31
- {
32
- "shape": "InternalServerErrorException"
33
- },
34
- {
35
- "shape": "UnauthorizedException"
36
- },
37
- {
38
- "shape": "ForbiddenException"
39
- },
40
- {
41
- "shape": "ServiceUnavailableException"
42
- },
43
- {
44
- "shape": "ConflictException"
45
- }
46
- ]
47
- },
48
- "CreateRegistry": {
49
- "name": "CreateRegistry",
50
- "http": {
51
- "method": "POST",
52
- "requestUri": "/v1/registries/name/{registryName}",
53
- "responseCode": 201
54
- },
55
- "input": {
56
- "shape": "CreateRegistryRequest"
57
- },
58
- "output": {
59
- "shape": "CreateRegistryResponse"
60
- },
61
- "errors": [
62
- {
63
- "shape": "BadRequestException"
64
- },
65
- {
66
- "shape": "InternalServerErrorException"
67
- },
68
- {
69
- "shape": "UnauthorizedException"
70
- },
71
- {
72
- "shape": "ForbiddenException"
73
- },
74
- {
75
- "shape": "ServiceUnavailableException"
76
- },
77
- {
78
- "shape": "ConflictException"
79
- }
80
- ]
81
- },
82
- "CreateSchema": {
83
- "name": "CreateSchema",
84
- "http": {
85
- "method": "POST",
86
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}",
87
- "responseCode": 201
88
- },
89
- "input": {
90
- "shape": "CreateSchemaRequest"
91
- },
92
- "output": {
93
- "shape": "CreateSchemaResponse"
94
- },
95
- "errors": [
96
- {
97
- "shape": "ServiceUnavailableException"
98
- },
99
- {
100
- "shape": "BadRequestException"
101
- },
102
- {
103
- "shape": "InternalServerErrorException"
104
- },
105
- {
106
- "shape": "ForbiddenException"
107
- }
108
- ]
109
- },
110
- "DeleteDiscoverer": {
111
- "name": "DeleteDiscoverer",
112
- "http": {
113
- "method": "DELETE",
114
- "requestUri": "/v1/discoverers/id/{discovererId}",
115
- "responseCode": 204
116
- },
117
- "input": {
118
- "shape": "DeleteDiscovererRequest"
119
- },
120
- "errors": [
121
- {
122
- "shape": "BadRequestException"
123
- },
124
- {
125
- "shape": "UnauthorizedException"
126
- },
127
- {
128
- "shape": "InternalServerErrorException"
129
- },
130
- {
131
- "shape": "ForbiddenException"
132
- },
133
- {
134
- "shape": "NotFoundException"
135
- },
136
- {
137
- "shape": "ServiceUnavailableException"
138
- }
139
- ]
140
- },
141
- "DeleteRegistry": {
142
- "name": "DeleteRegistry",
143
- "http": {
144
- "method": "DELETE",
145
- "requestUri": "/v1/registries/name/{registryName}",
146
- "responseCode": 204
147
- },
148
- "input": {
149
- "shape": "DeleteRegistryRequest"
150
- },
151
- "errors": [
152
- {
153
- "shape": "BadRequestException"
154
- },
155
- {
156
- "shape": "UnauthorizedException"
157
- },
158
- {
159
- "shape": "InternalServerErrorException"
160
- },
161
- {
162
- "shape": "ForbiddenException"
163
- },
164
- {
165
- "shape": "NotFoundException"
166
- },
167
- {
168
- "shape": "ServiceUnavailableException"
169
- }
170
- ]
171
- },
172
- "DeleteResourcePolicy": {
173
- "name": "DeleteResourcePolicy",
174
- "http": {
175
- "method": "DELETE",
176
- "requestUri": "/v1/policy",
177
- "responseCode": 204
178
- },
179
- "input": {
180
- "shape": "DeleteResourcePolicyRequest"
181
- },
182
- "errors": [
183
- {
184
- "shape": "BadRequestException"
185
- },
186
- {
187
- "shape": "UnauthorizedException"
188
- },
189
- {
190
- "shape": "InternalServerErrorException"
191
- },
192
- {
193
- "shape": "ForbiddenException"
194
- },
195
- {
196
- "shape": "NotFoundException"
197
- },
198
- {
199
- "shape": "ServiceUnavailableException"
200
- }
201
- ]
202
- },
203
- "DeleteSchema": {
204
- "name": "DeleteSchema",
205
- "http": {
206
- "method": "DELETE",
207
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}",
208
- "responseCode": 204
209
- },
210
- "input": {
211
- "shape": "DeleteSchemaRequest"
212
- },
213
- "errors": [
214
- {
215
- "shape": "BadRequestException"
216
- },
217
- {
218
- "shape": "UnauthorizedException"
219
- },
220
- {
221
- "shape": "InternalServerErrorException"
222
- },
223
- {
224
- "shape": "ForbiddenException"
225
- },
226
- {
227
- "shape": "NotFoundException"
228
- },
229
- {
230
- "shape": "ServiceUnavailableException"
231
- }
232
- ]
233
- },
234
- "DeleteSchemaVersion": {
235
- "name": "DeleteSchemaVersion",
236
- "http": {
237
- "method": "DELETE",
238
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}/version/{schemaVersion}",
239
- "responseCode": 204
240
- },
241
- "input": {
242
- "shape": "DeleteSchemaVersionRequest"
243
- },
244
- "errors": [
245
- {
246
- "shape": "BadRequestException"
247
- },
248
- {
249
- "shape": "UnauthorizedException"
250
- },
251
- {
252
- "shape": "InternalServerErrorException"
253
- },
254
- {
255
- "shape": "ForbiddenException"
256
- },
257
- {
258
- "shape": "NotFoundException"
259
- },
260
- {
261
- "shape": "ServiceUnavailableException"
262
- }
263
- ]
264
- },
265
- "DescribeCodeBinding": {
266
- "name": "DescribeCodeBinding",
267
- "http": {
268
- "method": "GET",
269
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}/language/{language}",
270
- "responseCode": 200
271
- },
272
- "input": {
273
- "shape": "DescribeCodeBindingRequest"
274
- },
275
- "output": {
276
- "shape": "DescribeCodeBindingResponse"
277
- },
278
- "errors": [
279
- {
280
- "shape": "BadRequestException"
281
- },
282
- {
283
- "shape": "UnauthorizedException"
284
- },
285
- {
286
- "shape": "InternalServerErrorException"
287
- },
288
- {
289
- "shape": "ForbiddenException"
290
- },
291
- {
292
- "shape": "NotFoundException"
293
- },
294
- {
295
- "shape": "TooManyRequestsException"
296
- }
297
- ]
298
- },
299
- "DescribeDiscoverer": {
300
- "name": "DescribeDiscoverer",
301
- "http": {
302
- "method": "GET",
303
- "requestUri": "/v1/discoverers/id/{discovererId}",
304
- "responseCode": 200
305
- },
306
- "input": {
307
- "shape": "DescribeDiscovererRequest"
308
- },
309
- "output": {
310
- "shape": "DescribeDiscovererResponse"
311
- },
312
- "errors": [
313
- {
314
- "shape": "BadRequestException"
315
- },
316
- {
317
- "shape": "UnauthorizedException"
318
- },
319
- {
320
- "shape": "InternalServerErrorException"
321
- },
322
- {
323
- "shape": "ForbiddenException"
324
- },
325
- {
326
- "shape": "NotFoundException"
327
- },
328
- {
329
- "shape": "ServiceUnavailableException"
330
- }
331
- ]
332
- },
333
- "DescribeRegistry": {
334
- "name": "DescribeRegistry",
335
- "http": {
336
- "method": "GET",
337
- "requestUri": "/v1/registries/name/{registryName}",
338
- "responseCode": 200
339
- },
340
- "input": {
341
- "shape": "DescribeRegistryRequest"
342
- },
343
- "output": {
344
- "shape": "DescribeRegistryResponse"
345
- },
346
- "errors": [
347
- {
348
- "shape": "BadRequestException"
349
- },
350
- {
351
- "shape": "UnauthorizedException"
352
- },
353
- {
354
- "shape": "InternalServerErrorException"
355
- },
356
- {
357
- "shape": "ForbiddenException"
358
- },
359
- {
360
- "shape": "NotFoundException"
361
- },
362
- {
363
- "shape": "ServiceUnavailableException"
364
- }
365
- ]
366
- },
367
- "DescribeSchema": {
368
- "name": "DescribeSchema",
369
- "http": {
370
- "method": "GET",
371
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}",
372
- "responseCode": 200
373
- },
374
- "input": {
375
- "shape": "DescribeSchemaRequest"
376
- },
377
- "output": {
378
- "shape": "DescribeSchemaResponse"
379
- },
380
- "errors": [
381
- {
382
- "shape": "BadRequestException"
383
- },
384
- {
385
- "shape": "UnauthorizedException"
386
- },
387
- {
388
- "shape": "InternalServerErrorException"
389
- },
390
- {
391
- "shape": "ForbiddenException"
392
- },
393
- {
394
- "shape": "NotFoundException"
395
- },
396
- {
397
- "shape": "ServiceUnavailableException"
398
- }
399
- ]
400
- },
401
- "GetCodeBindingSource": {
402
- "name": "GetCodeBindingSource",
403
- "http": {
404
- "method": "GET",
405
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}/language/{language}/source",
406
- "responseCode": 200
407
- },
408
- "input": {
409
- "shape": "GetCodeBindingSourceRequest"
410
- },
411
- "output": {
412
- "shape": "GetCodeBindingSourceResponse"
413
- },
414
- "errors": [
415
- {
416
- "shape": "BadRequestException"
417
- },
418
- {
419
- "shape": "UnauthorizedException"
420
- },
421
- {
422
- "shape": "InternalServerErrorException"
423
- },
424
- {
425
- "shape": "ForbiddenException"
426
- },
427
- {
428
- "shape": "NotFoundException"
429
- },
430
- {
431
- "shape": "TooManyRequestsException"
432
- }
433
- ]
434
- },
435
- "GetDiscoveredSchema": {
436
- "name": "GetDiscoveredSchema",
437
- "http": {
438
- "method": "POST",
439
- "requestUri": "/v1/discover",
440
- "responseCode": 200
441
- },
442
- "input": {
443
- "shape": "GetDiscoveredSchemaRequest"
444
- },
445
- "output": {
446
- "shape": "GetDiscoveredSchemaResponse"
447
- },
448
- "errors": [
449
- {
450
- "shape": "ServiceUnavailableException"
451
- },
452
- {
453
- "shape": "BadRequestException"
454
- },
455
- {
456
- "shape": "UnauthorizedException"
457
- },
458
- {
459
- "shape": "InternalServerErrorException"
460
- },
461
- {
462
- "shape": "ForbiddenException"
463
- }
464
- ]
465
- },
466
- "GetResourcePolicy": {
467
- "name": "GetResourcePolicy",
468
- "http": {
469
- "method": "GET",
470
- "requestUri": "/v1/policy",
471
- "responseCode": 200
472
- },
473
- "input": {
474
- "shape": "GetResourcePolicyRequest"
475
- },
476
- "output": {
477
- "shape": "GetResourcePolicyResponse"
478
- },
479
- "errors": [
480
- {
481
- "shape": "BadRequestException"
482
- },
483
- {
484
- "shape": "UnauthorizedException"
485
- },
486
- {
487
- "shape": "InternalServerErrorException"
488
- },
489
- {
490
- "shape": "ForbiddenException"
491
- },
492
- {
493
- "shape": "NotFoundException"
494
- },
495
- {
496
- "shape": "ServiceUnavailableException"
497
- }
498
- ]
499
- },
500
- "ListDiscoverers": {
501
- "name": "ListDiscoverers",
502
- "http": {
503
- "method": "GET",
504
- "requestUri": "/v1/discoverers",
505
- "responseCode": 200
506
- },
507
- "input": {
508
- "shape": "ListDiscoverersRequest"
509
- },
510
- "output": {
511
- "shape": "ListDiscoverersResponse"
512
- },
513
- "errors": [
514
- {
515
- "shape": "ServiceUnavailableException"
516
- },
517
- {
518
- "shape": "BadRequestException"
519
- },
520
- {
521
- "shape": "UnauthorizedException"
522
- },
523
- {
524
- "shape": "InternalServerErrorException"
525
- },
526
- {
527
- "shape": "ForbiddenException"
528
- }
529
- ]
530
- },
531
- "ListRegistries": {
532
- "name": "ListRegistries",
533
- "http": {
534
- "method": "GET",
535
- "requestUri": "/v1/registries",
536
- "responseCode": 200
537
- },
538
- "input": {
539
- "shape": "ListRegistriesRequest"
540
- },
541
- "output": {
542
- "shape": "ListRegistriesResponse"
543
- },
544
- "errors": [
545
- {
546
- "shape": "ServiceUnavailableException"
547
- },
548
- {
549
- "shape": "BadRequestException"
550
- },
551
- {
552
- "shape": "UnauthorizedException"
553
- },
554
- {
555
- "shape": "InternalServerErrorException"
556
- },
557
- {
558
- "shape": "ForbiddenException"
559
- }
560
- ]
561
- },
562
- "ListSchemaVersions": {
563
- "name": "ListSchemaVersions",
564
- "http": {
565
- "method": "GET",
566
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}/versions",
567
- "responseCode": 200
568
- },
569
- "input": {
570
- "shape": "ListSchemaVersionsRequest"
571
- },
572
- "output": {
573
- "shape": "ListSchemaVersionsResponse"
574
- },
575
- "errors": [
576
- {
577
- "shape": "BadRequestException"
578
- },
579
- {
580
- "shape": "UnauthorizedException"
581
- },
582
- {
583
- "shape": "InternalServerErrorException"
584
- },
585
- {
586
- "shape": "ForbiddenException"
587
- },
588
- {
589
- "shape": "NotFoundException"
590
- },
591
- {
592
- "shape": "ServiceUnavailableException"
593
- }
594
- ]
595
- },
596
- "ListSchemas": {
597
- "name": "ListSchemas",
598
- "http": {
599
- "method": "GET",
600
- "requestUri": "/v1/registries/name/{registryName}/schemas",
601
- "responseCode": 200
602
- },
603
- "input": {
604
- "shape": "ListSchemasRequest"
605
- },
606
- "output": {
607
- "shape": "ListSchemasResponse"
608
- },
609
- "errors": [
610
- {
611
- "shape": "ServiceUnavailableException"
612
- },
613
- {
614
- "shape": "BadRequestException"
615
- },
616
- {
617
- "shape": "UnauthorizedException"
618
- },
619
- {
620
- "shape": "InternalServerErrorException"
621
- },
622
- {
623
- "shape": "ForbiddenException"
624
- }
625
- ]
626
- },
627
- "ListTagsForResource": {
628
- "name": "ListTagsForResource",
629
- "http": {
630
- "method": "GET",
631
- "requestUri": "/tags/{resource-arn}",
632
- "responseCode": 200
633
- },
634
- "input": {
635
- "shape": "ListTagsForResourceRequest"
636
- },
637
- "output": {
638
- "shape": "ListTagsForResourceResponse"
639
- },
640
- "errors": [
641
- {
642
- "shape": "NotFoundException"
643
- },
644
- {
645
- "shape": "BadRequestException"
646
- },
647
- {
648
- "shape": "InternalServerErrorException"
649
- },
650
- {
651
- "shape": "ForbiddenException"
652
- }
653
- ]
654
- },
655
- "PutCodeBinding": {
656
- "name": "PutCodeBinding",
657
- "http": {
658
- "method": "POST",
659
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}/language/{language}",
660
- "responseCode": 202
661
- },
662
- "input": {
663
- "shape": "PutCodeBindingRequest"
664
- },
665
- "output": {
666
- "shape": "PutCodeBindingResponse"
667
- },
668
- "errors": [
669
- {
670
- "shape": "GoneException"
671
- },
672
- {
673
- "shape": "BadRequestException"
674
- },
675
- {
676
- "shape": "UnauthorizedException"
677
- },
678
- {
679
- "shape": "InternalServerErrorException"
680
- },
681
- {
682
- "shape": "ForbiddenException"
683
- },
684
- {
685
- "shape": "NotFoundException"
686
- },
687
- {
688
- "shape": "TooManyRequestsException"
689
- }
690
- ]
691
- },
692
- "PutResourcePolicy": {
693
- "name": "PutResourcePolicy",
694
- "http": {
695
- "method": "PUT",
696
- "requestUri": "/v1/policy",
697
- "responseCode": 200
698
- },
699
- "input": {
700
- "shape": "PutResourcePolicyRequest"
701
- },
702
- "output": {
703
- "shape": "PutResourcePolicyResponse"
704
- },
705
- "errors": [
706
- {
707
- "shape": "BadRequestException"
708
- },
709
- {
710
- "shape": "UnauthorizedException"
711
- },
712
- {
713
- "shape": "PreconditionFailedException"
714
- },
715
- {
716
- "shape": "InternalServerErrorException"
717
- },
718
- {
719
- "shape": "ForbiddenException"
720
- },
721
- {
722
- "shape": "NotFoundException"
723
- },
724
- {
725
- "shape": "ServiceUnavailableException"
726
- }
727
- ]
728
- },
729
- "SearchSchemas": {
730
- "name": "SearchSchemas",
731
- "http": {
732
- "method": "GET",
733
- "requestUri": "/v1/registries/name/{registryName}/schemas/search",
734
- "responseCode": 200
735
- },
736
- "input": {
737
- "shape": "SearchSchemasRequest"
738
- },
739
- "output": {
740
- "shape": "SearchSchemasResponse"
741
- },
742
- "errors": [
743
- {
744
- "shape": "ServiceUnavailableException"
745
- },
746
- {
747
- "shape": "BadRequestException"
748
- },
749
- {
750
- "shape": "UnauthorizedException"
751
- },
752
- {
753
- "shape": "InternalServerErrorException"
754
- },
755
- {
756
- "shape": "ForbiddenException"
757
- }
758
- ]
759
- },
760
- "StartDiscoverer": {
761
- "name": "StartDiscoverer",
762
- "http": {
763
- "method": "POST",
764
- "requestUri": "/v1/discoverers/id/{discovererId}/start",
765
- "responseCode": 200
766
- },
767
- "input": {
768
- "shape": "StartDiscovererRequest"
769
- },
770
- "output": {
771
- "shape": "StartDiscovererResponse"
772
- },
773
- "errors": [
774
- {
775
- "shape": "BadRequestException"
776
- },
777
- {
778
- "shape": "UnauthorizedException"
779
- },
780
- {
781
- "shape": "InternalServerErrorException"
782
- },
783
- {
784
- "shape": "ForbiddenException"
785
- },
786
- {
787
- "shape": "NotFoundException"
788
- },
789
- {
790
- "shape": "ServiceUnavailableException"
791
- }
792
- ]
793
- },
794
- "StopDiscoverer": {
795
- "name": "StopDiscoverer",
796
- "http": {
797
- "method": "POST",
798
- "requestUri": "/v1/discoverers/id/{discovererId}/stop",
799
- "responseCode": 200
800
- },
801
- "input": {
802
- "shape": "StopDiscovererRequest"
803
- },
804
- "output": {
805
- "shape": "StopDiscovererResponse"
806
- },
807
- "errors": [
808
- {
809
- "shape": "BadRequestException"
810
- },
811
- {
812
- "shape": "UnauthorizedException"
813
- },
814
- {
815
- "shape": "InternalServerErrorException"
816
- },
817
- {
818
- "shape": "ForbiddenException"
819
- },
820
- {
821
- "shape": "NotFoundException"
822
- },
823
- {
824
- "shape": "ServiceUnavailableException"
825
- }
826
- ]
827
- },
828
- "TagResource": {
829
- "name": "TagResource",
830
- "http": {
831
- "method": "POST",
832
- "requestUri": "/tags/{resource-arn}",
833
- "responseCode": 204
834
- },
835
- "input": {
836
- "shape": "TagResourceRequest"
837
- },
838
- "errors": [
839
- {
840
- "shape": "NotFoundException"
841
- },
842
- {
843
- "shape": "BadRequestException"
844
- },
845
- {
846
- "shape": "InternalServerErrorException"
847
- },
848
- {
849
- "shape": "ForbiddenException"
850
- }
851
- ]
852
- },
853
- "UntagResource": {
854
- "name": "UntagResource",
855
- "http": {
856
- "method": "DELETE",
857
- "requestUri": "/tags/{resource-arn}",
858
- "responseCode": 204
859
- },
860
- "input": {
861
- "shape": "UntagResourceRequest"
862
- },
863
- "errors": [
864
- {
865
- "shape": "NotFoundException"
866
- },
867
- {
868
- "shape": "BadRequestException"
869
- },
870
- {
871
- "shape": "InternalServerErrorException"
872
- },
873
- {
874
- "shape": "ForbiddenException"
875
- }
876
- ]
877
- },
878
- "UpdateDiscoverer": {
879
- "name": "UpdateDiscoverer",
880
- "http": {
881
- "method": "PUT",
882
- "requestUri": "/v1/discoverers/id/{discovererId}",
883
- "responseCode": 200
884
- },
885
- "input": {
886
- "shape": "UpdateDiscovererRequest"
887
- },
888
- "output": {
889
- "shape": "UpdateDiscovererResponse"
890
- },
891
- "errors": [
892
- {
893
- "shape": "BadRequestException"
894
- },
895
- {
896
- "shape": "UnauthorizedException"
897
- },
898
- {
899
- "shape": "InternalServerErrorException"
900
- },
901
- {
902
- "shape": "ForbiddenException"
903
- },
904
- {
905
- "shape": "NotFoundException"
906
- },
907
- {
908
- "shape": "ServiceUnavailableException"
909
- }
910
- ]
911
- },
912
- "UpdateRegistry": {
913
- "name": "UpdateRegistry",
914
- "http": {
915
- "method": "PUT",
916
- "requestUri": "/v1/registries/name/{registryName}",
917
- "responseCode": 200
918
- },
919
- "input": {
920
- "shape": "UpdateRegistryRequest"
921
- },
922
- "output": {
923
- "shape": "UpdateRegistryResponse"
924
- },
925
- "errors": [
926
- {
927
- "shape": "BadRequestException"
928
- },
929
- {
930
- "shape": "UnauthorizedException"
931
- },
932
- {
933
- "shape": "InternalServerErrorException"
934
- },
935
- {
936
- "shape": "ForbiddenException"
937
- },
938
- {
939
- "shape": "NotFoundException"
940
- },
941
- {
942
- "shape": "ServiceUnavailableException"
943
- }
944
- ]
945
- },
946
- "UpdateSchema": {
947
- "name": "UpdateSchema",
948
- "http": {
949
- "method": "PUT",
950
- "requestUri": "/v1/registries/name/{registryName}/schemas/name/{schemaName}",
951
- "responseCode": 200
952
- },
953
- "input": {
954
- "shape": "UpdateSchemaRequest"
955
- },
956
- "output": {
957
- "shape": "UpdateSchemaResponse"
958
- },
959
- "errors": [
960
- {
961
- "shape": "BadRequestException"
962
- },
963
- {
964
- "shape": "InternalServerErrorException"
965
- },
966
- {
967
- "shape": "ForbiddenException"
968
- },
969
- {
970
- "shape": "NotFoundException"
971
- },
972
- {
973
- "shape": "ServiceUnavailableException"
974
- }
975
- ]
976
- }
977
- },
978
- "shapes": {
979
- "BadRequestException": {
980
- "type": "structure",
981
- "members": {
982
- "Code": {
983
- "shape": "__string"
984
- },
985
- "Message": {
986
- "shape": "__string"
987
- }
988
- },
989
- "required": [
990
- "Message",
991
- "Code"
992
- ],
993
- "exception": true,
994
- "error": {
995
- "httpStatusCode": 400
996
- }
997
- },
998
- "CodeBindingOutput": {
999
- "type": "structure",
1000
- "members": {
1001
- "CreationDate": {
1002
- "shape": "__timestampIso8601"
1003
- },
1004
- "LastModified": {
1005
- "shape": "__timestampIso8601"
1006
- },
1007
- "SchemaVersion": {
1008
- "shape": "__string"
1009
- },
1010
- "Status": {
1011
- "shape": "CodeGenerationStatus"
1012
- }
1013
- }
1014
- },
1015
- "CodeGenerationStatus": {
1016
- "type": "string",
1017
- "enum": [
1018
- "CREATE_IN_PROGRESS",
1019
- "CREATE_COMPLETE",
1020
- "CREATE_FAILED"
1021
- ]
1022
- },
1023
- "ConflictException": {
1024
- "type": "structure",
1025
- "members": {
1026
- "Code": {
1027
- "shape": "__string"
1028
- },
1029
- "Message": {
1030
- "shape": "__string"
1031
- }
1032
- },
1033
- "required": [
1034
- "Message",
1035
- "Code"
1036
- ],
1037
- "exception": true,
1038
- "error": {
1039
- "httpStatusCode": 409
1040
- }
1041
- },
1042
- "CreateDiscovererInput": {
1043
- "type": "structure",
1044
- "members": {
1045
- "Description": {
1046
- "shape": "__stringMin0Max256"
1047
- },
1048
- "SourceArn": {
1049
- "shape": "__stringMin20Max1600"
1050
- },
1051
- "Tags": {
1052
- "shape": "Tags",
1053
- "locationName": "tags"
1054
- }
1055
- },
1056
- "required": [
1057
- "SourceArn"
1058
- ]
1059
- },
1060
- "CreateDiscovererRequest": {
1061
- "type": "structure",
1062
- "members": {
1063
- "Description": {
1064
- "shape": "__stringMin0Max256"
1065
- },
1066
- "SourceArn": {
1067
- "shape": "__stringMin20Max1600"
1068
- },
1069
- "Tags": {
1070
- "shape": "Tags",
1071
- "locationName": "tags"
1072
- }
1073
- },
1074
- "required": [
1075
- "SourceArn"
1076
- ]
1077
- },
1078
- "CreateDiscovererResponse": {
1079
- "type": "structure",
1080
- "members": {
1081
- "Description": {
1082
- "shape": "__string"
1083
- },
1084
- "DiscovererArn": {
1085
- "shape": "__string"
1086
- },
1087
- "DiscovererId": {
1088
- "shape": "__string"
1089
- },
1090
- "SourceArn": {
1091
- "shape": "__string"
1092
- },
1093
- "State": {
1094
- "shape": "DiscovererState"
1095
- },
1096
- "Tags": {
1097
- "shape": "Tags",
1098
- "locationName": "tags"
1099
- }
1100
- }
1101
- },
1102
- "CreateRegistryInput": {
1103
- "type": "structure",
1104
- "members": {
1105
- "Description": {
1106
- "shape": "__stringMin0Max256"
1107
- },
1108
- "Tags": {
1109
- "shape": "Tags",
1110
- "locationName": "tags"
1111
- }
1112
- }
1113
- },
1114
- "CreateRegistryRequest": {
1115
- "type": "structure",
1116
- "members": {
1117
- "Description": {
1118
- "shape": "__stringMin0Max256"
1119
- },
1120
- "RegistryName": {
1121
- "shape": "__string",
1122
- "location": "uri",
1123
- "locationName": "registryName"
1124
- },
1125
- "Tags": {
1126
- "shape": "Tags",
1127
- "locationName": "tags"
1128
- }
1129
- },
1130
- "required": [
1131
- "RegistryName"
1132
- ]
1133
- },
1134
- "CreateRegistryResponse": {
1135
- "type": "structure",
1136
- "members": {
1137
- "Description": {
1138
- "shape": "__string"
1139
- },
1140
- "RegistryArn": {
1141
- "shape": "__string"
1142
- },
1143
- "RegistryName": {
1144
- "shape": "__string"
1145
- },
1146
- "Tags": {
1147
- "shape": "Tags",
1148
- "locationName": "tags"
1149
- }
1150
- }
1151
- },
1152
- "CreateSchemaInput": {
1153
- "type": "structure",
1154
- "members": {
1155
- "Content": {
1156
- "shape": "__stringMin1Max100000"
1157
- },
1158
- "Description": {
1159
- "shape": "__stringMin0Max256"
1160
- },
1161
- "Tags": {
1162
- "shape": "Tags",
1163
- "locationName": "tags"
1164
- },
1165
- "Type": {
1166
- "shape": "Type"
1167
- }
1168
- },
1169
- "required": [
1170
- "Type",
1171
- "Content"
1172
- ]
1173
- },
1174
- "CreateSchemaRequest": {
1175
- "type": "structure",
1176
- "members": {
1177
- "Content": {
1178
- "shape": "__stringMin1Max100000"
1179
- },
1180
- "Description": {
1181
- "shape": "__stringMin0Max256"
1182
- },
1183
- "RegistryName": {
1184
- "shape": "__string",
1185
- "location": "uri",
1186
- "locationName": "registryName"
1187
- },
1188
- "SchemaName": {
1189
- "shape": "__string",
1190
- "location": "uri",
1191
- "locationName": "schemaName"
1192
- },
1193
- "Tags": {
1194
- "shape": "Tags",
1195
- "locationName": "tags"
1196
- },
1197
- "Type": {
1198
- "shape": "Type"
1199
- }
1200
- },
1201
- "required": [
1202
- "RegistryName",
1203
- "SchemaName",
1204
- "Type",
1205
- "Content"
1206
- ]
1207
- },
1208
- "CreateSchemaResponse": {
1209
- "type": "structure",
1210
- "members": {
1211
- "Description": {
1212
- "shape": "__string"
1213
- },
1214
- "LastModified": {
1215
- "shape": "__timestampIso8601"
1216
- },
1217
- "SchemaArn": {
1218
- "shape": "__string"
1219
- },
1220
- "SchemaName": {
1221
- "shape": "__string"
1222
- },
1223
- "SchemaVersion": {
1224
- "shape": "__string"
1225
- },
1226
- "Tags": {
1227
- "shape": "Tags",
1228
- "locationName": "tags"
1229
- },
1230
- "Type": {
1231
- "shape": "__string"
1232
- },
1233
- "VersionCreatedDate": {
1234
- "shape": "__timestampIso8601"
1235
- }
1236
- }
1237
- },
1238
- "DeleteDiscovererRequest": {
1239
- "type": "structure",
1240
- "members": {
1241
- "DiscovererId": {
1242
- "shape": "__string",
1243
- "location": "uri",
1244
- "locationName": "discovererId"
1245
- }
1246
- },
1247
- "required": [
1248
- "DiscovererId"
1249
- ]
1250
- },
1251
- "DeleteRegistryRequest": {
1252
- "type": "structure",
1253
- "members": {
1254
- "RegistryName": {
1255
- "shape": "__string",
1256
- "location": "uri",
1257
- "locationName": "registryName"
1258
- }
1259
- },
1260
- "required": [
1261
- "RegistryName"
1262
- ]
1263
- },
1264
- "DeleteResourcePolicyRequest": {
1265
- "type": "structure",
1266
- "members": {
1267
- "RegistryName": {
1268
- "shape": "__string",
1269
- "location": "querystring",
1270
- "locationName": "registryName"
1271
- }
1272
- }
1273
- },
1274
- "DeleteSchemaRequest": {
1275
- "type": "structure",
1276
- "members": {
1277
- "RegistryName": {
1278
- "shape": "__string",
1279
- "location": "uri",
1280
- "locationName": "registryName"
1281
- },
1282
- "SchemaName": {
1283
- "shape": "__string",
1284
- "location": "uri",
1285
- "locationName": "schemaName"
1286
- }
1287
- },
1288
- "required": [
1289
- "RegistryName",
1290
- "SchemaName"
1291
- ]
1292
- },
1293
- "DeleteSchemaVersionRequest": {
1294
- "type": "structure",
1295
- "members": {
1296
- "RegistryName": {
1297
- "shape": "__string",
1298
- "location": "uri",
1299
- "locationName": "registryName"
1300
- },
1301
- "SchemaName": {
1302
- "shape": "__string",
1303
- "location": "uri",
1304
- "locationName": "schemaName"
1305
- },
1306
- "SchemaVersion": {
1307
- "shape": "__string",
1308
- "location": "uri",
1309
- "locationName": "schemaVersion"
1310
- }
1311
- },
1312
- "required": [
1313
- "SchemaVersion",
1314
- "RegistryName",
1315
- "SchemaName"
1316
- ]
1317
- },
1318
- "DescribeCodeBindingRequest": {
1319
- "type": "structure",
1320
- "members": {
1321
- "Language": {
1322
- "shape": "__string",
1323
- "location": "uri",
1324
- "locationName": "language"
1325
- },
1326
- "RegistryName": {
1327
- "shape": "__string",
1328
- "location": "uri",
1329
- "locationName": "registryName"
1330
- },
1331
- "SchemaName": {
1332
- "shape": "__string",
1333
- "location": "uri",
1334
- "locationName": "schemaName"
1335
- },
1336
- "SchemaVersion": {
1337
- "shape": "__string",
1338
- "location": "querystring",
1339
- "locationName": "schemaVersion"
1340
- }
1341
- },
1342
- "required": [
1343
- "RegistryName",
1344
- "SchemaName",
1345
- "Language"
1346
- ]
1347
- },
1348
- "DescribeCodeBindingResponse": {
1349
- "type": "structure",
1350
- "members": {
1351
- "CreationDate": {
1352
- "shape": "__timestampIso8601"
1353
- },
1354
- "LastModified": {
1355
- "shape": "__timestampIso8601"
1356
- },
1357
- "SchemaVersion": {
1358
- "shape": "__string"
1359
- },
1360
- "Status": {
1361
- "shape": "CodeGenerationStatus"
1362
- }
1363
- }
1364
- },
1365
- "DescribeDiscovererRequest": {
1366
- "type": "structure",
1367
- "members": {
1368
- "DiscovererId": {
1369
- "shape": "__string",
1370
- "location": "uri",
1371
- "locationName": "discovererId"
1372
- }
1373
- },
1374
- "required": [
1375
- "DiscovererId"
1376
- ]
1377
- },
1378
- "DescribeDiscovererResponse": {
1379
- "type": "structure",
1380
- "members": {
1381
- "Description": {
1382
- "shape": "__string"
1383
- },
1384
- "DiscovererArn": {
1385
- "shape": "__string"
1386
- },
1387
- "DiscovererId": {
1388
- "shape": "__string"
1389
- },
1390
- "SourceArn": {
1391
- "shape": "__string"
1392
- },
1393
- "State": {
1394
- "shape": "DiscovererState"
1395
- },
1396
- "Tags": {
1397
- "shape": "Tags",
1398
- "locationName": "tags"
1399
- }
1400
- }
1401
- },
1402
- "DescribeRegistryRequest": {
1403
- "type": "structure",
1404
- "members": {
1405
- "RegistryName": {
1406
- "shape": "__string",
1407
- "location": "uri",
1408
- "locationName": "registryName"
1409
- }
1410
- },
1411
- "required": [
1412
- "RegistryName"
1413
- ]
1414
- },
1415
- "DescribeRegistryResponse": {
1416
- "type": "structure",
1417
- "members": {
1418
- "Description": {
1419
- "shape": "__string"
1420
- },
1421
- "RegistryArn": {
1422
- "shape": "__string"
1423
- },
1424
- "RegistryName": {
1425
- "shape": "__string"
1426
- },
1427
- "Tags": {
1428
- "shape": "Tags",
1429
- "locationName": "tags"
1430
- }
1431
- }
1432
- },
1433
- "DescribeSchemaOutput": {
1434
- "type": "structure",
1435
- "members": {
1436
- "Content": {
1437
- "shape": "__string"
1438
- },
1439
- "Description": {
1440
- "shape": "__string"
1441
- },
1442
- "LastModified": {
1443
- "shape": "__timestampIso8601"
1444
- },
1445
- "SchemaArn": {
1446
- "shape": "__string"
1447
- },
1448
- "SchemaName": {
1449
- "shape": "__string"
1450
- },
1451
- "SchemaVersion": {
1452
- "shape": "__string"
1453
- },
1454
- "Tags": {
1455
- "shape": "Tags",
1456
- "locationName": "tags"
1457
- },
1458
- "Type": {
1459
- "shape": "__string"
1460
- },
1461
- "VersionCreatedDate": {
1462
- "shape": "__timestampIso8601"
1463
- }
1464
- }
1465
- },
1466
- "DescribeSchemaRequest": {
1467
- "type": "structure",
1468
- "members": {
1469
- "RegistryName": {
1470
- "shape": "__string",
1471
- "location": "uri",
1472
- "locationName": "registryName"
1473
- },
1474
- "SchemaName": {
1475
- "shape": "__string",
1476
- "location": "uri",
1477
- "locationName": "schemaName"
1478
- },
1479
- "SchemaVersion": {
1480
- "shape": "__string",
1481
- "location": "querystring",
1482
- "locationName": "schemaVersion"
1483
- }
1484
- },
1485
- "required": [
1486
- "RegistryName",
1487
- "SchemaName"
1488
- ]
1489
- },
1490
- "DescribeSchemaResponse": {
1491
- "type": "structure",
1492
- "members": {
1493
- "Content": {
1494
- "shape": "__string"
1495
- },
1496
- "Description": {
1497
- "shape": "__string"
1498
- },
1499
- "LastModified": {
1500
- "shape": "__timestampIso8601"
1501
- },
1502
- "SchemaArn": {
1503
- "shape": "__string"
1504
- },
1505
- "SchemaName": {
1506
- "shape": "__string"
1507
- },
1508
- "SchemaVersion": {
1509
- "shape": "__string"
1510
- },
1511
- "Tags": {
1512
- "shape": "Tags",
1513
- "locationName": "tags"
1514
- },
1515
- "Type": {
1516
- "shape": "__string"
1517
- },
1518
- "VersionCreatedDate": {
1519
- "shape": "__timestampIso8601"
1520
- }
1521
- }
1522
- },
1523
- "DiscovererOutput": {
1524
- "type": "structure",
1525
- "members": {
1526
- "Description": {
1527
- "shape": "__string"
1528
- },
1529
- "DiscovererArn": {
1530
- "shape": "__string"
1531
- },
1532
- "DiscovererId": {
1533
- "shape": "__string"
1534
- },
1535
- "SourceArn": {
1536
- "shape": "__string"
1537
- },
1538
- "State": {
1539
- "shape": "DiscovererState"
1540
- },
1541
- "Tags": {
1542
- "shape": "Tags",
1543
- "locationName": "tags"
1544
- }
1545
- }
1546
- },
1547
- "DiscovererState": {
1548
- "type": "string",
1549
- "enum": [
1550
- "STARTED",
1551
- "STOPPED"
1552
- ]
1553
- },
1554
- "DiscovererStateOutput": {
1555
- "type": "structure",
1556
- "members": {
1557
- "DiscovererId": {
1558
- "shape": "__string"
1559
- },
1560
- "State": {
1561
- "shape": "DiscovererState"
1562
- }
1563
- }
1564
- },
1565
- "DiscovererSummary": {
1566
- "type": "structure",
1567
- "members": {
1568
- "DiscovererArn": {
1569
- "shape": "__string"
1570
- },
1571
- "DiscovererId": {
1572
- "shape": "__string"
1573
- },
1574
- "SourceArn": {
1575
- "shape": "__string"
1576
- },
1577
- "State": {
1578
- "shape": "DiscovererState"
1579
- },
1580
- "Tags": {
1581
- "shape": "Tags",
1582
- "locationName": "tags"
1583
- }
1584
- }
1585
- },
1586
- "ErrorOutput": {
1587
- "type": "structure",
1588
- "members": {
1589
- "Code": {
1590
- "shape": "__string"
1591
- },
1592
- "Message": {
1593
- "shape": "__string"
1594
- }
1595
- },
1596
- "required": [
1597
- "Message",
1598
- "Code"
1599
- ]
1600
- },
1601
- "ForbiddenException": {
1602
- "type": "structure",
1603
- "members": {
1604
- "Code": {
1605
- "shape": "__string"
1606
- },
1607
- "Message": {
1608
- "shape": "__string"
1609
- }
1610
- },
1611
- "required": [
1612
- "Message",
1613
- "Code"
1614
- ],
1615
- "exception": true,
1616
- "error": {
1617
- "httpStatusCode": 403
1618
- }
1619
- },
1620
- "GetCodeBindingSourceOutput": {
1621
- "type": "string"
1622
- },
1623
- "GetCodeBindingSourceRequest": {
1624
- "type": "structure",
1625
- "members": {
1626
- "Language": {
1627
- "shape": "__string",
1628
- "location": "uri",
1629
- "locationName": "language"
1630
- },
1631
- "RegistryName": {
1632
- "shape": "__string",
1633
- "location": "uri",
1634
- "locationName": "registryName"
1635
- },
1636
- "SchemaName": {
1637
- "shape": "__string",
1638
- "location": "uri",
1639
- "locationName": "schemaName"
1640
- },
1641
- "SchemaVersion": {
1642
- "shape": "__string",
1643
- "location": "querystring",
1644
- "locationName": "schemaVersion"
1645
- }
1646
- },
1647
- "required": [
1648
- "RegistryName",
1649
- "SchemaName",
1650
- "Language"
1651
- ]
1652
- },
1653
- "GetCodeBindingSourceResponse": {
1654
- "type": "structure",
1655
- "members": {
1656
- "Body": {
1657
- "shape": "Body"
1658
- }
1659
- },
1660
- "payload": "Body"
1661
- },
1662
- "GetDiscoveredSchemaInput": {
1663
- "type": "structure",
1664
- "members": {
1665
- "Events": {
1666
- "shape": "__listOfGetDiscoveredSchemaVersionItemInput"
1667
- },
1668
- "Type": {
1669
- "shape": "Type"
1670
- }
1671
- },
1672
- "required": [
1673
- "Type",
1674
- "Events"
1675
- ]
1676
- },
1677
- "GetDiscoveredSchemaOutput": {
1678
- "type": "structure",
1679
- "members": {
1680
- "Content": {
1681
- "shape": "__string"
1682
- }
1683
- }
1684
- },
1685
- "GetDiscoveredSchemaRequest": {
1686
- "type": "structure",
1687
- "members": {
1688
- "Events": {
1689
- "shape": "__listOfGetDiscoveredSchemaVersionItemInput"
1690
- },
1691
- "Type": {
1692
- "shape": "Type"
1693
- }
1694
- },
1695
- "required": [
1696
- "Type",
1697
- "Events"
1698
- ]
1699
- },
1700
- "GetDiscoveredSchemaResponse": {
1701
- "type": "structure",
1702
- "members": {
1703
- "Content": {
1704
- "shape": "__string"
1705
- }
1706
- }
1707
- },
1708
- "GetDiscoveredSchemaVersionItemInput": {
1709
- "type": "string",
1710
- "min": 1,
1711
- "max": 100000
1712
- },
1713
- "GetResourcePolicyOutput": {
1714
- "type": "structure",
1715
- "members": {
1716
- "Policy": {
1717
- "shape": "__string",
1718
- "jsonvalue": true
1719
- },
1720
- "RevisionId": {
1721
- "shape": "__string"
1722
- }
1723
- }
1724
- },
1725
- "GetResourcePolicyRequest": {
1726
- "type": "structure",
1727
- "members": {
1728
- "RegistryName": {
1729
- "shape": "__string",
1730
- "location": "querystring",
1731
- "locationName": "registryName"
1732
- }
1733
- }
1734
- },
1735
- "GetResourcePolicyResponse": {
1736
- "type": "structure",
1737
- "members": {
1738
- "Policy": {
1739
- "shape": "__string",
1740
- "jsonvalue": true
1741
- },
1742
- "RevisionId": {
1743
- "shape": "__string"
1744
- }
1745
- }
1746
- },
1747
- "GoneException": {
1748
- "type": "structure",
1749
- "members": {
1750
- "Code": {
1751
- "shape": "__string"
1752
- },
1753
- "Message": {
1754
- "shape": "__string"
1755
- }
1756
- },
1757
- "required": [
1758
- "Message",
1759
- "Code"
1760
- ],
1761
- "exception": true,
1762
- "error": {
1763
- "httpStatusCode": 410
1764
- }
1765
- },
1766
- "InternalServerErrorException": {
1767
- "type": "structure",
1768
- "members": {
1769
- "Code": {
1770
- "shape": "__string"
1771
- },
1772
- "Message": {
1773
- "shape": "__string"
1774
- }
1775
- },
1776
- "required": [
1777
- "Message",
1778
- "Code"
1779
- ],
1780
- "exception": true,
1781
- "error": {
1782
- "httpStatusCode": 500
1783
- }
1784
- },
1785
- "Limit": {
1786
- "type": "integer",
1787
- "min": 1,
1788
- "max": 100
1789
- },
1790
- "ListDiscoverersOutput": {
1791
- "type": "structure",
1792
- "members": {
1793
- "Discoverers": {
1794
- "shape": "__listOfDiscovererSummary"
1795
- },
1796
- "NextToken": {
1797
- "shape": "__string"
1798
- }
1799
- }
1800
- },
1801
- "ListDiscoverersRequest": {
1802
- "type": "structure",
1803
- "members": {
1804
- "DiscovererIdPrefix": {
1805
- "shape": "__string",
1806
- "location": "querystring",
1807
- "locationName": "discovererIdPrefix"
1808
- },
1809
- "Limit": {
1810
- "shape": "__integer",
1811
- "location": "querystring",
1812
- "locationName": "limit"
1813
- },
1814
- "NextToken": {
1815
- "shape": "__string",
1816
- "location": "querystring",
1817
- "locationName": "nextToken"
1818
- },
1819
- "SourceArnPrefix": {
1820
- "shape": "__string",
1821
- "location": "querystring",
1822
- "locationName": "sourceArnPrefix"
1823
- }
1824
- }
1825
- },
1826
- "ListDiscoverersResponse": {
1827
- "type": "structure",
1828
- "members": {
1829
- "Discoverers": {
1830
- "shape": "__listOfDiscovererSummary"
1831
- },
1832
- "NextToken": {
1833
- "shape": "__string"
1834
- }
1835
- }
1836
- },
1837
- "ListRegistriesOutput": {
1838
- "type": "structure",
1839
- "members": {
1840
- "NextToken": {
1841
- "shape": "__string"
1842
- },
1843
- "Registries": {
1844
- "shape": "__listOfRegistrySummary"
1845
- }
1846
- }
1847
- },
1848
- "ListRegistriesRequest": {
1849
- "type": "structure",
1850
- "members": {
1851
- "Limit": {
1852
- "shape": "__integer",
1853
- "location": "querystring",
1854
- "locationName": "limit"
1855
- },
1856
- "NextToken": {
1857
- "shape": "__string",
1858
- "location": "querystring",
1859
- "locationName": "nextToken"
1860
- },
1861
- "RegistryNamePrefix": {
1862
- "shape": "__string",
1863
- "location": "querystring",
1864
- "locationName": "registryNamePrefix"
1865
- },
1866
- "Scope": {
1867
- "shape": "__string",
1868
- "location": "querystring",
1869
- "locationName": "scope"
1870
- }
1871
- }
1872
- },
1873
- "ListRegistriesResponse": {
1874
- "type": "structure",
1875
- "members": {
1876
- "NextToken": {
1877
- "shape": "__string"
1878
- },
1879
- "Registries": {
1880
- "shape": "__listOfRegistrySummary"
1881
- }
1882
- }
1883
- },
1884
- "ListSchemaVersionsOutput": {
1885
- "type": "structure",
1886
- "members": {
1887
- "NextToken": {
1888
- "shape": "__string"
1889
- },
1890
- "SchemaVersions": {
1891
- "shape": "__listOfSchemaVersionSummary"
1892
- }
1893
- }
1894
- },
1895
- "ListSchemaVersionsRequest": {
1896
- "type": "structure",
1897
- "members": {
1898
- "Limit": {
1899
- "shape": "__integer",
1900
- "location": "querystring",
1901
- "locationName": "limit"
1902
- },
1903
- "NextToken": {
1904
- "shape": "__string",
1905
- "location": "querystring",
1906
- "locationName": "nextToken"
1907
- },
1908
- "RegistryName": {
1909
- "shape": "__string",
1910
- "location": "uri",
1911
- "locationName": "registryName"
1912
- },
1913
- "SchemaName": {
1914
- "shape": "__string",
1915
- "location": "uri",
1916
- "locationName": "schemaName"
1917
- }
1918
- },
1919
- "required": [
1920
- "RegistryName",
1921
- "SchemaName"
1922
- ]
1923
- },
1924
- "ListSchemaVersionsResponse": {
1925
- "type": "structure",
1926
- "members": {
1927
- "NextToken": {
1928
- "shape": "__string"
1929
- },
1930
- "SchemaVersions": {
1931
- "shape": "__listOfSchemaVersionSummary"
1932
- }
1933
- }
1934
- },
1935
- "ListSchemasOutput": {
1936
- "type": "structure",
1937
- "members": {
1938
- "NextToken": {
1939
- "shape": "__string"
1940
- },
1941
- "Schemas": {
1942
- "shape": "__listOfSchemaSummary"
1943
- }
1944
- }
1945
- },
1946
- "ListSchemasRequest": {
1947
- "type": "structure",
1948
- "members": {
1949
- "Limit": {
1950
- "shape": "__integer",
1951
- "location": "querystring",
1952
- "locationName": "limit"
1953
- },
1954
- "NextToken": {
1955
- "shape": "__string",
1956
- "location": "querystring",
1957
- "locationName": "nextToken"
1958
- },
1959
- "RegistryName": {
1960
- "shape": "__string",
1961
- "location": "uri",
1962
- "locationName": "registryName"
1963
- },
1964
- "SchemaNamePrefix": {
1965
- "shape": "__string",
1966
- "location": "querystring",
1967
- "locationName": "schemaNamePrefix"
1968
- }
1969
- },
1970
- "required": [
1971
- "RegistryName"
1972
- ]
1973
- },
1974
- "ListSchemasResponse": {
1975
- "type": "structure",
1976
- "members": {
1977
- "NextToken": {
1978
- "shape": "__string"
1979
- },
1980
- "Schemas": {
1981
- "shape": "__listOfSchemaSummary"
1982
- }
1983
- }
1984
- },
1985
- "ListTagsForResourceOutput": {
1986
- "type": "structure",
1987
- "members": {
1988
- "Tags": {
1989
- "shape": "Tags",
1990
- "locationName": "tags"
1991
- }
1992
- }
1993
- },
1994
- "ListTagsForResourceRequest": {
1995
- "type": "structure",
1996
- "members": {
1997
- "ResourceArn": {
1998
- "shape": "__string",
1999
- "location": "uri",
2000
- "locationName": "resource-arn"
2001
- }
2002
- },
2003
- "required": [
2004
- "ResourceArn"
2005
- ]
2006
- },
2007
- "ListTagsForResourceResponse": {
2008
- "type": "structure",
2009
- "members": {
2010
- "Tags": {
2011
- "shape": "Tags",
2012
- "locationName": "tags"
2013
- }
2014
- }
2015
- },
2016
- "LockServiceLinkedRoleInput": {
2017
- "type": "structure",
2018
- "members": {
2019
- "RoleArn": {
2020
- "shape": "__stringMin1Max1600"
2021
- },
2022
- "Timeout": {
2023
- "shape": "__integerMin1Max29000"
2024
- }
2025
- },
2026
- "required": [
2027
- "Timeout",
2028
- "RoleArn"
2029
- ]
2030
- },
2031
- "LockServiceLinkedRoleOutput": {
2032
- "type": "structure",
2033
- "members": {
2034
- "CanBeDeleted": {
2035
- "shape": "__boolean"
2036
- },
2037
- "ReasonOfFailure": {
2038
- "shape": "__stringMin1Max1600"
2039
- },
2040
- "RelatedResources": {
2041
- "shape": "__listOfDiscovererSummary"
2042
- }
2043
- }
2044
- },
2045
- "LockServiceLinkedRoleRequest": {
2046
- "type": "structure",
2047
- "members": {
2048
- "RoleArn": {
2049
- "shape": "__stringMin1Max1600"
2050
- },
2051
- "Timeout": {
2052
- "shape": "__integerMin1Max29000"
2053
- }
2054
- },
2055
- "required": [
2056
- "Timeout",
2057
- "RoleArn"
2058
- ]
2059
- },
2060
- "LockServiceLinkedRoleResponse": {
2061
- "type": "structure",
2062
- "members": {
2063
- "CanBeDeleted": {
2064
- "shape": "__boolean"
2065
- },
2066
- "ReasonOfFailure": {
2067
- "shape": "__stringMin1Max1600"
2068
- },
2069
- "RelatedResources": {
2070
- "shape": "__listOfDiscovererSummary"
2071
- }
2072
- }
2073
- },
2074
- "NotFoundException": {
2075
- "type": "structure",
2076
- "members": {
2077
- "Code": {
2078
- "shape": "__string"
2079
- },
2080
- "Message": {
2081
- "shape": "__string"
2082
- }
2083
- },
2084
- "required": [
2085
- "Message",
2086
- "Code"
2087
- ],
2088
- "exception": true,
2089
- "error": {
2090
- "httpStatusCode": 404
2091
- }
2092
- },
2093
- "PreconditionFailedException": {
2094
- "type": "structure",
2095
- "members": {
2096
- "Code": {
2097
- "shape": "__string"
2098
- },
2099
- "Message": {
2100
- "shape": "__string"
2101
- }
2102
- },
2103
- "required": [
2104
- "Message",
2105
- "Code"
2106
- ],
2107
- "exception": true,
2108
- "error": {
2109
- "httpStatusCode": 412
2110
- }
2111
- },
2112
- "PutCodeBindingRequest": {
2113
- "type": "structure",
2114
- "members": {
2115
- "Language": {
2116
- "shape": "__string",
2117
- "location": "uri",
2118
- "locationName": "language"
2119
- },
2120
- "RegistryName": {
2121
- "shape": "__string",
2122
- "location": "uri",
2123
- "locationName": "registryName"
2124
- },
2125
- "SchemaName": {
2126
- "shape": "__string",
2127
- "location": "uri",
2128
- "locationName": "schemaName"
2129
- },
2130
- "SchemaVersion": {
2131
- "shape": "__string",
2132
- "location": "querystring",
2133
- "locationName": "schemaVersion"
2134
- }
2135
- },
2136
- "required": [
2137
- "RegistryName",
2138
- "SchemaName",
2139
- "Language"
2140
- ]
2141
- },
2142
- "PutCodeBindingResponse": {
2143
- "type": "structure",
2144
- "members": {
2145
- "CreationDate": {
2146
- "shape": "__timestampIso8601"
2147
- },
2148
- "LastModified": {
2149
- "shape": "__timestampIso8601"
2150
- },
2151
- "SchemaVersion": {
2152
- "shape": "__string"
2153
- },
2154
- "Status": {
2155
- "shape": "CodeGenerationStatus"
2156
- }
2157
- }
2158
- },
2159
- "PutResourcePolicyInput": {
2160
- "type": "structure",
2161
- "members": {
2162
- "Policy": {
2163
- "shape": "__string",
2164
- "jsonvalue": true
2165
- },
2166
- "RevisionId": {
2167
- "shape": "__string"
2168
- }
2169
- },
2170
- "required": [
2171
- "Policy"
2172
- ]
2173
- },
2174
- "PutResourcePolicyOutput": {
2175
- "type": "structure",
2176
- "members": {
2177
- "Policy": {
2178
- "shape": "__string",
2179
- "jsonvalue": true
2180
- },
2181
- "RevisionId": {
2182
- "shape": "__string"
2183
- }
2184
- }
2185
- },
2186
- "PutResourcePolicyRequest": {
2187
- "type": "structure",
2188
- "members": {
2189
- "Policy": {
2190
- "shape": "__string",
2191
- "jsonvalue": true
2192
- },
2193
- "RegistryName": {
2194
- "shape": "__string",
2195
- "location": "querystring",
2196
- "locationName": "registryName"
2197
- },
2198
- "RevisionId": {
2199
- "shape": "__string"
2200
- }
2201
- },
2202
- "required": [
2203
- "Policy"
2204
- ]
2205
- },
2206
- "PutResourcePolicyResponse": {
2207
- "type": "structure",
2208
- "members": {
2209
- "Policy": {
2210
- "shape": "__string",
2211
- "jsonvalue": true
2212
- },
2213
- "RevisionId": {
2214
- "shape": "__string"
2215
- }
2216
- }
2217
- },
2218
- "RegistryOutput": {
2219
- "type": "structure",
2220
- "members": {
2221
- "Description": {
2222
- "shape": "__string"
2223
- },
2224
- "RegistryArn": {
2225
- "shape": "__string"
2226
- },
2227
- "RegistryName": {
2228
- "shape": "__string"
2229
- },
2230
- "Tags": {
2231
- "shape": "Tags",
2232
- "locationName": "tags"
2233
- }
2234
- }
2235
- },
2236
- "RegistrySummary": {
2237
- "type": "structure",
2238
- "members": {
2239
- "RegistryArn": {
2240
- "shape": "__string"
2241
- },
2242
- "RegistryName": {
2243
- "shape": "__string"
2244
- },
2245
- "Tags": {
2246
- "shape": "Tags",
2247
- "locationName": "tags"
2248
- }
2249
- }
2250
- },
2251
- "SchemaOutput": {
2252
- "type": "structure",
2253
- "members": {
2254
- "Description": {
2255
- "shape": "__string"
2256
- },
2257
- "LastModified": {
2258
- "shape": "__timestampIso8601"
2259
- },
2260
- "SchemaArn": {
2261
- "shape": "__string"
2262
- },
2263
- "SchemaName": {
2264
- "shape": "__string"
2265
- },
2266
- "SchemaVersion": {
2267
- "shape": "__string"
2268
- },
2269
- "Tags": {
2270
- "shape": "Tags",
2271
- "locationName": "tags"
2272
- },
2273
- "Type": {
2274
- "shape": "__string"
2275
- },
2276
- "VersionCreatedDate": {
2277
- "shape": "__timestampIso8601"
2278
- }
2279
- }
2280
- },
2281
- "SchemaSummary": {
2282
- "type": "structure",
2283
- "members": {
2284
- "LastModified": {
2285
- "shape": "__timestampIso8601"
2286
- },
2287
- "SchemaArn": {
2288
- "shape": "__string"
2289
- },
2290
- "SchemaName": {
2291
- "shape": "__string"
2292
- },
2293
- "Tags": {
2294
- "shape": "Tags",
2295
- "locationName": "tags"
2296
- },
2297
- "VersionCount": {
2298
- "shape": "__long"
2299
- }
2300
- }
2301
- },
2302
- "SchemaVersionSummary": {
2303
- "type": "structure",
2304
- "members": {
2305
- "SchemaArn": {
2306
- "shape": "__string"
2307
- },
2308
- "SchemaName": {
2309
- "shape": "__string"
2310
- },
2311
- "SchemaVersion": {
2312
- "shape": "__string"
2313
- }
2314
- }
2315
- },
2316
- "SearchSchemaSummary": {
2317
- "type": "structure",
2318
- "members": {
2319
- "RegistryName": {
2320
- "shape": "__string"
2321
- },
2322
- "SchemaArn": {
2323
- "shape": "__string"
2324
- },
2325
- "SchemaName": {
2326
- "shape": "__string"
2327
- },
2328
- "SchemaVersions": {
2329
- "shape": "__listOfSearchSchemaVersionSummary"
2330
- }
2331
- }
2332
- },
2333
- "SearchSchemaVersionSummary": {
2334
- "type": "structure",
2335
- "members": {
2336
- "CreatedDate": {
2337
- "shape": "__timestampIso8601"
2338
- },
2339
- "SchemaVersion": {
2340
- "shape": "__string"
2341
- }
2342
- }
2343
- },
2344
- "SearchSchemasOutput": {
2345
- "type": "structure",
2346
- "members": {
2347
- "NextToken": {
2348
- "shape": "__string"
2349
- },
2350
- "Schemas": {
2351
- "shape": "__listOfSearchSchemaSummary"
2352
- }
2353
- }
2354
- },
2355
- "SearchSchemasRequest": {
2356
- "type": "structure",
2357
- "members": {
2358
- "Keywords": {
2359
- "shape": "__string",
2360
- "location": "querystring",
2361
- "locationName": "keywords"
2362
- },
2363
- "Limit": {
2364
- "shape": "__integer",
2365
- "location": "querystring",
2366
- "locationName": "limit"
2367
- },
2368
- "NextToken": {
2369
- "shape": "__string",
2370
- "location": "querystring",
2371
- "locationName": "nextToken"
2372
- },
2373
- "RegistryName": {
2374
- "shape": "__string",
2375
- "location": "uri",
2376
- "locationName": "registryName"
2377
- }
2378
- },
2379
- "required": [
2380
- "RegistryName",
2381
- "Keywords"
2382
- ]
2383
- },
2384
- "SearchSchemasResponse": {
2385
- "type": "structure",
2386
- "members": {
2387
- "NextToken": {
2388
- "shape": "__string"
2389
- },
2390
- "Schemas": {
2391
- "shape": "__listOfSearchSchemaSummary"
2392
- }
2393
- }
2394
- },
2395
- "ServiceUnavailableException": {
2396
- "type": "structure",
2397
- "members": {
2398
- "Code": {
2399
- "shape": "__string"
2400
- },
2401
- "Message": {
2402
- "shape": "__string"
2403
- }
2404
- },
2405
- "required": [
2406
- "Message",
2407
- "Code"
2408
- ],
2409
- "exception": true,
2410
- "error": {
2411
- "httpStatusCode": 503
2412
- }
2413
- },
2414
- "StartDiscovererRequest": {
2415
- "type": "structure",
2416
- "members": {
2417
- "DiscovererId": {
2418
- "shape": "__string",
2419
- "location": "uri",
2420
- "locationName": "discovererId"
2421
- }
2422
- },
2423
- "required": [
2424
- "DiscovererId"
2425
- ]
2426
- },
2427
- "StartDiscovererResponse": {
2428
- "type": "structure",
2429
- "members": {
2430
- "DiscovererId": {
2431
- "shape": "__string"
2432
- },
2433
- "State": {
2434
- "shape": "DiscovererState"
2435
- }
2436
- }
2437
- },
2438
- "StopDiscovererRequest": {
2439
- "type": "structure",
2440
- "members": {
2441
- "DiscovererId": {
2442
- "shape": "__string",
2443
- "location": "uri",
2444
- "locationName": "discovererId"
2445
- }
2446
- },
2447
- "required": [
2448
- "DiscovererId"
2449
- ]
2450
- },
2451
- "StopDiscovererResponse": {
2452
- "type": "structure",
2453
- "members": {
2454
- "DiscovererId": {
2455
- "shape": "__string"
2456
- },
2457
- "State": {
2458
- "shape": "DiscovererState"
2459
- }
2460
- }
2461
- },
2462
- "TagResourceInput": {
2463
- "type": "structure",
2464
- "members": {
2465
- "Tags": {
2466
- "shape": "Tags",
2467
- "locationName": "tags"
2468
- }
2469
- },
2470
- "required": [
2471
- "Tags"
2472
- ]
2473
- },
2474
- "TagResourceRequest": {
2475
- "type": "structure",
2476
- "members": {
2477
- "ResourceArn": {
2478
- "shape": "__string",
2479
- "location": "uri",
2480
- "locationName": "resource-arn"
2481
- },
2482
- "Tags": {
2483
- "shape": "Tags",
2484
- "locationName": "tags"
2485
- }
2486
- },
2487
- "required": [
2488
- "ResourceArn",
2489
- "Tags"
2490
- ]
2491
- },
2492
- "Tags": {
2493
- "type": "map",
2494
- "key": {
2495
- "shape": "__string"
2496
- },
2497
- "value": {
2498
- "shape": "__string"
2499
- }
2500
- },
2501
- "TooManyRequestsException": {
2502
- "type": "structure",
2503
- "members": {
2504
- "Code": {
2505
- "shape": "__string"
2506
- },
2507
- "Message": {
2508
- "shape": "__string"
2509
- }
2510
- },
2511
- "required": [
2512
- "Message",
2513
- "Code"
2514
- ],
2515
- "exception": true,
2516
- "error": {
2517
- "httpStatusCode": 429
2518
- }
2519
- },
2520
- "Type": {
2521
- "type": "string",
2522
- "enum": [
2523
- "OpenApi3"
2524
- ]
2525
- },
2526
- "UnauthorizedException": {
2527
- "type": "structure",
2528
- "members": {
2529
- "Code": {
2530
- "shape": "__string"
2531
- },
2532
- "Message": {
2533
- "shape": "__string"
2534
- }
2535
- },
2536
- "required": [
2537
- "Message",
2538
- "Code"
2539
- ],
2540
- "exception": true,
2541
- "error": {
2542
- "httpStatusCode": 401
2543
- }
2544
- },
2545
- "UnlockServiceLinkedRoleInput": {
2546
- "type": "structure",
2547
- "members": {
2548
- "RoleArn": {
2549
- "shape": "__stringMin1Max1600"
2550
- }
2551
- },
2552
- "required": [
2553
- "RoleArn"
2554
- ]
2555
- },
2556
- "UnlockServiceLinkedRoleRequest": {
2557
- "type": "structure",
2558
- "members": {
2559
- "RoleArn": {
2560
- "shape": "__stringMin1Max1600"
2561
- }
2562
- },
2563
- "required": [
2564
- "RoleArn"
2565
- ]
2566
- },
2567
- "UnlockServiceLinkedRoleResponse": {
2568
- "type": "structure",
2569
- "members": {}
2570
- },
2571
- "UntagResourceRequest": {
2572
- "type": "structure",
2573
- "members": {
2574
- "ResourceArn": {
2575
- "shape": "__string",
2576
- "location": "uri",
2577
- "locationName": "resource-arn"
2578
- },
2579
- "TagKeys": {
2580
- "shape": "__listOf__string",
2581
- "location": "querystring",
2582
- "locationName": "tagKeys"
2583
- }
2584
- },
2585
- "required": [
2586
- "TagKeys",
2587
- "ResourceArn"
2588
- ]
2589
- },
2590
- "UpdateDiscovererInput": {
2591
- "type": "structure",
2592
- "members": {
2593
- "Description": {
2594
- "shape": "__stringMin0Max256"
2595
- }
2596
- }
2597
- },
2598
- "UpdateDiscovererRequest": {
2599
- "type": "structure",
2600
- "members": {
2601
- "Description": {
2602
- "shape": "__stringMin0Max256"
2603
- },
2604
- "DiscovererId": {
2605
- "shape": "__string",
2606
- "location": "uri",
2607
- "locationName": "discovererId"
2608
- }
2609
- },
2610
- "required": [
2611
- "DiscovererId"
2612
- ]
2613
- },
2614
- "UpdateDiscovererResponse": {
2615
- "type": "structure",
2616
- "members": {
2617
- "Description": {
2618
- "shape": "__string"
2619
- },
2620
- "DiscovererArn": {
2621
- "shape": "__string"
2622
- },
2623
- "DiscovererId": {
2624
- "shape": "__string"
2625
- },
2626
- "SourceArn": {
2627
- "shape": "__string"
2628
- },
2629
- "State": {
2630
- "shape": "DiscovererState"
2631
- },
2632
- "Tags": {
2633
- "shape": "Tags",
2634
- "locationName": "tags"
2635
- }
2636
- }
2637
- },
2638
- "UpdateRegistryInput": {
2639
- "type": "structure",
2640
- "members": {
2641
- "Description": {
2642
- "shape": "__stringMin0Max256"
2643
- }
2644
- }
2645
- },
2646
- "UpdateRegistryRequest": {
2647
- "type": "structure",
2648
- "members": {
2649
- "Description": {
2650
- "shape": "__stringMin0Max256"
2651
- },
2652
- "RegistryName": {
2653
- "shape": "__string",
2654
- "location": "uri",
2655
- "locationName": "registryName"
2656
- }
2657
- },
2658
- "required": [
2659
- "RegistryName"
2660
- ]
2661
- },
2662
- "UpdateRegistryResponse": {
2663
- "type": "structure",
2664
- "members": {
2665
- "Description": {
2666
- "shape": "__string"
2667
- },
2668
- "RegistryArn": {
2669
- "shape": "__string"
2670
- },
2671
- "RegistryName": {
2672
- "shape": "__string"
2673
- },
2674
- "Tags": {
2675
- "shape": "Tags",
2676
- "locationName": "tags"
2677
- }
2678
- }
2679
- },
2680
- "UpdateSchemaInput": {
2681
- "type": "structure",
2682
- "members": {
2683
- "ClientTokenId": {
2684
- "shape": "__stringMin0Max36",
2685
- "idempotencyToken": true
2686
- },
2687
- "Content": {
2688
- "shape": "__stringMin1Max100000"
2689
- },
2690
- "Description": {
2691
- "shape": "__stringMin0Max256"
2692
- },
2693
- "Type": {
2694
- "shape": "Type"
2695
- }
2696
- }
2697
- },
2698
- "UpdateSchemaRequest": {
2699
- "type": "structure",
2700
- "members": {
2701
- "ClientTokenId": {
2702
- "shape": "__stringMin0Max36",
2703
- "idempotencyToken": true
2704
- },
2705
- "Content": {
2706
- "shape": "__stringMin1Max100000"
2707
- },
2708
- "Description": {
2709
- "shape": "__stringMin0Max256"
2710
- },
2711
- "RegistryName": {
2712
- "shape": "__string",
2713
- "location": "uri",
2714
- "locationName": "registryName"
2715
- },
2716
- "SchemaName": {
2717
- "shape": "__string",
2718
- "location": "uri",
2719
- "locationName": "schemaName"
2720
- },
2721
- "Type": {
2722
- "shape": "Type"
2723
- }
2724
- },
2725
- "required": [
2726
- "RegistryName",
2727
- "SchemaName"
2728
- ]
2729
- },
2730
- "UpdateSchemaResponse": {
2731
- "type": "structure",
2732
- "members": {
2733
- "Description": {
2734
- "shape": "__string"
2735
- },
2736
- "LastModified": {
2737
- "shape": "__timestampIso8601"
2738
- },
2739
- "SchemaArn": {
2740
- "shape": "__string"
2741
- },
2742
- "SchemaName": {
2743
- "shape": "__string"
2744
- },
2745
- "SchemaVersion": {
2746
- "shape": "__string"
2747
- },
2748
- "Tags": {
2749
- "shape": "Tags",
2750
- "locationName": "tags"
2751
- },
2752
- "Type": {
2753
- "shape": "__string"
2754
- },
2755
- "VersionCreatedDate": {
2756
- "shape": "__timestampIso8601"
2757
- }
2758
- }
2759
- },
2760
- "__boolean": {
2761
- "type": "boolean"
2762
- },
2763
- "__double": {
2764
- "type": "double"
2765
- },
2766
- "__integer": {
2767
- "type": "integer"
2768
- },
2769
- "__integerMin1Max29000": {
2770
- "type": "integer",
2771
- "min": 1,
2772
- "max": 29000
2773
- },
2774
- "__listOfDiscovererSummary": {
2775
- "type": "list",
2776
- "member": {
2777
- "shape": "DiscovererSummary"
2778
- }
2779
- },
2780
- "__listOfGetDiscoveredSchemaVersionItemInput": {
2781
- "type": "list",
2782
- "min": 1,
2783
- "max": 10,
2784
- "member": {
2785
- "shape": "GetDiscoveredSchemaVersionItemInput"
2786
- }
2787
- },
2788
- "__listOfRegistrySummary": {
2789
- "type": "list",
2790
- "member": {
2791
- "shape": "RegistrySummary"
2792
- }
2793
- },
2794
- "__listOfSchemaSummary": {
2795
- "type": "list",
2796
- "member": {
2797
- "shape": "SchemaSummary"
2798
- }
2799
- },
2800
- "__listOfSchemaVersionSummary": {
2801
- "type": "list",
2802
- "member": {
2803
- "shape": "SchemaVersionSummary"
2804
- }
2805
- },
2806
- "__listOfSearchSchemaSummary": {
2807
- "type": "list",
2808
- "member": {
2809
- "shape": "SearchSchemaSummary"
2810
- }
2811
- },
2812
- "__listOfSearchSchemaVersionSummary": {
2813
- "type": "list",
2814
- "member": {
2815
- "shape": "SearchSchemaVersionSummary"
2816
- }
2817
- },
2818
- "__listOf__string": {
2819
- "type": "list",
2820
- "member": {
2821
- "shape": "__string"
2822
- }
2823
- },
2824
- "__long": {
2825
- "type": "long"
2826
- },
2827
- "__string": {
2828
- "type": "string"
2829
- },
2830
- "__stringMin0Max256": {
2831
- "type": "string",
2832
- "min": 0,
2833
- "max": 256
2834
- },
2835
- "__stringMin0Max36": {
2836
- "type": "string",
2837
- "min": 0,
2838
- "max": 36
2839
- },
2840
- "__stringMin1Max100000": {
2841
- "type": "string",
2842
- "min": 1,
2843
- "max": 100000
2844
- },
2845
- "__stringMin1Max1600": {
2846
- "type": "string",
2847
- "min": 1,
2848
- "max": 1600
2849
- },
2850
- "__stringMin20Max1600": {
2851
- "type": "string",
2852
- "min": 20,
2853
- "max": 1600
2854
- },
2855
- "__timestampIso8601": {
2856
- "type": "timestamp",
2857
- "timestampFormat": "iso8601"
2858
- },
2859
- "__timestampUnix": {
2860
- "type": "timestamp",
2861
- "timestampFormat": "unixTimestamp"
2862
- },
2863
- "Body": {
2864
- "type": "blob"
2865
- }
2866
- }
2867
- }