aws-sdk-core 2.11.407 → 3.77.0

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