aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,10 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListCertificates": {
4
- "limit_key": "MaxItems",
5
- "input_token": "NextToken",
6
- "output_token": "NextToken",
7
- "result_key": "CertificateSummaryList"
8
- }
9
- }
10
- }
@@ -1,3347 +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
- },
10
- "operations":{
11
- "CreateApiKey":{
12
- "name":"CreateApiKey",
13
- "http":{
14
- "method":"POST",
15
- "requestUri":"/apikeys",
16
- "responseCode":201
17
- },
18
- "input":{"shape":"CreateApiKeyRequest"},
19
- "output":{"shape":"ApiKey"},
20
- "errors":[
21
- {"shape":"UnauthorizedException"},
22
- {"shape":"NotFoundException"},
23
- {"shape":"TooManyRequestsException"},
24
- {"shape":"LimitExceededException"},
25
- {"shape":"BadRequestException"}
26
- ]
27
- },
28
- "CreateAuthorizer":{
29
- "name":"CreateAuthorizer",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/restapis/{restapi_id}/authorizers",
33
- "responseCode":201
34
- },
35
- "input":{"shape":"CreateAuthorizerRequest"},
36
- "output":{"shape":"Authorizer"},
37
- "errors":[
38
- {"shape":"BadRequestException"},
39
- {"shape":"UnauthorizedException"},
40
- {"shape":"NotFoundException"},
41
- {"shape":"LimitExceededException"},
42
- {"shape":"TooManyRequestsException"}
43
- ]
44
- },
45
- "CreateBasePathMapping":{
46
- "name":"CreateBasePathMapping",
47
- "http":{
48
- "method":"POST",
49
- "requestUri":"/domainnames/{domain_name}/basepathmappings",
50
- "responseCode":201
51
- },
52
- "input":{"shape":"CreateBasePathMappingRequest"},
53
- "output":{"shape":"BasePathMapping"},
54
- "errors":[
55
- {"shape":"UnauthorizedException"},
56
- {"shape":"ConflictException"},
57
- {"shape":"BadRequestException"},
58
- {"shape":"NotFoundException"},
59
- {"shape":"TooManyRequestsException"}
60
- ]
61
- },
62
- "CreateDeployment":{
63
- "name":"CreateDeployment",
64
- "http":{
65
- "method":"POST",
66
- "requestUri":"/restapis/{restapi_id}/deployments",
67
- "responseCode":201
68
- },
69
- "input":{"shape":"CreateDeploymentRequest"},
70
- "output":{"shape":"Deployment"},
71
- "errors":[
72
- {"shape":"UnauthorizedException"},
73
- {"shape":"BadRequestException"},
74
- {"shape":"NotFoundException"},
75
- {"shape":"ConflictException"},
76
- {"shape":"LimitExceededException"},
77
- {"shape":"TooManyRequestsException"},
78
- {"shape":"ServiceUnavailableException"}
79
- ]
80
- },
81
- "CreateDomainName":{
82
- "name":"CreateDomainName",
83
- "http":{
84
- "method":"POST",
85
- "requestUri":"/domainnames",
86
- "responseCode":201
87
- },
88
- "input":{"shape":"CreateDomainNameRequest"},
89
- "output":{"shape":"DomainName"},
90
- "errors":[
91
- {"shape":"UnauthorizedException"},
92
- {"shape":"BadRequestException"},
93
- {"shape":"ConflictException"},
94
- {"shape":"TooManyRequestsException"}
95
- ]
96
- },
97
- "CreateModel":{
98
- "name":"CreateModel",
99
- "http":{
100
- "method":"POST",
101
- "requestUri":"/restapis/{restapi_id}/models",
102
- "responseCode":201
103
- },
104
- "input":{"shape":"CreateModelRequest"},
105
- "output":{"shape":"Model"},
106
- "errors":[
107
- {"shape":"BadRequestException"},
108
- {"shape":"UnauthorizedException"},
109
- {"shape":"NotFoundException"},
110
- {"shape":"ConflictException"},
111
- {"shape":"LimitExceededException"},
112
- {"shape":"TooManyRequestsException"}
113
- ]
114
- },
115
- "CreateResource":{
116
- "name":"CreateResource",
117
- "http":{
118
- "method":"POST",
119
- "requestUri":"/restapis/{restapi_id}/resources/{parent_id}",
120
- "responseCode":201
121
- },
122
- "input":{"shape":"CreateResourceRequest"},
123
- "output":{"shape":"Resource"},
124
- "errors":[
125
- {"shape":"UnauthorizedException"},
126
- {"shape":"NotFoundException"},
127
- {"shape":"ConflictException"},
128
- {"shape":"LimitExceededException"},
129
- {"shape":"BadRequestException"},
130
- {"shape":"TooManyRequestsException"}
131
- ]
132
- },
133
- "CreateRestApi":{
134
- "name":"CreateRestApi",
135
- "http":{
136
- "method":"POST",
137
- "requestUri":"/restapis",
138
- "responseCode":201
139
- },
140
- "input":{"shape":"CreateRestApiRequest"},
141
- "output":{"shape":"RestApi"},
142
- "errors":[
143
- {"shape":"UnauthorizedException"},
144
- {"shape":"LimitExceededException"},
145
- {"shape":"BadRequestException"},
146
- {"shape":"TooManyRequestsException"}
147
- ]
148
- },
149
- "CreateStage":{
150
- "name":"CreateStage",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/restapis/{restapi_id}/stages",
154
- "responseCode":201
155
- },
156
- "input":{"shape":"CreateStageRequest"},
157
- "output":{"shape":"Stage"},
158
- "errors":[
159
- {"shape":"UnauthorizedException"},
160
- {"shape":"BadRequestException"},
161
- {"shape":"NotFoundException"},
162
- {"shape":"ConflictException"},
163
- {"shape":"LimitExceededException"},
164
- {"shape":"TooManyRequestsException"}
165
- ]
166
- },
167
- "DeleteApiKey":{
168
- "name":"DeleteApiKey",
169
- "http":{
170
- "method":"DELETE",
171
- "requestUri":"/apikeys/{api_Key}",
172
- "responseCode":202
173
- },
174
- "input":{"shape":"DeleteApiKeyRequest"},
175
- "errors":[
176
- {"shape":"UnauthorizedException"},
177
- {"shape":"NotFoundException"},
178
- {"shape":"TooManyRequestsException"}
179
- ]
180
- },
181
- "DeleteAuthorizer":{
182
- "name":"DeleteAuthorizer",
183
- "http":{
184
- "method":"DELETE",
185
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}",
186
- "responseCode":202
187
- },
188
- "input":{"shape":"DeleteAuthorizerRequest"},
189
- "errors":[
190
- {"shape":"UnauthorizedException"},
191
- {"shape":"NotFoundException"},
192
- {"shape":"TooManyRequestsException"},
193
- {"shape":"BadRequestException"},
194
- {"shape":"ConflictException"}
195
- ]
196
- },
197
- "DeleteBasePathMapping":{
198
- "name":"DeleteBasePathMapping",
199
- "http":{
200
- "method":"DELETE",
201
- "requestUri":"/domainnames/{domain_name}/basepathmappings/{base_path}",
202
- "responseCode":202
203
- },
204
- "input":{"shape":"DeleteBasePathMappingRequest"},
205
- "errors":[
206
- {"shape":"UnauthorizedException"},
207
- {"shape":"NotFoundException"},
208
- {"shape":"TooManyRequestsException"}
209
- ]
210
- },
211
- "DeleteClientCertificate":{
212
- "name":"DeleteClientCertificate",
213
- "http":{
214
- "method":"DELETE",
215
- "requestUri":"/clientcertificates/{clientcertificate_id}",
216
- "responseCode":202
217
- },
218
- "input":{"shape":"DeleteClientCertificateRequest"},
219
- "errors":[
220
- {"shape":"UnauthorizedException"},
221
- {"shape":"TooManyRequestsException"},
222
- {"shape":"BadRequestException"},
223
- {"shape":"NotFoundException"}
224
- ]
225
- },
226
- "DeleteDeployment":{
227
- "name":"DeleteDeployment",
228
- "http":{
229
- "method":"DELETE",
230
- "requestUri":"/restapis/{restapi_id}/deployments/{deployment_id}",
231
- "responseCode":202
232
- },
233
- "input":{"shape":"DeleteDeploymentRequest"},
234
- "errors":[
235
- {"shape":"UnauthorizedException"},
236
- {"shape":"NotFoundException"},
237
- {"shape":"BadRequestException"},
238
- {"shape":"TooManyRequestsException"}
239
- ]
240
- },
241
- "DeleteDomainName":{
242
- "name":"DeleteDomainName",
243
- "http":{
244
- "method":"DELETE",
245
- "requestUri":"/domainnames/{domain_name}",
246
- "responseCode":202
247
- },
248
- "input":{"shape":"DeleteDomainNameRequest"},
249
- "errors":[
250
- {"shape":"UnauthorizedException"},
251
- {"shape":"NotFoundException"},
252
- {"shape":"TooManyRequestsException"}
253
- ]
254
- },
255
- "DeleteIntegration":{
256
- "name":"DeleteIntegration",
257
- "http":{
258
- "method":"DELETE",
259
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration",
260
- "responseCode":204
261
- },
262
- "input":{"shape":"DeleteIntegrationRequest"},
263
- "errors":[
264
- {"shape":"UnauthorizedException"},
265
- {"shape":"NotFoundException"},
266
- {"shape":"TooManyRequestsException"}
267
- ]
268
- },
269
- "DeleteIntegrationResponse":{
270
- "name":"DeleteIntegrationResponse",
271
- "http":{
272
- "method":"DELETE",
273
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}",
274
- "responseCode":204
275
- },
276
- "input":{"shape":"DeleteIntegrationResponseRequest"},
277
- "errors":[
278
- {"shape":"UnauthorizedException"},
279
- {"shape":"NotFoundException"},
280
- {"shape":"TooManyRequestsException"}
281
- ]
282
- },
283
- "DeleteMethod":{
284
- "name":"DeleteMethod",
285
- "http":{
286
- "method":"DELETE",
287
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}",
288
- "responseCode":204
289
- },
290
- "input":{"shape":"DeleteMethodRequest"},
291
- "errors":[
292
- {"shape":"UnauthorizedException"},
293
- {"shape":"NotFoundException"},
294
- {"shape":"TooManyRequestsException"}
295
- ]
296
- },
297
- "DeleteMethodResponse":{
298
- "name":"DeleteMethodResponse",
299
- "http":{
300
- "method":"DELETE",
301
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}",
302
- "responseCode":204
303
- },
304
- "input":{"shape":"DeleteMethodResponseRequest"},
305
- "errors":[
306
- {"shape":"UnauthorizedException"},
307
- {"shape":"NotFoundException"},
308
- {"shape":"TooManyRequestsException"}
309
- ]
310
- },
311
- "DeleteModel":{
312
- "name":"DeleteModel",
313
- "http":{
314
- "method":"DELETE",
315
- "requestUri":"/restapis/{restapi_id}/models/{model_name}",
316
- "responseCode":202
317
- },
318
- "input":{"shape":"DeleteModelRequest"},
319
- "errors":[
320
- {"shape":"UnauthorizedException"},
321
- {"shape":"NotFoundException"},
322
- {"shape":"TooManyRequestsException"},
323
- {"shape":"BadRequestException"},
324
- {"shape":"ConflictException"}
325
- ]
326
- },
327
- "DeleteResource":{
328
- "name":"DeleteResource",
329
- "http":{
330
- "method":"DELETE",
331
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}",
332
- "responseCode":202
333
- },
334
- "input":{"shape":"DeleteResourceRequest"},
335
- "errors":[
336
- {"shape":"UnauthorizedException"},
337
- {"shape":"NotFoundException"},
338
- {"shape":"BadRequestException"},
339
- {"shape":"ConflictException"},
340
- {"shape":"TooManyRequestsException"}
341
- ]
342
- },
343
- "DeleteRestApi":{
344
- "name":"DeleteRestApi",
345
- "http":{
346
- "method":"DELETE",
347
- "requestUri":"/restapis/{restapi_id}",
348
- "responseCode":202
349
- },
350
- "input":{"shape":"DeleteRestApiRequest"},
351
- "errors":[
352
- {"shape":"UnauthorizedException"},
353
- {"shape":"NotFoundException"},
354
- {"shape":"TooManyRequestsException"},
355
- {"shape":"BadRequestException"}
356
- ]
357
- },
358
- "DeleteStage":{
359
- "name":"DeleteStage",
360
- "http":{
361
- "method":"DELETE",
362
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}",
363
- "responseCode":202
364
- },
365
- "input":{"shape":"DeleteStageRequest"},
366
- "errors":[
367
- {"shape":"UnauthorizedException"},
368
- {"shape":"NotFoundException"},
369
- {"shape":"TooManyRequestsException"},
370
- {"shape":"BadRequestException"}
371
- ]
372
- },
373
- "FlushStageAuthorizersCache":{
374
- "name":"FlushStageAuthorizersCache",
375
- "http":{
376
- "method":"DELETE",
377
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/cache/authorizers",
378
- "responseCode":202
379
- },
380
- "input":{"shape":"FlushStageAuthorizersCacheRequest"},
381
- "errors":[
382
- {"shape":"UnauthorizedException"},
383
- {"shape":"NotFoundException"},
384
- {"shape":"BadRequestException"},
385
- {"shape":"TooManyRequestsException"}
386
- ]
387
- },
388
- "FlushStageCache":{
389
- "name":"FlushStageCache",
390
- "http":{
391
- "method":"DELETE",
392
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/cache/data",
393
- "responseCode":202
394
- },
395
- "input":{"shape":"FlushStageCacheRequest"},
396
- "errors":[
397
- {"shape":"UnauthorizedException"},
398
- {"shape":"NotFoundException"},
399
- {"shape":"BadRequestException"},
400
- {"shape":"TooManyRequestsException"}
401
- ]
402
- },
403
- "GenerateClientCertificate":{
404
- "name":"GenerateClientCertificate",
405
- "http":{
406
- "method":"POST",
407
- "requestUri":"/clientcertificates",
408
- "responseCode":201
409
- },
410
- "input":{"shape":"GenerateClientCertificateRequest"},
411
- "output":{"shape":"ClientCertificate"},
412
- "errors":[
413
- {"shape":"UnauthorizedException"},
414
- {"shape":"TooManyRequestsException"},
415
- {"shape":"LimitExceededException"}
416
- ]
417
- },
418
- "GetAccount":{
419
- "name":"GetAccount",
420
- "http":{
421
- "method":"GET",
422
- "requestUri":"/account"
423
- },
424
- "input":{"shape":"GetAccountRequest"},
425
- "output":{"shape":"Account"},
426
- "errors":[
427
- {"shape":"UnauthorizedException"},
428
- {"shape":"NotFoundException"},
429
- {"shape":"TooManyRequestsException"}
430
- ]
431
- },
432
- "GetApiKey":{
433
- "name":"GetApiKey",
434
- "http":{
435
- "method":"GET",
436
- "requestUri":"/apikeys/{api_Key}"
437
- },
438
- "input":{"shape":"GetApiKeyRequest"},
439
- "output":{"shape":"ApiKey"},
440
- "errors":[
441
- {"shape":"UnauthorizedException"},
442
- {"shape":"NotFoundException"},
443
- {"shape":"TooManyRequestsException"}
444
- ]
445
- },
446
- "GetApiKeys":{
447
- "name":"GetApiKeys",
448
- "http":{
449
- "method":"GET",
450
- "requestUri":"/apikeys"
451
- },
452
- "input":{"shape":"GetApiKeysRequest"},
453
- "output":{"shape":"ApiKeys"},
454
- "errors":[
455
- {"shape":"BadRequestException"},
456
- {"shape":"UnauthorizedException"},
457
- {"shape":"TooManyRequestsException"}
458
- ]
459
- },
460
- "GetAuthorizer":{
461
- "name":"GetAuthorizer",
462
- "http":{
463
- "method":"GET",
464
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}"
465
- },
466
- "input":{"shape":"GetAuthorizerRequest"},
467
- "output":{"shape":"Authorizer"},
468
- "errors":[
469
- {"shape":"UnauthorizedException"},
470
- {"shape":"NotFoundException"},
471
- {"shape":"TooManyRequestsException"}
472
- ]
473
- },
474
- "GetAuthorizers":{
475
- "name":"GetAuthorizers",
476
- "http":{
477
- "method":"GET",
478
- "requestUri":"/restapis/{restapi_id}/authorizers"
479
- },
480
- "input":{"shape":"GetAuthorizersRequest"},
481
- "output":{"shape":"Authorizers"},
482
- "errors":[
483
- {"shape":"BadRequestException"},
484
- {"shape":"UnauthorizedException"},
485
- {"shape":"NotFoundException"},
486
- {"shape":"TooManyRequestsException"}
487
- ]
488
- },
489
- "GetBasePathMapping":{
490
- "name":"GetBasePathMapping",
491
- "http":{
492
- "method":"GET",
493
- "requestUri":"/domainnames/{domain_name}/basepathmappings/{base_path}"
494
- },
495
- "input":{"shape":"GetBasePathMappingRequest"},
496
- "output":{"shape":"BasePathMapping"},
497
- "errors":[
498
- {"shape":"UnauthorizedException"},
499
- {"shape":"NotFoundException"},
500
- {"shape":"TooManyRequestsException"}
501
- ]
502
- },
503
- "GetBasePathMappings":{
504
- "name":"GetBasePathMappings",
505
- "http":{
506
- "method":"GET",
507
- "requestUri":"/domainnames/{domain_name}/basepathmappings"
508
- },
509
- "input":{"shape":"GetBasePathMappingsRequest"},
510
- "output":{"shape":"BasePathMappings"},
511
- "errors":[
512
- {"shape":"UnauthorizedException"},
513
- {"shape":"NotFoundException"},
514
- {"shape":"TooManyRequestsException"}
515
- ]
516
- },
517
- "GetClientCertificate":{
518
- "name":"GetClientCertificate",
519
- "http":{
520
- "method":"GET",
521
- "requestUri":"/clientcertificates/{clientcertificate_id}"
522
- },
523
- "input":{"shape":"GetClientCertificateRequest"},
524
- "output":{"shape":"ClientCertificate"},
525
- "errors":[
526
- {"shape":"UnauthorizedException"},
527
- {"shape":"NotFoundException"},
528
- {"shape":"TooManyRequestsException"}
529
- ]
530
- },
531
- "GetClientCertificates":{
532
- "name":"GetClientCertificates",
533
- "http":{
534
- "method":"GET",
535
- "requestUri":"/clientcertificates"
536
- },
537
- "input":{"shape":"GetClientCertificatesRequest"},
538
- "output":{"shape":"ClientCertificates"},
539
- "errors":[
540
- {"shape":"BadRequestException"},
541
- {"shape":"UnauthorizedException"},
542
- {"shape":"TooManyRequestsException"}
543
- ]
544
- },
545
- "GetDeployment":{
546
- "name":"GetDeployment",
547
- "http":{
548
- "method":"GET",
549
- "requestUri":"/restapis/{restapi_id}/deployments/{deployment_id}"
550
- },
551
- "input":{"shape":"GetDeploymentRequest"},
552
- "output":{"shape":"Deployment"},
553
- "errors":[
554
- {"shape":"UnauthorizedException"},
555
- {"shape":"NotFoundException"},
556
- {"shape":"TooManyRequestsException"},
557
- {"shape":"ServiceUnavailableException"}
558
- ]
559
- },
560
- "GetDeployments":{
561
- "name":"GetDeployments",
562
- "http":{
563
- "method":"GET",
564
- "requestUri":"/restapis/{restapi_id}/deployments"
565
- },
566
- "input":{"shape":"GetDeploymentsRequest"},
567
- "output":{"shape":"Deployments"},
568
- "errors":[
569
- {"shape":"BadRequestException"},
570
- {"shape":"UnauthorizedException"},
571
- {"shape":"TooManyRequestsException"},
572
- {"shape":"ServiceUnavailableException"}
573
- ]
574
- },
575
- "GetDomainName":{
576
- "name":"GetDomainName",
577
- "http":{
578
- "method":"GET",
579
- "requestUri":"/domainnames/{domain_name}"
580
- },
581
- "input":{"shape":"GetDomainNameRequest"},
582
- "output":{"shape":"DomainName"},
583
- "errors":[
584
- {"shape":"UnauthorizedException"},
585
- {"shape":"NotFoundException"},
586
- {"shape":"ServiceUnavailableException"},
587
- {"shape":"TooManyRequestsException"}
588
- ]
589
- },
590
- "GetDomainNames":{
591
- "name":"GetDomainNames",
592
- "http":{
593
- "method":"GET",
594
- "requestUri":"/domainnames"
595
- },
596
- "input":{"shape":"GetDomainNamesRequest"},
597
- "output":{"shape":"DomainNames"},
598
- "errors":[
599
- {"shape":"BadRequestException"},
600
- {"shape":"UnauthorizedException"},
601
- {"shape":"TooManyRequestsException"}
602
- ]
603
- },
604
- "GetExport":{
605
- "name":"GetExport",
606
- "http":{
607
- "method":"GET",
608
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/exports/{export_type}",
609
- "responseCode":200
610
- },
611
- "input":{"shape":"GetExportRequest"},
612
- "output":{"shape":"ExportResponse"},
613
- "errors":[
614
- {"shape":"UnauthorizedException"},
615
- {"shape":"NotFoundException"},
616
- {"shape":"BadRequestException"},
617
- {"shape":"TooManyRequestsException"}
618
- ]
619
- },
620
- "GetIntegration":{
621
- "name":"GetIntegration",
622
- "http":{
623
- "method":"GET",
624
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration"
625
- },
626
- "input":{"shape":"GetIntegrationRequest"},
627
- "output":{"shape":"Integration"},
628
- "errors":[
629
- {"shape":"UnauthorizedException"},
630
- {"shape":"NotFoundException"},
631
- {"shape":"TooManyRequestsException"}
632
- ]
633
- },
634
- "GetIntegrationResponse":{
635
- "name":"GetIntegrationResponse",
636
- "http":{
637
- "method":"GET",
638
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}"
639
- },
640
- "input":{"shape":"GetIntegrationResponseRequest"},
641
- "output":{"shape":"IntegrationResponse"},
642
- "errors":[
643
- {"shape":"UnauthorizedException"},
644
- {"shape":"NotFoundException"},
645
- {"shape":"TooManyRequestsException"}
646
- ]
647
- },
648
- "GetMethod":{
649
- "name":"GetMethod",
650
- "http":{
651
- "method":"GET",
652
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}"
653
- },
654
- "input":{"shape":"GetMethodRequest"},
655
- "output":{"shape":"Method"},
656
- "errors":[
657
- {"shape":"UnauthorizedException"},
658
- {"shape":"NotFoundException"},
659
- {"shape":"TooManyRequestsException"}
660
- ]
661
- },
662
- "GetMethodResponse":{
663
- "name":"GetMethodResponse",
664
- "http":{
665
- "method":"GET",
666
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}"
667
- },
668
- "input":{"shape":"GetMethodResponseRequest"},
669
- "output":{"shape":"MethodResponse"},
670
- "errors":[
671
- {"shape":"UnauthorizedException"},
672
- {"shape":"NotFoundException"},
673
- {"shape":"TooManyRequestsException"}
674
- ]
675
- },
676
- "GetModel":{
677
- "name":"GetModel",
678
- "http":{
679
- "method":"GET",
680
- "requestUri":"/restapis/{restapi_id}/models/{model_name}"
681
- },
682
- "input":{"shape":"GetModelRequest"},
683
- "output":{"shape":"Model"},
684
- "errors":[
685
- {"shape":"UnauthorizedException"},
686
- {"shape":"NotFoundException"},
687
- {"shape":"TooManyRequestsException"}
688
- ]
689
- },
690
- "GetModelTemplate":{
691
- "name":"GetModelTemplate",
692
- "http":{
693
- "method":"GET",
694
- "requestUri":"/restapis/{restapi_id}/models/{model_name}/default_template"
695
- },
696
- "input":{"shape":"GetModelTemplateRequest"},
697
- "output":{"shape":"Template"},
698
- "errors":[
699
- {"shape":"UnauthorizedException"},
700
- {"shape":"NotFoundException"},
701
- {"shape":"BadRequestException"},
702
- {"shape":"TooManyRequestsException"}
703
- ]
704
- },
705
- "GetModels":{
706
- "name":"GetModels",
707
- "http":{
708
- "method":"GET",
709
- "requestUri":"/restapis/{restapi_id}/models"
710
- },
711
- "input":{"shape":"GetModelsRequest"},
712
- "output":{"shape":"Models"},
713
- "errors":[
714
- {"shape":"BadRequestException"},
715
- {"shape":"UnauthorizedException"},
716
- {"shape":"NotFoundException"},
717
- {"shape":"TooManyRequestsException"}
718
- ]
719
- },
720
- "GetResource":{
721
- "name":"GetResource",
722
- "http":{
723
- "method":"GET",
724
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}"
725
- },
726
- "input":{"shape":"GetResourceRequest"},
727
- "output":{"shape":"Resource"},
728
- "errors":[
729
- {"shape":"UnauthorizedException"},
730
- {"shape":"NotFoundException"},
731
- {"shape":"TooManyRequestsException"}
732
- ]
733
- },
734
- "GetResources":{
735
- "name":"GetResources",
736
- "http":{
737
- "method":"GET",
738
- "requestUri":"/restapis/{restapi_id}/resources"
739
- },
740
- "input":{"shape":"GetResourcesRequest"},
741
- "output":{"shape":"Resources"},
742
- "errors":[
743
- {"shape":"BadRequestException"},
744
- {"shape":"UnauthorizedException"},
745
- {"shape":"NotFoundException"},
746
- {"shape":"TooManyRequestsException"}
747
- ]
748
- },
749
- "GetRestApi":{
750
- "name":"GetRestApi",
751
- "http":{
752
- "method":"GET",
753
- "requestUri":"/restapis/{restapi_id}"
754
- },
755
- "input":{"shape":"GetRestApiRequest"},
756
- "output":{"shape":"RestApi"},
757
- "errors":[
758
- {"shape":"UnauthorizedException"},
759
- {"shape":"NotFoundException"},
760
- {"shape":"TooManyRequestsException"}
761
- ]
762
- },
763
- "GetRestApis":{
764
- "name":"GetRestApis",
765
- "http":{
766
- "method":"GET",
767
- "requestUri":"/restapis"
768
- },
769
- "input":{"shape":"GetRestApisRequest"},
770
- "output":{"shape":"RestApis"},
771
- "errors":[
772
- {"shape":"BadRequestException"},
773
- {"shape":"UnauthorizedException"},
774
- {"shape":"TooManyRequestsException"}
775
- ]
776
- },
777
- "GetSdk":{
778
- "name":"GetSdk",
779
- "http":{
780
- "method":"GET",
781
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}/sdks/{sdk_type}",
782
- "responseCode":200
783
- },
784
- "input":{"shape":"GetSdkRequest"},
785
- "output":{"shape":"SdkResponse"},
786
- "errors":[
787
- {"shape":"UnauthorizedException"},
788
- {"shape":"NotFoundException"},
789
- {"shape":"BadRequestException"},
790
- {"shape":"TooManyRequestsException"}
791
- ]
792
- },
793
- "GetStage":{
794
- "name":"GetStage",
795
- "http":{
796
- "method":"GET",
797
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}"
798
- },
799
- "input":{"shape":"GetStageRequest"},
800
- "output":{"shape":"Stage"},
801
- "errors":[
802
- {"shape":"UnauthorizedException"},
803
- {"shape":"NotFoundException"},
804
- {"shape":"TooManyRequestsException"}
805
- ]
806
- },
807
- "GetStages":{
808
- "name":"GetStages",
809
- "http":{
810
- "method":"GET",
811
- "requestUri":"/restapis/{restapi_id}/stages"
812
- },
813
- "input":{"shape":"GetStagesRequest"},
814
- "output":{"shape":"Stages"},
815
- "errors":[
816
- {"shape":"UnauthorizedException"},
817
- {"shape":"NotFoundException"},
818
- {"shape":"TooManyRequestsException"}
819
- ]
820
- },
821
- "ImportRestApi":{
822
- "name":"ImportRestApi",
823
- "http":{
824
- "method":"POST",
825
- "requestUri":"/restapis?mode=import",
826
- "responseCode":201
827
- },
828
- "input":{"shape":"ImportRestApiRequest"},
829
- "output":{"shape":"RestApi"},
830
- "errors":[
831
- {"shape":"UnauthorizedException"},
832
- {"shape":"LimitExceededException"},
833
- {"shape":"BadRequestException"},
834
- {"shape":"TooManyRequestsException"}
835
- ]
836
- },
837
- "PutIntegration":{
838
- "name":"PutIntegration",
839
- "http":{
840
- "method":"PUT",
841
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration",
842
- "responseCode":201
843
- },
844
- "input":{"shape":"PutIntegrationRequest"},
845
- "output":{"shape":"Integration"},
846
- "errors":[
847
- {"shape":"UnauthorizedException"},
848
- {"shape":"BadRequestException"},
849
- {"shape":"ConflictException"},
850
- {"shape":"NotFoundException"},
851
- {"shape":"TooManyRequestsException"}
852
- ]
853
- },
854
- "PutIntegrationResponse":{
855
- "name":"PutIntegrationResponse",
856
- "http":{
857
- "method":"PUT",
858
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}",
859
- "responseCode":201
860
- },
861
- "input":{"shape":"PutIntegrationResponseRequest"},
862
- "output":{"shape":"IntegrationResponse"},
863
- "errors":[
864
- {"shape":"UnauthorizedException"},
865
- {"shape":"NotFoundException"},
866
- {"shape":"LimitExceededException"},
867
- {"shape":"BadRequestException"},
868
- {"shape":"TooManyRequestsException"},
869
- {"shape":"ConflictException"}
870
- ]
871
- },
872
- "PutMethod":{
873
- "name":"PutMethod",
874
- "http":{
875
- "method":"PUT",
876
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}",
877
- "responseCode":201
878
- },
879
- "input":{"shape":"PutMethodRequest"},
880
- "output":{"shape":"Method"},
881
- "errors":[
882
- {"shape":"BadRequestException"},
883
- {"shape":"UnauthorizedException"},
884
- {"shape":"NotFoundException"},
885
- {"shape":"ConflictException"},
886
- {"shape":"LimitExceededException"},
887
- {"shape":"TooManyRequestsException"}
888
- ]
889
- },
890
- "PutMethodResponse":{
891
- "name":"PutMethodResponse",
892
- "http":{
893
- "method":"PUT",
894
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}",
895
- "responseCode":201
896
- },
897
- "input":{"shape":"PutMethodResponseRequest"},
898
- "output":{"shape":"MethodResponse"},
899
- "errors":[
900
- {"shape":"UnauthorizedException"},
901
- {"shape":"NotFoundException"},
902
- {"shape":"ConflictException"},
903
- {"shape":"LimitExceededException"},
904
- {"shape":"BadRequestException"},
905
- {"shape":"TooManyRequestsException"}
906
- ]
907
- },
908
- "PutRestApi":{
909
- "name":"PutRestApi",
910
- "http":{
911
- "method":"PUT",
912
- "requestUri":"/restapis/{restapi_id}"
913
- },
914
- "input":{"shape":"PutRestApiRequest"},
915
- "output":{"shape":"RestApi"},
916
- "errors":[
917
- {"shape":"UnauthorizedException"},
918
- {"shape":"LimitExceededException"},
919
- {"shape":"NotFoundException"},
920
- {"shape":"BadRequestException"},
921
- {"shape":"TooManyRequestsException"}
922
- ]
923
- },
924
- "TestInvokeAuthorizer":{
925
- "name":"TestInvokeAuthorizer",
926
- "http":{
927
- "method":"POST",
928
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}"
929
- },
930
- "input":{"shape":"TestInvokeAuthorizerRequest"},
931
- "output":{"shape":"TestInvokeAuthorizerResponse"},
932
- "errors":[
933
- {"shape":"BadRequestException"},
934
- {"shape":"UnauthorizedException"},
935
- {"shape":"NotFoundException"},
936
- {"shape":"TooManyRequestsException"}
937
- ]
938
- },
939
- "TestInvokeMethod":{
940
- "name":"TestInvokeMethod",
941
- "http":{
942
- "method":"POST",
943
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}"
944
- },
945
- "input":{"shape":"TestInvokeMethodRequest"},
946
- "output":{"shape":"TestInvokeMethodResponse"},
947
- "errors":[
948
- {"shape":"BadRequestException"},
949
- {"shape":"UnauthorizedException"},
950
- {"shape":"NotFoundException"},
951
- {"shape":"TooManyRequestsException"}
952
- ]
953
- },
954
- "UpdateAccount":{
955
- "name":"UpdateAccount",
956
- "http":{
957
- "method":"PATCH",
958
- "requestUri":"/account"
959
- },
960
- "input":{"shape":"UpdateAccountRequest"},
961
- "output":{"shape":"Account"},
962
- "errors":[
963
- {"shape":"UnauthorizedException"},
964
- {"shape":"BadRequestException"},
965
- {"shape":"NotFoundException"},
966
- {"shape":"TooManyRequestsException"}
967
- ]
968
- },
969
- "UpdateApiKey":{
970
- "name":"UpdateApiKey",
971
- "http":{
972
- "method":"PATCH",
973
- "requestUri":"/apikeys/{api_Key}"
974
- },
975
- "input":{"shape":"UpdateApiKeyRequest"},
976
- "output":{"shape":"ApiKey"},
977
- "errors":[
978
- {"shape":"UnauthorizedException"},
979
- {"shape":"NotFoundException"},
980
- {"shape":"BadRequestException"},
981
- {"shape":"TooManyRequestsException"}
982
- ]
983
- },
984
- "UpdateAuthorizer":{
985
- "name":"UpdateAuthorizer",
986
- "http":{
987
- "method":"PATCH",
988
- "requestUri":"/restapis/{restapi_id}/authorizers/{authorizer_id}"
989
- },
990
- "input":{"shape":"UpdateAuthorizerRequest"},
991
- "output":{"shape":"Authorizer"},
992
- "errors":[
993
- {"shape":"UnauthorizedException"},
994
- {"shape":"NotFoundException"},
995
- {"shape":"BadRequestException"},
996
- {"shape":"TooManyRequestsException"}
997
- ]
998
- },
999
- "UpdateBasePathMapping":{
1000
- "name":"UpdateBasePathMapping",
1001
- "http":{
1002
- "method":"PATCH",
1003
- "requestUri":"/domainnames/{domain_name}/basepathmappings/{base_path}"
1004
- },
1005
- "input":{"shape":"UpdateBasePathMappingRequest"},
1006
- "output":{"shape":"BasePathMapping"},
1007
- "errors":[
1008
- {"shape":"UnauthorizedException"},
1009
- {"shape":"NotFoundException"},
1010
- {"shape":"ConflictException"},
1011
- {"shape":"BadRequestException"},
1012
- {"shape":"TooManyRequestsException"}
1013
- ]
1014
- },
1015
- "UpdateClientCertificate":{
1016
- "name":"UpdateClientCertificate",
1017
- "http":{
1018
- "method":"PATCH",
1019
- "requestUri":"/clientcertificates/{clientcertificate_id}"
1020
- },
1021
- "input":{"shape":"UpdateClientCertificateRequest"},
1022
- "output":{"shape":"ClientCertificate"},
1023
- "errors":[
1024
- {"shape":"UnauthorizedException"},
1025
- {"shape":"TooManyRequestsException"},
1026
- {"shape":"BadRequestException"},
1027
- {"shape":"NotFoundException"}
1028
- ]
1029
- },
1030
- "UpdateDeployment":{
1031
- "name":"UpdateDeployment",
1032
- "http":{
1033
- "method":"PATCH",
1034
- "requestUri":"/restapis/{restapi_id}/deployments/{deployment_id}"
1035
- },
1036
- "input":{"shape":"UpdateDeploymentRequest"},
1037
- "output":{"shape":"Deployment"},
1038
- "errors":[
1039
- {"shape":"UnauthorizedException"},
1040
- {"shape":"NotFoundException"},
1041
- {"shape":"BadRequestException"},
1042
- {"shape":"TooManyRequestsException"},
1043
- {"shape":"ServiceUnavailableException"}
1044
- ]
1045
- },
1046
- "UpdateDomainName":{
1047
- "name":"UpdateDomainName",
1048
- "http":{
1049
- "method":"PATCH",
1050
- "requestUri":"/domainnames/{domain_name}"
1051
- },
1052
- "input":{"shape":"UpdateDomainNameRequest"},
1053
- "output":{"shape":"DomainName"},
1054
- "errors":[
1055
- {"shape":"UnauthorizedException"},
1056
- {"shape":"NotFoundException"},
1057
- {"shape":"BadRequestException"},
1058
- {"shape":"ConflictException"},
1059
- {"shape":"TooManyRequestsException"}
1060
- ]
1061
- },
1062
- "UpdateIntegration":{
1063
- "name":"UpdateIntegration",
1064
- "http":{
1065
- "method":"PATCH",
1066
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration"
1067
- },
1068
- "input":{"shape":"UpdateIntegrationRequest"},
1069
- "output":{"shape":"Integration"},
1070
- "errors":[
1071
- {"shape":"UnauthorizedException"},
1072
- {"shape":"NotFoundException"},
1073
- {"shape":"BadRequestException"},
1074
- {"shape":"TooManyRequestsException"},
1075
- {"shape":"ConflictException"}
1076
- ]
1077
- },
1078
- "UpdateIntegrationResponse":{
1079
- "name":"UpdateIntegrationResponse",
1080
- "http":{
1081
- "method":"PATCH",
1082
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/integration/responses/{status_code}"
1083
- },
1084
- "input":{"shape":"UpdateIntegrationResponseRequest"},
1085
- "output":{"shape":"IntegrationResponse"},
1086
- "errors":[
1087
- {"shape":"UnauthorizedException"},
1088
- {"shape":"NotFoundException"},
1089
- {"shape":"ConflictException"},
1090
- {"shape":"BadRequestException"},
1091
- {"shape":"TooManyRequestsException"}
1092
- ]
1093
- },
1094
- "UpdateMethod":{
1095
- "name":"UpdateMethod",
1096
- "http":{
1097
- "method":"PATCH",
1098
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}"
1099
- },
1100
- "input":{"shape":"UpdateMethodRequest"},
1101
- "output":{"shape":"Method"},
1102
- "errors":[
1103
- {"shape":"UnauthorizedException"},
1104
- {"shape":"NotFoundException"},
1105
- {"shape":"BadRequestException"},
1106
- {"shape":"ConflictException"},
1107
- {"shape":"TooManyRequestsException"}
1108
- ]
1109
- },
1110
- "UpdateMethodResponse":{
1111
- "name":"UpdateMethodResponse",
1112
- "http":{
1113
- "method":"PATCH",
1114
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}/methods/{http_method}/responses/{status_code}",
1115
- "responseCode":201
1116
- },
1117
- "input":{"shape":"UpdateMethodResponseRequest"},
1118
- "output":{"shape":"MethodResponse"},
1119
- "errors":[
1120
- {"shape":"UnauthorizedException"},
1121
- {"shape":"NotFoundException"},
1122
- {"shape":"ConflictException"},
1123
- {"shape":"LimitExceededException"},
1124
- {"shape":"BadRequestException"},
1125
- {"shape":"TooManyRequestsException"}
1126
- ]
1127
- },
1128
- "UpdateModel":{
1129
- "name":"UpdateModel",
1130
- "http":{
1131
- "method":"PATCH",
1132
- "requestUri":"/restapis/{restapi_id}/models/{model_name}"
1133
- },
1134
- "input":{"shape":"UpdateModelRequest"},
1135
- "output":{"shape":"Model"},
1136
- "errors":[
1137
- {"shape":"UnauthorizedException"},
1138
- {"shape":"NotFoundException"},
1139
- {"shape":"BadRequestException"},
1140
- {"shape":"ConflictException"},
1141
- {"shape":"TooManyRequestsException"}
1142
- ]
1143
- },
1144
- "UpdateResource":{
1145
- "name":"UpdateResource",
1146
- "http":{
1147
- "method":"PATCH",
1148
- "requestUri":"/restapis/{restapi_id}/resources/{resource_id}"
1149
- },
1150
- "input":{"shape":"UpdateResourceRequest"},
1151
- "output":{"shape":"Resource"},
1152
- "errors":[
1153
- {"shape":"UnauthorizedException"},
1154
- {"shape":"NotFoundException"},
1155
- {"shape":"ConflictException"},
1156
- {"shape":"BadRequestException"},
1157
- {"shape":"TooManyRequestsException"}
1158
- ]
1159
- },
1160
- "UpdateRestApi":{
1161
- "name":"UpdateRestApi",
1162
- "http":{
1163
- "method":"PATCH",
1164
- "requestUri":"/restapis/{restapi_id}"
1165
- },
1166
- "input":{"shape":"UpdateRestApiRequest"},
1167
- "output":{"shape":"RestApi"},
1168
- "errors":[
1169
- {"shape":"UnauthorizedException"},
1170
- {"shape":"NotFoundException"},
1171
- {"shape":"ConflictException"},
1172
- {"shape":"BadRequestException"},
1173
- {"shape":"TooManyRequestsException"}
1174
- ]
1175
- },
1176
- "UpdateStage":{
1177
- "name":"UpdateStage",
1178
- "http":{
1179
- "method":"PATCH",
1180
- "requestUri":"/restapis/{restapi_id}/stages/{stage_name}"
1181
- },
1182
- "input":{"shape":"UpdateStageRequest"},
1183
- "output":{"shape":"Stage"},
1184
- "errors":[
1185
- {"shape":"UnauthorizedException"},
1186
- {"shape":"NotFoundException"},
1187
- {"shape":"ConflictException"},
1188
- {"shape":"BadRequestException"},
1189
- {"shape":"TooManyRequestsException"}
1190
- ]
1191
- }
1192
- },
1193
- "shapes":{
1194
- "Account":{
1195
- "type":"structure",
1196
- "members":{
1197
- "cloudwatchRoleArn":{"shape":"String"},
1198
- "throttleSettings":{"shape":"ThrottleSettings"}
1199
- }
1200
- },
1201
- "ApiKey":{
1202
- "type":"structure",
1203
- "members":{
1204
- "id":{"shape":"String"},
1205
- "name":{"shape":"String"},
1206
- "description":{"shape":"String"},
1207
- "enabled":{"shape":"Boolean"},
1208
- "stageKeys":{"shape":"ListOfString"},
1209
- "createdDate":{"shape":"Timestamp"},
1210
- "lastUpdatedDate":{"shape":"Timestamp"}
1211
- }
1212
- },
1213
- "ApiKeys":{
1214
- "type":"structure",
1215
- "members":{
1216
- "position":{"shape":"String"},
1217
- "items":{
1218
- "shape":"ListOfApiKey",
1219
- "locationName":"item"
1220
- }
1221
- }
1222
- },
1223
- "Authorizer":{
1224
- "type":"structure",
1225
- "members":{
1226
- "id":{"shape":"String"},
1227
- "name":{"shape":"String"},
1228
- "type":{"shape":"AuthorizerType"},
1229
- "authType":{"shape":"String"},
1230
- "authorizerUri":{"shape":"String"},
1231
- "authorizerCredentials":{"shape":"String"},
1232
- "identitySource":{"shape":"String"},
1233
- "identityValidationExpression":{"shape":"String"},
1234
- "authorizerResultTtlInSeconds":{"shape":"NullableInteger"}
1235
- }
1236
- },
1237
- "AuthorizerType":{
1238
- "type":"string",
1239
- "enum":["TOKEN"]
1240
- },
1241
- "Authorizers":{
1242
- "type":"structure",
1243
- "members":{
1244
- "position":{"shape":"String"},
1245
- "items":{
1246
- "shape":"ListOfAuthorizer",
1247
- "locationName":"item"
1248
- }
1249
- }
1250
- },
1251
- "BadRequestException":{
1252
- "type":"structure",
1253
- "members":{
1254
- "message":{"shape":"String"}
1255
- },
1256
- "error":{"httpStatusCode":400},
1257
- "exception":true
1258
- },
1259
- "BasePathMapping":{
1260
- "type":"structure",
1261
- "members":{
1262
- "basePath":{"shape":"String"},
1263
- "restApiId":{"shape":"String"},
1264
- "stage":{"shape":"String"}
1265
- }
1266
- },
1267
- "BasePathMappings":{
1268
- "type":"structure",
1269
- "members":{
1270
- "position":{"shape":"String"},
1271
- "items":{
1272
- "shape":"ListOfBasePathMapping",
1273
- "locationName":"item"
1274
- }
1275
- }
1276
- },
1277
- "Blob":{"type":"blob"},
1278
- "Boolean":{"type":"boolean"},
1279
- "CacheClusterSize":{
1280
- "type":"string",
1281
- "enum":[
1282
- "0.5",
1283
- "1.6",
1284
- "6.1",
1285
- "13.5",
1286
- "28.4",
1287
- "58.2",
1288
- "118",
1289
- "237"
1290
- ]
1291
- },
1292
- "CacheClusterStatus":{
1293
- "type":"string",
1294
- "enum":[
1295
- "CREATE_IN_PROGRESS",
1296
- "AVAILABLE",
1297
- "DELETE_IN_PROGRESS",
1298
- "NOT_AVAILABLE",
1299
- "FLUSH_IN_PROGRESS"
1300
- ]
1301
- },
1302
- "ClientCertificate":{
1303
- "type":"structure",
1304
- "members":{
1305
- "clientCertificateId":{"shape":"String"},
1306
- "description":{"shape":"String"},
1307
- "pemEncodedCertificate":{"shape":"String"},
1308
- "createdDate":{"shape":"Timestamp"},
1309
- "expirationDate":{"shape":"Timestamp"}
1310
- }
1311
- },
1312
- "ClientCertificates":{
1313
- "type":"structure",
1314
- "members":{
1315
- "position":{"shape":"String"},
1316
- "items":{
1317
- "shape":"ListOfClientCertificate",
1318
- "locationName":"item"
1319
- }
1320
- }
1321
- },
1322
- "ConflictException":{
1323
- "type":"structure",
1324
- "members":{
1325
- "message":{"shape":"String"}
1326
- },
1327
- "error":{"httpStatusCode":409},
1328
- "exception":true
1329
- },
1330
- "CreateApiKeyRequest":{
1331
- "type":"structure",
1332
- "members":{
1333
- "name":{"shape":"String"},
1334
- "description":{"shape":"String"},
1335
- "enabled":{"shape":"Boolean"},
1336
- "stageKeys":{"shape":"ListOfStageKeys"}
1337
- }
1338
- },
1339
- "CreateAuthorizerRequest":{
1340
- "type":"structure",
1341
- "required":[
1342
- "restApiId",
1343
- "name",
1344
- "type",
1345
- "authorizerUri",
1346
- "identitySource"
1347
- ],
1348
- "members":{
1349
- "restApiId":{
1350
- "shape":"String",
1351
- "location":"uri",
1352
- "locationName":"restapi_id"
1353
- },
1354
- "name":{"shape":"String"},
1355
- "type":{"shape":"AuthorizerType"},
1356
- "authType":{"shape":"String"},
1357
- "authorizerUri":{"shape":"String"},
1358
- "authorizerCredentials":{"shape":"String"},
1359
- "identitySource":{"shape":"String"},
1360
- "identityValidationExpression":{"shape":"String"},
1361
- "authorizerResultTtlInSeconds":{"shape":"NullableInteger"}
1362
- }
1363
- },
1364
- "CreateBasePathMappingRequest":{
1365
- "type":"structure",
1366
- "required":[
1367
- "domainName",
1368
- "restApiId"
1369
- ],
1370
- "members":{
1371
- "domainName":{
1372
- "shape":"String",
1373
- "location":"uri",
1374
- "locationName":"domain_name"
1375
- },
1376
- "basePath":{"shape":"String"},
1377
- "restApiId":{"shape":"String"},
1378
- "stage":{"shape":"String"}
1379
- }
1380
- },
1381
- "CreateDeploymentRequest":{
1382
- "type":"structure",
1383
- "required":[
1384
- "restApiId",
1385
- "stageName"
1386
- ],
1387
- "members":{
1388
- "restApiId":{
1389
- "shape":"String",
1390
- "location":"uri",
1391
- "locationName":"restapi_id"
1392
- },
1393
- "stageName":{"shape":"String"},
1394
- "stageDescription":{"shape":"String"},
1395
- "description":{"shape":"String"},
1396
- "cacheClusterEnabled":{"shape":"NullableBoolean"},
1397
- "cacheClusterSize":{"shape":"CacheClusterSize"},
1398
- "variables":{"shape":"MapOfStringToString"}
1399
- }
1400
- },
1401
- "CreateDomainNameRequest":{
1402
- "type":"structure",
1403
- "required":[
1404
- "domainName",
1405
- "certificateName",
1406
- "certificateBody",
1407
- "certificatePrivateKey",
1408
- "certificateChain"
1409
- ],
1410
- "members":{
1411
- "domainName":{"shape":"String"},
1412
- "certificateName":{"shape":"String"},
1413
- "certificateBody":{"shape":"String"},
1414
- "certificatePrivateKey":{"shape":"String"},
1415
- "certificateChain":{"shape":"String"}
1416
- }
1417
- },
1418
- "CreateModelRequest":{
1419
- "type":"structure",
1420
- "required":[
1421
- "restApiId",
1422
- "name",
1423
- "contentType"
1424
- ],
1425
- "members":{
1426
- "restApiId":{
1427
- "shape":"String",
1428
- "location":"uri",
1429
- "locationName":"restapi_id"
1430
- },
1431
- "name":{"shape":"String"},
1432
- "description":{"shape":"String"},
1433
- "schema":{"shape":"String"},
1434
- "contentType":{"shape":"String"}
1435
- }
1436
- },
1437
- "CreateResourceRequest":{
1438
- "type":"structure",
1439
- "required":[
1440
- "restApiId",
1441
- "parentId",
1442
- "pathPart"
1443
- ],
1444
- "members":{
1445
- "restApiId":{
1446
- "shape":"String",
1447
- "location":"uri",
1448
- "locationName":"restapi_id"
1449
- },
1450
- "parentId":{
1451
- "shape":"String",
1452
- "location":"uri",
1453
- "locationName":"parent_id"
1454
- },
1455
- "pathPart":{"shape":"String"}
1456
- }
1457
- },
1458
- "CreateRestApiRequest":{
1459
- "type":"structure",
1460
- "required":["name"],
1461
- "members":{
1462
- "name":{"shape":"String"},
1463
- "description":{"shape":"String"},
1464
- "cloneFrom":{"shape":"String"}
1465
- }
1466
- },
1467
- "CreateStageRequest":{
1468
- "type":"structure",
1469
- "required":[
1470
- "restApiId",
1471
- "stageName",
1472
- "deploymentId"
1473
- ],
1474
- "members":{
1475
- "restApiId":{
1476
- "shape":"String",
1477
- "location":"uri",
1478
- "locationName":"restapi_id"
1479
- },
1480
- "stageName":{"shape":"String"},
1481
- "deploymentId":{"shape":"String"},
1482
- "description":{"shape":"String"},
1483
- "cacheClusterEnabled":{"shape":"Boolean"},
1484
- "cacheClusterSize":{"shape":"CacheClusterSize"},
1485
- "variables":{"shape":"MapOfStringToString"}
1486
- }
1487
- },
1488
- "DeleteApiKeyRequest":{
1489
- "type":"structure",
1490
- "required":["apiKey"],
1491
- "members":{
1492
- "apiKey":{
1493
- "shape":"String",
1494
- "location":"uri",
1495
- "locationName":"api_Key"
1496
- }
1497
- }
1498
- },
1499
- "DeleteAuthorizerRequest":{
1500
- "type":"structure",
1501
- "required":[
1502
- "restApiId",
1503
- "authorizerId"
1504
- ],
1505
- "members":{
1506
- "restApiId":{
1507
- "shape":"String",
1508
- "location":"uri",
1509
- "locationName":"restapi_id"
1510
- },
1511
- "authorizerId":{
1512
- "shape":"String",
1513
- "location":"uri",
1514
- "locationName":"authorizer_id"
1515
- }
1516
- }
1517
- },
1518
- "DeleteBasePathMappingRequest":{
1519
- "type":"structure",
1520
- "required":[
1521
- "domainName",
1522
- "basePath"
1523
- ],
1524
- "members":{
1525
- "domainName":{
1526
- "shape":"String",
1527
- "location":"uri",
1528
- "locationName":"domain_name"
1529
- },
1530
- "basePath":{
1531
- "shape":"String",
1532
- "location":"uri",
1533
- "locationName":"base_path"
1534
- }
1535
- }
1536
- },
1537
- "DeleteClientCertificateRequest":{
1538
- "type":"structure",
1539
- "required":["clientCertificateId"],
1540
- "members":{
1541
- "clientCertificateId":{
1542
- "shape":"String",
1543
- "location":"uri",
1544
- "locationName":"clientcertificate_id"
1545
- }
1546
- }
1547
- },
1548
- "DeleteDeploymentRequest":{
1549
- "type":"structure",
1550
- "required":[
1551
- "restApiId",
1552
- "deploymentId"
1553
- ],
1554
- "members":{
1555
- "restApiId":{
1556
- "shape":"String",
1557
- "location":"uri",
1558
- "locationName":"restapi_id"
1559
- },
1560
- "deploymentId":{
1561
- "shape":"String",
1562
- "location":"uri",
1563
- "locationName":"deployment_id"
1564
- }
1565
- }
1566
- },
1567
- "DeleteDomainNameRequest":{
1568
- "type":"structure",
1569
- "required":["domainName"],
1570
- "members":{
1571
- "domainName":{
1572
- "shape":"String",
1573
- "location":"uri",
1574
- "locationName":"domain_name"
1575
- }
1576
- }
1577
- },
1578
- "DeleteIntegrationRequest":{
1579
- "type":"structure",
1580
- "required":[
1581
- "restApiId",
1582
- "resourceId",
1583
- "httpMethod"
1584
- ],
1585
- "members":{
1586
- "restApiId":{
1587
- "shape":"String",
1588
- "location":"uri",
1589
- "locationName":"restapi_id"
1590
- },
1591
- "resourceId":{
1592
- "shape":"String",
1593
- "location":"uri",
1594
- "locationName":"resource_id"
1595
- },
1596
- "httpMethod":{
1597
- "shape":"String",
1598
- "location":"uri",
1599
- "locationName":"http_method"
1600
- }
1601
- }
1602
- },
1603
- "DeleteIntegrationResponseRequest":{
1604
- "type":"structure",
1605
- "required":[
1606
- "restApiId",
1607
- "resourceId",
1608
- "httpMethod",
1609
- "statusCode"
1610
- ],
1611
- "members":{
1612
- "restApiId":{
1613
- "shape":"String",
1614
- "location":"uri",
1615
- "locationName":"restapi_id"
1616
- },
1617
- "resourceId":{
1618
- "shape":"String",
1619
- "location":"uri",
1620
- "locationName":"resource_id"
1621
- },
1622
- "httpMethod":{
1623
- "shape":"String",
1624
- "location":"uri",
1625
- "locationName":"http_method"
1626
- },
1627
- "statusCode":{
1628
- "shape":"StatusCode",
1629
- "location":"uri",
1630
- "locationName":"status_code"
1631
- }
1632
- }
1633
- },
1634
- "DeleteMethodRequest":{
1635
- "type":"structure",
1636
- "required":[
1637
- "restApiId",
1638
- "resourceId",
1639
- "httpMethod"
1640
- ],
1641
- "members":{
1642
- "restApiId":{
1643
- "shape":"String",
1644
- "location":"uri",
1645
- "locationName":"restapi_id"
1646
- },
1647
- "resourceId":{
1648
- "shape":"String",
1649
- "location":"uri",
1650
- "locationName":"resource_id"
1651
- },
1652
- "httpMethod":{
1653
- "shape":"String",
1654
- "location":"uri",
1655
- "locationName":"http_method"
1656
- }
1657
- }
1658
- },
1659
- "DeleteMethodResponseRequest":{
1660
- "type":"structure",
1661
- "required":[
1662
- "restApiId",
1663
- "resourceId",
1664
- "httpMethod",
1665
- "statusCode"
1666
- ],
1667
- "members":{
1668
- "restApiId":{
1669
- "shape":"String",
1670
- "location":"uri",
1671
- "locationName":"restapi_id"
1672
- },
1673
- "resourceId":{
1674
- "shape":"String",
1675
- "location":"uri",
1676
- "locationName":"resource_id"
1677
- },
1678
- "httpMethod":{
1679
- "shape":"String",
1680
- "location":"uri",
1681
- "locationName":"http_method"
1682
- },
1683
- "statusCode":{
1684
- "shape":"StatusCode",
1685
- "location":"uri",
1686
- "locationName":"status_code"
1687
- }
1688
- }
1689
- },
1690
- "DeleteModelRequest":{
1691
- "type":"structure",
1692
- "required":[
1693
- "restApiId",
1694
- "modelName"
1695
- ],
1696
- "members":{
1697
- "restApiId":{
1698
- "shape":"String",
1699
- "location":"uri",
1700
- "locationName":"restapi_id"
1701
- },
1702
- "modelName":{
1703
- "shape":"String",
1704
- "location":"uri",
1705
- "locationName":"model_name"
1706
- }
1707
- }
1708
- },
1709
- "DeleteResourceRequest":{
1710
- "type":"structure",
1711
- "required":[
1712
- "restApiId",
1713
- "resourceId"
1714
- ],
1715
- "members":{
1716
- "restApiId":{
1717
- "shape":"String",
1718
- "location":"uri",
1719
- "locationName":"restapi_id"
1720
- },
1721
- "resourceId":{
1722
- "shape":"String",
1723
- "location":"uri",
1724
- "locationName":"resource_id"
1725
- }
1726
- }
1727
- },
1728
- "DeleteRestApiRequest":{
1729
- "type":"structure",
1730
- "required":["restApiId"],
1731
- "members":{
1732
- "restApiId":{
1733
- "shape":"String",
1734
- "location":"uri",
1735
- "locationName":"restapi_id"
1736
- }
1737
- }
1738
- },
1739
- "DeleteStageRequest":{
1740
- "type":"structure",
1741
- "required":[
1742
- "restApiId",
1743
- "stageName"
1744
- ],
1745
- "members":{
1746
- "restApiId":{
1747
- "shape":"String",
1748
- "location":"uri",
1749
- "locationName":"restapi_id"
1750
- },
1751
- "stageName":{
1752
- "shape":"String",
1753
- "location":"uri",
1754
- "locationName":"stage_name"
1755
- }
1756
- }
1757
- },
1758
- "Deployment":{
1759
- "type":"structure",
1760
- "members":{
1761
- "id":{"shape":"String"},
1762
- "description":{"shape":"String"},
1763
- "createdDate":{"shape":"Timestamp"},
1764
- "apiSummary":{"shape":"PathToMapOfMethodSnapshot"}
1765
- }
1766
- },
1767
- "Deployments":{
1768
- "type":"structure",
1769
- "members":{
1770
- "position":{"shape":"String"},
1771
- "items":{
1772
- "shape":"ListOfDeployment",
1773
- "locationName":"item"
1774
- }
1775
- }
1776
- },
1777
- "DomainName":{
1778
- "type":"structure",
1779
- "members":{
1780
- "domainName":{"shape":"String"},
1781
- "certificateName":{"shape":"String"},
1782
- "certificateUploadDate":{"shape":"Timestamp"},
1783
- "distributionDomainName":{"shape":"String"}
1784
- }
1785
- },
1786
- "DomainNames":{
1787
- "type":"structure",
1788
- "members":{
1789
- "position":{"shape":"String"},
1790
- "items":{
1791
- "shape":"ListOfDomainName",
1792
- "locationName":"item"
1793
- }
1794
- }
1795
- },
1796
- "Double":{"type":"double"},
1797
- "ExportResponse":{
1798
- "type":"structure",
1799
- "members":{
1800
- "contentType":{
1801
- "shape":"String",
1802
- "location":"header",
1803
- "locationName":"Content-Type"
1804
- },
1805
- "contentDisposition":{
1806
- "shape":"String",
1807
- "location":"header",
1808
- "locationName":"Content-Disposition"
1809
- },
1810
- "body":{"shape":"Blob"}
1811
- },
1812
- "payload":"body"
1813
- },
1814
- "FlushStageAuthorizersCacheRequest":{
1815
- "type":"structure",
1816
- "required":[
1817
- "restApiId",
1818
- "stageName"
1819
- ],
1820
- "members":{
1821
- "restApiId":{
1822
- "shape":"String",
1823
- "location":"uri",
1824
- "locationName":"restapi_id"
1825
- },
1826
- "stageName":{
1827
- "shape":"String",
1828
- "location":"uri",
1829
- "locationName":"stage_name"
1830
- }
1831
- }
1832
- },
1833
- "FlushStageCacheRequest":{
1834
- "type":"structure",
1835
- "required":[
1836
- "restApiId",
1837
- "stageName"
1838
- ],
1839
- "members":{
1840
- "restApiId":{
1841
- "shape":"String",
1842
- "location":"uri",
1843
- "locationName":"restapi_id"
1844
- },
1845
- "stageName":{
1846
- "shape":"String",
1847
- "location":"uri",
1848
- "locationName":"stage_name"
1849
- }
1850
- }
1851
- },
1852
- "GenerateClientCertificateRequest":{
1853
- "type":"structure",
1854
- "members":{
1855
- "description":{"shape":"String"}
1856
- }
1857
- },
1858
- "GetAccountRequest":{
1859
- "type":"structure",
1860
- "members":{
1861
- }
1862
- },
1863
- "GetApiKeyRequest":{
1864
- "type":"structure",
1865
- "required":["apiKey"],
1866
- "members":{
1867
- "apiKey":{
1868
- "shape":"String",
1869
- "location":"uri",
1870
- "locationName":"api_Key"
1871
- }
1872
- }
1873
- },
1874
- "GetApiKeysRequest":{
1875
- "type":"structure",
1876
- "members":{
1877
- "position":{
1878
- "shape":"String",
1879
- "location":"querystring",
1880
- "locationName":"position"
1881
- },
1882
- "limit":{
1883
- "shape":"NullableInteger",
1884
- "location":"querystring",
1885
- "locationName":"limit"
1886
- }
1887
- }
1888
- },
1889
- "GetAuthorizerRequest":{
1890
- "type":"structure",
1891
- "required":[
1892
- "restApiId",
1893
- "authorizerId"
1894
- ],
1895
- "members":{
1896
- "restApiId":{
1897
- "shape":"String",
1898
- "location":"uri",
1899
- "locationName":"restapi_id"
1900
- },
1901
- "authorizerId":{
1902
- "shape":"String",
1903
- "location":"uri",
1904
- "locationName":"authorizer_id"
1905
- }
1906
- }
1907
- },
1908
- "GetAuthorizersRequest":{
1909
- "type":"structure",
1910
- "required":["restApiId"],
1911
- "members":{
1912
- "restApiId":{
1913
- "shape":"String",
1914
- "location":"uri",
1915
- "locationName":"restapi_id"
1916
- },
1917
- "position":{
1918
- "shape":"String",
1919
- "location":"querystring",
1920
- "locationName":"position"
1921
- },
1922
- "limit":{
1923
- "shape":"NullableInteger",
1924
- "location":"querystring",
1925
- "locationName":"limit"
1926
- }
1927
- }
1928
- },
1929
- "GetBasePathMappingRequest":{
1930
- "type":"structure",
1931
- "required":[
1932
- "domainName",
1933
- "basePath"
1934
- ],
1935
- "members":{
1936
- "domainName":{
1937
- "shape":"String",
1938
- "location":"uri",
1939
- "locationName":"domain_name"
1940
- },
1941
- "basePath":{
1942
- "shape":"String",
1943
- "location":"uri",
1944
- "locationName":"base_path"
1945
- }
1946
- }
1947
- },
1948
- "GetBasePathMappingsRequest":{
1949
- "type":"structure",
1950
- "required":["domainName"],
1951
- "members":{
1952
- "domainName":{
1953
- "shape":"String",
1954
- "location":"uri",
1955
- "locationName":"domain_name"
1956
- },
1957
- "position":{
1958
- "shape":"String",
1959
- "location":"querystring",
1960
- "locationName":"position"
1961
- },
1962
- "limit":{
1963
- "shape":"NullableInteger",
1964
- "location":"querystring",
1965
- "locationName":"limit"
1966
- }
1967
- }
1968
- },
1969
- "GetClientCertificateRequest":{
1970
- "type":"structure",
1971
- "required":["clientCertificateId"],
1972
- "members":{
1973
- "clientCertificateId":{
1974
- "shape":"String",
1975
- "location":"uri",
1976
- "locationName":"clientcertificate_id"
1977
- }
1978
- }
1979
- },
1980
- "GetClientCertificatesRequest":{
1981
- "type":"structure",
1982
- "members":{
1983
- "position":{
1984
- "shape":"String",
1985
- "location":"querystring",
1986
- "locationName":"position"
1987
- },
1988
- "limit":{
1989
- "shape":"NullableInteger",
1990
- "location":"querystring",
1991
- "locationName":"limit"
1992
- }
1993
- }
1994
- },
1995
- "GetDeploymentRequest":{
1996
- "type":"structure",
1997
- "required":[
1998
- "restApiId",
1999
- "deploymentId"
2000
- ],
2001
- "members":{
2002
- "restApiId":{
2003
- "shape":"String",
2004
- "location":"uri",
2005
- "locationName":"restapi_id"
2006
- },
2007
- "deploymentId":{
2008
- "shape":"String",
2009
- "location":"uri",
2010
- "locationName":"deployment_id"
2011
- }
2012
- }
2013
- },
2014
- "GetDeploymentsRequest":{
2015
- "type":"structure",
2016
- "required":["restApiId"],
2017
- "members":{
2018
- "restApiId":{
2019
- "shape":"String",
2020
- "location":"uri",
2021
- "locationName":"restapi_id"
2022
- },
2023
- "position":{
2024
- "shape":"String",
2025
- "location":"querystring",
2026
- "locationName":"position"
2027
- },
2028
- "limit":{
2029
- "shape":"NullableInteger",
2030
- "location":"querystring",
2031
- "locationName":"limit"
2032
- }
2033
- }
2034
- },
2035
- "GetDomainNameRequest":{
2036
- "type":"structure",
2037
- "required":["domainName"],
2038
- "members":{
2039
- "domainName":{
2040
- "shape":"String",
2041
- "location":"uri",
2042
- "locationName":"domain_name"
2043
- }
2044
- }
2045
- },
2046
- "GetDomainNamesRequest":{
2047
- "type":"structure",
2048
- "members":{
2049
- "position":{
2050
- "shape":"String",
2051
- "location":"querystring",
2052
- "locationName":"position"
2053
- },
2054
- "limit":{
2055
- "shape":"NullableInteger",
2056
- "location":"querystring",
2057
- "locationName":"limit"
2058
- }
2059
- }
2060
- },
2061
- "GetExportRequest":{
2062
- "type":"structure",
2063
- "required":[
2064
- "restApiId",
2065
- "stageName",
2066
- "exportType"
2067
- ],
2068
- "members":{
2069
- "restApiId":{
2070
- "shape":"String",
2071
- "location":"uri",
2072
- "locationName":"restapi_id"
2073
- },
2074
- "stageName":{
2075
- "shape":"String",
2076
- "location":"uri",
2077
- "locationName":"stage_name"
2078
- },
2079
- "exportType":{
2080
- "shape":"String",
2081
- "location":"uri",
2082
- "locationName":"export_type"
2083
- },
2084
- "parameters":{
2085
- "shape":"MapOfStringToString",
2086
- "location":"querystring"
2087
- },
2088
- "accepts":{
2089
- "shape":"String",
2090
- "location":"header",
2091
- "locationName":"Accept"
2092
- }
2093
- }
2094
- },
2095
- "GetIntegrationRequest":{
2096
- "type":"structure",
2097
- "required":[
2098
- "restApiId",
2099
- "resourceId",
2100
- "httpMethod"
2101
- ],
2102
- "members":{
2103
- "restApiId":{
2104
- "shape":"String",
2105
- "location":"uri",
2106
- "locationName":"restapi_id"
2107
- },
2108
- "resourceId":{
2109
- "shape":"String",
2110
- "location":"uri",
2111
- "locationName":"resource_id"
2112
- },
2113
- "httpMethod":{
2114
- "shape":"String",
2115
- "location":"uri",
2116
- "locationName":"http_method"
2117
- }
2118
- }
2119
- },
2120
- "GetIntegrationResponseRequest":{
2121
- "type":"structure",
2122
- "required":[
2123
- "restApiId",
2124
- "resourceId",
2125
- "httpMethod",
2126
- "statusCode"
2127
- ],
2128
- "members":{
2129
- "restApiId":{
2130
- "shape":"String",
2131
- "location":"uri",
2132
- "locationName":"restapi_id"
2133
- },
2134
- "resourceId":{
2135
- "shape":"String",
2136
- "location":"uri",
2137
- "locationName":"resource_id"
2138
- },
2139
- "httpMethod":{
2140
- "shape":"String",
2141
- "location":"uri",
2142
- "locationName":"http_method"
2143
- },
2144
- "statusCode":{
2145
- "shape":"StatusCode",
2146
- "location":"uri",
2147
- "locationName":"status_code"
2148
- }
2149
- }
2150
- },
2151
- "GetMethodRequest":{
2152
- "type":"structure",
2153
- "required":[
2154
- "restApiId",
2155
- "resourceId",
2156
- "httpMethod"
2157
- ],
2158
- "members":{
2159
- "restApiId":{
2160
- "shape":"String",
2161
- "location":"uri",
2162
- "locationName":"restapi_id"
2163
- },
2164
- "resourceId":{
2165
- "shape":"String",
2166
- "location":"uri",
2167
- "locationName":"resource_id"
2168
- },
2169
- "httpMethod":{
2170
- "shape":"String",
2171
- "location":"uri",
2172
- "locationName":"http_method"
2173
- }
2174
- }
2175
- },
2176
- "GetMethodResponseRequest":{
2177
- "type":"structure",
2178
- "required":[
2179
- "restApiId",
2180
- "resourceId",
2181
- "httpMethod",
2182
- "statusCode"
2183
- ],
2184
- "members":{
2185
- "restApiId":{
2186
- "shape":"String",
2187
- "location":"uri",
2188
- "locationName":"restapi_id"
2189
- },
2190
- "resourceId":{
2191
- "shape":"String",
2192
- "location":"uri",
2193
- "locationName":"resource_id"
2194
- },
2195
- "httpMethod":{
2196
- "shape":"String",
2197
- "location":"uri",
2198
- "locationName":"http_method"
2199
- },
2200
- "statusCode":{
2201
- "shape":"StatusCode",
2202
- "location":"uri",
2203
- "locationName":"status_code"
2204
- }
2205
- }
2206
- },
2207
- "GetModelRequest":{
2208
- "type":"structure",
2209
- "required":[
2210
- "restApiId",
2211
- "modelName"
2212
- ],
2213
- "members":{
2214
- "restApiId":{
2215
- "shape":"String",
2216
- "location":"uri",
2217
- "locationName":"restapi_id"
2218
- },
2219
- "modelName":{
2220
- "shape":"String",
2221
- "location":"uri",
2222
- "locationName":"model_name"
2223
- },
2224
- "flatten":{
2225
- "shape":"Boolean",
2226
- "location":"querystring",
2227
- "locationName":"flatten"
2228
- }
2229
- }
2230
- },
2231
- "GetModelTemplateRequest":{
2232
- "type":"structure",
2233
- "required":[
2234
- "restApiId",
2235
- "modelName"
2236
- ],
2237
- "members":{
2238
- "restApiId":{
2239
- "shape":"String",
2240
- "location":"uri",
2241
- "locationName":"restapi_id"
2242
- },
2243
- "modelName":{
2244
- "shape":"String",
2245
- "location":"uri",
2246
- "locationName":"model_name"
2247
- }
2248
- }
2249
- },
2250
- "GetModelsRequest":{
2251
- "type":"structure",
2252
- "required":["restApiId"],
2253
- "members":{
2254
- "restApiId":{
2255
- "shape":"String",
2256
- "location":"uri",
2257
- "locationName":"restapi_id"
2258
- },
2259
- "position":{
2260
- "shape":"String",
2261
- "location":"querystring",
2262
- "locationName":"position"
2263
- },
2264
- "limit":{
2265
- "shape":"NullableInteger",
2266
- "location":"querystring",
2267
- "locationName":"limit"
2268
- }
2269
- }
2270
- },
2271
- "GetResourceRequest":{
2272
- "type":"structure",
2273
- "required":[
2274
- "restApiId",
2275
- "resourceId"
2276
- ],
2277
- "members":{
2278
- "restApiId":{
2279
- "shape":"String",
2280
- "location":"uri",
2281
- "locationName":"restapi_id"
2282
- },
2283
- "resourceId":{
2284
- "shape":"String",
2285
- "location":"uri",
2286
- "locationName":"resource_id"
2287
- }
2288
- }
2289
- },
2290
- "GetResourcesRequest":{
2291
- "type":"structure",
2292
- "required":["restApiId"],
2293
- "members":{
2294
- "restApiId":{
2295
- "shape":"String",
2296
- "location":"uri",
2297
- "locationName":"restapi_id"
2298
- },
2299
- "position":{
2300
- "shape":"String",
2301
- "location":"querystring",
2302
- "locationName":"position"
2303
- },
2304
- "limit":{
2305
- "shape":"NullableInteger",
2306
- "location":"querystring",
2307
- "locationName":"limit"
2308
- }
2309
- }
2310
- },
2311
- "GetRestApiRequest":{
2312
- "type":"structure",
2313
- "required":["restApiId"],
2314
- "members":{
2315
- "restApiId":{
2316
- "shape":"String",
2317
- "location":"uri",
2318
- "locationName":"restapi_id"
2319
- }
2320
- }
2321
- },
2322
- "GetRestApisRequest":{
2323
- "type":"structure",
2324
- "members":{
2325
- "position":{
2326
- "shape":"String",
2327
- "location":"querystring",
2328
- "locationName":"position"
2329
- },
2330
- "limit":{
2331
- "shape":"NullableInteger",
2332
- "location":"querystring",
2333
- "locationName":"limit"
2334
- }
2335
- }
2336
- },
2337
- "GetSdkRequest":{
2338
- "type":"structure",
2339
- "required":[
2340
- "restApiId",
2341
- "stageName",
2342
- "sdkType"
2343
- ],
2344
- "members":{
2345
- "restApiId":{
2346
- "shape":"String",
2347
- "location":"uri",
2348
- "locationName":"restapi_id"
2349
- },
2350
- "stageName":{
2351
- "shape":"String",
2352
- "location":"uri",
2353
- "locationName":"stage_name"
2354
- },
2355
- "sdkType":{
2356
- "shape":"String",
2357
- "location":"uri",
2358
- "locationName":"sdk_type"
2359
- },
2360
- "parameters":{
2361
- "shape":"MapOfStringToString",
2362
- "location":"querystring"
2363
- }
2364
- }
2365
- },
2366
- "GetStageRequest":{
2367
- "type":"structure",
2368
- "required":[
2369
- "restApiId",
2370
- "stageName"
2371
- ],
2372
- "members":{
2373
- "restApiId":{
2374
- "shape":"String",
2375
- "location":"uri",
2376
- "locationName":"restapi_id"
2377
- },
2378
- "stageName":{
2379
- "shape":"String",
2380
- "location":"uri",
2381
- "locationName":"stage_name"
2382
- }
2383
- }
2384
- },
2385
- "GetStagesRequest":{
2386
- "type":"structure",
2387
- "required":["restApiId"],
2388
- "members":{
2389
- "restApiId":{
2390
- "shape":"String",
2391
- "location":"uri",
2392
- "locationName":"restapi_id"
2393
- },
2394
- "deploymentId":{
2395
- "shape":"String",
2396
- "location":"querystring",
2397
- "locationName":"deploymentId"
2398
- }
2399
- }
2400
- },
2401
- "ImportRestApiRequest":{
2402
- "type":"structure",
2403
- "required":["body"],
2404
- "members":{
2405
- "failOnWarnings":{
2406
- "shape":"Boolean",
2407
- "location":"querystring",
2408
- "locationName":"failonwarnings"
2409
- },
2410
- "parameters":{
2411
- "shape":"MapOfStringToString",
2412
- "location":"querystring"
2413
- },
2414
- "body":{"shape":"Blob"}
2415
- },
2416
- "payload":"body"
2417
- },
2418
- "Integer":{"type":"integer"},
2419
- "Integration":{
2420
- "type":"structure",
2421
- "members":{
2422
- "type":{"shape":"IntegrationType"},
2423
- "httpMethod":{"shape":"String"},
2424
- "uri":{"shape":"String"},
2425
- "credentials":{"shape":"String"},
2426
- "requestParameters":{"shape":"MapOfStringToString"},
2427
- "requestTemplates":{"shape":"MapOfStringToString"},
2428
- "passthroughBehavior":{"shape":"String"},
2429
- "cacheNamespace":{"shape":"String"},
2430
- "cacheKeyParameters":{"shape":"ListOfString"},
2431
- "integrationResponses":{"shape":"MapOfIntegrationResponse"}
2432
- }
2433
- },
2434
- "IntegrationResponse":{
2435
- "type":"structure",
2436
- "members":{
2437
- "statusCode":{"shape":"StatusCode"},
2438
- "selectionPattern":{"shape":"String"},
2439
- "responseParameters":{"shape":"MapOfStringToString"},
2440
- "responseTemplates":{"shape":"MapOfStringToString"}
2441
- }
2442
- },
2443
- "IntegrationType":{
2444
- "type":"string",
2445
- "enum":[
2446
- "HTTP",
2447
- "AWS",
2448
- "MOCK"
2449
- ]
2450
- },
2451
- "LimitExceededException":{
2452
- "type":"structure",
2453
- "members":{
2454
- "retryAfterSeconds":{
2455
- "shape":"String",
2456
- "location":"header",
2457
- "locationName":"Retry-After"
2458
- },
2459
- "message":{"shape":"String"}
2460
- },
2461
- "error":{"httpStatusCode":429},
2462
- "exception":true
2463
- },
2464
- "ListOfApiKey":{
2465
- "type":"list",
2466
- "member":{"shape":"ApiKey"}
2467
- },
2468
- "ListOfAuthorizer":{
2469
- "type":"list",
2470
- "member":{"shape":"Authorizer"}
2471
- },
2472
- "ListOfBasePathMapping":{
2473
- "type":"list",
2474
- "member":{"shape":"BasePathMapping"}
2475
- },
2476
- "ListOfClientCertificate":{
2477
- "type":"list",
2478
- "member":{"shape":"ClientCertificate"}
2479
- },
2480
- "ListOfDeployment":{
2481
- "type":"list",
2482
- "member":{"shape":"Deployment"}
2483
- },
2484
- "ListOfDomainName":{
2485
- "type":"list",
2486
- "member":{"shape":"DomainName"}
2487
- },
2488
- "ListOfModel":{
2489
- "type":"list",
2490
- "member":{"shape":"Model"}
2491
- },
2492
- "ListOfPatchOperation":{
2493
- "type":"list",
2494
- "member":{"shape":"PatchOperation"}
2495
- },
2496
- "ListOfResource":{
2497
- "type":"list",
2498
- "member":{"shape":"Resource"}
2499
- },
2500
- "ListOfRestApi":{
2501
- "type":"list",
2502
- "member":{"shape":"RestApi"}
2503
- },
2504
- "ListOfStage":{
2505
- "type":"list",
2506
- "member":{"shape":"Stage"}
2507
- },
2508
- "ListOfStageKeys":{
2509
- "type":"list",
2510
- "member":{"shape":"StageKey"}
2511
- },
2512
- "ListOfString":{
2513
- "type":"list",
2514
- "member":{"shape":"String"}
2515
- },
2516
- "Long":{"type":"long"},
2517
- "MapOfHeaderValues":{
2518
- "type":"map",
2519
- "key":{"shape":"String"},
2520
- "value":{"shape":"String"}
2521
- },
2522
- "MapOfIntegrationResponse":{
2523
- "type":"map",
2524
- "key":{"shape":"String"},
2525
- "value":{"shape":"IntegrationResponse"}
2526
- },
2527
- "MapOfMethod":{
2528
- "type":"map",
2529
- "key":{"shape":"String"},
2530
- "value":{"shape":"Method"}
2531
- },
2532
- "MapOfMethodResponse":{
2533
- "type":"map",
2534
- "key":{"shape":"String"},
2535
- "value":{"shape":"MethodResponse"}
2536
- },
2537
- "MapOfMethodSettings":{
2538
- "type":"map",
2539
- "key":{"shape":"String"},
2540
- "value":{"shape":"MethodSetting"}
2541
- },
2542
- "MapOfMethodSnapshot":{
2543
- "type":"map",
2544
- "key":{"shape":"String"},
2545
- "value":{"shape":"MethodSnapshot"}
2546
- },
2547
- "MapOfStringToBoolean":{
2548
- "type":"map",
2549
- "key":{"shape":"String"},
2550
- "value":{"shape":"NullableBoolean"}
2551
- },
2552
- "MapOfStringToList":{
2553
- "type":"map",
2554
- "key":{"shape":"String"},
2555
- "value":{"shape":"ListOfString"}
2556
- },
2557
- "MapOfStringToString":{
2558
- "type":"map",
2559
- "key":{"shape":"String"},
2560
- "value":{"shape":"String"}
2561
- },
2562
- "Method":{
2563
- "type":"structure",
2564
- "members":{
2565
- "httpMethod":{"shape":"String"},
2566
- "authorizationType":{"shape":"String"},
2567
- "authorizerId":{"shape":"String"},
2568
- "apiKeyRequired":{"shape":"NullableBoolean"},
2569
- "requestParameters":{"shape":"MapOfStringToBoolean"},
2570
- "requestModels":{"shape":"MapOfStringToString"},
2571
- "methodResponses":{"shape":"MapOfMethodResponse"},
2572
- "methodIntegration":{"shape":"Integration"}
2573
- }
2574
- },
2575
- "MethodResponse":{
2576
- "type":"structure",
2577
- "members":{
2578
- "statusCode":{"shape":"StatusCode"},
2579
- "responseParameters":{"shape":"MapOfStringToBoolean"},
2580
- "responseModels":{"shape":"MapOfStringToString"}
2581
- }
2582
- },
2583
- "MethodSetting":{
2584
- "type":"structure",
2585
- "members":{
2586
- "metricsEnabled":{"shape":"Boolean"},
2587
- "loggingLevel":{"shape":"String"},
2588
- "dataTraceEnabled":{"shape":"Boolean"},
2589
- "throttlingBurstLimit":{"shape":"Integer"},
2590
- "throttlingRateLimit":{"shape":"Double"},
2591
- "cachingEnabled":{"shape":"Boolean"},
2592
- "cacheTtlInSeconds":{"shape":"Integer"},
2593
- "cacheDataEncrypted":{"shape":"Boolean"},
2594
- "requireAuthorizationForCacheControl":{"shape":"Boolean"},
2595
- "unauthorizedCacheControlHeaderStrategy":{"shape":"UnauthorizedCacheControlHeaderStrategy"}
2596
- }
2597
- },
2598
- "MethodSnapshot":{
2599
- "type":"structure",
2600
- "members":{
2601
- "authorizationType":{"shape":"String"},
2602
- "apiKeyRequired":{"shape":"Boolean"}
2603
- }
2604
- },
2605
- "Model":{
2606
- "type":"structure",
2607
- "members":{
2608
- "id":{"shape":"String"},
2609
- "name":{"shape":"String"},
2610
- "description":{"shape":"String"},
2611
- "schema":{"shape":"String"},
2612
- "contentType":{"shape":"String"}
2613
- }
2614
- },
2615
- "Models":{
2616
- "type":"structure",
2617
- "members":{
2618
- "position":{"shape":"String"},
2619
- "items":{
2620
- "shape":"ListOfModel",
2621
- "locationName":"item"
2622
- }
2623
- }
2624
- },
2625
- "NotFoundException":{
2626
- "type":"structure",
2627
- "members":{
2628
- "message":{"shape":"String"}
2629
- },
2630
- "error":{"httpStatusCode":404},
2631
- "exception":true
2632
- },
2633
- "NullableBoolean":{"type":"boolean"},
2634
- "NullableInteger":{"type":"integer"},
2635
- "PatchOperation":{
2636
- "type":"structure",
2637
- "members":{
2638
- "op":{"shape":"op"},
2639
- "path":{"shape":"String"},
2640
- "value":{"shape":"String"},
2641
- "from":{"shape":"String"}
2642
- }
2643
- },
2644
- "PathToMapOfMethodSnapshot":{
2645
- "type":"map",
2646
- "key":{"shape":"String"},
2647
- "value":{"shape":"MapOfMethodSnapshot"}
2648
- },
2649
- "PutIntegrationRequest":{
2650
- "type":"structure",
2651
- "required":[
2652
- "restApiId",
2653
- "resourceId",
2654
- "httpMethod",
2655
- "type"
2656
- ],
2657
- "members":{
2658
- "restApiId":{
2659
- "shape":"String",
2660
- "location":"uri",
2661
- "locationName":"restapi_id"
2662
- },
2663
- "resourceId":{
2664
- "shape":"String",
2665
- "location":"uri",
2666
- "locationName":"resource_id"
2667
- },
2668
- "httpMethod":{
2669
- "shape":"String",
2670
- "location":"uri",
2671
- "locationName":"http_method"
2672
- },
2673
- "type":{"shape":"IntegrationType"},
2674
- "integrationHttpMethod":{
2675
- "shape":"String",
2676
- "locationName":"httpMethod"
2677
- },
2678
- "uri":{"shape":"String"},
2679
- "credentials":{"shape":"String"},
2680
- "requestParameters":{"shape":"MapOfStringToString"},
2681
- "requestTemplates":{"shape":"MapOfStringToString"},
2682
- "passthroughBehavior":{"shape":"String"},
2683
- "cacheNamespace":{"shape":"String"},
2684
- "cacheKeyParameters":{"shape":"ListOfString"}
2685
- }
2686
- },
2687
- "PutIntegrationResponseRequest":{
2688
- "type":"structure",
2689
- "required":[
2690
- "restApiId",
2691
- "resourceId",
2692
- "httpMethod",
2693
- "statusCode"
2694
- ],
2695
- "members":{
2696
- "restApiId":{
2697
- "shape":"String",
2698
- "location":"uri",
2699
- "locationName":"restapi_id"
2700
- },
2701
- "resourceId":{
2702
- "shape":"String",
2703
- "location":"uri",
2704
- "locationName":"resource_id"
2705
- },
2706
- "httpMethod":{
2707
- "shape":"String",
2708
- "location":"uri",
2709
- "locationName":"http_method"
2710
- },
2711
- "statusCode":{
2712
- "shape":"StatusCode",
2713
- "location":"uri",
2714
- "locationName":"status_code"
2715
- },
2716
- "selectionPattern":{"shape":"String"},
2717
- "responseParameters":{"shape":"MapOfStringToString"},
2718
- "responseTemplates":{"shape":"MapOfStringToString"}
2719
- }
2720
- },
2721
- "PutMethodRequest":{
2722
- "type":"structure",
2723
- "required":[
2724
- "restApiId",
2725
- "resourceId",
2726
- "httpMethod",
2727
- "authorizationType"
2728
- ],
2729
- "members":{
2730
- "restApiId":{
2731
- "shape":"String",
2732
- "location":"uri",
2733
- "locationName":"restapi_id"
2734
- },
2735
- "resourceId":{
2736
- "shape":"String",
2737
- "location":"uri",
2738
- "locationName":"resource_id"
2739
- },
2740
- "httpMethod":{
2741
- "shape":"String",
2742
- "location":"uri",
2743
- "locationName":"http_method"
2744
- },
2745
- "authorizationType":{"shape":"String"},
2746
- "authorizerId":{"shape":"String"},
2747
- "apiKeyRequired":{"shape":"Boolean"},
2748
- "requestParameters":{"shape":"MapOfStringToBoolean"},
2749
- "requestModels":{"shape":"MapOfStringToString"}
2750
- }
2751
- },
2752
- "PutMethodResponseRequest":{
2753
- "type":"structure",
2754
- "required":[
2755
- "restApiId",
2756
- "resourceId",
2757
- "httpMethod",
2758
- "statusCode"
2759
- ],
2760
- "members":{
2761
- "restApiId":{
2762
- "shape":"String",
2763
- "location":"uri",
2764
- "locationName":"restapi_id"
2765
- },
2766
- "resourceId":{
2767
- "shape":"String",
2768
- "location":"uri",
2769
- "locationName":"resource_id"
2770
- },
2771
- "httpMethod":{
2772
- "shape":"String",
2773
- "location":"uri",
2774
- "locationName":"http_method"
2775
- },
2776
- "statusCode":{
2777
- "shape":"StatusCode",
2778
- "location":"uri",
2779
- "locationName":"status_code"
2780
- },
2781
- "responseParameters":{"shape":"MapOfStringToBoolean"},
2782
- "responseModels":{"shape":"MapOfStringToString"}
2783
- }
2784
- },
2785
- "PutMode":{
2786
- "type":"string",
2787
- "enum":[
2788
- "merge",
2789
- "overwrite"
2790
- ]
2791
- },
2792
- "PutRestApiRequest":{
2793
- "type":"structure",
2794
- "required":[
2795
- "restApiId",
2796
- "body"
2797
- ],
2798
- "members":{
2799
- "restApiId":{
2800
- "shape":"String",
2801
- "location":"uri",
2802
- "locationName":"restapi_id"
2803
- },
2804
- "mode":{
2805
- "shape":"PutMode",
2806
- "location":"querystring",
2807
- "locationName":"mode"
2808
- },
2809
- "failOnWarnings":{
2810
- "shape":"Boolean",
2811
- "location":"querystring",
2812
- "locationName":"failonwarnings"
2813
- },
2814
- "parameters":{
2815
- "shape":"MapOfStringToString",
2816
- "location":"querystring"
2817
- },
2818
- "body":{"shape":"Blob"}
2819
- },
2820
- "payload":"body"
2821
- },
2822
- "Resource":{
2823
- "type":"structure",
2824
- "members":{
2825
- "id":{"shape":"String"},
2826
- "parentId":{"shape":"String"},
2827
- "pathPart":{"shape":"String"},
2828
- "path":{"shape":"String"},
2829
- "resourceMethods":{"shape":"MapOfMethod"}
2830
- }
2831
- },
2832
- "Resources":{
2833
- "type":"structure",
2834
- "members":{
2835
- "position":{"shape":"String"},
2836
- "items":{
2837
- "shape":"ListOfResource",
2838
- "locationName":"item"
2839
- }
2840
- }
2841
- },
2842
- "RestApi":{
2843
- "type":"structure",
2844
- "members":{
2845
- "id":{"shape":"String"},
2846
- "name":{"shape":"String"},
2847
- "description":{"shape":"String"},
2848
- "createdDate":{"shape":"Timestamp"},
2849
- "warnings":{"shape":"ListOfString"}
2850
- }
2851
- },
2852
- "RestApis":{
2853
- "type":"structure",
2854
- "members":{
2855
- "position":{"shape":"String"},
2856
- "items":{
2857
- "shape":"ListOfRestApi",
2858
- "locationName":"item"
2859
- }
2860
- }
2861
- },
2862
- "SdkResponse":{
2863
- "type":"structure",
2864
- "members":{
2865
- "contentType":{
2866
- "shape":"String",
2867
- "location":"header",
2868
- "locationName":"Content-Type"
2869
- },
2870
- "contentDisposition":{
2871
- "shape":"String",
2872
- "location":"header",
2873
- "locationName":"Content-Disposition"
2874
- },
2875
- "body":{"shape":"Blob"}
2876
- },
2877
- "payload":"body"
2878
- },
2879
- "ServiceUnavailableException":{
2880
- "type":"structure",
2881
- "members":{
2882
- "retryAfterSeconds":{
2883
- "shape":"String",
2884
- "location":"header",
2885
- "locationName":"Retry-After"
2886
- },
2887
- "message":{"shape":"String"}
2888
- },
2889
- "error":{"httpStatusCode":503},
2890
- "exception":true,
2891
- "fault":true
2892
- },
2893
- "Stage":{
2894
- "type":"structure",
2895
- "members":{
2896
- "deploymentId":{"shape":"String"},
2897
- "clientCertificateId":{"shape":"String"},
2898
- "stageName":{"shape":"String"},
2899
- "description":{"shape":"String"},
2900
- "cacheClusterEnabled":{"shape":"Boolean"},
2901
- "cacheClusterSize":{"shape":"CacheClusterSize"},
2902
- "cacheClusterStatus":{"shape":"CacheClusterStatus"},
2903
- "methodSettings":{"shape":"MapOfMethodSettings"},
2904
- "variables":{"shape":"MapOfStringToString"},
2905
- "createdDate":{"shape":"Timestamp"},
2906
- "lastUpdatedDate":{"shape":"Timestamp"}
2907
- }
2908
- },
2909
- "StageKey":{
2910
- "type":"structure",
2911
- "members":{
2912
- "restApiId":{"shape":"String"},
2913
- "stageName":{"shape":"String"}
2914
- }
2915
- },
2916
- "Stages":{
2917
- "type":"structure",
2918
- "members":{
2919
- "item":{"shape":"ListOfStage"}
2920
- }
2921
- },
2922
- "StatusCode":{
2923
- "type":"string",
2924
- "pattern":"[1-5]\\d\\d"
2925
- },
2926
- "String":{"type":"string"},
2927
- "Template":{
2928
- "type":"structure",
2929
- "members":{
2930
- "value":{"shape":"String"}
2931
- }
2932
- },
2933
- "TestInvokeAuthorizerRequest":{
2934
- "type":"structure",
2935
- "required":[
2936
- "restApiId",
2937
- "authorizerId"
2938
- ],
2939
- "members":{
2940
- "restApiId":{
2941
- "shape":"String",
2942
- "location":"uri",
2943
- "locationName":"restapi_id"
2944
- },
2945
- "authorizerId":{
2946
- "shape":"String",
2947
- "location":"uri",
2948
- "locationName":"authorizer_id"
2949
- },
2950
- "headers":{"shape":"MapOfHeaderValues"},
2951
- "pathWithQueryString":{"shape":"String"},
2952
- "body":{"shape":"String"},
2953
- "stageVariables":{"shape":"MapOfStringToString"},
2954
- "additionalContext":{"shape":"MapOfStringToString"}
2955
- }
2956
- },
2957
- "TestInvokeAuthorizerResponse":{
2958
- "type":"structure",
2959
- "members":{
2960
- "clientStatus":{"shape":"Integer"},
2961
- "log":{"shape":"String"},
2962
- "latency":{"shape":"Long"},
2963
- "principalId":{"shape":"String"},
2964
- "policy":{"shape":"String"},
2965
- "authorization":{"shape":"MapOfStringToList"}
2966
- }
2967
- },
2968
- "TestInvokeMethodRequest":{
2969
- "type":"structure",
2970
- "required":[
2971
- "restApiId",
2972
- "resourceId",
2973
- "httpMethod"
2974
- ],
2975
- "members":{
2976
- "restApiId":{
2977
- "shape":"String",
2978
- "location":"uri",
2979
- "locationName":"restapi_id"
2980
- },
2981
- "resourceId":{
2982
- "shape":"String",
2983
- "location":"uri",
2984
- "locationName":"resource_id"
2985
- },
2986
- "httpMethod":{
2987
- "shape":"String",
2988
- "location":"uri",
2989
- "locationName":"http_method"
2990
- },
2991
- "pathWithQueryString":{"shape":"String"},
2992
- "body":{"shape":"String"},
2993
- "headers":{"shape":"MapOfHeaderValues"},
2994
- "clientCertificateId":{"shape":"String"},
2995
- "stageVariables":{"shape":"MapOfStringToString"}
2996
- }
2997
- },
2998
- "TestInvokeMethodResponse":{
2999
- "type":"structure",
3000
- "members":{
3001
- "status":{"shape":"Integer"},
3002
- "body":{"shape":"String"},
3003
- "headers":{"shape":"MapOfHeaderValues"},
3004
- "log":{"shape":"String"},
3005
- "latency":{"shape":"Long"}
3006
- }
3007
- },
3008
- "ThrottleSettings":{
3009
- "type":"structure",
3010
- "members":{
3011
- "burstLimit":{"shape":"Integer"},
3012
- "rateLimit":{"shape":"Double"}
3013
- }
3014
- },
3015
- "Timestamp":{"type":"timestamp"},
3016
- "TooManyRequestsException":{
3017
- "type":"structure",
3018
- "members":{
3019
- "retryAfterSeconds":{
3020
- "shape":"String",
3021
- "location":"header",
3022
- "locationName":"Retry-After"
3023
- },
3024
- "message":{"shape":"String"}
3025
- },
3026
- "error":{"httpStatusCode":429},
3027
- "exception":true
3028
- },
3029
- "UnauthorizedCacheControlHeaderStrategy":{
3030
- "type":"string",
3031
- "enum":[
3032
- "FAIL_WITH_403",
3033
- "SUCCEED_WITH_RESPONSE_HEADER",
3034
- "SUCCEED_WITHOUT_RESPONSE_HEADER"
3035
- ]
3036
- },
3037
- "UnauthorizedException":{
3038
- "type":"structure",
3039
- "members":{
3040
- "message":{"shape":"String"}
3041
- },
3042
- "error":{"httpStatusCode":401},
3043
- "exception":true
3044
- },
3045
- "UpdateAccountRequest":{
3046
- "type":"structure",
3047
- "members":{
3048
- "patchOperations":{"shape":"ListOfPatchOperation"}
3049
- }
3050
- },
3051
- "UpdateApiKeyRequest":{
3052
- "type":"structure",
3053
- "required":["apiKey"],
3054
- "members":{
3055
- "apiKey":{
3056
- "shape":"String",
3057
- "location":"uri",
3058
- "locationName":"api_Key"
3059
- },
3060
- "patchOperations":{"shape":"ListOfPatchOperation"}
3061
- }
3062
- },
3063
- "UpdateAuthorizerRequest":{
3064
- "type":"structure",
3065
- "required":[
3066
- "restApiId",
3067
- "authorizerId"
3068
- ],
3069
- "members":{
3070
- "restApiId":{
3071
- "shape":"String",
3072
- "location":"uri",
3073
- "locationName":"restapi_id"
3074
- },
3075
- "authorizerId":{
3076
- "shape":"String",
3077
- "location":"uri",
3078
- "locationName":"authorizer_id"
3079
- },
3080
- "patchOperations":{"shape":"ListOfPatchOperation"}
3081
- }
3082
- },
3083
- "UpdateBasePathMappingRequest":{
3084
- "type":"structure",
3085
- "required":[
3086
- "domainName",
3087
- "basePath"
3088
- ],
3089
- "members":{
3090
- "domainName":{
3091
- "shape":"String",
3092
- "location":"uri",
3093
- "locationName":"domain_name"
3094
- },
3095
- "basePath":{
3096
- "shape":"String",
3097
- "location":"uri",
3098
- "locationName":"base_path"
3099
- },
3100
- "patchOperations":{"shape":"ListOfPatchOperation"}
3101
- }
3102
- },
3103
- "UpdateClientCertificateRequest":{
3104
- "type":"structure",
3105
- "required":["clientCertificateId"],
3106
- "members":{
3107
- "clientCertificateId":{
3108
- "shape":"String",
3109
- "location":"uri",
3110
- "locationName":"clientcertificate_id"
3111
- },
3112
- "patchOperations":{"shape":"ListOfPatchOperation"}
3113
- }
3114
- },
3115
- "UpdateDeploymentRequest":{
3116
- "type":"structure",
3117
- "required":[
3118
- "restApiId",
3119
- "deploymentId"
3120
- ],
3121
- "members":{
3122
- "restApiId":{
3123
- "shape":"String",
3124
- "location":"uri",
3125
- "locationName":"restapi_id"
3126
- },
3127
- "deploymentId":{
3128
- "shape":"String",
3129
- "location":"uri",
3130
- "locationName":"deployment_id"
3131
- },
3132
- "patchOperations":{"shape":"ListOfPatchOperation"}
3133
- }
3134
- },
3135
- "UpdateDomainNameRequest":{
3136
- "type":"structure",
3137
- "required":["domainName"],
3138
- "members":{
3139
- "domainName":{
3140
- "shape":"String",
3141
- "location":"uri",
3142
- "locationName":"domain_name"
3143
- },
3144
- "patchOperations":{"shape":"ListOfPatchOperation"}
3145
- }
3146
- },
3147
- "UpdateIntegrationRequest":{
3148
- "type":"structure",
3149
- "required":[
3150
- "restApiId",
3151
- "resourceId",
3152
- "httpMethod"
3153
- ],
3154
- "members":{
3155
- "restApiId":{
3156
- "shape":"String",
3157
- "location":"uri",
3158
- "locationName":"restapi_id"
3159
- },
3160
- "resourceId":{
3161
- "shape":"String",
3162
- "location":"uri",
3163
- "locationName":"resource_id"
3164
- },
3165
- "httpMethod":{
3166
- "shape":"String",
3167
- "location":"uri",
3168
- "locationName":"http_method"
3169
- },
3170
- "patchOperations":{"shape":"ListOfPatchOperation"}
3171
- }
3172
- },
3173
- "UpdateIntegrationResponseRequest":{
3174
- "type":"structure",
3175
- "required":[
3176
- "restApiId",
3177
- "resourceId",
3178
- "httpMethod",
3179
- "statusCode"
3180
- ],
3181
- "members":{
3182
- "restApiId":{
3183
- "shape":"String",
3184
- "location":"uri",
3185
- "locationName":"restapi_id"
3186
- },
3187
- "resourceId":{
3188
- "shape":"String",
3189
- "location":"uri",
3190
- "locationName":"resource_id"
3191
- },
3192
- "httpMethod":{
3193
- "shape":"String",
3194
- "location":"uri",
3195
- "locationName":"http_method"
3196
- },
3197
- "statusCode":{
3198
- "shape":"StatusCode",
3199
- "location":"uri",
3200
- "locationName":"status_code"
3201
- },
3202
- "patchOperations":{"shape":"ListOfPatchOperation"}
3203
- }
3204
- },
3205
- "UpdateMethodRequest":{
3206
- "type":"structure",
3207
- "required":[
3208
- "restApiId",
3209
- "resourceId",
3210
- "httpMethod"
3211
- ],
3212
- "members":{
3213
- "restApiId":{
3214
- "shape":"String",
3215
- "location":"uri",
3216
- "locationName":"restapi_id"
3217
- },
3218
- "resourceId":{
3219
- "shape":"String",
3220
- "location":"uri",
3221
- "locationName":"resource_id"
3222
- },
3223
- "httpMethod":{
3224
- "shape":"String",
3225
- "location":"uri",
3226
- "locationName":"http_method"
3227
- },
3228
- "patchOperations":{"shape":"ListOfPatchOperation"}
3229
- }
3230
- },
3231
- "UpdateMethodResponseRequest":{
3232
- "type":"structure",
3233
- "required":[
3234
- "restApiId",
3235
- "resourceId",
3236
- "httpMethod",
3237
- "statusCode"
3238
- ],
3239
- "members":{
3240
- "restApiId":{
3241
- "shape":"String",
3242
- "location":"uri",
3243
- "locationName":"restapi_id"
3244
- },
3245
- "resourceId":{
3246
- "shape":"String",
3247
- "location":"uri",
3248
- "locationName":"resource_id"
3249
- },
3250
- "httpMethod":{
3251
- "shape":"String",
3252
- "location":"uri",
3253
- "locationName":"http_method"
3254
- },
3255
- "statusCode":{
3256
- "shape":"StatusCode",
3257
- "location":"uri",
3258
- "locationName":"status_code"
3259
- },
3260
- "patchOperations":{"shape":"ListOfPatchOperation"}
3261
- }
3262
- },
3263
- "UpdateModelRequest":{
3264
- "type":"structure",
3265
- "required":[
3266
- "restApiId",
3267
- "modelName"
3268
- ],
3269
- "members":{
3270
- "restApiId":{
3271
- "shape":"String",
3272
- "location":"uri",
3273
- "locationName":"restapi_id"
3274
- },
3275
- "modelName":{
3276
- "shape":"String",
3277
- "location":"uri",
3278
- "locationName":"model_name"
3279
- },
3280
- "patchOperations":{"shape":"ListOfPatchOperation"}
3281
- }
3282
- },
3283
- "UpdateResourceRequest":{
3284
- "type":"structure",
3285
- "required":[
3286
- "restApiId",
3287
- "resourceId"
3288
- ],
3289
- "members":{
3290
- "restApiId":{
3291
- "shape":"String",
3292
- "location":"uri",
3293
- "locationName":"restapi_id"
3294
- },
3295
- "resourceId":{
3296
- "shape":"String",
3297
- "location":"uri",
3298
- "locationName":"resource_id"
3299
- },
3300
- "patchOperations":{"shape":"ListOfPatchOperation"}
3301
- }
3302
- },
3303
- "UpdateRestApiRequest":{
3304
- "type":"structure",
3305
- "required":["restApiId"],
3306
- "members":{
3307
- "restApiId":{
3308
- "shape":"String",
3309
- "location":"uri",
3310
- "locationName":"restapi_id"
3311
- },
3312
- "patchOperations":{"shape":"ListOfPatchOperation"}
3313
- }
3314
- },
3315
- "UpdateStageRequest":{
3316
- "type":"structure",
3317
- "required":[
3318
- "restApiId",
3319
- "stageName"
3320
- ],
3321
- "members":{
3322
- "restApiId":{
3323
- "shape":"String",
3324
- "location":"uri",
3325
- "locationName":"restapi_id"
3326
- },
3327
- "stageName":{
3328
- "shape":"String",
3329
- "location":"uri",
3330
- "locationName":"stage_name"
3331
- },
3332
- "patchOperations":{"shape":"ListOfPatchOperation"}
3333
- }
3334
- },
3335
- "op":{
3336
- "type":"string",
3337
- "enum":[
3338
- "add",
3339
- "remove",
3340
- "replace",
3341
- "move",
3342
- "copy",
3343
- "test"
3344
- ]
3345
- }
3346
- }
3347
- }