aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,4523 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-07-09",
5
- "endpointPrefix":"apigateway",
6
- "protocol":"rest-json",
7
- "serviceFullName":"Amazon API Gateway",
8
- "signatureVersion":"v4",
9
- "uid":"apigateway-2015-07-09"
10
- },
11
- "operations":{
12
- "CreateApiKey":{
13
- "name":"CreateApiKey",
14
- "http":{
15
- "method":"POST",
16
- "requestUri":"/apikeys",
17
- "responseCode":201
18
- },
19
- "input":{"shape":"CreateApiKeyRequest"},
20
- "output":{"shape":"ApiKey"},
21
- "errors":[
22
- {"shape":"UnauthorizedException"},
23
- {"shape":"NotFoundException"},
24
- {"shape":"TooManyRequestsException"},
25
- {"shape":"LimitExceededException"},
26
- {"shape":"BadRequestException"},
27
- {"shape":"ConflictException"}
28
- ]
29
- },
30
- "CreateAuthorizer":{
31
- "name":"CreateAuthorizer",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/restapis/{restapi_id}/authorizers",
35
- "responseCode":201
36
- },
37
- "input":{"shape":"CreateAuthorizerRequest"},
38
- "output":{"shape":"Authorizer"},
39
- "errors":[
40
- {"shape":"BadRequestException"},
41
- {"shape":"UnauthorizedException"},
42
- {"shape":"NotFoundException"},
43
- {"shape":"LimitExceededException"},
44
- {"shape":"TooManyRequestsException"}
45
- ]
46
- },
47
- "CreateBasePathMapping":{
48
- "name":"CreateBasePathMapping",
49
- "http":{
50
- "method":"POST",
51
- "requestUri":"/domainnames/{domain_name}/basepathmappings",
52
- "responseCode":201
53
- },
54
- "input":{"shape":"CreateBasePathMappingRequest"},
55
- "output":{"shape":"BasePathMapping"},
56
- "errors":[
57
- {"shape":"UnauthorizedException"},
58
- {"shape":"ConflictException"},
59
- {"shape":"BadRequestException"},
60
- {"shape":"NotFoundException"},
61
- {"shape":"TooManyRequestsException"}
62
- ]
63
- },
64
- "CreateDeployment":{
65
- "name":"CreateDeployment",
66
- "http":{
67
- "method":"POST",
68
- "requestUri":"/restapis/{restapi_id}/deployments",
69
- "responseCode":201
70
- },
71
- "input":{"shape":"CreateDeploymentRequest"},
72
- "output":{"shape":"Deployment"},
73
- "errors":[
74
- {"shape":"UnauthorizedException"},
75
- {"shape":"BadRequestException"},
76
- {"shape":"NotFoundException"},
77
- {"shape":"ConflictException"},
78
- {"shape":"LimitExceededException"},
79
- {"shape":"TooManyRequestsException"},
80
- {"shape":"ServiceUnavailableException"}
81
- ]
82
- },
83
- "CreateDocumentationPart":{
84
- "name":"CreateDocumentationPart",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/restapis/{restapi_id}/documentation/parts",
88
- "responseCode":201
89
- },
90
- "input":{"shape":"CreateDocumentationPartRequest"},
91
- "output":{"shape":"DocumentationPart"},
92
- "errors":[
93
- {"shape":"BadRequestException"},
94
- {"shape":"ConflictException"},
95
- {"shape":"UnauthorizedException"},
96
- {"shape":"NotFoundException"},
97
- {"shape":"LimitExceededException"},
98
- {"shape":"TooManyRequestsException"}
99
- ]
100
- },
101
- "CreateDocumentationVersion":{
102
- "name":"CreateDocumentationVersion",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/restapis/{restapi_id}/documentation/versions",
106
- "responseCode":201
107
- },
108
- "input":{"shape":"CreateDocumentationVersionRequest"},
109
- "output":{"shape":"DocumentationVersion"},
110
- "errors":[
111
- {"shape":"BadRequestException"},
112
- {"shape":"ConflictException"},
113
- {"shape":"UnauthorizedException"},
114
- {"shape":"NotFoundException"},
115
- {"shape":"LimitExceededException"},
116
- {"shape":"TooManyRequestsException"}
117
- ]
118
- },
119
- "CreateDomainName":{
120
- "name":"CreateDomainName",
121
- "http":{
122
- "method":"POST",
123
- "requestUri":"/domainnames",
124
- "responseCode":201
125
- },
126
- "input":{"shape":"CreateDomainNameRequest"},
127
- "output":{"shape":"DomainName"},
128
- "errors":[
129
- {"shape":"UnauthorizedException"},
130
- {"shape":"BadRequestException"},
131
- {"shape":"ConflictException"},
132
- {"shape":"TooManyRequestsException"}
133
- ]
134
- },
135
- "CreateModel":{
136
- "name":"CreateModel",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/restapis/{restapi_id}/models",
140
- "responseCode":201
141
- },
142
- "input":{"shape":"CreateModelRequest"},
143
- "output":{"shape":"Model"},
144
- "errors":[
145
- {"shape":"BadRequestException"},
146
- {"shape":"UnauthorizedException"},
147
- {"shape":"NotFoundException"},
148
- {"shape":"ConflictException"},
149
- {"shape":"LimitExceededException"},
150
- {"shape":"TooManyRequestsException"}
151
- ]
152
- },
153
- "CreateResource":{
154
- "name":"CreateResource",
155
- "http":{
156
- "method":"POST",
157
- "requestUri":"/restapis/{restapi_id}/resources/{parent_id}",
158
- "responseCode":201
159
- },
160
- "input":{"shape":"CreateResourceRequest"},
161
- "output":{"shape":"Resource"},
162
- "errors":[
163
- {"shape":"UnauthorizedException"},
164
- {"shape":"NotFoundException"},
165
- {"shape":"ConflictException"},
166
- {"shape":"LimitExceededException"},
167
- {"shape":"BadRequestException"},
168
- {"shape":"TooManyRequestsException"}
169
- ]
170
- },
171
- "CreateRestApi":{
172
- "name":"CreateRestApi",
173
- "http":{
174
- "method":"POST",
175
- "requestUri":"/restapis",
176
- "responseCode":201
177
- },
178
- "input":{"shape":"CreateRestApiRequest"},
179
- "output":{"shape":"RestApi"},
180
- "errors":[
181
- {"shape":"UnauthorizedException"},
182
- {"shape":"LimitExceededException"},
183
- {"shape":"BadRequestException"},
184
- {"shape":"TooManyRequestsException"}
185
- ]
186
- },
187
- "CreateStage":{
188
- "name":"CreateStage",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/restapis/{restapi_id}/stages",
192
- "responseCode":201
193
- },
194
- "input":{"shape":"CreateStageRequest"},
195
- "output":{"shape":"Stage"},
196
- "errors":[
197
- {"shape":"UnauthorizedException"},
198
- {"shape":"BadRequestException"},
199
- {"shape":"NotFoundException"},
200
- {"shape":"ConflictException"},
201
- {"shape":"LimitExceededException"},
202
- {"shape":"TooManyRequestsException"}
203
- ]
204
- },
205
- "CreateUsagePlan":{
206
- "name":"CreateUsagePlan",
207
- "http":{
208
- "method":"POST",
209
- "requestUri":"/usageplans",
210
- "responseCode":201
211
- },
212
- "input":{"shape":"CreateUsagePlanRequest"},
213
- "output":{"shape":"UsagePlan"},
214
- "errors":[
215
- {"shape":"BadRequestException"},
216
- {"shape":"UnauthorizedException"},
217
- {"shape":"TooManyRequestsException"},
218
- {"shape":"LimitExceededException"},
219
- {"shape":"ConflictException"},
220
- {"shape":"NotFoundException"}
221
- ]
222
- },
223
- "CreateUsagePlanKey":{
224
- "name":"CreateUsagePlanKey",
225
- "http":{
226
- "method":"POST",
227
- "requestUri":"/usageplans/{usageplanId}/keys",
228
- "responseCode":201
229
- },
230
- "input":{"shape":"CreateUsagePlanKeyRequest"},
231
- "output":{"shape":"UsagePlanKey"},
232
- "errors":[
233
- {"shape":"BadRequestException"},
234
- {"shape":"ConflictException"},
235
- {"shape":"UnauthorizedException"},
236
- {"shape":"NotFoundException"},
237
- {"shape":"TooManyRequestsException"}
238
- ]
239
- },
240
- "DeleteApiKey":{
241
- "name":"DeleteApiKey",
242
- "http":{
243
- "method":"DELETE",
244
- "requestUri":"/apikeys/{api_Key}",
245
- "responseCode":202
246
- },
247
- "input":{"shape":"DeleteApiKeyRequest"},
248
- "errors":[
249
- {"shape":"UnauthorizedException"},
250
- {"shape":"NotFoundException"},
251
- {"shape":"TooManyRequestsException"}
252
- ]
253
- },
254
- "DeleteAuthorizer":{
255
- "name":"DeleteAuthorizer",
256
- "http":{
257
- "method":"DELETE",
258
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}",
259
- "responseCode":202
260
- },
261
- "input":{"shape":"DeleteAuthorizerRequest"},
262
- "errors":[
263
- {"shape":"UnauthorizedException"},
264
- {"shape":"NotFoundException"},
265
- {"shape":"TooManyRequestsException"},
266
- {"shape":"BadRequestException"},
267
- {"shape":"ConflictException"}
268
- ]
269
- },
270
- "DeleteBasePathMapping":{
271
- "name":"DeleteBasePathMapping",
272
- "http":{
273
- "method":"DELETE",
274
- "requestUri":"/domainnames/{domain_name}/basepathmappings/{base_path}",
275
- "responseCode":202
276
- },
277
- "input":{"shape":"DeleteBasePathMappingRequest"},
278
- "errors":[
279
- {"shape":"UnauthorizedException"},
280
- {"shape":"NotFoundException"},
281
- {"shape":"TooManyRequestsException"}
282
- ]
283
- },
284
- "DeleteClientCertificate":{
285
- "name":"DeleteClientCertificate",
286
- "http":{
287
- "method":"DELETE",
288
- "requestUri":"/clientcertificates/{clientcertificate_id}",
289
- "responseCode":202
290
- },
291
- "input":{"shape":"DeleteClientCertificateRequest"},
292
- "errors":[
293
- {"shape":"UnauthorizedException"},
294
- {"shape":"TooManyRequestsException"},
295
- {"shape":"BadRequestException"},
296
- {"shape":"NotFoundException"}
297
- ]
298
- },
299
- "DeleteDeployment":{
300
- "name":"DeleteDeployment",
301
- "http":{
302
- "method":"DELETE",
303
- "requestUri":"/restapis/{restapi_id}/deployments/{deployment_id}",
304
- "responseCode":202
305
- },
306
- "input":{"shape":"DeleteDeploymentRequest"},
307
- "errors":[
308
- {"shape":"UnauthorizedException"},
309
- {"shape":"NotFoundException"},
310
- {"shape":"BadRequestException"},
311
- {"shape":"TooManyRequestsException"}
312
- ]
313
- },
314
- "DeleteDocumentationPart":{
315
- "name":"DeleteDocumentationPart",
316
- "http":{
317
- "method":"DELETE",
318
- "requestUri":"/restapis/{restapi_id}/documentation/parts/{part_id}",
319
- "responseCode":202
320
- },
321
- "input":{"shape":"DeleteDocumentationPartRequest"},
322
- "errors":[
323
- {"shape":"UnauthorizedException"},
324
- {"shape":"NotFoundException"},
325
- {"shape":"TooManyRequestsException"},
326
- {"shape":"ConflictException"},
327
- {"shape":"BadRequestException"}
328
- ]
329
- },
330
- "DeleteDocumentationVersion":{
331
- "name":"DeleteDocumentationVersion",
332
- "http":{
333
- "method":"DELETE",
334
- "requestUri":"/restapis/{restapi_id}/documentation/versions/{doc_version}",
335
- "responseCode":202
336
- },
337
- "input":{"shape":"DeleteDocumentationVersionRequest"},
338
- "errors":[
339
- {"shape":"UnauthorizedException"},
340
- {"shape":"NotFoundException"},
341
- {"shape":"BadRequestException"},
342
- {"shape":"ConflictException"},
343
- {"shape":"TooManyRequestsException"}
344
- ]
345
- },
346
- "DeleteDomainName":{
347
- "name":"DeleteDomainName",
348
- "http":{
349
- "method":"DELETE",
350
- "requestUri":"/domainnames/{domain_name}",
351
- "responseCode":202
352
- },
353
- "input":{"shape":"DeleteDomainNameRequest"},
354
- "errors":[
355
- {"shape":"UnauthorizedException"},
356
- {"shape":"NotFoundException"},
357
- {"shape":"TooManyRequestsException"}
358
- ]
359
- },
360
- "DeleteIntegration":{
361
- "name":"DeleteIntegration",
362
- "http":{
363
- "method":"DELETE",
364
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration",
365
- "responseCode":204
366
- },
367
- "input":{"shape":"DeleteIntegrationRequest"},
368
- "errors":[
369
- {"shape":"UnauthorizedException"},
370
- {"shape":"NotFoundException"},
371
- {"shape":"TooManyRequestsException"},
372
- {"shape":"ConflictException"}
373
- ]
374
- },
375
- "DeleteIntegrationResponse":{
376
- "name":"DeleteIntegrationResponse",
377
- "http":{
378
- "method":"DELETE",
379
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}",
380
- "responseCode":204
381
- },
382
- "input":{"shape":"DeleteIntegrationResponseRequest"},
383
- "errors":[
384
- {"shape":"UnauthorizedException"},
385
- {"shape":"NotFoundException"},
386
- {"shape":"TooManyRequestsException"},
387
- {"shape":"BadRequestException"},
388
- {"shape":"ConflictException"}
389
- ]
390
- },
391
- "DeleteMethod":{
392
- "name":"DeleteMethod",
393
- "http":{
394
- "method":"DELETE",
395
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}",
396
- "responseCode":204
397
- },
398
- "input":{"shape":"DeleteMethodRequest"},
399
- "errors":[
400
- {"shape":"UnauthorizedException"},
401
- {"shape":"NotFoundException"},
402
- {"shape":"TooManyRequestsException"},
403
- {"shape":"ConflictException"}
404
- ]
405
- },
406
- "DeleteMethodResponse":{
407
- "name":"DeleteMethodResponse",
408
- "http":{
409
- "method":"DELETE",
410
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}",
411
- "responseCode":204
412
- },
413
- "input":{"shape":"DeleteMethodResponseRequest"},
414
- "errors":[
415
- {"shape":"UnauthorizedException"},
416
- {"shape":"NotFoundException"},
417
- {"shape":"TooManyRequestsException"},
418
- {"shape":"BadRequestException"},
419
- {"shape":"ConflictException"}
420
- ]
421
- },
422
- "DeleteModel":{
423
- "name":"DeleteModel",
424
- "http":{
425
- "method":"DELETE",
426
- "requestUri":"/restapis/{restapi_id}/models/{model_name}",
427
- "responseCode":202
428
- },
429
- "input":{"shape":"DeleteModelRequest"},
430
- "errors":[
431
- {"shape":"UnauthorizedException"},
432
- {"shape":"NotFoundException"},
433
- {"shape":"TooManyRequestsException"},
434
- {"shape":"BadRequestException"},
435
- {"shape":"ConflictException"}
436
- ]
437
- },
438
- "DeleteResource":{
439
- "name":"DeleteResource",
440
- "http":{
441
- "method":"DELETE",
442
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}",
443
- "responseCode":202
444
- },
445
- "input":{"shape":"DeleteResourceRequest"},
446
- "errors":[
447
- {"shape":"UnauthorizedException"},
448
- {"shape":"NotFoundException"},
449
- {"shape":"BadRequestException"},
450
- {"shape":"ConflictException"},
451
- {"shape":"TooManyRequestsException"}
452
- ]
453
- },
454
- "DeleteRestApi":{
455
- "name":"DeleteRestApi",
456
- "http":{
457
- "method":"DELETE",
458
- "requestUri":"/restapis/{restapi_id}",
459
- "responseCode":202
460
- },
461
- "input":{"shape":"DeleteRestApiRequest"},
462
- "errors":[
463
- {"shape":"UnauthorizedException"},
464
- {"shape":"NotFoundException"},
465
- {"shape":"TooManyRequestsException"},
466
- {"shape":"BadRequestException"}
467
- ]
468
- },
469
- "DeleteStage":{
470
- "name":"DeleteStage",
471
- "http":{
472
- "method":"DELETE",
473
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}",
474
- "responseCode":202
475
- },
476
- "input":{"shape":"DeleteStageRequest"},
477
- "errors":[
478
- {"shape":"UnauthorizedException"},
479
- {"shape":"NotFoundException"},
480
- {"shape":"TooManyRequestsException"},
481
- {"shape":"BadRequestException"}
482
- ]
483
- },
484
- "DeleteUsagePlan":{
485
- "name":"DeleteUsagePlan",
486
- "http":{
487
- "method":"DELETE",
488
- "requestUri":"/usageplans/{usageplanId}",
489
- "responseCode":202
490
- },
491
- "input":{"shape":"DeleteUsagePlanRequest"},
492
- "errors":[
493
- {"shape":"UnauthorizedException"},
494
- {"shape":"TooManyRequestsException"},
495
- {"shape":"BadRequestException"},
496
- {"shape":"NotFoundException"}
497
- ]
498
- },
499
- "DeleteUsagePlanKey":{
500
- "name":"DeleteUsagePlanKey",
501
- "http":{
502
- "method":"DELETE",
503
- "requestUri":"/usageplans/{usageplanId}/keys/{keyId}",
504
- "responseCode":202
505
- },
506
- "input":{"shape":"DeleteUsagePlanKeyRequest"},
507
- "errors":[
508
- {"shape":"BadRequestException"},
509
- {"shape":"ConflictException"},
510
- {"shape":"UnauthorizedException"},
511
- {"shape":"NotFoundException"},
512
- {"shape":"TooManyRequestsException"}
513
- ]
514
- },
515
- "FlushStageAuthorizersCache":{
516
- "name":"FlushStageAuthorizersCache",
517
- "http":{
518
- "method":"DELETE",
519
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/cache/authorizers",
520
- "responseCode":202
521
- },
522
- "input":{"shape":"FlushStageAuthorizersCacheRequest"},
523
- "errors":[
524
- {"shape":"UnauthorizedException"},
525
- {"shape":"NotFoundException"},
526
- {"shape":"BadRequestException"},
527
- {"shape":"TooManyRequestsException"}
528
- ]
529
- },
530
- "FlushStageCache":{
531
- "name":"FlushStageCache",
532
- "http":{
533
- "method":"DELETE",
534
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/cache/data",
535
- "responseCode":202
536
- },
537
- "input":{"shape":"FlushStageCacheRequest"},
538
- "errors":[
539
- {"shape":"UnauthorizedException"},
540
- {"shape":"NotFoundException"},
541
- {"shape":"BadRequestException"},
542
- {"shape":"TooManyRequestsException"}
543
- ]
544
- },
545
- "GenerateClientCertificate":{
546
- "name":"GenerateClientCertificate",
547
- "http":{
548
- "method":"POST",
549
- "requestUri":"/clientcertificates",
550
- "responseCode":201
551
- },
552
- "input":{"shape":"GenerateClientCertificateRequest"},
553
- "output":{"shape":"ClientCertificate"},
554
- "errors":[
555
- {"shape":"UnauthorizedException"},
556
- {"shape":"TooManyRequestsException"},
557
- {"shape":"LimitExceededException"}
558
- ]
559
- },
560
- "GetAccount":{
561
- "name":"GetAccount",
562
- "http":{
563
- "method":"GET",
564
- "requestUri":"/account"
565
- },
566
- "input":{"shape":"GetAccountRequest"},
567
- "output":{"shape":"Account"},
568
- "errors":[
569
- {"shape":"UnauthorizedException"},
570
- {"shape":"NotFoundException"},
571
- {"shape":"TooManyRequestsException"}
572
- ]
573
- },
574
- "GetApiKey":{
575
- "name":"GetApiKey",
576
- "http":{
577
- "method":"GET",
578
- "requestUri":"/apikeys/{api_Key}"
579
- },
580
- "input":{"shape":"GetApiKeyRequest"},
581
- "output":{"shape":"ApiKey"},
582
- "errors":[
583
- {"shape":"UnauthorizedException"},
584
- {"shape":"NotFoundException"},
585
- {"shape":"TooManyRequestsException"}
586
- ]
587
- },
588
- "GetApiKeys":{
589
- "name":"GetApiKeys",
590
- "http":{
591
- "method":"GET",
592
- "requestUri":"/apikeys"
593
- },
594
- "input":{"shape":"GetApiKeysRequest"},
595
- "output":{"shape":"ApiKeys"},
596
- "errors":[
597
- {"shape":"BadRequestException"},
598
- {"shape":"UnauthorizedException"},
599
- {"shape":"TooManyRequestsException"}
600
- ]
601
- },
602
- "GetAuthorizer":{
603
- "name":"GetAuthorizer",
604
- "http":{
605
- "method":"GET",
606
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}"
607
- },
608
- "input":{"shape":"GetAuthorizerRequest"},
609
- "output":{"shape":"Authorizer"},
610
- "errors":[
611
- {"shape":"UnauthorizedException"},
612
- {"shape":"NotFoundException"},
613
- {"shape":"TooManyRequestsException"}
614
- ]
615
- },
616
- "GetAuthorizers":{
617
- "name":"GetAuthorizers",
618
- "http":{
619
- "method":"GET",
620
- "requestUri":"/restapis/{restapi_id}/authorizers"
621
- },
622
- "input":{"shape":"GetAuthorizersRequest"},
623
- "output":{"shape":"Authorizers"},
624
- "errors":[
625
- {"shape":"BadRequestException"},
626
- {"shape":"UnauthorizedException"},
627
- {"shape":"NotFoundException"},
628
- {"shape":"TooManyRequestsException"}
629
- ]
630
- },
631
- "GetBasePathMapping":{
632
- "name":"GetBasePathMapping",
633
- "http":{
634
- "method":"GET",
635
- "requestUri":"/domainnames/{domain_name}/basepathmappings/{base_path}"
636
- },
637
- "input":{"shape":"GetBasePathMappingRequest"},
638
- "output":{"shape":"BasePathMapping"},
639
- "errors":[
640
- {"shape":"UnauthorizedException"},
641
- {"shape":"NotFoundException"},
642
- {"shape":"TooManyRequestsException"}
643
- ]
644
- },
645
- "GetBasePathMappings":{
646
- "name":"GetBasePathMappings",
647
- "http":{
648
- "method":"GET",
649
- "requestUri":"/domainnames/{domain_name}/basepathmappings"
650
- },
651
- "input":{"shape":"GetBasePathMappingsRequest"},
652
- "output":{"shape":"BasePathMappings"},
653
- "errors":[
654
- {"shape":"UnauthorizedException"},
655
- {"shape":"NotFoundException"},
656
- {"shape":"TooManyRequestsException"}
657
- ]
658
- },
659
- "GetClientCertificate":{
660
- "name":"GetClientCertificate",
661
- "http":{
662
- "method":"GET",
663
- "requestUri":"/clientcertificates/{clientcertificate_id}"
664
- },
665
- "input":{"shape":"GetClientCertificateRequest"},
666
- "output":{"shape":"ClientCertificate"},
667
- "errors":[
668
- {"shape":"UnauthorizedException"},
669
- {"shape":"NotFoundException"},
670
- {"shape":"TooManyRequestsException"}
671
- ]
672
- },
673
- "GetClientCertificates":{
674
- "name":"GetClientCertificates",
675
- "http":{
676
- "method":"GET",
677
- "requestUri":"/clientcertificates"
678
- },
679
- "input":{"shape":"GetClientCertificatesRequest"},
680
- "output":{"shape":"ClientCertificates"},
681
- "errors":[
682
- {"shape":"BadRequestException"},
683
- {"shape":"UnauthorizedException"},
684
- {"shape":"TooManyRequestsException"}
685
- ]
686
- },
687
- "GetDeployment":{
688
- "name":"GetDeployment",
689
- "http":{
690
- "method":"GET",
691
- "requestUri":"/restapis/{restapi_id}/deployments/{deployment_id}"
692
- },
693
- "input":{"shape":"GetDeploymentRequest"},
694
- "output":{"shape":"Deployment"},
695
- "errors":[
696
- {"shape":"UnauthorizedException"},
697
- {"shape":"NotFoundException"},
698
- {"shape":"TooManyRequestsException"},
699
- {"shape":"ServiceUnavailableException"}
700
- ]
701
- },
702
- "GetDeployments":{
703
- "name":"GetDeployments",
704
- "http":{
705
- "method":"GET",
706
- "requestUri":"/restapis/{restapi_id}/deployments"
707
- },
708
- "input":{"shape":"GetDeploymentsRequest"},
709
- "output":{"shape":"Deployments"},
710
- "errors":[
711
- {"shape":"BadRequestException"},
712
- {"shape":"UnauthorizedException"},
713
- {"shape":"TooManyRequestsException"},
714
- {"shape":"ServiceUnavailableException"}
715
- ]
716
- },
717
- "GetDocumentationPart":{
718
- "name":"GetDocumentationPart",
719
- "http":{
720
- "method":"GET",
721
- "requestUri":"/restapis/{restapi_id}/documentation/parts/{part_id}"
722
- },
723
- "input":{"shape":"GetDocumentationPartRequest"},
724
- "output":{"shape":"DocumentationPart"},
725
- "errors":[
726
- {"shape":"UnauthorizedException"},
727
- {"shape":"NotFoundException"},
728
- {"shape":"TooManyRequestsException"}
729
- ]
730
- },
731
- "GetDocumentationParts":{
732
- "name":"GetDocumentationParts",
733
- "http":{
734
- "method":"GET",
735
- "requestUri":"/restapis/{restapi_id}/documentation/parts"
736
- },
737
- "input":{"shape":"GetDocumentationPartsRequest"},
738
- "output":{"shape":"DocumentationParts"},
739
- "errors":[
740
- {"shape":"BadRequestException"},
741
- {"shape":"UnauthorizedException"},
742
- {"shape":"NotFoundException"},
743
- {"shape":"TooManyRequestsException"}
744
- ]
745
- },
746
- "GetDocumentationVersion":{
747
- "name":"GetDocumentationVersion",
748
- "http":{
749
- "method":"GET",
750
- "requestUri":"/restapis/{restapi_id}/documentation/versions/{doc_version}"
751
- },
752
- "input":{"shape":"GetDocumentationVersionRequest"},
753
- "output":{"shape":"DocumentationVersion"},
754
- "errors":[
755
- {"shape":"UnauthorizedException"},
756
- {"shape":"NotFoundException"},
757
- {"shape":"TooManyRequestsException"}
758
- ]
759
- },
760
- "GetDocumentationVersions":{
761
- "name":"GetDocumentationVersions",
762
- "http":{
763
- "method":"GET",
764
- "requestUri":"/restapis/{restapi_id}/documentation/versions"
765
- },
766
- "input":{"shape":"GetDocumentationVersionsRequest"},
767
- "output":{"shape":"DocumentationVersions"},
768
- "errors":[
769
- {"shape":"BadRequestException"},
770
- {"shape":"UnauthorizedException"},
771
- {"shape":"NotFoundException"},
772
- {"shape":"TooManyRequestsException"}
773
- ]
774
- },
775
- "GetDomainName":{
776
- "name":"GetDomainName",
777
- "http":{
778
- "method":"GET",
779
- "requestUri":"/domainnames/{domain_name}"
780
- },
781
- "input":{"shape":"GetDomainNameRequest"},
782
- "output":{"shape":"DomainName"},
783
- "errors":[
784
- {"shape":"UnauthorizedException"},
785
- {"shape":"NotFoundException"},
786
- {"shape":"ServiceUnavailableException"},
787
- {"shape":"TooManyRequestsException"}
788
- ]
789
- },
790
- "GetDomainNames":{
791
- "name":"GetDomainNames",
792
- "http":{
793
- "method":"GET",
794
- "requestUri":"/domainnames"
795
- },
796
- "input":{"shape":"GetDomainNamesRequest"},
797
- "output":{"shape":"DomainNames"},
798
- "errors":[
799
- {"shape":"BadRequestException"},
800
- {"shape":"UnauthorizedException"},
801
- {"shape":"TooManyRequestsException"}
802
- ]
803
- },
804
- "GetExport":{
805
- "name":"GetExport",
806
- "http":{
807
- "method":"GET",
808
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/exports/{export_type}",
809
- "responseCode":200
810
- },
811
- "input":{"shape":"GetExportRequest"},
812
- "output":{"shape":"ExportResponse"},
813
- "errors":[
814
- {"shape":"UnauthorizedException"},
815
- {"shape":"NotFoundException"},
816
- {"shape":"BadRequestException"},
817
- {"shape":"TooManyRequestsException"}
818
- ]
819
- },
820
- "GetIntegration":{
821
- "name":"GetIntegration",
822
- "http":{
823
- "method":"GET",
824
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration"
825
- },
826
- "input":{"shape":"GetIntegrationRequest"},
827
- "output":{"shape":"Integration"},
828
- "errors":[
829
- {"shape":"UnauthorizedException"},
830
- {"shape":"NotFoundException"},
831
- {"shape":"TooManyRequestsException"}
832
- ]
833
- },
834
- "GetIntegrationResponse":{
835
- "name":"GetIntegrationResponse",
836
- "http":{
837
- "method":"GET",
838
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}"
839
- },
840
- "input":{"shape":"GetIntegrationResponseRequest"},
841
- "output":{"shape":"IntegrationResponse"},
842
- "errors":[
843
- {"shape":"UnauthorizedException"},
844
- {"shape":"NotFoundException"},
845
- {"shape":"TooManyRequestsException"}
846
- ]
847
- },
848
- "GetMethod":{
849
- "name":"GetMethod",
850
- "http":{
851
- "method":"GET",
852
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}"
853
- },
854
- "input":{"shape":"GetMethodRequest"},
855
- "output":{"shape":"Method"},
856
- "errors":[
857
- {"shape":"UnauthorizedException"},
858
- {"shape":"NotFoundException"},
859
- {"shape":"TooManyRequestsException"}
860
- ]
861
- },
862
- "GetMethodResponse":{
863
- "name":"GetMethodResponse",
864
- "http":{
865
- "method":"GET",
866
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}"
867
- },
868
- "input":{"shape":"GetMethodResponseRequest"},
869
- "output":{"shape":"MethodResponse"},
870
- "errors":[
871
- {"shape":"UnauthorizedException"},
872
- {"shape":"NotFoundException"},
873
- {"shape":"TooManyRequestsException"}
874
- ]
875
- },
876
- "GetModel":{
877
- "name":"GetModel",
878
- "http":{
879
- "method":"GET",
880
- "requestUri":"/restapis/{restapi_id}/models/{model_name}"
881
- },
882
- "input":{"shape":"GetModelRequest"},
883
- "output":{"shape":"Model"},
884
- "errors":[
885
- {"shape":"UnauthorizedException"},
886
- {"shape":"NotFoundException"},
887
- {"shape":"TooManyRequestsException"}
888
- ]
889
- },
890
- "GetModelTemplate":{
891
- "name":"GetModelTemplate",
892
- "http":{
893
- "method":"GET",
894
- "requestUri":"/restapis/{restapi_id}/models/{model_name}/default_template"
895
- },
896
- "input":{"shape":"GetModelTemplateRequest"},
897
- "output":{"shape":"Template"},
898
- "errors":[
899
- {"shape":"UnauthorizedException"},
900
- {"shape":"NotFoundException"},
901
- {"shape":"BadRequestException"},
902
- {"shape":"TooManyRequestsException"}
903
- ]
904
- },
905
- "GetModels":{
906
- "name":"GetModels",
907
- "http":{
908
- "method":"GET",
909
- "requestUri":"/restapis/{restapi_id}/models"
910
- },
911
- "input":{"shape":"GetModelsRequest"},
912
- "output":{"shape":"Models"},
913
- "errors":[
914
- {"shape":"BadRequestException"},
915
- {"shape":"UnauthorizedException"},
916
- {"shape":"NotFoundException"},
917
- {"shape":"TooManyRequestsException"}
918
- ]
919
- },
920
- "GetResource":{
921
- "name":"GetResource",
922
- "http":{
923
- "method":"GET",
924
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}"
925
- },
926
- "input":{"shape":"GetResourceRequest"},
927
- "output":{"shape":"Resource"},
928
- "errors":[
929
- {"shape":"UnauthorizedException"},
930
- {"shape":"NotFoundException"},
931
- {"shape":"TooManyRequestsException"}
932
- ]
933
- },
934
- "GetResources":{
935
- "name":"GetResources",
936
- "http":{
937
- "method":"GET",
938
- "requestUri":"/restapis/{restapi_id}/resources"
939
- },
940
- "input":{"shape":"GetResourcesRequest"},
941
- "output":{"shape":"Resources"},
942
- "errors":[
943
- {"shape":"BadRequestException"},
944
- {"shape":"UnauthorizedException"},
945
- {"shape":"NotFoundException"},
946
- {"shape":"TooManyRequestsException"}
947
- ]
948
- },
949
- "GetRestApi":{
950
- "name":"GetRestApi",
951
- "http":{
952
- "method":"GET",
953
- "requestUri":"/restapis/{restapi_id}"
954
- },
955
- "input":{"shape":"GetRestApiRequest"},
956
- "output":{"shape":"RestApi"},
957
- "errors":[
958
- {"shape":"UnauthorizedException"},
959
- {"shape":"NotFoundException"},
960
- {"shape":"TooManyRequestsException"}
961
- ]
962
- },
963
- "GetRestApis":{
964
- "name":"GetRestApis",
965
- "http":{
966
- "method":"GET",
967
- "requestUri":"/restapis"
968
- },
969
- "input":{"shape":"GetRestApisRequest"},
970
- "output":{"shape":"RestApis"},
971
- "errors":[
972
- {"shape":"BadRequestException"},
973
- {"shape":"UnauthorizedException"},
974
- {"shape":"TooManyRequestsException"}
975
- ]
976
- },
977
- "GetSdk":{
978
- "name":"GetSdk",
979
- "http":{
980
- "method":"GET",
981
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/sdks/{sdk_type}",
982
- "responseCode":200
983
- },
984
- "input":{"shape":"GetSdkRequest"},
985
- "output":{"shape":"SdkResponse"},
986
- "errors":[
987
- {"shape":"UnauthorizedException"},
988
- {"shape":"NotFoundException"},
989
- {"shape":"BadRequestException"},
990
- {"shape":"TooManyRequestsException"}
991
- ]
992
- },
993
- "GetSdkType":{
994
- "name":"GetSdkType",
995
- "http":{
996
- "method":"GET",
997
- "requestUri":"/sdktypes/{sdktype_id}"
998
- },
999
- "input":{"shape":"GetSdkTypeRequest"},
1000
- "output":{"shape":"SdkType"},
1001
- "errors":[
1002
- {"shape":"UnauthorizedException"},
1003
- {"shape":"NotFoundException"},
1004
- {"shape":"TooManyRequestsException"}
1005
- ]
1006
- },
1007
- "GetSdkTypes":{
1008
- "name":"GetSdkTypes",
1009
- "http":{
1010
- "method":"GET",
1011
- "requestUri":"/sdktypes"
1012
- },
1013
- "input":{"shape":"GetSdkTypesRequest"},
1014
- "output":{"shape":"SdkTypes"},
1015
- "errors":[
1016
- {"shape":"UnauthorizedException"},
1017
- {"shape":"TooManyRequestsException"}
1018
- ]
1019
- },
1020
- "GetStage":{
1021
- "name":"GetStage",
1022
- "http":{
1023
- "method":"GET",
1024
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}"
1025
- },
1026
- "input":{"shape":"GetStageRequest"},
1027
- "output":{"shape":"Stage"},
1028
- "errors":[
1029
- {"shape":"UnauthorizedException"},
1030
- {"shape":"NotFoundException"},
1031
- {"shape":"TooManyRequestsException"}
1032
- ]
1033
- },
1034
- "GetStages":{
1035
- "name":"GetStages",
1036
- "http":{
1037
- "method":"GET",
1038
- "requestUri":"/restapis/{restapi_id}/stages"
1039
- },
1040
- "input":{"shape":"GetStagesRequest"},
1041
- "output":{"shape":"Stages"},
1042
- "errors":[
1043
- {"shape":"UnauthorizedException"},
1044
- {"shape":"NotFoundException"},
1045
- {"shape":"TooManyRequestsException"}
1046
- ]
1047
- },
1048
- "GetUsage":{
1049
- "name":"GetUsage",
1050
- "http":{
1051
- "method":"GET",
1052
- "requestUri":"/usageplans/{usageplanId}/usage"
1053
- },
1054
- "input":{"shape":"GetUsageRequest"},
1055
- "output":{"shape":"Usage"},
1056
- "errors":[
1057
- {"shape":"BadRequestException"},
1058
- {"shape":"UnauthorizedException"},
1059
- {"shape":"NotFoundException"},
1060
- {"shape":"TooManyRequestsException"}
1061
- ]
1062
- },
1063
- "GetUsagePlan":{
1064
- "name":"GetUsagePlan",
1065
- "http":{
1066
- "method":"GET",
1067
- "requestUri":"/usageplans/{usageplanId}"
1068
- },
1069
- "input":{"shape":"GetUsagePlanRequest"},
1070
- "output":{"shape":"UsagePlan"},
1071
- "errors":[
1072
- {"shape":"BadRequestException"},
1073
- {"shape":"UnauthorizedException"},
1074
- {"shape":"NotFoundException"},
1075
- {"shape":"TooManyRequestsException"}
1076
- ]
1077
- },
1078
- "GetUsagePlanKey":{
1079
- "name":"GetUsagePlanKey",
1080
- "http":{
1081
- "method":"GET",
1082
- "requestUri":"/usageplans/{usageplanId}/keys/{keyId}",
1083
- "responseCode":200
1084
- },
1085
- "input":{"shape":"GetUsagePlanKeyRequest"},
1086
- "output":{"shape":"UsagePlanKey"},
1087
- "errors":[
1088
- {"shape":"BadRequestException"},
1089
- {"shape":"UnauthorizedException"},
1090
- {"shape":"NotFoundException"},
1091
- {"shape":"TooManyRequestsException"}
1092
- ]
1093
- },
1094
- "GetUsagePlanKeys":{
1095
- "name":"GetUsagePlanKeys",
1096
- "http":{
1097
- "method":"GET",
1098
- "requestUri":"/usageplans/{usageplanId}/keys"
1099
- },
1100
- "input":{"shape":"GetUsagePlanKeysRequest"},
1101
- "output":{"shape":"UsagePlanKeys"},
1102
- "errors":[
1103
- {"shape":"BadRequestException"},
1104
- {"shape":"UnauthorizedException"},
1105
- {"shape":"NotFoundException"},
1106
- {"shape":"TooManyRequestsException"}
1107
- ]
1108
- },
1109
- "GetUsagePlans":{
1110
- "name":"GetUsagePlans",
1111
- "http":{
1112
- "method":"GET",
1113
- "requestUri":"/usageplans"
1114
- },
1115
- "input":{"shape":"GetUsagePlansRequest"},
1116
- "output":{"shape":"UsagePlans"},
1117
- "errors":[
1118
- {"shape":"BadRequestException"},
1119
- {"shape":"UnauthorizedException"},
1120
- {"shape":"TooManyRequestsException"},
1121
- {"shape":"ConflictException"},
1122
- {"shape":"NotFoundException"}
1123
- ]
1124
- },
1125
- "ImportApiKeys":{
1126
- "name":"ImportApiKeys",
1127
- "http":{
1128
- "method":"POST",
1129
- "requestUri":"/apikeys?mode=import",
1130
- "responseCode":201
1131
- },
1132
- "input":{"shape":"ImportApiKeysRequest"},
1133
- "output":{"shape":"ApiKeyIds"},
1134
- "errors":[
1135
- {"shape":"UnauthorizedException"},
1136
- {"shape":"NotFoundException"},
1137
- {"shape":"TooManyRequestsException"},
1138
- {"shape":"LimitExceededException"},
1139
- {"shape":"BadRequestException"},
1140
- {"shape":"ConflictException"}
1141
- ]
1142
- },
1143
- "ImportDocumentationParts":{
1144
- "name":"ImportDocumentationParts",
1145
- "http":{
1146
- "method":"PUT",
1147
- "requestUri":"/restapis/{restapi_id}/documentation/parts"
1148
- },
1149
- "input":{"shape":"ImportDocumentationPartsRequest"},
1150
- "output":{"shape":"DocumentationPartIds"},
1151
- "errors":[
1152
- {"shape":"UnauthorizedException"},
1153
- {"shape":"NotFoundException"},
1154
- {"shape":"BadRequestException"},
1155
- {"shape":"LimitExceededException"},
1156
- {"shape":"TooManyRequestsException"}
1157
- ]
1158
- },
1159
- "ImportRestApi":{
1160
- "name":"ImportRestApi",
1161
- "http":{
1162
- "method":"POST",
1163
- "requestUri":"/restapis?mode=import",
1164
- "responseCode":201
1165
- },
1166
- "input":{"shape":"ImportRestApiRequest"},
1167
- "output":{"shape":"RestApi"},
1168
- "errors":[
1169
- {"shape":"UnauthorizedException"},
1170
- {"shape":"LimitExceededException"},
1171
- {"shape":"BadRequestException"},
1172
- {"shape":"TooManyRequestsException"},
1173
- {"shape":"ConflictException"}
1174
- ]
1175
- },
1176
- "PutIntegration":{
1177
- "name":"PutIntegration",
1178
- "http":{
1179
- "method":"PUT",
1180
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration",
1181
- "responseCode":201
1182
- },
1183
- "input":{"shape":"PutIntegrationRequest"},
1184
- "output":{"shape":"Integration"},
1185
- "errors":[
1186
- {"shape":"UnauthorizedException"},
1187
- {"shape":"BadRequestException"},
1188
- {"shape":"ConflictException"},
1189
- {"shape":"NotFoundException"},
1190
- {"shape":"TooManyRequestsException"}
1191
- ]
1192
- },
1193
- "PutIntegrationResponse":{
1194
- "name":"PutIntegrationResponse",
1195
- "http":{
1196
- "method":"PUT",
1197
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}",
1198
- "responseCode":201
1199
- },
1200
- "input":{"shape":"PutIntegrationResponseRequest"},
1201
- "output":{"shape":"IntegrationResponse"},
1202
- "errors":[
1203
- {"shape":"UnauthorizedException"},
1204
- {"shape":"NotFoundException"},
1205
- {"shape":"LimitExceededException"},
1206
- {"shape":"BadRequestException"},
1207
- {"shape":"TooManyRequestsException"},
1208
- {"shape":"ConflictException"}
1209
- ]
1210
- },
1211
- "PutMethod":{
1212
- "name":"PutMethod",
1213
- "http":{
1214
- "method":"PUT",
1215
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}",
1216
- "responseCode":201
1217
- },
1218
- "input":{"shape":"PutMethodRequest"},
1219
- "output":{"shape":"Method"},
1220
- "errors":[
1221
- {"shape":"BadRequestException"},
1222
- {"shape":"UnauthorizedException"},
1223
- {"shape":"NotFoundException"},
1224
- {"shape":"ConflictException"},
1225
- {"shape":"LimitExceededException"},
1226
- {"shape":"TooManyRequestsException"}
1227
- ]
1228
- },
1229
- "PutMethodResponse":{
1230
- "name":"PutMethodResponse",
1231
- "http":{
1232
- "method":"PUT",
1233
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}",
1234
- "responseCode":201
1235
- },
1236
- "input":{"shape":"PutMethodResponseRequest"},
1237
- "output":{"shape":"MethodResponse"},
1238
- "errors":[
1239
- {"shape":"UnauthorizedException"},
1240
- {"shape":"NotFoundException"},
1241
- {"shape":"ConflictException"},
1242
- {"shape":"LimitExceededException"},
1243
- {"shape":"BadRequestException"},
1244
- {"shape":"TooManyRequestsException"}
1245
- ]
1246
- },
1247
- "PutRestApi":{
1248
- "name":"PutRestApi",
1249
- "http":{
1250
- "method":"PUT",
1251
- "requestUri":"/restapis/{restapi_id}"
1252
- },
1253
- "input":{"shape":"PutRestApiRequest"},
1254
- "output":{"shape":"RestApi"},
1255
- "errors":[
1256
- {"shape":"UnauthorizedException"},
1257
- {"shape":"LimitExceededException"},
1258
- {"shape":"NotFoundException"},
1259
- {"shape":"BadRequestException"},
1260
- {"shape":"TooManyRequestsException"},
1261
- {"shape":"ConflictException"}
1262
- ]
1263
- },
1264
- "TestInvokeAuthorizer":{
1265
- "name":"TestInvokeAuthorizer",
1266
- "http":{
1267
- "method":"POST",
1268
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}"
1269
- },
1270
- "input":{"shape":"TestInvokeAuthorizerRequest"},
1271
- "output":{"shape":"TestInvokeAuthorizerResponse"},
1272
- "errors":[
1273
- {"shape":"BadRequestException"},
1274
- {"shape":"UnauthorizedException"},
1275
- {"shape":"NotFoundException"},
1276
- {"shape":"TooManyRequestsException"}
1277
- ]
1278
- },
1279
- "TestInvokeMethod":{
1280
- "name":"TestInvokeMethod",
1281
- "http":{
1282
- "method":"POST",
1283
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}"
1284
- },
1285
- "input":{"shape":"TestInvokeMethodRequest"},
1286
- "output":{"shape":"TestInvokeMethodResponse"},
1287
- "errors":[
1288
- {"shape":"BadRequestException"},
1289
- {"shape":"UnauthorizedException"},
1290
- {"shape":"NotFoundException"},
1291
- {"shape":"TooManyRequestsException"}
1292
- ]
1293
- },
1294
- "UpdateAccount":{
1295
- "name":"UpdateAccount",
1296
- "http":{
1297
- "method":"PATCH",
1298
- "requestUri":"/account"
1299
- },
1300
- "input":{"shape":"UpdateAccountRequest"},
1301
- "output":{"shape":"Account"},
1302
- "errors":[
1303
- {"shape":"UnauthorizedException"},
1304
- {"shape":"BadRequestException"},
1305
- {"shape":"NotFoundException"},
1306
- {"shape":"TooManyRequestsException"}
1307
- ]
1308
- },
1309
- "UpdateApiKey":{
1310
- "name":"UpdateApiKey",
1311
- "http":{
1312
- "method":"PATCH",
1313
- "requestUri":"/apikeys/{api_Key}"
1314
- },
1315
- "input":{"shape":"UpdateApiKeyRequest"},
1316
- "output":{"shape":"ApiKey"},
1317
- "errors":[
1318
- {"shape":"UnauthorizedException"},
1319
- {"shape":"NotFoundException"},
1320
- {"shape":"BadRequestException"},
1321
- {"shape":"TooManyRequestsException"},
1322
- {"shape":"ConflictException"}
1323
- ]
1324
- },
1325
- "UpdateAuthorizer":{
1326
- "name":"UpdateAuthorizer",
1327
- "http":{
1328
- "method":"PATCH",
1329
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}"
1330
- },
1331
- "input":{"shape":"UpdateAuthorizerRequest"},
1332
- "output":{"shape":"Authorizer"},
1333
- "errors":[
1334
- {"shape":"UnauthorizedException"},
1335
- {"shape":"NotFoundException"},
1336
- {"shape":"BadRequestException"},
1337
- {"shape":"TooManyRequestsException"}
1338
- ]
1339
- },
1340
- "UpdateBasePathMapping":{
1341
- "name":"UpdateBasePathMapping",
1342
- "http":{
1343
- "method":"PATCH",
1344
- "requestUri":"/domainnames/{domain_name}/basepathmappings/{base_path}"
1345
- },
1346
- "input":{"shape":"UpdateBasePathMappingRequest"},
1347
- "output":{"shape":"BasePathMapping"},
1348
- "errors":[
1349
- {"shape":"UnauthorizedException"},
1350
- {"shape":"NotFoundException"},
1351
- {"shape":"ConflictException"},
1352
- {"shape":"BadRequestException"},
1353
- {"shape":"TooManyRequestsException"}
1354
- ]
1355
- },
1356
- "UpdateClientCertificate":{
1357
- "name":"UpdateClientCertificate",
1358
- "http":{
1359
- "method":"PATCH",
1360
- "requestUri":"/clientcertificates/{clientcertificate_id}"
1361
- },
1362
- "input":{"shape":"UpdateClientCertificateRequest"},
1363
- "output":{"shape":"ClientCertificate"},
1364
- "errors":[
1365
- {"shape":"UnauthorizedException"},
1366
- {"shape":"TooManyRequestsException"},
1367
- {"shape":"BadRequestException"},
1368
- {"shape":"NotFoundException"}
1369
- ]
1370
- },
1371
- "UpdateDeployment":{
1372
- "name":"UpdateDeployment",
1373
- "http":{
1374
- "method":"PATCH",
1375
- "requestUri":"/restapis/{restapi_id}/deployments/{deployment_id}"
1376
- },
1377
- "input":{"shape":"UpdateDeploymentRequest"},
1378
- "output":{"shape":"Deployment"},
1379
- "errors":[
1380
- {"shape":"UnauthorizedException"},
1381
- {"shape":"NotFoundException"},
1382
- {"shape":"BadRequestException"},
1383
- {"shape":"TooManyRequestsException"},
1384
- {"shape":"ServiceUnavailableException"}
1385
- ]
1386
- },
1387
- "UpdateDocumentationPart":{
1388
- "name":"UpdateDocumentationPart",
1389
- "http":{
1390
- "method":"PATCH",
1391
- "requestUri":"/restapis/{restapi_id}/documentation/parts/{part_id}"
1392
- },
1393
- "input":{"shape":"UpdateDocumentationPartRequest"},
1394
- "output":{"shape":"DocumentationPart"},
1395
- "errors":[
1396
- {"shape":"BadRequestException"},
1397
- {"shape":"UnauthorizedException"},
1398
- {"shape":"NotFoundException"},
1399
- {"shape":"ConflictException"},
1400
- {"shape":"LimitExceededException"},
1401
- {"shape":"TooManyRequestsException"}
1402
- ]
1403
- },
1404
- "UpdateDocumentationVersion":{
1405
- "name":"UpdateDocumentationVersion",
1406
- "http":{
1407
- "method":"PATCH",
1408
- "requestUri":"/restapis/{restapi_id}/documentation/versions/{doc_version}"
1409
- },
1410
- "input":{"shape":"UpdateDocumentationVersionRequest"},
1411
- "output":{"shape":"DocumentationVersion"},
1412
- "errors":[
1413
- {"shape":"UnauthorizedException"},
1414
- {"shape":"NotFoundException"},
1415
- {"shape":"ConflictException"},
1416
- {"shape":"BadRequestException"},
1417
- {"shape":"TooManyRequestsException"}
1418
- ]
1419
- },
1420
- "UpdateDomainName":{
1421
- "name":"UpdateDomainName",
1422
- "http":{
1423
- "method":"PATCH",
1424
- "requestUri":"/domainnames/{domain_name}"
1425
- },
1426
- "input":{"shape":"UpdateDomainNameRequest"},
1427
- "output":{"shape":"DomainName"},
1428
- "errors":[
1429
- {"shape":"UnauthorizedException"},
1430
- {"shape":"NotFoundException"},
1431
- {"shape":"BadRequestException"},
1432
- {"shape":"ConflictException"},
1433
- {"shape":"TooManyRequestsException"}
1434
- ]
1435
- },
1436
- "UpdateIntegration":{
1437
- "name":"UpdateIntegration",
1438
- "http":{
1439
- "method":"PATCH",
1440
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration"
1441
- },
1442
- "input":{"shape":"UpdateIntegrationRequest"},
1443
- "output":{"shape":"Integration"},
1444
- "errors":[
1445
- {"shape":"UnauthorizedException"},
1446
- {"shape":"NotFoundException"},
1447
- {"shape":"BadRequestException"},
1448
- {"shape":"TooManyRequestsException"},
1449
- {"shape":"ConflictException"}
1450
- ]
1451
- },
1452
- "UpdateIntegrationResponse":{
1453
- "name":"UpdateIntegrationResponse",
1454
- "http":{
1455
- "method":"PATCH",
1456
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}"
1457
- },
1458
- "input":{"shape":"UpdateIntegrationResponseRequest"},
1459
- "output":{"shape":"IntegrationResponse"},
1460
- "errors":[
1461
- {"shape":"UnauthorizedException"},
1462
- {"shape":"NotFoundException"},
1463
- {"shape":"ConflictException"},
1464
- {"shape":"BadRequestException"},
1465
- {"shape":"TooManyRequestsException"}
1466
- ]
1467
- },
1468
- "UpdateMethod":{
1469
- "name":"UpdateMethod",
1470
- "http":{
1471
- "method":"PATCH",
1472
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}"
1473
- },
1474
- "input":{"shape":"UpdateMethodRequest"},
1475
- "output":{"shape":"Method"},
1476
- "errors":[
1477
- {"shape":"UnauthorizedException"},
1478
- {"shape":"NotFoundException"},
1479
- {"shape":"BadRequestException"},
1480
- {"shape":"ConflictException"},
1481
- {"shape":"TooManyRequestsException"}
1482
- ]
1483
- },
1484
- "UpdateMethodResponse":{
1485
- "name":"UpdateMethodResponse",
1486
- "http":{
1487
- "method":"PATCH",
1488
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}",
1489
- "responseCode":201
1490
- },
1491
- "input":{"shape":"UpdateMethodResponseRequest"},
1492
- "output":{"shape":"MethodResponse"},
1493
- "errors":[
1494
- {"shape":"UnauthorizedException"},
1495
- {"shape":"NotFoundException"},
1496
- {"shape":"ConflictException"},
1497
- {"shape":"LimitExceededException"},
1498
- {"shape":"BadRequestException"},
1499
- {"shape":"TooManyRequestsException"}
1500
- ]
1501
- },
1502
- "UpdateModel":{
1503
- "name":"UpdateModel",
1504
- "http":{
1505
- "method":"PATCH",
1506
- "requestUri":"/restapis/{restapi_id}/models/{model_name}"
1507
- },
1508
- "input":{"shape":"UpdateModelRequest"},
1509
- "output":{"shape":"Model"},
1510
- "errors":[
1511
- {"shape":"UnauthorizedException"},
1512
- {"shape":"NotFoundException"},
1513
- {"shape":"BadRequestException"},
1514
- {"shape":"ConflictException"},
1515
- {"shape":"TooManyRequestsException"}
1516
- ]
1517
- },
1518
- "UpdateResource":{
1519
- "name":"UpdateResource",
1520
- "http":{
1521
- "method":"PATCH",
1522
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}"
1523
- },
1524
- "input":{"shape":"UpdateResourceRequest"},
1525
- "output":{"shape":"Resource"},
1526
- "errors":[
1527
- {"shape":"UnauthorizedException"},
1528
- {"shape":"NotFoundException"},
1529
- {"shape":"ConflictException"},
1530
- {"shape":"BadRequestException"},
1531
- {"shape":"TooManyRequestsException"}
1532
- ]
1533
- },
1534
- "UpdateRestApi":{
1535
- "name":"UpdateRestApi",
1536
- "http":{
1537
- "method":"PATCH",
1538
- "requestUri":"/restapis/{restapi_id}"
1539
- },
1540
- "input":{"shape":"UpdateRestApiRequest"},
1541
- "output":{"shape":"RestApi"},
1542
- "errors":[
1543
- {"shape":"UnauthorizedException"},
1544
- {"shape":"NotFoundException"},
1545
- {"shape":"ConflictException"},
1546
- {"shape":"BadRequestException"},
1547
- {"shape":"TooManyRequestsException"}
1548
- ]
1549
- },
1550
- "UpdateStage":{
1551
- "name":"UpdateStage",
1552
- "http":{
1553
- "method":"PATCH",
1554
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}"
1555
- },
1556
- "input":{"shape":"UpdateStageRequest"},
1557
- "output":{"shape":"Stage"},
1558
- "errors":[
1559
- {"shape":"UnauthorizedException"},
1560
- {"shape":"NotFoundException"},
1561
- {"shape":"ConflictException"},
1562
- {"shape":"BadRequestException"},
1563
- {"shape":"TooManyRequestsException"}
1564
- ]
1565
- },
1566
- "UpdateUsage":{
1567
- "name":"UpdateUsage",
1568
- "http":{
1569
- "method":"PATCH",
1570
- "requestUri":"/usageplans/{usageplanId}/keys/{keyId}/usage"
1571
- },
1572
- "input":{"shape":"UpdateUsageRequest"},
1573
- "output":{"shape":"Usage"},
1574
- "errors":[
1575
- {"shape":"UnauthorizedException"},
1576
- {"shape":"TooManyRequestsException"},
1577
- {"shape":"BadRequestException"},
1578
- {"shape":"NotFoundException"}
1579
- ]
1580
- },
1581
- "UpdateUsagePlan":{
1582
- "name":"UpdateUsagePlan",
1583
- "http":{
1584
- "method":"PATCH",
1585
- "requestUri":"/usageplans/{usageplanId}"
1586
- },
1587
- "input":{"shape":"UpdateUsagePlanRequest"},
1588
- "output":{"shape":"UsagePlan"},
1589
- "errors":[
1590
- {"shape":"UnauthorizedException"},
1591
- {"shape":"TooManyRequestsException"},
1592
- {"shape":"BadRequestException"},
1593
- {"shape":"NotFoundException"},
1594
- {"shape":"ConflictException"}
1595
- ]
1596
- }
1597
- },
1598
- "shapes":{
1599
- "Account":{
1600
- "type":"structure",
1601
- "members":{
1602
- "cloudwatchRoleArn":{"shape":"String"},
1603
- "throttleSettings":{"shape":"ThrottleSettings"},
1604
- "features":{"shape":"ListOfString"},
1605
- "apiKeyVersion":{"shape":"String"}
1606
- }
1607
- },
1608
- "ApiKey":{
1609
- "type":"structure",
1610
- "members":{
1611
- "id":{"shape":"String"},
1612
- "value":{"shape":"String"},
1613
- "name":{"shape":"String"},
1614
- "customerId":{"shape":"String"},
1615
- "description":{"shape":"String"},
1616
- "enabled":{"shape":"Boolean"},
1617
- "createdDate":{"shape":"Timestamp"},
1618
- "lastUpdatedDate":{"shape":"Timestamp"},
1619
- "stageKeys":{"shape":"ListOfString"}
1620
- }
1621
- },
1622
- "ApiKeyIds":{
1623
- "type":"structure",
1624
- "members":{
1625
- "ids":{"shape":"ListOfString"},
1626
- "warnings":{"shape":"ListOfString"}
1627
- }
1628
- },
1629
- "ApiKeys":{
1630
- "type":"structure",
1631
- "members":{
1632
- "warnings":{"shape":"ListOfString"},
1633
- "position":{"shape":"String"},
1634
- "items":{
1635
- "shape":"ListOfApiKey",
1636
- "locationName":"item"
1637
- }
1638
- }
1639
- },
1640
- "ApiKeysFormat":{
1641
- "type":"string",
1642
- "enum":["csv"]
1643
- },
1644
- "ApiStage":{
1645
- "type":"structure",
1646
- "members":{
1647
- "apiId":{"shape":"String"},
1648
- "stage":{"shape":"String"}
1649
- }
1650
- },
1651
- "Authorizer":{
1652
- "type":"structure",
1653
- "members":{
1654
- "id":{"shape":"String"},
1655
- "name":{"shape":"String"},
1656
- "type":{"shape":"AuthorizerType"},
1657
- "providerARNs":{"shape":"ListOfARNs"},
1658
- "authType":{"shape":"String"},
1659
- "authorizerUri":{"shape":"String"},
1660
- "authorizerCredentials":{"shape":"String"},
1661
- "identitySource":{"shape":"String"},
1662
- "identityValidationExpression":{"shape":"String"},
1663
- "authorizerResultTtlInSeconds":{"shape":"NullableInteger"}
1664
- }
1665
- },
1666
- "AuthorizerType":{
1667
- "type":"string",
1668
- "enum":[
1669
- "TOKEN",
1670
- "COGNITO_USER_POOLS"
1671
- ]
1672
- },
1673
- "Authorizers":{
1674
- "type":"structure",
1675
- "members":{
1676
- "position":{"shape":"String"},
1677
- "items":{
1678
- "shape":"ListOfAuthorizer",
1679
- "locationName":"item"
1680
- }
1681
- }
1682
- },
1683
- "BadRequestException":{
1684
- "type":"structure",
1685
- "members":{
1686
- "message":{"shape":"String"}
1687
- },
1688
- "error":{"httpStatusCode":400},
1689
- "exception":true
1690
- },
1691
- "BasePathMapping":{
1692
- "type":"structure",
1693
- "members":{
1694
- "basePath":{"shape":"String"},
1695
- "restApiId":{"shape":"String"},
1696
- "stage":{"shape":"String"}
1697
- }
1698
- },
1699
- "BasePathMappings":{
1700
- "type":"structure",
1701
- "members":{
1702
- "position":{"shape":"String"},
1703
- "items":{
1704
- "shape":"ListOfBasePathMapping",
1705
- "locationName":"item"
1706
- }
1707
- }
1708
- },
1709
- "Blob":{"type":"blob"},
1710
- "Boolean":{"type":"boolean"},
1711
- "CacheClusterSize":{
1712
- "type":"string",
1713
- "enum":[
1714
- "0.5",
1715
- "1.6",
1716
- "6.1",
1717
- "13.5",
1718
- "28.4",
1719
- "58.2",
1720
- "118",
1721
- "237"
1722
- ]
1723
- },
1724
- "CacheClusterStatus":{
1725
- "type":"string",
1726
- "enum":[
1727
- "CREATE_IN_PROGRESS",
1728
- "AVAILABLE",
1729
- "DELETE_IN_PROGRESS",
1730
- "NOT_AVAILABLE",
1731
- "FLUSH_IN_PROGRESS"
1732
- ]
1733
- },
1734
- "ClientCertificate":{
1735
- "type":"structure",
1736
- "members":{
1737
- "clientCertificateId":{"shape":"String"},
1738
- "description":{"shape":"String"},
1739
- "pemEncodedCertificate":{"shape":"String"},
1740
- "createdDate":{"shape":"Timestamp"},
1741
- "expirationDate":{"shape":"Timestamp"}
1742
- }
1743
- },
1744
- "ClientCertificates":{
1745
- "type":"structure",
1746
- "members":{
1747
- "position":{"shape":"String"},
1748
- "items":{
1749
- "shape":"ListOfClientCertificate",
1750
- "locationName":"item"
1751
- }
1752
- }
1753
- },
1754
- "ConflictException":{
1755
- "type":"structure",
1756
- "members":{
1757
- "message":{"shape":"String"}
1758
- },
1759
- "error":{"httpStatusCode":409},
1760
- "exception":true
1761
- },
1762
- "ContentHandlingStrategy":{
1763
- "type":"string",
1764
- "enum":[
1765
- "CONVERT_TO_BINARY",
1766
- "CONVERT_TO_TEXT"
1767
- ]
1768
- },
1769
- "CreateApiKeyRequest":{
1770
- "type":"structure",
1771
- "members":{
1772
- "name":{"shape":"String"},
1773
- "description":{"shape":"String"},
1774
- "enabled":{"shape":"Boolean"},
1775
- "generateDistinctId":{"shape":"Boolean"},
1776
- "value":{"shape":"String"},
1777
- "stageKeys":{"shape":"ListOfStageKeys"},
1778
- "customerId":{"shape":"String"}
1779
- }
1780
- },
1781
- "CreateAuthorizerRequest":{
1782
- "type":"structure",
1783
- "required":[
1784
- "restApiId",
1785
- "name",
1786
- "type",
1787
- "identitySource"
1788
- ],
1789
- "members":{
1790
- "restApiId":{
1791
- "shape":"String",
1792
- "location":"uri",
1793
- "locationName":"restapi_id"
1794
- },
1795
- "name":{"shape":"String"},
1796
- "type":{"shape":"AuthorizerType"},
1797
- "providerARNs":{"shape":"ListOfARNs"},
1798
- "authType":{"shape":"String"},
1799
- "authorizerUri":{"shape":"String"},
1800
- "authorizerCredentials":{"shape":"String"},
1801
- "identitySource":{"shape":"String"},
1802
- "identityValidationExpression":{"shape":"String"},
1803
- "authorizerResultTtlInSeconds":{"shape":"NullableInteger"}
1804
- }
1805
- },
1806
- "CreateBasePathMappingRequest":{
1807
- "type":"structure",
1808
- "required":[
1809
- "domainName",
1810
- "restApiId"
1811
- ],
1812
- "members":{
1813
- "domainName":{
1814
- "shape":"String",
1815
- "location":"uri",
1816
- "locationName":"domain_name"
1817
- },
1818
- "basePath":{"shape":"String"},
1819
- "restApiId":{"shape":"String"},
1820
- "stage":{"shape":"String"}
1821
- }
1822
- },
1823
- "CreateDeploymentRequest":{
1824
- "type":"structure",
1825
- "required":["restApiId"],
1826
- "members":{
1827
- "restApiId":{
1828
- "shape":"String",
1829
- "location":"uri",
1830
- "locationName":"restapi_id"
1831
- },
1832
- "stageName":{"shape":"String"},
1833
- "stageDescription":{"shape":"String"},
1834
- "description":{"shape":"String"},
1835
- "cacheClusterEnabled":{"shape":"NullableBoolean"},
1836
- "cacheClusterSize":{"shape":"CacheClusterSize"},
1837
- "variables":{"shape":"MapOfStringToString"}
1838
- }
1839
- },
1840
- "CreateDocumentationPartRequest":{
1841
- "type":"structure",
1842
- "required":[
1843
- "restApiId",
1844
- "location",
1845
- "properties"
1846
- ],
1847
- "members":{
1848
- "restApiId":{
1849
- "shape":"String",
1850
- "location":"uri",
1851
- "locationName":"restapi_id"
1852
- },
1853
- "location":{"shape":"DocumentationPartLocation"},
1854
- "properties":{"shape":"String"}
1855
- }
1856
- },
1857
- "CreateDocumentationVersionRequest":{
1858
- "type":"structure",
1859
- "required":[
1860
- "restApiId",
1861
- "documentationVersion"
1862
- ],
1863
- "members":{
1864
- "restApiId":{
1865
- "shape":"String",
1866
- "location":"uri",
1867
- "locationName":"restapi_id"
1868
- },
1869
- "documentationVersion":{"shape":"String"},
1870
- "stageName":{"shape":"String"},
1871
- "description":{"shape":"String"}
1872
- }
1873
- },
1874
- "CreateDomainNameRequest":{
1875
- "type":"structure",
1876
- "required":["domainName"],
1877
- "members":{
1878
- "domainName":{"shape":"String"},
1879
- "certificateName":{"shape":"String"},
1880
- "certificateBody":{"shape":"String"},
1881
- "certificatePrivateKey":{"shape":"String"},
1882
- "certificateChain":{"shape":"String"},
1883
- "certificateArn":{"shape":"String"}
1884
- }
1885
- },
1886
- "CreateModelRequest":{
1887
- "type":"structure",
1888
- "required":[
1889
- "restApiId",
1890
- "name",
1891
- "contentType"
1892
- ],
1893
- "members":{
1894
- "restApiId":{
1895
- "shape":"String",
1896
- "location":"uri",
1897
- "locationName":"restapi_id"
1898
- },
1899
- "name":{"shape":"String"},
1900
- "description":{"shape":"String"},
1901
- "schema":{"shape":"String"},
1902
- "contentType":{"shape":"String"}
1903
- }
1904
- },
1905
- "CreateResourceRequest":{
1906
- "type":"structure",
1907
- "required":[
1908
- "restApiId",
1909
- "parentId",
1910
- "pathPart"
1911
- ],
1912
- "members":{
1913
- "restApiId":{
1914
- "shape":"String",
1915
- "location":"uri",
1916
- "locationName":"restapi_id"
1917
- },
1918
- "parentId":{
1919
- "shape":"String",
1920
- "location":"uri",
1921
- "locationName":"parent_id"
1922
- },
1923
- "pathPart":{"shape":"String"}
1924
- }
1925
- },
1926
- "CreateRestApiRequest":{
1927
- "type":"structure",
1928
- "required":["name"],
1929
- "members":{
1930
- "name":{"shape":"String"},
1931
- "description":{"shape":"String"},
1932
- "version":{"shape":"String"},
1933
- "cloneFrom":{"shape":"String"},
1934
- "binaryMediaTypes":{"shape":"ListOfString"}
1935
- }
1936
- },
1937
- "CreateStageRequest":{
1938
- "type":"structure",
1939
- "required":[
1940
- "restApiId",
1941
- "stageName",
1942
- "deploymentId"
1943
- ],
1944
- "members":{
1945
- "restApiId":{
1946
- "shape":"String",
1947
- "location":"uri",
1948
- "locationName":"restapi_id"
1949
- },
1950
- "stageName":{"shape":"String"},
1951
- "deploymentId":{"shape":"String"},
1952
- "description":{"shape":"String"},
1953
- "cacheClusterEnabled":{"shape":"Boolean"},
1954
- "cacheClusterSize":{"shape":"CacheClusterSize"},
1955
- "variables":{"shape":"MapOfStringToString"},
1956
- "documentationVersion":{"shape":"String"}
1957
- }
1958
- },
1959
- "CreateUsagePlanKeyRequest":{
1960
- "type":"structure",
1961
- "required":[
1962
- "usagePlanId",
1963
- "keyId",
1964
- "keyType"
1965
- ],
1966
- "members":{
1967
- "usagePlanId":{
1968
- "shape":"String",
1969
- "location":"uri",
1970
- "locationName":"usageplanId"
1971
- },
1972
- "keyId":{"shape":"String"},
1973
- "keyType":{"shape":"String"}
1974
- }
1975
- },
1976
- "CreateUsagePlanRequest":{
1977
- "type":"structure",
1978
- "required":["name"],
1979
- "members":{
1980
- "name":{"shape":"String"},
1981
- "description":{"shape":"String"},
1982
- "apiStages":{"shape":"ListOfApiStage"},
1983
- "throttle":{"shape":"ThrottleSettings"},
1984
- "quota":{"shape":"QuotaSettings"}
1985
- }
1986
- },
1987
- "DeleteApiKeyRequest":{
1988
- "type":"structure",
1989
- "required":["apiKey"],
1990
- "members":{
1991
- "apiKey":{
1992
- "shape":"String",
1993
- "location":"uri",
1994
- "locationName":"api_Key"
1995
- }
1996
- }
1997
- },
1998
- "DeleteAuthorizerRequest":{
1999
- "type":"structure",
2000
- "required":[
2001
- "restApiId",
2002
- "authorizerId"
2003
- ],
2004
- "members":{
2005
- "restApiId":{
2006
- "shape":"String",
2007
- "location":"uri",
2008
- "locationName":"restapi_id"
2009
- },
2010
- "authorizerId":{
2011
- "shape":"String",
2012
- "location":"uri",
2013
- "locationName":"authorizer_id"
2014
- }
2015
- }
2016
- },
2017
- "DeleteBasePathMappingRequest":{
2018
- "type":"structure",
2019
- "required":[
2020
- "domainName",
2021
- "basePath"
2022
- ],
2023
- "members":{
2024
- "domainName":{
2025
- "shape":"String",
2026
- "location":"uri",
2027
- "locationName":"domain_name"
2028
- },
2029
- "basePath":{
2030
- "shape":"String",
2031
- "location":"uri",
2032
- "locationName":"base_path"
2033
- }
2034
- }
2035
- },
2036
- "DeleteClientCertificateRequest":{
2037
- "type":"structure",
2038
- "required":["clientCertificateId"],
2039
- "members":{
2040
- "clientCertificateId":{
2041
- "shape":"String",
2042
- "location":"uri",
2043
- "locationName":"clientcertificate_id"
2044
- }
2045
- }
2046
- },
2047
- "DeleteDeploymentRequest":{
2048
- "type":"structure",
2049
- "required":[
2050
- "restApiId",
2051
- "deploymentId"
2052
- ],
2053
- "members":{
2054
- "restApiId":{
2055
- "shape":"String",
2056
- "location":"uri",
2057
- "locationName":"restapi_id"
2058
- },
2059
- "deploymentId":{
2060
- "shape":"String",
2061
- "location":"uri",
2062
- "locationName":"deployment_id"
2063
- }
2064
- }
2065
- },
2066
- "DeleteDocumentationPartRequest":{
2067
- "type":"structure",
2068
- "required":[
2069
- "restApiId",
2070
- "documentationPartId"
2071
- ],
2072
- "members":{
2073
- "restApiId":{
2074
- "shape":"String",
2075
- "location":"uri",
2076
- "locationName":"restapi_id"
2077
- },
2078
- "documentationPartId":{
2079
- "shape":"String",
2080
- "location":"uri",
2081
- "locationName":"part_id"
2082
- }
2083
- }
2084
- },
2085
- "DeleteDocumentationVersionRequest":{
2086
- "type":"structure",
2087
- "required":[
2088
- "restApiId",
2089
- "documentationVersion"
2090
- ],
2091
- "members":{
2092
- "restApiId":{
2093
- "shape":"String",
2094
- "location":"uri",
2095
- "locationName":"restapi_id"
2096
- },
2097
- "documentationVersion":{
2098
- "shape":"String",
2099
- "location":"uri",
2100
- "locationName":"doc_version"
2101
- }
2102
- }
2103
- },
2104
- "DeleteDomainNameRequest":{
2105
- "type":"structure",
2106
- "required":["domainName"],
2107
- "members":{
2108
- "domainName":{
2109
- "shape":"String",
2110
- "location":"uri",
2111
- "locationName":"domain_name"
2112
- }
2113
- }
2114
- },
2115
- "DeleteIntegrationRequest":{
2116
- "type":"structure",
2117
- "required":[
2118
- "restApiId",
2119
- "resourceId",
2120
- "httpMethod"
2121
- ],
2122
- "members":{
2123
- "restApiId":{
2124
- "shape":"String",
2125
- "location":"uri",
2126
- "locationName":"restapi_id"
2127
- },
2128
- "resourceId":{
2129
- "shape":"String",
2130
- "location":"uri",
2131
- "locationName":"resource_id"
2132
- },
2133
- "httpMethod":{
2134
- "shape":"String",
2135
- "location":"uri",
2136
- "locationName":"http_method"
2137
- }
2138
- }
2139
- },
2140
- "DeleteIntegrationResponseRequest":{
2141
- "type":"structure",
2142
- "required":[
2143
- "restApiId",
2144
- "resourceId",
2145
- "httpMethod",
2146
- "statusCode"
2147
- ],
2148
- "members":{
2149
- "restApiId":{
2150
- "shape":"String",
2151
- "location":"uri",
2152
- "locationName":"restapi_id"
2153
- },
2154
- "resourceId":{
2155
- "shape":"String",
2156
- "location":"uri",
2157
- "locationName":"resource_id"
2158
- },
2159
- "httpMethod":{
2160
- "shape":"String",
2161
- "location":"uri",
2162
- "locationName":"http_method"
2163
- },
2164
- "statusCode":{
2165
- "shape":"StatusCode",
2166
- "location":"uri",
2167
- "locationName":"status_code"
2168
- }
2169
- }
2170
- },
2171
- "DeleteMethodRequest":{
2172
- "type":"structure",
2173
- "required":[
2174
- "restApiId",
2175
- "resourceId",
2176
- "httpMethod"
2177
- ],
2178
- "members":{
2179
- "restApiId":{
2180
- "shape":"String",
2181
- "location":"uri",
2182
- "locationName":"restapi_id"
2183
- },
2184
- "resourceId":{
2185
- "shape":"String",
2186
- "location":"uri",
2187
- "locationName":"resource_id"
2188
- },
2189
- "httpMethod":{
2190
- "shape":"String",
2191
- "location":"uri",
2192
- "locationName":"http_method"
2193
- }
2194
- }
2195
- },
2196
- "DeleteMethodResponseRequest":{
2197
- "type":"structure",
2198
- "required":[
2199
- "restApiId",
2200
- "resourceId",
2201
- "httpMethod",
2202
- "statusCode"
2203
- ],
2204
- "members":{
2205
- "restApiId":{
2206
- "shape":"String",
2207
- "location":"uri",
2208
- "locationName":"restapi_id"
2209
- },
2210
- "resourceId":{
2211
- "shape":"String",
2212
- "location":"uri",
2213
- "locationName":"resource_id"
2214
- },
2215
- "httpMethod":{
2216
- "shape":"String",
2217
- "location":"uri",
2218
- "locationName":"http_method"
2219
- },
2220
- "statusCode":{
2221
- "shape":"StatusCode",
2222
- "location":"uri",
2223
- "locationName":"status_code"
2224
- }
2225
- }
2226
- },
2227
- "DeleteModelRequest":{
2228
- "type":"structure",
2229
- "required":[
2230
- "restApiId",
2231
- "modelName"
2232
- ],
2233
- "members":{
2234
- "restApiId":{
2235
- "shape":"String",
2236
- "location":"uri",
2237
- "locationName":"restapi_id"
2238
- },
2239
- "modelName":{
2240
- "shape":"String",
2241
- "location":"uri",
2242
- "locationName":"model_name"
2243
- }
2244
- }
2245
- },
2246
- "DeleteResourceRequest":{
2247
- "type":"structure",
2248
- "required":[
2249
- "restApiId",
2250
- "resourceId"
2251
- ],
2252
- "members":{
2253
- "restApiId":{
2254
- "shape":"String",
2255
- "location":"uri",
2256
- "locationName":"restapi_id"
2257
- },
2258
- "resourceId":{
2259
- "shape":"String",
2260
- "location":"uri",
2261
- "locationName":"resource_id"
2262
- }
2263
- }
2264
- },
2265
- "DeleteRestApiRequest":{
2266
- "type":"structure",
2267
- "required":["restApiId"],
2268
- "members":{
2269
- "restApiId":{
2270
- "shape":"String",
2271
- "location":"uri",
2272
- "locationName":"restapi_id"
2273
- }
2274
- }
2275
- },
2276
- "DeleteStageRequest":{
2277
- "type":"structure",
2278
- "required":[
2279
- "restApiId",
2280
- "stageName"
2281
- ],
2282
- "members":{
2283
- "restApiId":{
2284
- "shape":"String",
2285
- "location":"uri",
2286
- "locationName":"restapi_id"
2287
- },
2288
- "stageName":{
2289
- "shape":"String",
2290
- "location":"uri",
2291
- "locationName":"stage_name"
2292
- }
2293
- }
2294
- },
2295
- "DeleteUsagePlanKeyRequest":{
2296
- "type":"structure",
2297
- "required":[
2298
- "usagePlanId",
2299
- "keyId"
2300
- ],
2301
- "members":{
2302
- "usagePlanId":{
2303
- "shape":"String",
2304
- "location":"uri",
2305
- "locationName":"usageplanId"
2306
- },
2307
- "keyId":{
2308
- "shape":"String",
2309
- "location":"uri",
2310
- "locationName":"keyId"
2311
- }
2312
- }
2313
- },
2314
- "DeleteUsagePlanRequest":{
2315
- "type":"structure",
2316
- "required":["usagePlanId"],
2317
- "members":{
2318
- "usagePlanId":{
2319
- "shape":"String",
2320
- "location":"uri",
2321
- "locationName":"usageplanId"
2322
- }
2323
- }
2324
- },
2325
- "Deployment":{
2326
- "type":"structure",
2327
- "members":{
2328
- "id":{"shape":"String"},
2329
- "description":{"shape":"String"},
2330
- "createdDate":{"shape":"Timestamp"},
2331
- "apiSummary":{"shape":"PathToMapOfMethodSnapshot"}
2332
- }
2333
- },
2334
- "Deployments":{
2335
- "type":"structure",
2336
- "members":{
2337
- "position":{"shape":"String"},
2338
- "items":{
2339
- "shape":"ListOfDeployment",
2340
- "locationName":"item"
2341
- }
2342
- }
2343
- },
2344
- "DocumentationPart":{
2345
- "type":"structure",
2346
- "members":{
2347
- "id":{"shape":"String"},
2348
- "location":{"shape":"DocumentationPartLocation"},
2349
- "properties":{"shape":"String"}
2350
- }
2351
- },
2352
- "DocumentationPartIds":{
2353
- "type":"structure",
2354
- "members":{
2355
- "ids":{"shape":"ListOfString"},
2356
- "warnings":{"shape":"ListOfString"}
2357
- }
2358
- },
2359
- "DocumentationPartLocation":{
2360
- "type":"structure",
2361
- "required":["type"],
2362
- "members":{
2363
- "type":{"shape":"DocumentationPartType"},
2364
- "path":{"shape":"String"},
2365
- "method":{"shape":"String"},
2366
- "statusCode":{"shape":"DocumentationPartLocationStatusCode"},
2367
- "name":{"shape":"String"}
2368
- }
2369
- },
2370
- "DocumentationPartLocationStatusCode":{
2371
- "type":"string",
2372
- "pattern":"^([1-5]\\d\\d|\\*|\\s*)$"
2373
- },
2374
- "DocumentationPartType":{
2375
- "type":"string",
2376
- "enum":[
2377
- "API",
2378
- "AUTHORIZER",
2379
- "MODEL",
2380
- "RESOURCE",
2381
- "METHOD",
2382
- "PATH_PARAMETER",
2383
- "QUERY_PARAMETER",
2384
- "REQUEST_HEADER",
2385
- "REQUEST_BODY",
2386
- "RESPONSE",
2387
- "RESPONSE_HEADER",
2388
- "RESPONSE_BODY"
2389
- ]
2390
- },
2391
- "DocumentationParts":{
2392
- "type":"structure",
2393
- "members":{
2394
- "position":{"shape":"String"},
2395
- "items":{
2396
- "shape":"ListOfDocumentationPart",
2397
- "locationName":"item"
2398
- }
2399
- }
2400
- },
2401
- "DocumentationVersion":{
2402
- "type":"structure",
2403
- "members":{
2404
- "version":{"shape":"String"},
2405
- "createdDate":{"shape":"Timestamp"},
2406
- "description":{"shape":"String"}
2407
- }
2408
- },
2409
- "DocumentationVersions":{
2410
- "type":"structure",
2411
- "members":{
2412
- "position":{"shape":"String"},
2413
- "items":{
2414
- "shape":"ListOfDocumentationVersion",
2415
- "locationName":"item"
2416
- }
2417
- }
2418
- },
2419
- "DomainName":{
2420
- "type":"structure",
2421
- "members":{
2422
- "domainName":{"shape":"String"},
2423
- "certificateName":{"shape":"String"},
2424
- "certificateArn":{"shape":"String"},
2425
- "certificateUploadDate":{"shape":"Timestamp"},
2426
- "distributionDomainName":{"shape":"String"}
2427
- }
2428
- },
2429
- "DomainNames":{
2430
- "type":"structure",
2431
- "members":{
2432
- "position":{"shape":"String"},
2433
- "items":{
2434
- "shape":"ListOfDomainName",
2435
- "locationName":"item"
2436
- }
2437
- }
2438
- },
2439
- "Double":{"type":"double"},
2440
- "ExportResponse":{
2441
- "type":"structure",
2442
- "members":{
2443
- "contentType":{
2444
- "shape":"String",
2445
- "location":"header",
2446
- "locationName":"Content-Type"
2447
- },
2448
- "contentDisposition":{
2449
- "shape":"String",
2450
- "location":"header",
2451
- "locationName":"Content-Disposition"
2452
- },
2453
- "body":{"shape":"Blob"}
2454
- },
2455
- "payload":"body"
2456
- },
2457
- "FlushStageAuthorizersCacheRequest":{
2458
- "type":"structure",
2459
- "required":[
2460
- "restApiId",
2461
- "stageName"
2462
- ],
2463
- "members":{
2464
- "restApiId":{
2465
- "shape":"String",
2466
- "location":"uri",
2467
- "locationName":"restapi_id"
2468
- },
2469
- "stageName":{
2470
- "shape":"String",
2471
- "location":"uri",
2472
- "locationName":"stage_name"
2473
- }
2474
- }
2475
- },
2476
- "FlushStageCacheRequest":{
2477
- "type":"structure",
2478
- "required":[
2479
- "restApiId",
2480
- "stageName"
2481
- ],
2482
- "members":{
2483
- "restApiId":{
2484
- "shape":"String",
2485
- "location":"uri",
2486
- "locationName":"restapi_id"
2487
- },
2488
- "stageName":{
2489
- "shape":"String",
2490
- "location":"uri",
2491
- "locationName":"stage_name"
2492
- }
2493
- }
2494
- },
2495
- "GenerateClientCertificateRequest":{
2496
- "type":"structure",
2497
- "members":{
2498
- "description":{"shape":"String"}
2499
- }
2500
- },
2501
- "GetAccountRequest":{
2502
- "type":"structure",
2503
- "members":{
2504
- }
2505
- },
2506
- "GetApiKeyRequest":{
2507
- "type":"structure",
2508
- "required":["apiKey"],
2509
- "members":{
2510
- "apiKey":{
2511
- "shape":"String",
2512
- "location":"uri",
2513
- "locationName":"api_Key"
2514
- },
2515
- "includeValue":{
2516
- "shape":"NullableBoolean",
2517
- "location":"querystring",
2518
- "locationName":"includeValue"
2519
- }
2520
- }
2521
- },
2522
- "GetApiKeysRequest":{
2523
- "type":"structure",
2524
- "members":{
2525
- "position":{
2526
- "shape":"String",
2527
- "location":"querystring",
2528
- "locationName":"position"
2529
- },
2530
- "limit":{
2531
- "shape":"NullableInteger",
2532
- "location":"querystring",
2533
- "locationName":"limit"
2534
- },
2535
- "nameQuery":{
2536
- "shape":"String",
2537
- "location":"querystring",
2538
- "locationName":"name"
2539
- },
2540
- "customerId":{
2541
- "shape":"String",
2542
- "location":"querystring",
2543
- "locationName":"customerId"
2544
- },
2545
- "includeValues":{
2546
- "shape":"NullableBoolean",
2547
- "location":"querystring",
2548
- "locationName":"includeValues"
2549
- }
2550
- }
2551
- },
2552
- "GetAuthorizerRequest":{
2553
- "type":"structure",
2554
- "required":[
2555
- "restApiId",
2556
- "authorizerId"
2557
- ],
2558
- "members":{
2559
- "restApiId":{
2560
- "shape":"String",
2561
- "location":"uri",
2562
- "locationName":"restapi_id"
2563
- },
2564
- "authorizerId":{
2565
- "shape":"String",
2566
- "location":"uri",
2567
- "locationName":"authorizer_id"
2568
- }
2569
- }
2570
- },
2571
- "GetAuthorizersRequest":{
2572
- "type":"structure",
2573
- "required":["restApiId"],
2574
- "members":{
2575
- "restApiId":{
2576
- "shape":"String",
2577
- "location":"uri",
2578
- "locationName":"restapi_id"
2579
- },
2580
- "position":{
2581
- "shape":"String",
2582
- "location":"querystring",
2583
- "locationName":"position"
2584
- },
2585
- "limit":{
2586
- "shape":"NullableInteger",
2587
- "location":"querystring",
2588
- "locationName":"limit"
2589
- }
2590
- }
2591
- },
2592
- "GetBasePathMappingRequest":{
2593
- "type":"structure",
2594
- "required":[
2595
- "domainName",
2596
- "basePath"
2597
- ],
2598
- "members":{
2599
- "domainName":{
2600
- "shape":"String",
2601
- "location":"uri",
2602
- "locationName":"domain_name"
2603
- },
2604
- "basePath":{
2605
- "shape":"String",
2606
- "location":"uri",
2607
- "locationName":"base_path"
2608
- }
2609
- }
2610
- },
2611
- "GetBasePathMappingsRequest":{
2612
- "type":"structure",
2613
- "required":["domainName"],
2614
- "members":{
2615
- "domainName":{
2616
- "shape":"String",
2617
- "location":"uri",
2618
- "locationName":"domain_name"
2619
- },
2620
- "position":{
2621
- "shape":"String",
2622
- "location":"querystring",
2623
- "locationName":"position"
2624
- },
2625
- "limit":{
2626
- "shape":"NullableInteger",
2627
- "location":"querystring",
2628
- "locationName":"limit"
2629
- }
2630
- }
2631
- },
2632
- "GetClientCertificateRequest":{
2633
- "type":"structure",
2634
- "required":["clientCertificateId"],
2635
- "members":{
2636
- "clientCertificateId":{
2637
- "shape":"String",
2638
- "location":"uri",
2639
- "locationName":"clientcertificate_id"
2640
- }
2641
- }
2642
- },
2643
- "GetClientCertificatesRequest":{
2644
- "type":"structure",
2645
- "members":{
2646
- "position":{
2647
- "shape":"String",
2648
- "location":"querystring",
2649
- "locationName":"position"
2650
- },
2651
- "limit":{
2652
- "shape":"NullableInteger",
2653
- "location":"querystring",
2654
- "locationName":"limit"
2655
- }
2656
- }
2657
- },
2658
- "GetDeploymentRequest":{
2659
- "type":"structure",
2660
- "required":[
2661
- "restApiId",
2662
- "deploymentId"
2663
- ],
2664
- "members":{
2665
- "restApiId":{
2666
- "shape":"String",
2667
- "location":"uri",
2668
- "locationName":"restapi_id"
2669
- },
2670
- "deploymentId":{
2671
- "shape":"String",
2672
- "location":"uri",
2673
- "locationName":"deployment_id"
2674
- }
2675
- }
2676
- },
2677
- "GetDeploymentsRequest":{
2678
- "type":"structure",
2679
- "required":["restApiId"],
2680
- "members":{
2681
- "restApiId":{
2682
- "shape":"String",
2683
- "location":"uri",
2684
- "locationName":"restapi_id"
2685
- },
2686
- "position":{
2687
- "shape":"String",
2688
- "location":"querystring",
2689
- "locationName":"position"
2690
- },
2691
- "limit":{
2692
- "shape":"NullableInteger",
2693
- "location":"querystring",
2694
- "locationName":"limit"
2695
- }
2696
- }
2697
- },
2698
- "GetDocumentationPartRequest":{
2699
- "type":"structure",
2700
- "required":[
2701
- "restApiId",
2702
- "documentationPartId"
2703
- ],
2704
- "members":{
2705
- "restApiId":{
2706
- "shape":"String",
2707
- "location":"uri",
2708
- "locationName":"restapi_id"
2709
- },
2710
- "documentationPartId":{
2711
- "shape":"String",
2712
- "location":"uri",
2713
- "locationName":"part_id"
2714
- }
2715
- }
2716
- },
2717
- "GetDocumentationPartsRequest":{
2718
- "type":"structure",
2719
- "required":["restApiId"],
2720
- "members":{
2721
- "restApiId":{
2722
- "shape":"String",
2723
- "location":"uri",
2724
- "locationName":"restapi_id"
2725
- },
2726
- "type":{
2727
- "shape":"DocumentationPartType",
2728
- "location":"querystring",
2729
- "locationName":"type"
2730
- },
2731
- "nameQuery":{
2732
- "shape":"String",
2733
- "location":"querystring",
2734
- "locationName":"name"
2735
- },
2736
- "path":{
2737
- "shape":"String",
2738
- "location":"querystring",
2739
- "locationName":"path"
2740
- },
2741
- "position":{
2742
- "shape":"String",
2743
- "location":"querystring",
2744
- "locationName":"position"
2745
- },
2746
- "limit":{
2747
- "shape":"NullableInteger",
2748
- "location":"querystring",
2749
- "locationName":"limit"
2750
- }
2751
- }
2752
- },
2753
- "GetDocumentationVersionRequest":{
2754
- "type":"structure",
2755
- "required":[
2756
- "restApiId",
2757
- "documentationVersion"
2758
- ],
2759
- "members":{
2760
- "restApiId":{
2761
- "shape":"String",
2762
- "location":"uri",
2763
- "locationName":"restapi_id"
2764
- },
2765
- "documentationVersion":{
2766
- "shape":"String",
2767
- "location":"uri",
2768
- "locationName":"doc_version"
2769
- }
2770
- }
2771
- },
2772
- "GetDocumentationVersionsRequest":{
2773
- "type":"structure",
2774
- "required":["restApiId"],
2775
- "members":{
2776
- "restApiId":{
2777
- "shape":"String",
2778
- "location":"uri",
2779
- "locationName":"restapi_id"
2780
- },
2781
- "position":{
2782
- "shape":"String",
2783
- "location":"querystring",
2784
- "locationName":"position"
2785
- },
2786
- "limit":{
2787
- "shape":"NullableInteger",
2788
- "location":"querystring",
2789
- "locationName":"limit"
2790
- }
2791
- }
2792
- },
2793
- "GetDomainNameRequest":{
2794
- "type":"structure",
2795
- "required":["domainName"],
2796
- "members":{
2797
- "domainName":{
2798
- "shape":"String",
2799
- "location":"uri",
2800
- "locationName":"domain_name"
2801
- }
2802
- }
2803
- },
2804
- "GetDomainNamesRequest":{
2805
- "type":"structure",
2806
- "members":{
2807
- "position":{
2808
- "shape":"String",
2809
- "location":"querystring",
2810
- "locationName":"position"
2811
- },
2812
- "limit":{
2813
- "shape":"NullableInteger",
2814
- "location":"querystring",
2815
- "locationName":"limit"
2816
- }
2817
- }
2818
- },
2819
- "GetExportRequest":{
2820
- "type":"structure",
2821
- "required":[
2822
- "restApiId",
2823
- "stageName",
2824
- "exportType"
2825
- ],
2826
- "members":{
2827
- "restApiId":{
2828
- "shape":"String",
2829
- "location":"uri",
2830
- "locationName":"restapi_id"
2831
- },
2832
- "stageName":{
2833
- "shape":"String",
2834
- "location":"uri",
2835
- "locationName":"stage_name"
2836
- },
2837
- "exportType":{
2838
- "shape":"String",
2839
- "location":"uri",
2840
- "locationName":"export_type"
2841
- },
2842
- "parameters":{
2843
- "shape":"MapOfStringToString",
2844
- "location":"querystring"
2845
- },
2846
- "accepts":{
2847
- "shape":"String",
2848
- "location":"header",
2849
- "locationName":"Accept"
2850
- }
2851
- }
2852
- },
2853
- "GetIntegrationRequest":{
2854
- "type":"structure",
2855
- "required":[
2856
- "restApiId",
2857
- "resourceId",
2858
- "httpMethod"
2859
- ],
2860
- "members":{
2861
- "restApiId":{
2862
- "shape":"String",
2863
- "location":"uri",
2864
- "locationName":"restapi_id"
2865
- },
2866
- "resourceId":{
2867
- "shape":"String",
2868
- "location":"uri",
2869
- "locationName":"resource_id"
2870
- },
2871
- "httpMethod":{
2872
- "shape":"String",
2873
- "location":"uri",
2874
- "locationName":"http_method"
2875
- }
2876
- }
2877
- },
2878
- "GetIntegrationResponseRequest":{
2879
- "type":"structure",
2880
- "required":[
2881
- "restApiId",
2882
- "resourceId",
2883
- "httpMethod",
2884
- "statusCode"
2885
- ],
2886
- "members":{
2887
- "restApiId":{
2888
- "shape":"String",
2889
- "location":"uri",
2890
- "locationName":"restapi_id"
2891
- },
2892
- "resourceId":{
2893
- "shape":"String",
2894
- "location":"uri",
2895
- "locationName":"resource_id"
2896
- },
2897
- "httpMethod":{
2898
- "shape":"String",
2899
- "location":"uri",
2900
- "locationName":"http_method"
2901
- },
2902
- "statusCode":{
2903
- "shape":"StatusCode",
2904
- "location":"uri",
2905
- "locationName":"status_code"
2906
- }
2907
- }
2908
- },
2909
- "GetMethodRequest":{
2910
- "type":"structure",
2911
- "required":[
2912
- "restApiId",
2913
- "resourceId",
2914
- "httpMethod"
2915
- ],
2916
- "members":{
2917
- "restApiId":{
2918
- "shape":"String",
2919
- "location":"uri",
2920
- "locationName":"restapi_id"
2921
- },
2922
- "resourceId":{
2923
- "shape":"String",
2924
- "location":"uri",
2925
- "locationName":"resource_id"
2926
- },
2927
- "httpMethod":{
2928
- "shape":"String",
2929
- "location":"uri",
2930
- "locationName":"http_method"
2931
- }
2932
- }
2933
- },
2934
- "GetMethodResponseRequest":{
2935
- "type":"structure",
2936
- "required":[
2937
- "restApiId",
2938
- "resourceId",
2939
- "httpMethod",
2940
- "statusCode"
2941
- ],
2942
- "members":{
2943
- "restApiId":{
2944
- "shape":"String",
2945
- "location":"uri",
2946
- "locationName":"restapi_id"
2947
- },
2948
- "resourceId":{
2949
- "shape":"String",
2950
- "location":"uri",
2951
- "locationName":"resource_id"
2952
- },
2953
- "httpMethod":{
2954
- "shape":"String",
2955
- "location":"uri",
2956
- "locationName":"http_method"
2957
- },
2958
- "statusCode":{
2959
- "shape":"StatusCode",
2960
- "location":"uri",
2961
- "locationName":"status_code"
2962
- }
2963
- }
2964
- },
2965
- "GetModelRequest":{
2966
- "type":"structure",
2967
- "required":[
2968
- "restApiId",
2969
- "modelName"
2970
- ],
2971
- "members":{
2972
- "restApiId":{
2973
- "shape":"String",
2974
- "location":"uri",
2975
- "locationName":"restapi_id"
2976
- },
2977
- "modelName":{
2978
- "shape":"String",
2979
- "location":"uri",
2980
- "locationName":"model_name"
2981
- },
2982
- "flatten":{
2983
- "shape":"Boolean",
2984
- "location":"querystring",
2985
- "locationName":"flatten"
2986
- }
2987
- }
2988
- },
2989
- "GetModelTemplateRequest":{
2990
- "type":"structure",
2991
- "required":[
2992
- "restApiId",
2993
- "modelName"
2994
- ],
2995
- "members":{
2996
- "restApiId":{
2997
- "shape":"String",
2998
- "location":"uri",
2999
- "locationName":"restapi_id"
3000
- },
3001
- "modelName":{
3002
- "shape":"String",
3003
- "location":"uri",
3004
- "locationName":"model_name"
3005
- }
3006
- }
3007
- },
3008
- "GetModelsRequest":{
3009
- "type":"structure",
3010
- "required":["restApiId"],
3011
- "members":{
3012
- "restApiId":{
3013
- "shape":"String",
3014
- "location":"uri",
3015
- "locationName":"restapi_id"
3016
- },
3017
- "position":{
3018
- "shape":"String",
3019
- "location":"querystring",
3020
- "locationName":"position"
3021
- },
3022
- "limit":{
3023
- "shape":"NullableInteger",
3024
- "location":"querystring",
3025
- "locationName":"limit"
3026
- }
3027
- }
3028
- },
3029
- "GetResourceRequest":{
3030
- "type":"structure",
3031
- "required":[
3032
- "restApiId",
3033
- "resourceId"
3034
- ],
3035
- "members":{
3036
- "restApiId":{
3037
- "shape":"String",
3038
- "location":"uri",
3039
- "locationName":"restapi_id"
3040
- },
3041
- "resourceId":{
3042
- "shape":"String",
3043
- "location":"uri",
3044
- "locationName":"resource_id"
3045
- }
3046
- }
3047
- },
3048
- "GetResourcesRequest":{
3049
- "type":"structure",
3050
- "required":["restApiId"],
3051
- "members":{
3052
- "restApiId":{
3053
- "shape":"String",
3054
- "location":"uri",
3055
- "locationName":"restapi_id"
3056
- },
3057
- "position":{
3058
- "shape":"String",
3059
- "location":"querystring",
3060
- "locationName":"position"
3061
- },
3062
- "limit":{
3063
- "shape":"NullableInteger",
3064
- "location":"querystring",
3065
- "locationName":"limit"
3066
- }
3067
- }
3068
- },
3069
- "GetRestApiRequest":{
3070
- "type":"structure",
3071
- "required":["restApiId"],
3072
- "members":{
3073
- "restApiId":{
3074
- "shape":"String",
3075
- "location":"uri",
3076
- "locationName":"restapi_id"
3077
- }
3078
- }
3079
- },
3080
- "GetRestApisRequest":{
3081
- "type":"structure",
3082
- "members":{
3083
- "position":{
3084
- "shape":"String",
3085
- "location":"querystring",
3086
- "locationName":"position"
3087
- },
3088
- "limit":{
3089
- "shape":"NullableInteger",
3090
- "location":"querystring",
3091
- "locationName":"limit"
3092
- }
3093
- }
3094
- },
3095
- "GetSdkRequest":{
3096
- "type":"structure",
3097
- "required":[
3098
- "restApiId",
3099
- "stageName",
3100
- "sdkType"
3101
- ],
3102
- "members":{
3103
- "restApiId":{
3104
- "shape":"String",
3105
- "location":"uri",
3106
- "locationName":"restapi_id"
3107
- },
3108
- "stageName":{
3109
- "shape":"String",
3110
- "location":"uri",
3111
- "locationName":"stage_name"
3112
- },
3113
- "sdkType":{
3114
- "shape":"String",
3115
- "location":"uri",
3116
- "locationName":"sdk_type"
3117
- },
3118
- "parameters":{
3119
- "shape":"MapOfStringToString",
3120
- "location":"querystring"
3121
- }
3122
- }
3123
- },
3124
- "GetSdkTypeRequest":{
3125
- "type":"structure",
3126
- "required":["id"],
3127
- "members":{
3128
- "id":{
3129
- "shape":"String",
3130
- "location":"uri",
3131
- "locationName":"sdktype_id"
3132
- }
3133
- }
3134
- },
3135
- "GetSdkTypesRequest":{
3136
- "type":"structure",
3137
- "members":{
3138
- "position":{
3139
- "shape":"String",
3140
- "location":"querystring",
3141
- "locationName":"position"
3142
- },
3143
- "limit":{
3144
- "shape":"NullableInteger",
3145
- "location":"querystring",
3146
- "locationName":"limit"
3147
- }
3148
- }
3149
- },
3150
- "GetStageRequest":{
3151
- "type":"structure",
3152
- "required":[
3153
- "restApiId",
3154
- "stageName"
3155
- ],
3156
- "members":{
3157
- "restApiId":{
3158
- "shape":"String",
3159
- "location":"uri",
3160
- "locationName":"restapi_id"
3161
- },
3162
- "stageName":{
3163
- "shape":"String",
3164
- "location":"uri",
3165
- "locationName":"stage_name"
3166
- }
3167
- }
3168
- },
3169
- "GetStagesRequest":{
3170
- "type":"structure",
3171
- "required":["restApiId"],
3172
- "members":{
3173
- "restApiId":{
3174
- "shape":"String",
3175
- "location":"uri",
3176
- "locationName":"restapi_id"
3177
- },
3178
- "deploymentId":{
3179
- "shape":"String",
3180
- "location":"querystring",
3181
- "locationName":"deploymentId"
3182
- }
3183
- }
3184
- },
3185
- "GetUsagePlanKeyRequest":{
3186
- "type":"structure",
3187
- "required":[
3188
- "usagePlanId",
3189
- "keyId"
3190
- ],
3191
- "members":{
3192
- "usagePlanId":{
3193
- "shape":"String",
3194
- "location":"uri",
3195
- "locationName":"usageplanId"
3196
- },
3197
- "keyId":{
3198
- "shape":"String",
3199
- "location":"uri",
3200
- "locationName":"keyId"
3201
- }
3202
- }
3203
- },
3204
- "GetUsagePlanKeysRequest":{
3205
- "type":"structure",
3206
- "required":["usagePlanId"],
3207
- "members":{
3208
- "usagePlanId":{
3209
- "shape":"String",
3210
- "location":"uri",
3211
- "locationName":"usageplanId"
3212
- },
3213
- "position":{
3214
- "shape":"String",
3215
- "location":"querystring",
3216
- "locationName":"position"
3217
- },
3218
- "limit":{
3219
- "shape":"NullableInteger",
3220
- "location":"querystring",
3221
- "locationName":"limit"
3222
- },
3223
- "nameQuery":{
3224
- "shape":"String",
3225
- "location":"querystring",
3226
- "locationName":"name"
3227
- }
3228
- }
3229
- },
3230
- "GetUsagePlanRequest":{
3231
- "type":"structure",
3232
- "required":["usagePlanId"],
3233
- "members":{
3234
- "usagePlanId":{
3235
- "shape":"String",
3236
- "location":"uri",
3237
- "locationName":"usageplanId"
3238
- }
3239
- }
3240
- },
3241
- "GetUsagePlansRequest":{
3242
- "type":"structure",
3243
- "members":{
3244
- "position":{
3245
- "shape":"String",
3246
- "location":"querystring",
3247
- "locationName":"position"
3248
- },
3249
- "keyId":{
3250
- "shape":"String",
3251
- "location":"querystring",
3252
- "locationName":"keyId"
3253
- },
3254
- "limit":{
3255
- "shape":"NullableInteger",
3256
- "location":"querystring",
3257
- "locationName":"limit"
3258
- }
3259
- }
3260
- },
3261
- "GetUsageRequest":{
3262
- "type":"structure",
3263
- "required":[
3264
- "usagePlanId",
3265
- "startDate",
3266
- "endDate"
3267
- ],
3268
- "members":{
3269
- "usagePlanId":{
3270
- "shape":"String",
3271
- "location":"uri",
3272
- "locationName":"usageplanId"
3273
- },
3274
- "keyId":{
3275
- "shape":"String",
3276
- "location":"querystring",
3277
- "locationName":"keyId"
3278
- },
3279
- "startDate":{
3280
- "shape":"String",
3281
- "location":"querystring",
3282
- "locationName":"startDate"
3283
- },
3284
- "endDate":{
3285
- "shape":"String",
3286
- "location":"querystring",
3287
- "locationName":"endDate"
3288
- },
3289
- "position":{
3290
- "shape":"String",
3291
- "location":"querystring",
3292
- "locationName":"position"
3293
- },
3294
- "limit":{
3295
- "shape":"NullableInteger",
3296
- "location":"querystring",
3297
- "locationName":"limit"
3298
- }
3299
- }
3300
- },
3301
- "ImportApiKeysRequest":{
3302
- "type":"structure",
3303
- "required":[
3304
- "body",
3305
- "format"
3306
- ],
3307
- "members":{
3308
- "body":{"shape":"Blob"},
3309
- "format":{
3310
- "shape":"ApiKeysFormat",
3311
- "location":"querystring",
3312
- "locationName":"format"
3313
- },
3314
- "failOnWarnings":{
3315
- "shape":"Boolean",
3316
- "location":"querystring",
3317
- "locationName":"failonwarnings"
3318
- }
3319
- },
3320
- "payload":"body"
3321
- },
3322
- "ImportDocumentationPartsRequest":{
3323
- "type":"structure",
3324
- "required":[
3325
- "restApiId",
3326
- "body"
3327
- ],
3328
- "members":{
3329
- "restApiId":{
3330
- "shape":"String",
3331
- "location":"uri",
3332
- "locationName":"restapi_id"
3333
- },
3334
- "mode":{
3335
- "shape":"PutMode",
3336
- "location":"querystring",
3337
- "locationName":"mode"
3338
- },
3339
- "failOnWarnings":{
3340
- "shape":"Boolean",
3341
- "location":"querystring",
3342
- "locationName":"failonwarnings"
3343
- },
3344
- "body":{"shape":"Blob"}
3345
- },
3346
- "payload":"body"
3347
- },
3348
- "ImportRestApiRequest":{
3349
- "type":"structure",
3350
- "required":["body"],
3351
- "members":{
3352
- "failOnWarnings":{
3353
- "shape":"Boolean",
3354
- "location":"querystring",
3355
- "locationName":"failonwarnings"
3356
- },
3357
- "parameters":{
3358
- "shape":"MapOfStringToString",
3359
- "location":"querystring"
3360
- },
3361
- "body":{"shape":"Blob"}
3362
- },
3363
- "payload":"body"
3364
- },
3365
- "Integer":{"type":"integer"},
3366
- "Integration":{
3367
- "type":"structure",
3368
- "members":{
3369
- "type":{"shape":"IntegrationType"},
3370
- "httpMethod":{"shape":"String"},
3371
- "uri":{"shape":"String"},
3372
- "credentials":{"shape":"String"},
3373
- "requestParameters":{"shape":"MapOfStringToString"},
3374
- "requestTemplates":{"shape":"MapOfStringToString"},
3375
- "passthroughBehavior":{"shape":"String"},
3376
- "contentHandling":{"shape":"ContentHandlingStrategy"},
3377
- "cacheNamespace":{"shape":"String"},
3378
- "cacheKeyParameters":{"shape":"ListOfString"},
3379
- "integrationResponses":{"shape":"MapOfIntegrationResponse"}
3380
- }
3381
- },
3382
- "IntegrationResponse":{
3383
- "type":"structure",
3384
- "members":{
3385
- "statusCode":{"shape":"StatusCode"},
3386
- "selectionPattern":{"shape":"String"},
3387
- "responseParameters":{"shape":"MapOfStringToString"},
3388
- "responseTemplates":{"shape":"MapOfStringToString"},
3389
- "contentHandling":{"shape":"ContentHandlingStrategy"}
3390
- }
3391
- },
3392
- "IntegrationType":{
3393
- "type":"string",
3394
- "enum":[
3395
- "HTTP",
3396
- "AWS",
3397
- "MOCK",
3398
- "HTTP_PROXY",
3399
- "AWS_PROXY"
3400
- ]
3401
- },
3402
- "LimitExceededException":{
3403
- "type":"structure",
3404
- "members":{
3405
- "retryAfterSeconds":{
3406
- "shape":"String",
3407
- "location":"header",
3408
- "locationName":"Retry-After"
3409
- },
3410
- "message":{"shape":"String"}
3411
- },
3412
- "error":{"httpStatusCode":429},
3413
- "exception":true
3414
- },
3415
- "ListOfARNs":{
3416
- "type":"list",
3417
- "member":{"shape":"ProviderARN"}
3418
- },
3419
- "ListOfApiKey":{
3420
- "type":"list",
3421
- "member":{"shape":"ApiKey"}
3422
- },
3423
- "ListOfApiStage":{
3424
- "type":"list",
3425
- "member":{"shape":"ApiStage"}
3426
- },
3427
- "ListOfAuthorizer":{
3428
- "type":"list",
3429
- "member":{"shape":"Authorizer"}
3430
- },
3431
- "ListOfBasePathMapping":{
3432
- "type":"list",
3433
- "member":{"shape":"BasePathMapping"}
3434
- },
3435
- "ListOfClientCertificate":{
3436
- "type":"list",
3437
- "member":{"shape":"ClientCertificate"}
3438
- },
3439
- "ListOfDeployment":{
3440
- "type":"list",
3441
- "member":{"shape":"Deployment"}
3442
- },
3443
- "ListOfDocumentationPart":{
3444
- "type":"list",
3445
- "member":{"shape":"DocumentationPart"}
3446
- },
3447
- "ListOfDocumentationVersion":{
3448
- "type":"list",
3449
- "member":{"shape":"DocumentationVersion"}
3450
- },
3451
- "ListOfDomainName":{
3452
- "type":"list",
3453
- "member":{"shape":"DomainName"}
3454
- },
3455
- "ListOfLong":{
3456
- "type":"list",
3457
- "member":{"shape":"Long"}
3458
- },
3459
- "ListOfModel":{
3460
- "type":"list",
3461
- "member":{"shape":"Model"}
3462
- },
3463
- "ListOfPatchOperation":{
3464
- "type":"list",
3465
- "member":{"shape":"PatchOperation"}
3466
- },
3467
- "ListOfResource":{
3468
- "type":"list",
3469
- "member":{"shape":"Resource"}
3470
- },
3471
- "ListOfRestApi":{
3472
- "type":"list",
3473
- "member":{"shape":"RestApi"}
3474
- },
3475
- "ListOfSdkConfigurationProperty":{
3476
- "type":"list",
3477
- "member":{"shape":"SdkConfigurationProperty"}
3478
- },
3479
- "ListOfSdkType":{
3480
- "type":"list",
3481
- "member":{"shape":"SdkType"}
3482
- },
3483
- "ListOfStage":{
3484
- "type":"list",
3485
- "member":{"shape":"Stage"}
3486
- },
3487
- "ListOfStageKeys":{
3488
- "type":"list",
3489
- "member":{"shape":"StageKey"}
3490
- },
3491
- "ListOfString":{
3492
- "type":"list",
3493
- "member":{"shape":"String"}
3494
- },
3495
- "ListOfUsage":{
3496
- "type":"list",
3497
- "member":{"shape":"ListOfLong"}
3498
- },
3499
- "ListOfUsagePlan":{
3500
- "type":"list",
3501
- "member":{"shape":"UsagePlan"}
3502
- },
3503
- "ListOfUsagePlanKey":{
3504
- "type":"list",
3505
- "member":{"shape":"UsagePlanKey"}
3506
- },
3507
- "Long":{"type":"long"},
3508
- "MapOfHeaderValues":{
3509
- "type":"map",
3510
- "key":{"shape":"String"},
3511
- "value":{"shape":"String"}
3512
- },
3513
- "MapOfIntegrationResponse":{
3514
- "type":"map",
3515
- "key":{"shape":"String"},
3516
- "value":{"shape":"IntegrationResponse"}
3517
- },
3518
- "MapOfKeyUsages":{
3519
- "type":"map",
3520
- "key":{"shape":"String"},
3521
- "value":{"shape":"ListOfUsage"}
3522
- },
3523
- "MapOfMethod":{
3524
- "type":"map",
3525
- "key":{"shape":"String"},
3526
- "value":{"shape":"Method"}
3527
- },
3528
- "MapOfMethodResponse":{
3529
- "type":"map",
3530
- "key":{"shape":"String"},
3531
- "value":{"shape":"MethodResponse"}
3532
- },
3533
- "MapOfMethodSettings":{
3534
- "type":"map",
3535
- "key":{"shape":"String"},
3536
- "value":{"shape":"MethodSetting"}
3537
- },
3538
- "MapOfMethodSnapshot":{
3539
- "type":"map",
3540
- "key":{"shape":"String"},
3541
- "value":{"shape":"MethodSnapshot"}
3542
- },
3543
- "MapOfStringToBoolean":{
3544
- "type":"map",
3545
- "key":{"shape":"String"},
3546
- "value":{"shape":"NullableBoolean"}
3547
- },
3548
- "MapOfStringToList":{
3549
- "type":"map",
3550
- "key":{"shape":"String"},
3551
- "value":{"shape":"ListOfString"}
3552
- },
3553
- "MapOfStringToString":{
3554
- "type":"map",
3555
- "key":{"shape":"String"},
3556
- "value":{"shape":"String"}
3557
- },
3558
- "Method":{
3559
- "type":"structure",
3560
- "members":{
3561
- "httpMethod":{"shape":"String"},
3562
- "authorizationType":{"shape":"String"},
3563
- "authorizerId":{"shape":"String"},
3564
- "apiKeyRequired":{"shape":"NullableBoolean"},
3565
- "operationName":{"shape":"String"},
3566
- "requestParameters":{"shape":"MapOfStringToBoolean"},
3567
- "requestModels":{"shape":"MapOfStringToString"},
3568
- "methodResponses":{"shape":"MapOfMethodResponse"},
3569
- "methodIntegration":{"shape":"Integration"}
3570
- }
3571
- },
3572
- "MethodResponse":{
3573
- "type":"structure",
3574
- "members":{
3575
- "statusCode":{"shape":"StatusCode"},
3576
- "responseParameters":{"shape":"MapOfStringToBoolean"},
3577
- "responseModels":{"shape":"MapOfStringToString"}
3578
- }
3579
- },
3580
- "MethodSetting":{
3581
- "type":"structure",
3582
- "members":{
3583
- "metricsEnabled":{"shape":"Boolean"},
3584
- "loggingLevel":{"shape":"String"},
3585
- "dataTraceEnabled":{"shape":"Boolean"},
3586
- "throttlingBurstLimit":{"shape":"Integer"},
3587
- "throttlingRateLimit":{"shape":"Double"},
3588
- "cachingEnabled":{"shape":"Boolean"},
3589
- "cacheTtlInSeconds":{"shape":"Integer"},
3590
- "cacheDataEncrypted":{"shape":"Boolean"},
3591
- "requireAuthorizationForCacheControl":{"shape":"Boolean"},
3592
- "unauthorizedCacheControlHeaderStrategy":{"shape":"UnauthorizedCacheControlHeaderStrategy"}
3593
- }
3594
- },
3595
- "MethodSnapshot":{
3596
- "type":"structure",
3597
- "members":{
3598
- "authorizationType":{"shape":"String"},
3599
- "apiKeyRequired":{"shape":"Boolean"}
3600
- }
3601
- },
3602
- "Model":{
3603
- "type":"structure",
3604
- "members":{
3605
- "id":{"shape":"String"},
3606
- "name":{"shape":"String"},
3607
- "description":{"shape":"String"},
3608
- "schema":{"shape":"String"},
3609
- "contentType":{"shape":"String"}
3610
- }
3611
- },
3612
- "Models":{
3613
- "type":"structure",
3614
- "members":{
3615
- "position":{"shape":"String"},
3616
- "items":{
3617
- "shape":"ListOfModel",
3618
- "locationName":"item"
3619
- }
3620
- }
3621
- },
3622
- "NotFoundException":{
3623
- "type":"structure",
3624
- "members":{
3625
- "message":{"shape":"String"}
3626
- },
3627
- "error":{"httpStatusCode":404},
3628
- "exception":true
3629
- },
3630
- "NullableBoolean":{"type":"boolean"},
3631
- "NullableInteger":{"type":"integer"},
3632
- "Op":{
3633
- "type":"string",
3634
- "enum":[
3635
- "add",
3636
- "remove",
3637
- "replace",
3638
- "move",
3639
- "copy",
3640
- "test"
3641
- ]
3642
- },
3643
- "PatchOperation":{
3644
- "type":"structure",
3645
- "members":{
3646
- "op":{"shape":"Op"},
3647
- "path":{"shape":"String"},
3648
- "value":{"shape":"String"},
3649
- "from":{"shape":"String"}
3650
- }
3651
- },
3652
- "PathToMapOfMethodSnapshot":{
3653
- "type":"map",
3654
- "key":{"shape":"String"},
3655
- "value":{"shape":"MapOfMethodSnapshot"}
3656
- },
3657
- "ProviderARN":{"type":"string"},
3658
- "PutIntegrationRequest":{
3659
- "type":"structure",
3660
- "required":[
3661
- "restApiId",
3662
- "resourceId",
3663
- "httpMethod",
3664
- "type"
3665
- ],
3666
- "members":{
3667
- "restApiId":{
3668
- "shape":"String",
3669
- "location":"uri",
3670
- "locationName":"restapi_id"
3671
- },
3672
- "resourceId":{
3673
- "shape":"String",
3674
- "location":"uri",
3675
- "locationName":"resource_id"
3676
- },
3677
- "httpMethod":{
3678
- "shape":"String",
3679
- "location":"uri",
3680
- "locationName":"http_method"
3681
- },
3682
- "type":{"shape":"IntegrationType"},
3683
- "integrationHttpMethod":{
3684
- "shape":"String",
3685
- "locationName":"httpMethod"
3686
- },
3687
- "uri":{"shape":"String"},
3688
- "credentials":{"shape":"String"},
3689
- "requestParameters":{"shape":"MapOfStringToString"},
3690
- "requestTemplates":{"shape":"MapOfStringToString"},
3691
- "passthroughBehavior":{"shape":"String"},
3692
- "cacheNamespace":{"shape":"String"},
3693
- "cacheKeyParameters":{"shape":"ListOfString"},
3694
- "contentHandling":{"shape":"ContentHandlingStrategy"}
3695
- }
3696
- },
3697
- "PutIntegrationResponseRequest":{
3698
- "type":"structure",
3699
- "required":[
3700
- "restApiId",
3701
- "resourceId",
3702
- "httpMethod",
3703
- "statusCode"
3704
- ],
3705
- "members":{
3706
- "restApiId":{
3707
- "shape":"String",
3708
- "location":"uri",
3709
- "locationName":"restapi_id"
3710
- },
3711
- "resourceId":{
3712
- "shape":"String",
3713
- "location":"uri",
3714
- "locationName":"resource_id"
3715
- },
3716
- "httpMethod":{
3717
- "shape":"String",
3718
- "location":"uri",
3719
- "locationName":"http_method"
3720
- },
3721
- "statusCode":{
3722
- "shape":"StatusCode",
3723
- "location":"uri",
3724
- "locationName":"status_code"
3725
- },
3726
- "selectionPattern":{"shape":"String"},
3727
- "responseParameters":{"shape":"MapOfStringToString"},
3728
- "responseTemplates":{"shape":"MapOfStringToString"},
3729
- "contentHandling":{"shape":"ContentHandlingStrategy"}
3730
- }
3731
- },
3732
- "PutMethodRequest":{
3733
- "type":"structure",
3734
- "required":[
3735
- "restApiId",
3736
- "resourceId",
3737
- "httpMethod",
3738
- "authorizationType"
3739
- ],
3740
- "members":{
3741
- "restApiId":{
3742
- "shape":"String",
3743
- "location":"uri",
3744
- "locationName":"restapi_id"
3745
- },
3746
- "resourceId":{
3747
- "shape":"String",
3748
- "location":"uri",
3749
- "locationName":"resource_id"
3750
- },
3751
- "httpMethod":{
3752
- "shape":"String",
3753
- "location":"uri",
3754
- "locationName":"http_method"
3755
- },
3756
- "authorizationType":{"shape":"String"},
3757
- "authorizerId":{"shape":"String"},
3758
- "apiKeyRequired":{"shape":"Boolean"},
3759
- "operationName":{"shape":"String"},
3760
- "requestParameters":{"shape":"MapOfStringToBoolean"},
3761
- "requestModels":{"shape":"MapOfStringToString"}
3762
- }
3763
- },
3764
- "PutMethodResponseRequest":{
3765
- "type":"structure",
3766
- "required":[
3767
- "restApiId",
3768
- "resourceId",
3769
- "httpMethod",
3770
- "statusCode"
3771
- ],
3772
- "members":{
3773
- "restApiId":{
3774
- "shape":"String",
3775
- "location":"uri",
3776
- "locationName":"restapi_id"
3777
- },
3778
- "resourceId":{
3779
- "shape":"String",
3780
- "location":"uri",
3781
- "locationName":"resource_id"
3782
- },
3783
- "httpMethod":{
3784
- "shape":"String",
3785
- "location":"uri",
3786
- "locationName":"http_method"
3787
- },
3788
- "statusCode":{
3789
- "shape":"StatusCode",
3790
- "location":"uri",
3791
- "locationName":"status_code"
3792
- },
3793
- "responseParameters":{"shape":"MapOfStringToBoolean"},
3794
- "responseModels":{"shape":"MapOfStringToString"}
3795
- }
3796
- },
3797
- "PutMode":{
3798
- "type":"string",
3799
- "enum":[
3800
- "merge",
3801
- "overwrite"
3802
- ]
3803
- },
3804
- "PutRestApiRequest":{
3805
- "type":"structure",
3806
- "required":[
3807
- "restApiId",
3808
- "body"
3809
- ],
3810
- "members":{
3811
- "restApiId":{
3812
- "shape":"String",
3813
- "location":"uri",
3814
- "locationName":"restapi_id"
3815
- },
3816
- "mode":{
3817
- "shape":"PutMode",
3818
- "location":"querystring",
3819
- "locationName":"mode"
3820
- },
3821
- "failOnWarnings":{
3822
- "shape":"Boolean",
3823
- "location":"querystring",
3824
- "locationName":"failonwarnings"
3825
- },
3826
- "parameters":{
3827
- "shape":"MapOfStringToString",
3828
- "location":"querystring"
3829
- },
3830
- "body":{"shape":"Blob"}
3831
- },
3832
- "payload":"body"
3833
- },
3834
- "QuotaPeriodType":{
3835
- "type":"string",
3836
- "enum":[
3837
- "DAY",
3838
- "WEEK",
3839
- "MONTH"
3840
- ]
3841
- },
3842
- "QuotaSettings":{
3843
- "type":"structure",
3844
- "members":{
3845
- "limit":{"shape":"Integer"},
3846
- "offset":{"shape":"Integer"},
3847
- "period":{"shape":"QuotaPeriodType"}
3848
- }
3849
- },
3850
- "Resource":{
3851
- "type":"structure",
3852
- "members":{
3853
- "id":{"shape":"String"},
3854
- "parentId":{"shape":"String"},
3855
- "pathPart":{"shape":"String"},
3856
- "path":{"shape":"String"},
3857
- "resourceMethods":{"shape":"MapOfMethod"}
3858
- }
3859
- },
3860
- "Resources":{
3861
- "type":"structure",
3862
- "members":{
3863
- "position":{"shape":"String"},
3864
- "items":{
3865
- "shape":"ListOfResource",
3866
- "locationName":"item"
3867
- }
3868
- }
3869
- },
3870
- "RestApi":{
3871
- "type":"structure",
3872
- "members":{
3873
- "id":{"shape":"String"},
3874
- "name":{"shape":"String"},
3875
- "description":{"shape":"String"},
3876
- "createdDate":{"shape":"Timestamp"},
3877
- "version":{"shape":"String"},
3878
- "warnings":{"shape":"ListOfString"},
3879
- "binaryMediaTypes":{"shape":"ListOfString"}
3880
- }
3881
- },
3882
- "RestApis":{
3883
- "type":"structure",
3884
- "members":{
3885
- "position":{"shape":"String"},
3886
- "items":{
3887
- "shape":"ListOfRestApi",
3888
- "locationName":"item"
3889
- }
3890
- }
3891
- },
3892
- "SdkConfigurationProperty":{
3893
- "type":"structure",
3894
- "members":{
3895
- "name":{"shape":"String"},
3896
- "friendlyName":{"shape":"String"},
3897
- "description":{"shape":"String"},
3898
- "required":{"shape":"Boolean"},
3899
- "defaultValue":{"shape":"String"}
3900
- }
3901
- },
3902
- "SdkResponse":{
3903
- "type":"structure",
3904
- "members":{
3905
- "contentType":{
3906
- "shape":"String",
3907
- "location":"header",
3908
- "locationName":"Content-Type"
3909
- },
3910
- "contentDisposition":{
3911
- "shape":"String",
3912
- "location":"header",
3913
- "locationName":"Content-Disposition"
3914
- },
3915
- "body":{"shape":"Blob"}
3916
- },
3917
- "payload":"body"
3918
- },
3919
- "SdkType":{
3920
- "type":"structure",
3921
- "members":{
3922
- "id":{"shape":"String"},
3923
- "friendlyName":{"shape":"String"},
3924
- "description":{"shape":"String"},
3925
- "configurationProperties":{"shape":"ListOfSdkConfigurationProperty"}
3926
- }
3927
- },
3928
- "SdkTypes":{
3929
- "type":"structure",
3930
- "members":{
3931
- "position":{"shape":"String"},
3932
- "items":{
3933
- "shape":"ListOfSdkType",
3934
- "locationName":"item"
3935
- }
3936
- }
3937
- },
3938
- "ServiceUnavailableException":{
3939
- "type":"structure",
3940
- "members":{
3941
- "retryAfterSeconds":{
3942
- "shape":"String",
3943
- "location":"header",
3944
- "locationName":"Retry-After"
3945
- },
3946
- "message":{"shape":"String"}
3947
- },
3948
- "error":{"httpStatusCode":503},
3949
- "exception":true,
3950
- "fault":true
3951
- },
3952
- "Stage":{
3953
- "type":"structure",
3954
- "members":{
3955
- "deploymentId":{"shape":"String"},
3956
- "clientCertificateId":{"shape":"String"},
3957
- "stageName":{"shape":"String"},
3958
- "description":{"shape":"String"},
3959
- "cacheClusterEnabled":{"shape":"Boolean"},
3960
- "cacheClusterSize":{"shape":"CacheClusterSize"},
3961
- "cacheClusterStatus":{"shape":"CacheClusterStatus"},
3962
- "methodSettings":{"shape":"MapOfMethodSettings"},
3963
- "variables":{"shape":"MapOfStringToString"},
3964
- "documentationVersion":{"shape":"String"},
3965
- "createdDate":{"shape":"Timestamp"},
3966
- "lastUpdatedDate":{"shape":"Timestamp"}
3967
- }
3968
- },
3969
- "StageKey":{
3970
- "type":"structure",
3971
- "members":{
3972
- "restApiId":{"shape":"String"},
3973
- "stageName":{"shape":"String"}
3974
- }
3975
- },
3976
- "Stages":{
3977
- "type":"structure",
3978
- "members":{
3979
- "item":{"shape":"ListOfStage"}
3980
- }
3981
- },
3982
- "StatusCode":{
3983
- "type":"string",
3984
- "pattern":"[1-5]\\d\\d"
3985
- },
3986
- "String":{"type":"string"},
3987
- "Template":{
3988
- "type":"structure",
3989
- "members":{
3990
- "value":{"shape":"String"}
3991
- }
3992
- },
3993
- "TestInvokeAuthorizerRequest":{
3994
- "type":"structure",
3995
- "required":[
3996
- "restApiId",
3997
- "authorizerId"
3998
- ],
3999
- "members":{
4000
- "restApiId":{
4001
- "shape":"String",
4002
- "location":"uri",
4003
- "locationName":"restapi_id"
4004
- },
4005
- "authorizerId":{
4006
- "shape":"String",
4007
- "location":"uri",
4008
- "locationName":"authorizer_id"
4009
- },
4010
- "headers":{"shape":"MapOfHeaderValues"},
4011
- "pathWithQueryString":{"shape":"String"},
4012
- "body":{"shape":"String"},
4013
- "stageVariables":{"shape":"MapOfStringToString"},
4014
- "additionalContext":{"shape":"MapOfStringToString"}
4015
- }
4016
- },
4017
- "TestInvokeAuthorizerResponse":{
4018
- "type":"structure",
4019
- "members":{
4020
- "clientStatus":{"shape":"Integer"},
4021
- "log":{"shape":"String"},
4022
- "latency":{"shape":"Long"},
4023
- "principalId":{"shape":"String"},
4024
- "policy":{"shape":"String"},
4025
- "authorization":{"shape":"MapOfStringToList"},
4026
- "claims":{"shape":"MapOfStringToString"}
4027
- }
4028
- },
4029
- "TestInvokeMethodRequest":{
4030
- "type":"structure",
4031
- "required":[
4032
- "restApiId",
4033
- "resourceId",
4034
- "httpMethod"
4035
- ],
4036
- "members":{
4037
- "restApiId":{
4038
- "shape":"String",
4039
- "location":"uri",
4040
- "locationName":"restapi_id"
4041
- },
4042
- "resourceId":{
4043
- "shape":"String",
4044
- "location":"uri",
4045
- "locationName":"resource_id"
4046
- },
4047
- "httpMethod":{
4048
- "shape":"String",
4049
- "location":"uri",
4050
- "locationName":"http_method"
4051
- },
4052
- "pathWithQueryString":{"shape":"String"},
4053
- "body":{"shape":"String"},
4054
- "headers":{"shape":"MapOfHeaderValues"},
4055
- "clientCertificateId":{"shape":"String"},
4056
- "stageVariables":{"shape":"MapOfStringToString"}
4057
- }
4058
- },
4059
- "TestInvokeMethodResponse":{
4060
- "type":"structure",
4061
- "members":{
4062
- "status":{"shape":"Integer"},
4063
- "body":{"shape":"String"},
4064
- "headers":{"shape":"MapOfHeaderValues"},
4065
- "log":{"shape":"String"},
4066
- "latency":{"shape":"Long"}
4067
- }
4068
- },
4069
- "ThrottleSettings":{
4070
- "type":"structure",
4071
- "members":{
4072
- "burstLimit":{"shape":"Integer"},
4073
- "rateLimit":{"shape":"Double"}
4074
- }
4075
- },
4076
- "Timestamp":{"type":"timestamp"},
4077
- "TooManyRequestsException":{
4078
- "type":"structure",
4079
- "members":{
4080
- "retryAfterSeconds":{
4081
- "shape":"String",
4082
- "location":"header",
4083
- "locationName":"Retry-After"
4084
- },
4085
- "message":{"shape":"String"}
4086
- },
4087
- "error":{"httpStatusCode":429},
4088
- "exception":true
4089
- },
4090
- "UnauthorizedCacheControlHeaderStrategy":{
4091
- "type":"string",
4092
- "enum":[
4093
- "FAIL_WITH_403",
4094
- "SUCCEED_WITH_RESPONSE_HEADER",
4095
- "SUCCEED_WITHOUT_RESPONSE_HEADER"
4096
- ]
4097
- },
4098
- "UnauthorizedException":{
4099
- "type":"structure",
4100
- "members":{
4101
- "message":{"shape":"String"}
4102
- },
4103
- "error":{"httpStatusCode":401},
4104
- "exception":true
4105
- },
4106
- "UpdateAccountRequest":{
4107
- "type":"structure",
4108
- "members":{
4109
- "patchOperations":{"shape":"ListOfPatchOperation"}
4110
- }
4111
- },
4112
- "UpdateApiKeyRequest":{
4113
- "type":"structure",
4114
- "required":["apiKey"],
4115
- "members":{
4116
- "apiKey":{
4117
- "shape":"String",
4118
- "location":"uri",
4119
- "locationName":"api_Key"
4120
- },
4121
- "patchOperations":{"shape":"ListOfPatchOperation"}
4122
- }
4123
- },
4124
- "UpdateAuthorizerRequest":{
4125
- "type":"structure",
4126
- "required":[
4127
- "restApiId",
4128
- "authorizerId"
4129
- ],
4130
- "members":{
4131
- "restApiId":{
4132
- "shape":"String",
4133
- "location":"uri",
4134
- "locationName":"restapi_id"
4135
- },
4136
- "authorizerId":{
4137
- "shape":"String",
4138
- "location":"uri",
4139
- "locationName":"authorizer_id"
4140
- },
4141
- "patchOperations":{"shape":"ListOfPatchOperation"}
4142
- }
4143
- },
4144
- "UpdateBasePathMappingRequest":{
4145
- "type":"structure",
4146
- "required":[
4147
- "domainName",
4148
- "basePath"
4149
- ],
4150
- "members":{
4151
- "domainName":{
4152
- "shape":"String",
4153
- "location":"uri",
4154
- "locationName":"domain_name"
4155
- },
4156
- "basePath":{
4157
- "shape":"String",
4158
- "location":"uri",
4159
- "locationName":"base_path"
4160
- },
4161
- "patchOperations":{"shape":"ListOfPatchOperation"}
4162
- }
4163
- },
4164
- "UpdateClientCertificateRequest":{
4165
- "type":"structure",
4166
- "required":["clientCertificateId"],
4167
- "members":{
4168
- "clientCertificateId":{
4169
- "shape":"String",
4170
- "location":"uri",
4171
- "locationName":"clientcertificate_id"
4172
- },
4173
- "patchOperations":{"shape":"ListOfPatchOperation"}
4174
- }
4175
- },
4176
- "UpdateDeploymentRequest":{
4177
- "type":"structure",
4178
- "required":[
4179
- "restApiId",
4180
- "deploymentId"
4181
- ],
4182
- "members":{
4183
- "restApiId":{
4184
- "shape":"String",
4185
- "location":"uri",
4186
- "locationName":"restapi_id"
4187
- },
4188
- "deploymentId":{
4189
- "shape":"String",
4190
- "location":"uri",
4191
- "locationName":"deployment_id"
4192
- },
4193
- "patchOperations":{"shape":"ListOfPatchOperation"}
4194
- }
4195
- },
4196
- "UpdateDocumentationPartRequest":{
4197
- "type":"structure",
4198
- "required":[
4199
- "restApiId",
4200
- "documentationPartId"
4201
- ],
4202
- "members":{
4203
- "restApiId":{
4204
- "shape":"String",
4205
- "location":"uri",
4206
- "locationName":"restapi_id"
4207
- },
4208
- "documentationPartId":{
4209
- "shape":"String",
4210
- "location":"uri",
4211
- "locationName":"part_id"
4212
- },
4213
- "patchOperations":{"shape":"ListOfPatchOperation"}
4214
- }
4215
- },
4216
- "UpdateDocumentationVersionRequest":{
4217
- "type":"structure",
4218
- "required":[
4219
- "restApiId",
4220
- "documentationVersion"
4221
- ],
4222
- "members":{
4223
- "restApiId":{
4224
- "shape":"String",
4225
- "location":"uri",
4226
- "locationName":"restapi_id"
4227
- },
4228
- "documentationVersion":{
4229
- "shape":"String",
4230
- "location":"uri",
4231
- "locationName":"doc_version"
4232
- },
4233
- "patchOperations":{"shape":"ListOfPatchOperation"}
4234
- }
4235
- },
4236
- "UpdateDomainNameRequest":{
4237
- "type":"structure",
4238
- "required":["domainName"],
4239
- "members":{
4240
- "domainName":{
4241
- "shape":"String",
4242
- "location":"uri",
4243
- "locationName":"domain_name"
4244
- },
4245
- "patchOperations":{"shape":"ListOfPatchOperation"}
4246
- }
4247
- },
4248
- "UpdateIntegrationRequest":{
4249
- "type":"structure",
4250
- "required":[
4251
- "restApiId",
4252
- "resourceId",
4253
- "httpMethod"
4254
- ],
4255
- "members":{
4256
- "restApiId":{
4257
- "shape":"String",
4258
- "location":"uri",
4259
- "locationName":"restapi_id"
4260
- },
4261
- "resourceId":{
4262
- "shape":"String",
4263
- "location":"uri",
4264
- "locationName":"resource_id"
4265
- },
4266
- "httpMethod":{
4267
- "shape":"String",
4268
- "location":"uri",
4269
- "locationName":"http_method"
4270
- },
4271
- "patchOperations":{"shape":"ListOfPatchOperation"}
4272
- }
4273
- },
4274
- "UpdateIntegrationResponseRequest":{
4275
- "type":"structure",
4276
- "required":[
4277
- "restApiId",
4278
- "resourceId",
4279
- "httpMethod",
4280
- "statusCode"
4281
- ],
4282
- "members":{
4283
- "restApiId":{
4284
- "shape":"String",
4285
- "location":"uri",
4286
- "locationName":"restapi_id"
4287
- },
4288
- "resourceId":{
4289
- "shape":"String",
4290
- "location":"uri",
4291
- "locationName":"resource_id"
4292
- },
4293
- "httpMethod":{
4294
- "shape":"String",
4295
- "location":"uri",
4296
- "locationName":"http_method"
4297
- },
4298
- "statusCode":{
4299
- "shape":"StatusCode",
4300
- "location":"uri",
4301
- "locationName":"status_code"
4302
- },
4303
- "patchOperations":{"shape":"ListOfPatchOperation"}
4304
- }
4305
- },
4306
- "UpdateMethodRequest":{
4307
- "type":"structure",
4308
- "required":[
4309
- "restApiId",
4310
- "resourceId",
4311
- "httpMethod"
4312
- ],
4313
- "members":{
4314
- "restApiId":{
4315
- "shape":"String",
4316
- "location":"uri",
4317
- "locationName":"restapi_id"
4318
- },
4319
- "resourceId":{
4320
- "shape":"String",
4321
- "location":"uri",
4322
- "locationName":"resource_id"
4323
- },
4324
- "httpMethod":{
4325
- "shape":"String",
4326
- "location":"uri",
4327
- "locationName":"http_method"
4328
- },
4329
- "patchOperations":{"shape":"ListOfPatchOperation"}
4330
- }
4331
- },
4332
- "UpdateMethodResponseRequest":{
4333
- "type":"structure",
4334
- "required":[
4335
- "restApiId",
4336
- "resourceId",
4337
- "httpMethod",
4338
- "statusCode"
4339
- ],
4340
- "members":{
4341
- "restApiId":{
4342
- "shape":"String",
4343
- "location":"uri",
4344
- "locationName":"restapi_id"
4345
- },
4346
- "resourceId":{
4347
- "shape":"String",
4348
- "location":"uri",
4349
- "locationName":"resource_id"
4350
- },
4351
- "httpMethod":{
4352
- "shape":"String",
4353
- "location":"uri",
4354
- "locationName":"http_method"
4355
- },
4356
- "statusCode":{
4357
- "shape":"StatusCode",
4358
- "location":"uri",
4359
- "locationName":"status_code"
4360
- },
4361
- "patchOperations":{"shape":"ListOfPatchOperation"}
4362
- }
4363
- },
4364
- "UpdateModelRequest":{
4365
- "type":"structure",
4366
- "required":[
4367
- "restApiId",
4368
- "modelName"
4369
- ],
4370
- "members":{
4371
- "restApiId":{
4372
- "shape":"String",
4373
- "location":"uri",
4374
- "locationName":"restapi_id"
4375
- },
4376
- "modelName":{
4377
- "shape":"String",
4378
- "location":"uri",
4379
- "locationName":"model_name"
4380
- },
4381
- "patchOperations":{"shape":"ListOfPatchOperation"}
4382
- }
4383
- },
4384
- "UpdateResourceRequest":{
4385
- "type":"structure",
4386
- "required":[
4387
- "restApiId",
4388
- "resourceId"
4389
- ],
4390
- "members":{
4391
- "restApiId":{
4392
- "shape":"String",
4393
- "location":"uri",
4394
- "locationName":"restapi_id"
4395
- },
4396
- "resourceId":{
4397
- "shape":"String",
4398
- "location":"uri",
4399
- "locationName":"resource_id"
4400
- },
4401
- "patchOperations":{"shape":"ListOfPatchOperation"}
4402
- }
4403
- },
4404
- "UpdateRestApiRequest":{
4405
- "type":"structure",
4406
- "required":["restApiId"],
4407
- "members":{
4408
- "restApiId":{
4409
- "shape":"String",
4410
- "location":"uri",
4411
- "locationName":"restapi_id"
4412
- },
4413
- "patchOperations":{"shape":"ListOfPatchOperation"}
4414
- }
4415
- },
4416
- "UpdateStageRequest":{
4417
- "type":"structure",
4418
- "required":[
4419
- "restApiId",
4420
- "stageName"
4421
- ],
4422
- "members":{
4423
- "restApiId":{
4424
- "shape":"String",
4425
- "location":"uri",
4426
- "locationName":"restapi_id"
4427
- },
4428
- "stageName":{
4429
- "shape":"String",
4430
- "location":"uri",
4431
- "locationName":"stage_name"
4432
- },
4433
- "patchOperations":{"shape":"ListOfPatchOperation"}
4434
- }
4435
- },
4436
- "UpdateUsagePlanRequest":{
4437
- "type":"structure",
4438
- "required":["usagePlanId"],
4439
- "members":{
4440
- "usagePlanId":{
4441
- "shape":"String",
4442
- "location":"uri",
4443
- "locationName":"usageplanId"
4444
- },
4445
- "patchOperations":{"shape":"ListOfPatchOperation"}
4446
- }
4447
- },
4448
- "UpdateUsageRequest":{
4449
- "type":"structure",
4450
- "required":[
4451
- "usagePlanId",
4452
- "keyId"
4453
- ],
4454
- "members":{
4455
- "usagePlanId":{
4456
- "shape":"String",
4457
- "location":"uri",
4458
- "locationName":"usageplanId"
4459
- },
4460
- "keyId":{
4461
- "shape":"String",
4462
- "location":"uri",
4463
- "locationName":"keyId"
4464
- },
4465
- "patchOperations":{"shape":"ListOfPatchOperation"}
4466
- }
4467
- },
4468
- "Usage":{
4469
- "type":"structure",
4470
- "members":{
4471
- "usagePlanId":{"shape":"String"},
4472
- "startDate":{"shape":"String"},
4473
- "endDate":{"shape":"String"},
4474
- "position":{"shape":"String"},
4475
- "items":{
4476
- "shape":"MapOfKeyUsages",
4477
- "locationName":"values"
4478
- }
4479
- }
4480
- },
4481
- "UsagePlan":{
4482
- "type":"structure",
4483
- "members":{
4484
- "id":{"shape":"String"},
4485
- "name":{"shape":"String"},
4486
- "description":{"shape":"String"},
4487
- "apiStages":{"shape":"ListOfApiStage"},
4488
- "throttle":{"shape":"ThrottleSettings"},
4489
- "quota":{"shape":"QuotaSettings"},
4490
- "productCode":{"shape":"String"}
4491
- }
4492
- },
4493
- "UsagePlanKey":{
4494
- "type":"structure",
4495
- "members":{
4496
- "id":{"shape":"String"},
4497
- "type":{"shape":"String"},
4498
- "value":{"shape":"String"},
4499
- "name":{"shape":"String"}
4500
- }
4501
- },
4502
- "UsagePlanKeys":{
4503
- "type":"structure",
4504
- "members":{
4505
- "position":{"shape":"String"},
4506
- "items":{
4507
- "shape":"ListOfUsagePlanKey",
4508
- "locationName":"item"
4509
- }
4510
- }
4511
- },
4512
- "UsagePlans":{
4513
- "type":"structure",
4514
- "members":{
4515
- "position":{"shape":"String"},
4516
- "items":{
4517
- "shape":"ListOfUsagePlan",
4518
- "locationName":"item"
4519
- }
4520
- }
4521
- }
4522
- }
4523
- }