aws-sdk-core 2.11.370 → 3.65.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1165) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -552
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +164 -11
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/http/async_response.rb +42 -0
  111. data/lib/seahorse/client/http/response.rb +10 -5
  112. data/lib/seahorse/client/logging/formatter.rb +2 -0
  113. data/lib/seahorse/client/logging/handler.rb +2 -0
  114. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  115. data/lib/seahorse/client/net_http/handler.rb +5 -0
  116. data/lib/seahorse/client/net_http/patches.rb +9 -1
  117. data/lib/seahorse/client/networking_error.rb +28 -0
  118. data/lib/seahorse/client/plugin.rb +66 -6
  119. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  120. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  121. data/lib/seahorse/client/plugins/h2.rb +64 -0
  122. data/lib/seahorse/client/plugins/logging.rb +17 -19
  123. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  124. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  125. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  126. data/lib/seahorse/client/request_context.rb +5 -0
  127. data/lib/seahorse/model/api.rb +33 -0
  128. data/lib/seahorse/model/authorizer.rb +21 -0
  129. data/lib/seahorse/model/operation.rb +11 -0
  130. data/lib/seahorse/model/shapes.rb +44 -2
  131. data/lib/seahorse/util.rb +1 -22
  132. metadata +91 -1042
  133. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  134. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  135. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  136. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  137. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  138. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  139. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  140. data/apis/acm/2015-12-08/api-2.json +0 -843
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/acm/2015-12-08/smoke.json +0 -18
  144. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  145. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  146. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  147. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  148. data/apis/amplify/2017-07-25/api-2.json +0 -2160
  149. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  150. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  151. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  152. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  153. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  154. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  155. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  156. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  157. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  158. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  159. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  160. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  161. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  162. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  163. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  164. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  165. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  166. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  167. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  168. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  169. data/apis/appmesh/2019-01-25/api-2.json +0 -3281
  170. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  171. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  172. data/apis/appstream/2016-12-01/api-2.json +0 -2340
  173. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  174. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  175. data/apis/appstream/2016-12-01/smoke.json +0 -11
  176. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  177. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  178. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  179. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  180. data/apis/athena/2017-05-18/api-2.json +0 -985
  181. data/apis/athena/2017-05-18/examples-1.json +0 -5
  182. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  183. data/apis/athena/2017-05-18/smoke.json +0 -11
  184. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  185. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  186. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  187. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  188. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  189. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  190. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  191. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  192. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  193. data/apis/backup/2018-11-15/api-2.json +0 -2150
  194. data/apis/backup/2018-11-15/examples-1.json +0 -5
  195. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  196. data/apis/batch/2016-08-10/api-2.json +0 -1128
  197. data/apis/batch/2016-08-10/examples-1.json +0 -589
  198. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  199. data/apis/batch/2016-08-10/smoke.json +0 -11
  200. data/apis/budgets/2016-10-20/api-2.json +0 -807
  201. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  202. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  203. data/apis/ce/2017-10-25/api-2.json +0 -1035
  204. data/apis/ce/2017-10-25/examples-1.json +0 -5
  205. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  206. data/apis/chime/2018-05-01/api-2.json +0 -2902
  207. data/apis/chime/2018-05-01/examples-1.json +0 -5
  208. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  209. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  210. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  211. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  212. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  213. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  214. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  215. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  216. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  217. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  218. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  219. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  220. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  221. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  222. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  223. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  224. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  225. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  226. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  227. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  228. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  229. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  230. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  231. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  232. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  233. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  234. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  235. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  239. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  243. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  246. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  247. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  248. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  249. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  250. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  251. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  252. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  253. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  254. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  255. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  256. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  257. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  258. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  259. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  261. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  264. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  265. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  266. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  267. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  268. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  269. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  270. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  271. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  272. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  273. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  274. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  275. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  276. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  277. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  278. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  279. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  280. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  281. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  282. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  283. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  284. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  285. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  286. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  287. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  288. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  289. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  290. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  291. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  292. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  293. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  294. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  295. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  296. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  297. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  298. data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
  299. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  300. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  301. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  302. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  303. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  304. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  305. data/apis/codestar/2017-04-19/smoke.json +0 -11
  306. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  307. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  308. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  309. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5371
  310. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  311. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  312. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  313. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  314. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  315. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  316. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  317. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  318. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  319. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  320. data/apis/config/2014-11-12/api-2.json +0 -3496
  321. data/apis/config/2014-11-12/examples-1.json +0 -5
  322. data/apis/config/2014-11-12/paginators-1.json +0 -21
  323. data/apis/config/2014-11-12/smoke.json +0 -19
  324. data/apis/connect/2017-08-08/api-2.json +0 -1379
  325. data/apis/connect/2017-08-08/examples-1.json +0 -5
  326. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  327. data/apis/cur/2017-01-06/api-2.json +0 -277
  328. data/apis/cur/2017-01-06/examples-1.json +0 -102
  329. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  330. data/apis/cur/2017-01-06/smoke.json +0 -11
  331. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  332. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  333. data/apis/datasync/2018-11-09/api-2.json +0 -1337
  334. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  335. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  336. data/apis/dax/2017-04-19/api-2.json +0 -1140
  337. data/apis/dax/2017-04-19/examples-1.json +0 -5
  338. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  339. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  340. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  341. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  342. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  343. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  344. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  345. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  346. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  347. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  348. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  349. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  350. data/apis/discovery/2015-11-01/smoke.json +0 -11
  351. data/apis/dlm/2018-01-12/api-2.json +0 -444
  352. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  353. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  354. data/apis/dms/2016-01-01/api-2.json +0 -2291
  355. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  356. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  357. data/apis/dms/2016-01-01/smoke.json +0 -18
  358. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  359. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  360. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  361. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  362. data/apis/docdb/2014-10-31/smoke.json +0 -18
  363. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  364. data/apis/ds/2015-04-16/api-2.json +0 -2634
  365. data/apis/ds/2015-04-16/examples-1.json +0 -5
  366. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  367. data/apis/ds/2015-04-16/smoke.json +0 -20
  368. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  369. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  370. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  371. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  372. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  373. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  374. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  375. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  376. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  377. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  378. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  379. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  380. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  381. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  382. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  383. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  384. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  385. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  386. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  387. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  388. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  389. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  390. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  391. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  392. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  393. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  394. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  395. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  396. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  397. data/apis/ec2/2016-11-15/api-2.json +0 -25518
  398. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  399. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  400. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  401. data/apis/ec2/2016-11-15/smoke.json +0 -20
  402. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  403. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  404. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  405. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  406. data/apis/ecr/2015-09-21/smoke.json +0 -18
  407. data/apis/ecs/2014-11-13/api-2.json +0 -2902
  408. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  409. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  410. data/apis/ecs/2014-11-13/smoke.json +0 -18
  411. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  412. data/apis/eks/2017-11-01/api-2.json +0 -750
  413. data/apis/eks/2017-11-01/examples-1.json +0 -114
  414. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  415. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  416. data/apis/elasticache/2015-02-02/api-2.json +0 -3152
  417. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  418. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  419. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  420. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  421. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  422. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  423. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  424. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  425. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  426. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  427. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  428. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  429. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  430. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  431. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  432. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  433. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  434. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  435. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  436. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  437. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  438. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  439. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  440. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  441. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  442. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  443. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  444. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  445. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  446. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  447. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  448. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  449. data/apis/email/2010-12-01/api-2.json +0 -3182
  450. data/apis/email/2010-12-01/examples-1.json +0 -1021
  451. data/apis/email/2010-12-01/paginators-1.json +0 -18
  452. data/apis/email/2010-12-01/smoke.json +0 -18
  453. data/apis/email/2010-12-01/waiters-2.json +0 -18
  454. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  455. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  456. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  457. data/apis/es/2015-01-01/api-2.json +0 -1572
  458. data/apis/es/2015-01-01/examples-1.json +0 -5
  459. data/apis/es/2015-01-01/paginators-1.json +0 -29
  460. data/apis/es/2015-01-01/smoke.json +0 -18
  461. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  462. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  463. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  464. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  465. data/apis/events/2015-10-07/api-2.json +0 -1462
  466. data/apis/events/2015-10-07/examples-1.json +0 -5
  467. data/apis/events/2015-10-07/paginators-1.json +0 -4
  468. data/apis/events/2015-10-07/smoke.json +0 -18
  469. data/apis/firehose/2015-08-04/api-2.json +0 -1383
  470. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  471. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  472. data/apis/firehose/2015-08-04/smoke.json +0 -18
  473. data/apis/fms/2018-01-01/api-2.json +0 -692
  474. data/apis/fms/2018-01-01/examples-1.json +0 -5
  475. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  476. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  477. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  478. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  479. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  480. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  481. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  482. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  483. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  484. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  485. data/apis/gamelift/2015-10-01/api-2.json +0 -3470
  486. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  487. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  488. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  489. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  490. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  491. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  492. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  493. data/apis/glacier/2012-06-01/smoke.json +0 -18
  494. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  495. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  496. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  497. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  498. data/apis/glue/2017-03-31/api-2.json +0 -6297
  499. data/apis/glue/2017-03-31/examples-1.json +0 -5
  500. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  501. data/apis/glue/2017-03-31/smoke.json +0 -11
  502. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  503. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  504. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  505. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  506. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  507. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  508. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  509. data/apis/health/2016-08-04/api-2.json +0 -554
  510. data/apis/health/2016-08-04/examples-1.json +0 -5
  511. data/apis/health/2016-08-04/paginators-1.json +0 -31
  512. data/apis/health/2016-08-04/smoke.json +0 -11
  513. data/apis/iam/2010-05-08/api-2.json +0 -5778
  514. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  515. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  516. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  517. data/apis/iam/2010-05-08/smoke.json +0 -18
  518. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  519. data/apis/importexport/2010-06-01/api-2.json +0 -667
  520. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  521. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  522. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  523. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  524. data/apis/inspector/2016-02-16/smoke.json +0 -18
  525. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  526. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  527. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  528. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  529. data/apis/iot/2015-05-28/api-2.json +0 -9676
  530. data/apis/iot/2015-05-28/examples-1.json +0 -5
  531. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  532. data/apis/iot/2015-05-28/smoke.json +0 -18
  533. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  534. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  535. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  536. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  537. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  538. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  539. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  540. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  541. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  542. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  543. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  544. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  545. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  546. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  547. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  548. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  549. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  550. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  551. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  552. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  553. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  554. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  555. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  556. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  557. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  558. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  559. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  560. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  561. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  562. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  563. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  564. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  565. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  566. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  567. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  568. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  569. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  570. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  571. data/apis/kms/2014-11-01/api-2.json +0 -1834
  572. data/apis/kms/2014-11-01/examples-1.json +0 -906
  573. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  574. data/apis/kms/2014-11-01/smoke.json +0 -19
  575. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  576. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  577. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  578. data/apis/lambda/2014-11-11/api-2.json +0 -668
  579. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  580. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  581. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  582. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  583. data/apis/lambda/2015-03-31/smoke.json +0 -18
  584. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  585. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  586. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  587. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  588. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  589. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  590. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  591. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  592. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  593. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  594. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  595. data/apis/logs/2014-03-28/api-2.json +0 -1701
  596. data/apis/logs/2014-03-28/examples-1.json +0 -5
  597. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  598. data/apis/logs/2014-03-28/smoke.json +0 -19
  599. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  600. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  601. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  602. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  603. data/apis/macie/2017-12-19/api-2.json +0 -365
  604. data/apis/macie/2017-12-19/examples-1.json +0 -5
  605. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  606. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  607. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  608. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  609. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
  610. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  611. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  612. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  613. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  614. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  615. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
  616. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  617. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  618. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  619. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  620. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  621. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  622. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  623. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  624. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  625. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  626. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  627. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  628. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  629. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  630. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  631. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  632. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  633. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  634. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  635. data/apis/mobile/2017-07-01/api-2.json +0 -551
  636. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  637. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  638. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  639. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  640. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  641. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  642. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  643. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  644. data/apis/mq/2017-11-27/api-2.json +0 -2538
  645. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  646. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  647. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  648. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  649. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  650. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  651. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  652. data/apis/neptune/2014-10-31/smoke.json +0 -18
  653. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  654. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  655. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  656. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  657. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  658. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  659. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  660. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  661. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  662. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  663. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  664. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  665. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  666. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  667. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  668. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  669. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  670. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  671. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  672. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  673. data/apis/personalize/2018-05-22/api-2.json +0 -1703
  674. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  675. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  676. data/apis/pi/2018-02-27/api-2.json +0 -253
  677. data/apis/pi/2018-02-27/examples-1.json +0 -5
  678. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  679. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  680. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  681. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  682. data/apis/pinpoint/2016-12-01/api-2.json +0 -9678
  683. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  684. data/apis/polly/2016-06-10/api-2.json +0 -830
  685. data/apis/polly/2016-06-10/examples-1.json +0 -171
  686. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  687. data/apis/polly/2016-06-10/smoke.json +0 -11
  688. data/apis/pricing/2017-10-15/api-2.json +0 -227
  689. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  690. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  691. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  692. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  693. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  694. data/apis/qldb/2019-01-02/api-2.json +0 -776
  695. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  696. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  697. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  698. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  699. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  700. data/apis/ram/2018-01-04/api-2.json +0 -1021
  701. data/apis/ram/2018-01-04/examples-1.json +0 -5
  702. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  703. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  704. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  705. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  706. data/apis/rds/2013-01-10/api-2.json +0 -2903
  707. data/apis/rds/2013-01-10/examples-1.json +0 -5
  708. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  709. data/apis/rds/2013-01-10/smoke.json +0 -18
  710. data/apis/rds/2013-02-12/api-2.json +0 -3059
  711. data/apis/rds/2013-02-12/examples-1.json +0 -5
  712. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  713. data/apis/rds/2013-02-12/smoke.json +0 -18
  714. data/apis/rds/2013-09-09/api-2.json +0 -3160
  715. data/apis/rds/2013-09-09/examples-1.json +0 -5
  716. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  717. data/apis/rds/2013-09-09/smoke.json +0 -18
  718. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  719. data/apis/rds/2014-09-01/api-2.json +0 -3273
  720. data/apis/rds/2014-09-01/examples-1.json +0 -5
  721. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  722. data/apis/rds/2014-09-01/smoke.json +0 -18
  723. data/apis/rds/2014-10-31/api-2.json +0 -6588
  724. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  725. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  726. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  727. data/apis/rds/2014-10-31/smoke.json +0 -18
  728. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  729. data/apis/rds/2015-11-12/api-2.json +0 -5509
  730. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  731. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  732. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  733. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  734. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  735. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  736. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  737. data/apis/redshift/2012-12-01/smoke.json +0 -18
  738. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  739. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  740. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  741. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  742. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  743. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  744. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  745. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  746. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  747. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  748. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  749. data/apis/robomaker/2018-06-29/api-2.json +0 -2138
  750. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  751. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  752. data/apis/route53/2013-04-01/api-2.json +0 -3780
  753. data/apis/route53/2013-04-01/examples-1.json +0 -762
  754. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  755. data/apis/route53/2013-04-01/smoke.json +0 -18
  756. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  757. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  758. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  759. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  760. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  761. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  762. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  763. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  764. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  765. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  766. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  767. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  768. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  769. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  770. data/apis/s3/2006-03-01/api-2.json +0 -6576
  771. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  772. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  773. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  774. data/apis/s3/2006-03-01/smoke.json +0 -11
  775. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  776. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  777. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  778. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  779. data/apis/sagemaker/2017-07-24/api-2.json +0 -5257
  780. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  781. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  782. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  783. data/apis/sdb/2009-04-15/api-2.json +0 -955
  784. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  785. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  786. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  787. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  788. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  789. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  790. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  791. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  792. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  793. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  794. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  795. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  796. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  797. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  798. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  799. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  800. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  801. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  802. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  803. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  804. data/apis/shield/2016-06-02/api-2.json +0 -893
  805. data/apis/shield/2016-06-02/examples-1.json +0 -5
  806. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  807. data/apis/shield/2016-06-02/smoke.json +0 -11
  808. data/apis/signer/2017-08-25/api-2.json +0 -670
  809. data/apis/signer/2017-08-25/examples-1.json +0 -5
  810. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  811. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  812. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  813. data/apis/sms/2016-10-24/api-2.json +0 -1366
  814. data/apis/sms/2016-10-24/examples-1.json +0 -5
  815. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  816. data/apis/sms/2016-10-24/smoke.json +0 -18
  817. data/apis/snowball/2016-06-30/api-2.json +0 -955
  818. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  819. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  820. data/apis/snowball/2016-06-30/smoke.json +0 -11
  821. data/apis/sns/2010-03-31/api-2.json +0 -1468
  822. data/apis/sns/2010-03-31/examples-1.json +0 -5
  823. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  824. data/apis/sns/2010-03-31/resources-1.json +0 -327
  825. data/apis/sns/2010-03-31/smoke.json +0 -19
  826. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  827. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  828. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  829. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  830. data/apis/sqs/2012-11-05/smoke.json +0 -18
  831. data/apis/ssm/2014-11-06/api-2.json +0 -8916
  832. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  833. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  834. data/apis/ssm/2014-11-06/smoke.json +0 -18
  835. data/apis/states/2016-11-23/api-2.json +0 -1409
  836. data/apis/states/2016-11-23/examples-1.json +0 -5
  837. data/apis/states/2016-11-23/paginators-1.json +0 -28
  838. data/apis/states/2016-11-23/smoke.json +0 -11
  839. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  840. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  841. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  842. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  843. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  844. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  845. data/apis/sts/2011-06-15/api-2.json +0 -562
  846. data/apis/sts/2011-06-15/examples-1.json +0 -207
  847. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  848. data/apis/sts/2011-06-15/smoke.json +0 -19
  849. data/apis/support/2013-04-15/api-2.json +0 -772
  850. data/apis/support/2013-04-15/examples-1.json +0 -5
  851. data/apis/support/2013-04-15/paginators-1.json +0 -25
  852. data/apis/swf/2012-01-25/api-2.json +0 -2792
  853. data/apis/swf/2012-01-25/examples-1.json +0 -5
  854. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  855. data/apis/textract/2018-06-27/api-2.json +0 -572
  856. data/apis/textract/2018-06-27/examples-1.json +0 -5
  857. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  858. data/apis/transcribe/2017-10-26/api-2.json +0 -516
  859. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  860. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  861. data/apis/transfer/2018-11-05/api-2.json +0 -857
  862. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  863. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  864. data/apis/translate/2017-07-01/api-2.json +0 -408
  865. data/apis/translate/2017-07-01/examples-1.json +0 -5
  866. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  867. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  868. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  869. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  870. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  871. data/apis/waf/2015-08-24/api-2.json +0 -3857
  872. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  873. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  874. data/apis/waf/2015-08-24/smoke.json +0 -21
  875. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  876. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  877. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  878. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  879. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  880. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  881. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  882. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  883. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  884. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  885. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  886. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  887. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  888. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  889. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  890. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  891. data/apis/xray/2016-04-12/api-2.json +0 -1352
  892. data/apis/xray/2016-04-12/examples-1.json +0 -5
  893. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  894. data/bin/aws.rb +0 -180
  895. data/endpoints.json +0 -5242
  896. data/lib/aws-sdk-core/acm.rb +0 -7
  897. data/lib/aws-sdk-core/acmpca.rb +0 -7
  898. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  899. data/lib/aws-sdk-core/amplify.rb +0 -6
  900. data/lib/aws-sdk-core/api/builder.rb +0 -129
  901. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  902. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  903. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  904. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  905. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  906. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  907. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  908. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  909. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  910. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  911. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  912. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  913. data/lib/aws-sdk-core/apigateway.rb +0 -6
  914. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  915. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  916. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  917. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  918. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  919. data/lib/aws-sdk-core/appmesh.rb +0 -6
  920. data/lib/aws-sdk-core/appstream.rb +0 -7
  921. data/lib/aws-sdk-core/appsync.rb +0 -6
  922. data/lib/aws-sdk-core/athena.rb +0 -6
  923. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  924. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  925. data/lib/aws-sdk-core/backup.rb +0 -6
  926. data/lib/aws-sdk-core/batch.rb +0 -6
  927. data/lib/aws-sdk-core/budgets.rb +0 -6
  928. data/lib/aws-sdk-core/checksums.rb +0 -51
  929. data/lib/aws-sdk-core/chime.rb +0 -6
  930. data/lib/aws-sdk-core/client.rb +0 -62
  931. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  932. data/lib/aws-sdk-core/cloud9.rb +0 -6
  933. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  934. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  935. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  936. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  937. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  938. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  939. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  940. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  941. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  942. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  943. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  944. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  945. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  946. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  947. data/lib/aws-sdk-core/codebuild.rb +0 -6
  948. data/lib/aws-sdk-core/codecommit.rb +0 -6
  949. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  950. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  951. data/lib/aws-sdk-core/codestar.rb +0 -6
  952. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  953. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  954. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  955. data/lib/aws-sdk-core/comprehend.rb +0 -6
  956. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  957. data/lib/aws-sdk-core/configservice.rb +0 -6
  958. data/lib/aws-sdk-core/connect.rb +0 -6
  959. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  960. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  961. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  962. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  963. data/lib/aws-sdk-core/datasync.rb +0 -6
  964. data/lib/aws-sdk-core/dax.rb +0 -6
  965. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  966. data/lib/aws-sdk-core/directconnect.rb +0 -6
  967. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  968. data/lib/aws-sdk-core/dlm.rb +0 -6
  969. data/lib/aws-sdk-core/docdb.rb +0 -7
  970. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  971. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  972. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  973. data/lib/aws-sdk-core/ec2.rb +0 -8
  974. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  975. data/lib/aws-sdk-core/ecr.rb +0 -6
  976. data/lib/aws-sdk-core/ecs.rb +0 -7
  977. data/lib/aws-sdk-core/efs.rb +0 -6
  978. data/lib/aws-sdk-core/eks.rb +0 -7
  979. data/lib/aws-sdk-core/elasticache.rb +0 -7
  980. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  981. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  982. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  983. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  984. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  985. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  986. data/lib/aws-sdk-core/emr.rb +0 -7
  987. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  988. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  989. data/lib/aws-sdk-core/firehose.rb +0 -6
  990. data/lib/aws-sdk-core/fms.rb +0 -6
  991. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  992. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  993. data/lib/aws-sdk-core/fsx.rb +0 -6
  994. data/lib/aws-sdk-core/gamelift.rb +0 -6
  995. data/lib/aws-sdk-core/glacier.rb +0 -8
  996. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  997. data/lib/aws-sdk-core/glue.rb +0 -6
  998. data/lib/aws-sdk-core/greengrass.rb +0 -4
  999. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1000. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1001. data/lib/aws-sdk-core/health.rb +0 -6
  1002. data/lib/aws-sdk-core/iam.rb +0 -8
  1003. data/lib/aws-sdk-core/importexport.rb +0 -5
  1004. data/lib/aws-sdk-core/inspector.rb +0 -6
  1005. data/lib/aws-sdk-core/iot.rb +0 -6
  1006. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1007. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1008. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1009. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1010. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1011. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1012. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1013. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1014. data/lib/aws-sdk-core/kafka.rb +0 -5
  1015. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1016. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1017. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1018. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1019. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1020. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1021. data/lib/aws-sdk-core/kms.rb +0 -6
  1022. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1023. data/lib/aws-sdk-core/lambda.rb +0 -7
  1024. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1025. data/lib/aws-sdk-core/lex.rb +0 -6
  1026. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1027. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1028. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1029. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1030. data/lib/aws-sdk-core/macie.rb +0 -6
  1031. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1032. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1033. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1034. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1035. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1036. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1037. data/lib/aws-sdk-core/medialive.rb +0 -6
  1038. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1039. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1040. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1041. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1042. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1043. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1044. data/lib/aws-sdk-core/mobile.rb +0 -6
  1045. data/lib/aws-sdk-core/mq.rb +0 -5
  1046. data/lib/aws-sdk-core/mturk.rb +0 -6
  1047. data/lib/aws-sdk-core/neptune.rb +0 -7
  1048. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1049. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1050. data/lib/aws-sdk-core/organizations.rb +0 -6
  1051. data/lib/aws-sdk-core/partitions.rb +0 -174
  1052. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1053. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1054. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1055. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1056. data/lib/aws-sdk-core/personalize.rb +0 -6
  1057. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1058. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1059. data/lib/aws-sdk-core/pi.rb +0 -6
  1060. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1061. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1062. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1063. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1064. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1065. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1066. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1067. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1068. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1069. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1070. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1071. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1072. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1073. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1074. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1075. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1076. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1077. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1078. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1079. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1080. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1081. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1082. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1083. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1084. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1085. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1086. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1087. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1088. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1089. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1090. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1091. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1092. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1093. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1094. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1095. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1096. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1097. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1098. data/lib/aws-sdk-core/polly.rb +0 -14
  1099. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1100. data/lib/aws-sdk-core/pricing.rb +0 -6
  1101. data/lib/aws-sdk-core/qldb.rb +0 -6
  1102. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1103. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1104. data/lib/aws-sdk-core/ram.rb +0 -6
  1105. data/lib/aws-sdk-core/rds.rb +0 -16
  1106. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1107. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1108. data/lib/aws-sdk-core/redshift.rb +0 -7
  1109. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1110. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1111. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1112. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1113. data/lib/aws-sdk-core/route53.rb +0 -7
  1114. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1115. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1116. data/lib/aws-sdk-core/s3.rb +0 -26
  1117. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1118. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1119. data/lib/aws-sdk-core/s3control.rb +0 -6
  1120. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1121. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1122. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1123. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1124. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1125. data/lib/aws-sdk-core/service.rb +0 -4
  1126. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1127. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1128. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1129. data/lib/aws-sdk-core/ses.rb +0 -7
  1130. data/lib/aws-sdk-core/shield.rb +0 -6
  1131. data/lib/aws-sdk-core/signer.rb +0 -7
  1132. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1133. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1134. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1135. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1136. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1137. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1138. data/lib/aws-sdk-core/sms.rb +0 -6
  1139. data/lib/aws-sdk-core/snowball.rb +0 -6
  1140. data/lib/aws-sdk-core/sns.rb +0 -7
  1141. data/lib/aws-sdk-core/sqs.rb +0 -7
  1142. data/lib/aws-sdk-core/ssm.rb +0 -6
  1143. data/lib/aws-sdk-core/states.rb +0 -6
  1144. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1145. data/lib/aws-sdk-core/sts.rb +0 -6
  1146. data/lib/aws-sdk-core/support.rb +0 -6
  1147. data/lib/aws-sdk-core/swf.rb +0 -6
  1148. data/lib/aws-sdk-core/textract.rb +0 -6
  1149. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1150. data/lib/aws-sdk-core/transfer.rb +0 -6
  1151. data/lib/aws-sdk-core/translate.rb +0 -6
  1152. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1153. data/lib/aws-sdk-core/version.rb +0 -3
  1154. data/lib/aws-sdk-core/waf.rb +0 -6
  1155. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1156. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1157. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1158. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1159. data/lib/aws-sdk-core/worklink.rb +0 -6
  1160. data/lib/aws-sdk-core/workmail.rb +0 -6
  1161. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1162. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1163. data/lib/aws-sdk-core/xray.rb +0 -6
  1164. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1165. data/service-models.json +0 -769
@@ -1,4 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": { }
4
- }
@@ -1,28 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListMeshes": {
4
- "input_token": "nextToken",
5
- "limit_key": "limit",
6
- "output_token": "nextToken",
7
- "result_key": "meshes"
8
- },
9
- "ListRoutes": {
10
- "input_token": "nextToken",
11
- "limit_key": "limit",
12
- "output_token": "nextToken",
13
- "result_key": "routes"
14
- },
15
- "ListVirtualNodes": {
16
- "input_token": "nextToken",
17
- "limit_key": "limit",
18
- "output_token": "nextToken",
19
- "result_key": "virtualNodes"
20
- },
21
- "ListVirtualRouters": {
22
- "input_token": "nextToken",
23
- "limit_key": "limit",
24
- "output_token": "nextToken",
25
- "result_key": "virtualRouters"
26
- }
27
- }
28
- }
@@ -1,3281 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "metadata": {
4
- "apiVersion": "2019-01-25",
5
- "endpointPrefix": "appmesh",
6
- "jsonVersion": "1.1",
7
- "protocol": "rest-json",
8
- "serviceFullName": "AWS App Mesh",
9
- "serviceId": "App Mesh",
10
- "signatureVersion": "v4",
11
- "signingName": "appmesh",
12
- "uid": "appmesh-2019-01-25"
13
- },
14
- "operations": {
15
- "CreateMesh": {
16
- "name": "CreateMesh",
17
- "http": {
18
- "method": "PUT",
19
- "requestUri": "/v20190125/meshes",
20
- "responseCode": 200
21
- },
22
- "input": {
23
- "shape": "CreateMeshInput"
24
- },
25
- "output": {
26
- "shape": "CreateMeshOutput"
27
- },
28
- "errors": [
29
- {
30
- "shape": "BadRequestException"
31
- },
32
- {
33
- "shape": "ConflictException"
34
- },
35
- {
36
- "shape": "ForbiddenException"
37
- },
38
- {
39
- "shape": "InternalServerErrorException"
40
- },
41
- {
42
- "shape": "LimitExceededException"
43
- },
44
- {
45
- "shape": "NotFoundException"
46
- },
47
- {
48
- "shape": "ServiceUnavailableException"
49
- },
50
- {
51
- "shape": "TooManyRequestsException"
52
- }
53
- ],
54
- "idempotent": true
55
- },
56
- "CreateRoute": {
57
- "name": "CreateRoute",
58
- "http": {
59
- "method": "PUT",
60
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes",
61
- "responseCode": 200
62
- },
63
- "input": {
64
- "shape": "CreateRouteInput"
65
- },
66
- "output": {
67
- "shape": "CreateRouteOutput"
68
- },
69
- "errors": [
70
- {
71
- "shape": "BadRequestException"
72
- },
73
- {
74
- "shape": "ConflictException"
75
- },
76
- {
77
- "shape": "ForbiddenException"
78
- },
79
- {
80
- "shape": "InternalServerErrorException"
81
- },
82
- {
83
- "shape": "LimitExceededException"
84
- },
85
- {
86
- "shape": "NotFoundException"
87
- },
88
- {
89
- "shape": "ServiceUnavailableException"
90
- },
91
- {
92
- "shape": "TooManyRequestsException"
93
- }
94
- ],
95
- "idempotent": true
96
- },
97
- "CreateVirtualNode": {
98
- "name": "CreateVirtualNode",
99
- "http": {
100
- "method": "PUT",
101
- "requestUri": "/v20190125/meshes/{meshName}/virtualNodes",
102
- "responseCode": 200
103
- },
104
- "input": {
105
- "shape": "CreateVirtualNodeInput"
106
- },
107
- "output": {
108
- "shape": "CreateVirtualNodeOutput"
109
- },
110
- "errors": [
111
- {
112
- "shape": "BadRequestException"
113
- },
114
- {
115
- "shape": "ConflictException"
116
- },
117
- {
118
- "shape": "ForbiddenException"
119
- },
120
- {
121
- "shape": "InternalServerErrorException"
122
- },
123
- {
124
- "shape": "LimitExceededException"
125
- },
126
- {
127
- "shape": "NotFoundException"
128
- },
129
- {
130
- "shape": "ServiceUnavailableException"
131
- },
132
- {
133
- "shape": "TooManyRequestsException"
134
- }
135
- ],
136
- "idempotent": true
137
- },
138
- "CreateVirtualRouter": {
139
- "name": "CreateVirtualRouter",
140
- "http": {
141
- "method": "PUT",
142
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouters",
143
- "responseCode": 200
144
- },
145
- "input": {
146
- "shape": "CreateVirtualRouterInput"
147
- },
148
- "output": {
149
- "shape": "CreateVirtualRouterOutput"
150
- },
151
- "errors": [
152
- {
153
- "shape": "BadRequestException"
154
- },
155
- {
156
- "shape": "ConflictException"
157
- },
158
- {
159
- "shape": "ForbiddenException"
160
- },
161
- {
162
- "shape": "InternalServerErrorException"
163
- },
164
- {
165
- "shape": "LimitExceededException"
166
- },
167
- {
168
- "shape": "NotFoundException"
169
- },
170
- {
171
- "shape": "ServiceUnavailableException"
172
- },
173
- {
174
- "shape": "TooManyRequestsException"
175
- }
176
- ],
177
- "idempotent": true
178
- },
179
- "CreateVirtualService": {
180
- "name": "CreateVirtualService",
181
- "http": {
182
- "method": "PUT",
183
- "requestUri": "/v20190125/meshes/{meshName}/virtualServices",
184
- "responseCode": 200
185
- },
186
- "input": {
187
- "shape": "CreateVirtualServiceInput"
188
- },
189
- "output": {
190
- "shape": "CreateVirtualServiceOutput"
191
- },
192
- "errors": [
193
- {
194
- "shape": "BadRequestException"
195
- },
196
- {
197
- "shape": "ConflictException"
198
- },
199
- {
200
- "shape": "ForbiddenException"
201
- },
202
- {
203
- "shape": "InternalServerErrorException"
204
- },
205
- {
206
- "shape": "LimitExceededException"
207
- },
208
- {
209
- "shape": "NotFoundException"
210
- },
211
- {
212
- "shape": "ServiceUnavailableException"
213
- },
214
- {
215
- "shape": "TooManyRequestsException"
216
- }
217
- ],
218
- "idempotent": true
219
- },
220
- "DeleteMesh": {
221
- "name": "DeleteMesh",
222
- "http": {
223
- "method": "DELETE",
224
- "requestUri": "/v20190125/meshes/{meshName}",
225
- "responseCode": 200
226
- },
227
- "input": {
228
- "shape": "DeleteMeshInput"
229
- },
230
- "output": {
231
- "shape": "DeleteMeshOutput"
232
- },
233
- "errors": [
234
- {
235
- "shape": "BadRequestException"
236
- },
237
- {
238
- "shape": "ForbiddenException"
239
- },
240
- {
241
- "shape": "InternalServerErrorException"
242
- },
243
- {
244
- "shape": "NotFoundException"
245
- },
246
- {
247
- "shape": "ResourceInUseException"
248
- },
249
- {
250
- "shape": "ServiceUnavailableException"
251
- },
252
- {
253
- "shape": "TooManyRequestsException"
254
- }
255
- ],
256
- "idempotent": true
257
- },
258
- "DeleteRoute": {
259
- "name": "DeleteRoute",
260
- "http": {
261
- "method": "DELETE",
262
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
263
- "responseCode": 200
264
- },
265
- "input": {
266
- "shape": "DeleteRouteInput"
267
- },
268
- "output": {
269
- "shape": "DeleteRouteOutput"
270
- },
271
- "errors": [
272
- {
273
- "shape": "BadRequestException"
274
- },
275
- {
276
- "shape": "ForbiddenException"
277
- },
278
- {
279
- "shape": "InternalServerErrorException"
280
- },
281
- {
282
- "shape": "NotFoundException"
283
- },
284
- {
285
- "shape": "ResourceInUseException"
286
- },
287
- {
288
- "shape": "ServiceUnavailableException"
289
- },
290
- {
291
- "shape": "TooManyRequestsException"
292
- }
293
- ],
294
- "idempotent": true
295
- },
296
- "DeleteVirtualNode": {
297
- "name": "DeleteVirtualNode",
298
- "http": {
299
- "method": "DELETE",
300
- "requestUri": "/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}",
301
- "responseCode": 200
302
- },
303
- "input": {
304
- "shape": "DeleteVirtualNodeInput"
305
- },
306
- "output": {
307
- "shape": "DeleteVirtualNodeOutput"
308
- },
309
- "errors": [
310
- {
311
- "shape": "BadRequestException"
312
- },
313
- {
314
- "shape": "ForbiddenException"
315
- },
316
- {
317
- "shape": "InternalServerErrorException"
318
- },
319
- {
320
- "shape": "NotFoundException"
321
- },
322
- {
323
- "shape": "ResourceInUseException"
324
- },
325
- {
326
- "shape": "ServiceUnavailableException"
327
- },
328
- {
329
- "shape": "TooManyRequestsException"
330
- }
331
- ],
332
- "idempotent": true
333
- },
334
- "DeleteVirtualRouter": {
335
- "name": "DeleteVirtualRouter",
336
- "http": {
337
- "method": "DELETE",
338
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}",
339
- "responseCode": 200
340
- },
341
- "input": {
342
- "shape": "DeleteVirtualRouterInput"
343
- },
344
- "output": {
345
- "shape": "DeleteVirtualRouterOutput"
346
- },
347
- "errors": [
348
- {
349
- "shape": "BadRequestException"
350
- },
351
- {
352
- "shape": "ForbiddenException"
353
- },
354
- {
355
- "shape": "InternalServerErrorException"
356
- },
357
- {
358
- "shape": "NotFoundException"
359
- },
360
- {
361
- "shape": "ResourceInUseException"
362
- },
363
- {
364
- "shape": "ServiceUnavailableException"
365
- },
366
- {
367
- "shape": "TooManyRequestsException"
368
- }
369
- ],
370
- "idempotent": true
371
- },
372
- "DeleteVirtualService": {
373
- "name": "DeleteVirtualService",
374
- "http": {
375
- "method": "DELETE",
376
- "requestUri": "/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}",
377
- "responseCode": 200
378
- },
379
- "input": {
380
- "shape": "DeleteVirtualServiceInput"
381
- },
382
- "output": {
383
- "shape": "DeleteVirtualServiceOutput"
384
- },
385
- "errors": [
386
- {
387
- "shape": "BadRequestException"
388
- },
389
- {
390
- "shape": "ForbiddenException"
391
- },
392
- {
393
- "shape": "InternalServerErrorException"
394
- },
395
- {
396
- "shape": "NotFoundException"
397
- },
398
- {
399
- "shape": "ServiceUnavailableException"
400
- },
401
- {
402
- "shape": "TooManyRequestsException"
403
- }
404
- ],
405
- "idempotent": true
406
- },
407
- "DescribeMesh": {
408
- "name": "DescribeMesh",
409
- "http": {
410
- "method": "GET",
411
- "requestUri": "/v20190125/meshes/{meshName}",
412
- "responseCode": 200
413
- },
414
- "input": {
415
- "shape": "DescribeMeshInput"
416
- },
417
- "output": {
418
- "shape": "DescribeMeshOutput"
419
- },
420
- "errors": [
421
- {
422
- "shape": "BadRequestException"
423
- },
424
- {
425
- "shape": "ForbiddenException"
426
- },
427
- {
428
- "shape": "InternalServerErrorException"
429
- },
430
- {
431
- "shape": "NotFoundException"
432
- },
433
- {
434
- "shape": "ServiceUnavailableException"
435
- },
436
- {
437
- "shape": "TooManyRequestsException"
438
- }
439
- ]
440
- },
441
- "DescribeRoute": {
442
- "name": "DescribeRoute",
443
- "http": {
444
- "method": "GET",
445
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
446
- "responseCode": 200
447
- },
448
- "input": {
449
- "shape": "DescribeRouteInput"
450
- },
451
- "output": {
452
- "shape": "DescribeRouteOutput"
453
- },
454
- "errors": [
455
- {
456
- "shape": "BadRequestException"
457
- },
458
- {
459
- "shape": "ForbiddenException"
460
- },
461
- {
462
- "shape": "InternalServerErrorException"
463
- },
464
- {
465
- "shape": "NotFoundException"
466
- },
467
- {
468
- "shape": "ServiceUnavailableException"
469
- },
470
- {
471
- "shape": "TooManyRequestsException"
472
- }
473
- ]
474
- },
475
- "DescribeVirtualNode": {
476
- "name": "DescribeVirtualNode",
477
- "http": {
478
- "method": "GET",
479
- "requestUri": "/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}",
480
- "responseCode": 200
481
- },
482
- "input": {
483
- "shape": "DescribeVirtualNodeInput"
484
- },
485
- "output": {
486
- "shape": "DescribeVirtualNodeOutput"
487
- },
488
- "errors": [
489
- {
490
- "shape": "BadRequestException"
491
- },
492
- {
493
- "shape": "ForbiddenException"
494
- },
495
- {
496
- "shape": "InternalServerErrorException"
497
- },
498
- {
499
- "shape": "NotFoundException"
500
- },
501
- {
502
- "shape": "ServiceUnavailableException"
503
- },
504
- {
505
- "shape": "TooManyRequestsException"
506
- }
507
- ]
508
- },
509
- "DescribeVirtualRouter": {
510
- "name": "DescribeVirtualRouter",
511
- "http": {
512
- "method": "GET",
513
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}",
514
- "responseCode": 200
515
- },
516
- "input": {
517
- "shape": "DescribeVirtualRouterInput"
518
- },
519
- "output": {
520
- "shape": "DescribeVirtualRouterOutput"
521
- },
522
- "errors": [
523
- {
524
- "shape": "BadRequestException"
525
- },
526
- {
527
- "shape": "ForbiddenException"
528
- },
529
- {
530
- "shape": "InternalServerErrorException"
531
- },
532
- {
533
- "shape": "NotFoundException"
534
- },
535
- {
536
- "shape": "ServiceUnavailableException"
537
- },
538
- {
539
- "shape": "TooManyRequestsException"
540
- }
541
- ]
542
- },
543
- "DescribeVirtualService": {
544
- "name": "DescribeVirtualService",
545
- "http": {
546
- "method": "GET",
547
- "requestUri": "/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}",
548
- "responseCode": 200
549
- },
550
- "input": {
551
- "shape": "DescribeVirtualServiceInput"
552
- },
553
- "output": {
554
- "shape": "DescribeVirtualServiceOutput"
555
- },
556
- "errors": [
557
- {
558
- "shape": "BadRequestException"
559
- },
560
- {
561
- "shape": "ForbiddenException"
562
- },
563
- {
564
- "shape": "InternalServerErrorException"
565
- },
566
- {
567
- "shape": "NotFoundException"
568
- },
569
- {
570
- "shape": "ServiceUnavailableException"
571
- },
572
- {
573
- "shape": "TooManyRequestsException"
574
- }
575
- ]
576
- },
577
- "ListMeshes": {
578
- "name": "ListMeshes",
579
- "http": {
580
- "method": "GET",
581
- "requestUri": "/v20190125/meshes",
582
- "responseCode": 200
583
- },
584
- "input": {
585
- "shape": "ListMeshesInput"
586
- },
587
- "output": {
588
- "shape": "ListMeshesOutput"
589
- },
590
- "errors": [
591
- {
592
- "shape": "BadRequestException"
593
- },
594
- {
595
- "shape": "ForbiddenException"
596
- },
597
- {
598
- "shape": "InternalServerErrorException"
599
- },
600
- {
601
- "shape": "NotFoundException"
602
- },
603
- {
604
- "shape": "ServiceUnavailableException"
605
- },
606
- {
607
- "shape": "TooManyRequestsException"
608
- }
609
- ]
610
- },
611
- "ListRoutes": {
612
- "name": "ListRoutes",
613
- "http": {
614
- "method": "GET",
615
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes",
616
- "responseCode": 200
617
- },
618
- "input": {
619
- "shape": "ListRoutesInput"
620
- },
621
- "output": {
622
- "shape": "ListRoutesOutput"
623
- },
624
- "errors": [
625
- {
626
- "shape": "BadRequestException"
627
- },
628
- {
629
- "shape": "ForbiddenException"
630
- },
631
- {
632
- "shape": "InternalServerErrorException"
633
- },
634
- {
635
- "shape": "NotFoundException"
636
- },
637
- {
638
- "shape": "ServiceUnavailableException"
639
- },
640
- {
641
- "shape": "TooManyRequestsException"
642
- }
643
- ]
644
- },
645
- "ListTagsForResource": {
646
- "name": "ListTagsForResource",
647
- "http": {
648
- "method": "GET",
649
- "requestUri": "/v20190125/tags",
650
- "responseCode": 200
651
- },
652
- "input": {
653
- "shape": "ListTagsForResourceInput"
654
- },
655
- "output": {
656
- "shape": "ListTagsForResourceOutput"
657
- },
658
- "errors": [
659
- {
660
- "shape": "BadRequestException"
661
- },
662
- {
663
- "shape": "ForbiddenException"
664
- },
665
- {
666
- "shape": "InternalServerErrorException"
667
- },
668
- {
669
- "shape": "NotFoundException"
670
- },
671
- {
672
- "shape": "ServiceUnavailableException"
673
- },
674
- {
675
- "shape": "TooManyRequestsException"
676
- }
677
- ]
678
- },
679
- "ListVirtualNodes": {
680
- "name": "ListVirtualNodes",
681
- "http": {
682
- "method": "GET",
683
- "requestUri": "/v20190125/meshes/{meshName}/virtualNodes",
684
- "responseCode": 200
685
- },
686
- "input": {
687
- "shape": "ListVirtualNodesInput"
688
- },
689
- "output": {
690
- "shape": "ListVirtualNodesOutput"
691
- },
692
- "errors": [
693
- {
694
- "shape": "BadRequestException"
695
- },
696
- {
697
- "shape": "ForbiddenException"
698
- },
699
- {
700
- "shape": "InternalServerErrorException"
701
- },
702
- {
703
- "shape": "NotFoundException"
704
- },
705
- {
706
- "shape": "ServiceUnavailableException"
707
- },
708
- {
709
- "shape": "TooManyRequestsException"
710
- }
711
- ]
712
- },
713
- "ListVirtualRouters": {
714
- "name": "ListVirtualRouters",
715
- "http": {
716
- "method": "GET",
717
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouters",
718
- "responseCode": 200
719
- },
720
- "input": {
721
- "shape": "ListVirtualRoutersInput"
722
- },
723
- "output": {
724
- "shape": "ListVirtualRoutersOutput"
725
- },
726
- "errors": [
727
- {
728
- "shape": "BadRequestException"
729
- },
730
- {
731
- "shape": "ForbiddenException"
732
- },
733
- {
734
- "shape": "InternalServerErrorException"
735
- },
736
- {
737
- "shape": "NotFoundException"
738
- },
739
- {
740
- "shape": "ServiceUnavailableException"
741
- },
742
- {
743
- "shape": "TooManyRequestsException"
744
- }
745
- ]
746
- },
747
- "ListVirtualServices": {
748
- "name": "ListVirtualServices",
749
- "http": {
750
- "method": "GET",
751
- "requestUri": "/v20190125/meshes/{meshName}/virtualServices",
752
- "responseCode": 200
753
- },
754
- "input": {
755
- "shape": "ListVirtualServicesInput"
756
- },
757
- "output": {
758
- "shape": "ListVirtualServicesOutput"
759
- },
760
- "errors": [
761
- {
762
- "shape": "BadRequestException"
763
- },
764
- {
765
- "shape": "ForbiddenException"
766
- },
767
- {
768
- "shape": "InternalServerErrorException"
769
- },
770
- {
771
- "shape": "NotFoundException"
772
- },
773
- {
774
- "shape": "ServiceUnavailableException"
775
- },
776
- {
777
- "shape": "TooManyRequestsException"
778
- }
779
- ]
780
- },
781
- "TagResource": {
782
- "name": "TagResource",
783
- "http": {
784
- "method": "PUT",
785
- "requestUri": "/v20190125/tag",
786
- "responseCode": 200
787
- },
788
- "input": {
789
- "shape": "TagResourceInput"
790
- },
791
- "output": {
792
- "shape": "TagResourceOutput"
793
- },
794
- "errors": [
795
- {
796
- "shape": "BadRequestException"
797
- },
798
- {
799
- "shape": "ForbiddenException"
800
- },
801
- {
802
- "shape": "InternalServerErrorException"
803
- },
804
- {
805
- "shape": "NotFoundException"
806
- },
807
- {
808
- "shape": "ServiceUnavailableException"
809
- },
810
- {
811
- "shape": "TooManyRequestsException"
812
- },
813
- {
814
- "shape": "TooManyTagsException"
815
- }
816
- ],
817
- "idempotent": true
818
- },
819
- "UntagResource": {
820
- "name": "UntagResource",
821
- "http": {
822
- "method": "PUT",
823
- "requestUri": "/v20190125/untag",
824
- "responseCode": 200
825
- },
826
- "input": {
827
- "shape": "UntagResourceInput"
828
- },
829
- "output": {
830
- "shape": "UntagResourceOutput"
831
- },
832
- "errors": [
833
- {
834
- "shape": "BadRequestException"
835
- },
836
- {
837
- "shape": "ForbiddenException"
838
- },
839
- {
840
- "shape": "InternalServerErrorException"
841
- },
842
- {
843
- "shape": "NotFoundException"
844
- },
845
- {
846
- "shape": "ServiceUnavailableException"
847
- },
848
- {
849
- "shape": "TooManyRequestsException"
850
- }
851
- ],
852
- "idempotent": true
853
- },
854
- "UpdateMesh": {
855
- "name": "UpdateMesh",
856
- "http": {
857
- "method": "PUT",
858
- "requestUri": "/v20190125/meshes/{meshName}",
859
- "responseCode": 200
860
- },
861
- "input": {
862
- "shape": "UpdateMeshInput"
863
- },
864
- "output": {
865
- "shape": "UpdateMeshOutput"
866
- },
867
- "errors": [
868
- {
869
- "shape": "BadRequestException"
870
- },
871
- {
872
- "shape": "ConflictException"
873
- },
874
- {
875
- "shape": "ForbiddenException"
876
- },
877
- {
878
- "shape": "InternalServerErrorException"
879
- },
880
- {
881
- "shape": "NotFoundException"
882
- },
883
- {
884
- "shape": "ServiceUnavailableException"
885
- },
886
- {
887
- "shape": "TooManyRequestsException"
888
- }
889
- ],
890
- "idempotent": true
891
- },
892
- "UpdateRoute": {
893
- "name": "UpdateRoute",
894
- "http": {
895
- "method": "PUT",
896
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}",
897
- "responseCode": 200
898
- },
899
- "input": {
900
- "shape": "UpdateRouteInput"
901
- },
902
- "output": {
903
- "shape": "UpdateRouteOutput"
904
- },
905
- "errors": [
906
- {
907
- "shape": "BadRequestException"
908
- },
909
- {
910
- "shape": "ConflictException"
911
- },
912
- {
913
- "shape": "ForbiddenException"
914
- },
915
- {
916
- "shape": "InternalServerErrorException"
917
- },
918
- {
919
- "shape": "LimitExceededException"
920
- },
921
- {
922
- "shape": "NotFoundException"
923
- },
924
- {
925
- "shape": "ServiceUnavailableException"
926
- },
927
- {
928
- "shape": "TooManyRequestsException"
929
- }
930
- ],
931
- "idempotent": true
932
- },
933
- "UpdateVirtualNode": {
934
- "name": "UpdateVirtualNode",
935
- "http": {
936
- "method": "PUT",
937
- "requestUri": "/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}",
938
- "responseCode": 200
939
- },
940
- "input": {
941
- "shape": "UpdateVirtualNodeInput"
942
- },
943
- "output": {
944
- "shape": "UpdateVirtualNodeOutput"
945
- },
946
- "errors": [
947
- {
948
- "shape": "BadRequestException"
949
- },
950
- {
951
- "shape": "ConflictException"
952
- },
953
- {
954
- "shape": "ForbiddenException"
955
- },
956
- {
957
- "shape": "InternalServerErrorException"
958
- },
959
- {
960
- "shape": "LimitExceededException"
961
- },
962
- {
963
- "shape": "NotFoundException"
964
- },
965
- {
966
- "shape": "ServiceUnavailableException"
967
- },
968
- {
969
- "shape": "TooManyRequestsException"
970
- }
971
- ],
972
- "idempotent": true
973
- },
974
- "UpdateVirtualRouter": {
975
- "name": "UpdateVirtualRouter",
976
- "http": {
977
- "method": "PUT",
978
- "requestUri": "/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}",
979
- "responseCode": 200
980
- },
981
- "input": {
982
- "shape": "UpdateVirtualRouterInput"
983
- },
984
- "output": {
985
- "shape": "UpdateVirtualRouterOutput"
986
- },
987
- "errors": [
988
- {
989
- "shape": "BadRequestException"
990
- },
991
- {
992
- "shape": "ConflictException"
993
- },
994
- {
995
- "shape": "ForbiddenException"
996
- },
997
- {
998
- "shape": "InternalServerErrorException"
999
- },
1000
- {
1001
- "shape": "LimitExceededException"
1002
- },
1003
- {
1004
- "shape": "NotFoundException"
1005
- },
1006
- {
1007
- "shape": "ServiceUnavailableException"
1008
- },
1009
- {
1010
- "shape": "TooManyRequestsException"
1011
- }
1012
- ],
1013
- "idempotent": true
1014
- },
1015
- "UpdateVirtualService": {
1016
- "name": "UpdateVirtualService",
1017
- "http": {
1018
- "method": "PUT",
1019
- "requestUri": "/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}",
1020
- "responseCode": 200
1021
- },
1022
- "input": {
1023
- "shape": "UpdateVirtualServiceInput"
1024
- },
1025
- "output": {
1026
- "shape": "UpdateVirtualServiceOutput"
1027
- },
1028
- "errors": [
1029
- {
1030
- "shape": "BadRequestException"
1031
- },
1032
- {
1033
- "shape": "ConflictException"
1034
- },
1035
- {
1036
- "shape": "ForbiddenException"
1037
- },
1038
- {
1039
- "shape": "InternalServerErrorException"
1040
- },
1041
- {
1042
- "shape": "LimitExceededException"
1043
- },
1044
- {
1045
- "shape": "NotFoundException"
1046
- },
1047
- {
1048
- "shape": "ServiceUnavailableException"
1049
- },
1050
- {
1051
- "shape": "TooManyRequestsException"
1052
- }
1053
- ],
1054
- "idempotent": true
1055
- }
1056
- },
1057
- "shapes": {
1058
- "VirtualRouterListener": {
1059
- "type": "structure",
1060
- "required": [
1061
- "portMapping"
1062
- ],
1063
- "members": {
1064
- "portMapping": {
1065
- "shape": "PortMapping"
1066
- }
1067
- }
1068
- },
1069
- "UpdateVirtualNodeInput": {
1070
- "type": "structure",
1071
- "required": [
1072
- "meshName",
1073
- "spec",
1074
- "virtualNodeName"
1075
- ],
1076
- "members": {
1077
- "clientToken": {
1078
- "shape": "String",
1079
- "idempotencyToken": true
1080
- },
1081
- "meshName": {
1082
- "shape": "ResourceName",
1083
- "location": "uri",
1084
- "locationName": "meshName"
1085
- },
1086
- "spec": {
1087
- "shape": "VirtualNodeSpec"
1088
- },
1089
- "virtualNodeName": {
1090
- "shape": "ResourceName",
1091
- "location": "uri",
1092
- "locationName": "virtualNodeName"
1093
- }
1094
- }
1095
- },
1096
- "DeleteMeshInput": {
1097
- "type": "structure",
1098
- "required": [
1099
- "meshName"
1100
- ],
1101
- "members": {
1102
- "meshName": {
1103
- "shape": "ResourceName",
1104
- "location": "uri",
1105
- "locationName": "meshName"
1106
- }
1107
- }
1108
- },
1109
- "TcpRetryPolicyEvents": {
1110
- "type": "list",
1111
- "member": {
1112
- "shape": "TcpRetryPolicyEvent"
1113
- },
1114
- "min": 1,
1115
- "max": 1
1116
- },
1117
- "CreateVirtualServiceInput": {
1118
- "type": "structure",
1119
- "required": [
1120
- "meshName",
1121
- "spec",
1122
- "virtualServiceName"
1123
- ],
1124
- "members": {
1125
- "clientToken": {
1126
- "shape": "String",
1127
- "idempotencyToken": true
1128
- },
1129
- "meshName": {
1130
- "shape": "ResourceName",
1131
- "location": "uri",
1132
- "locationName": "meshName"
1133
- },
1134
- "spec": {
1135
- "shape": "VirtualServiceSpec"
1136
- },
1137
- "tags": {
1138
- "shape": "TagList"
1139
- },
1140
- "virtualServiceName": {
1141
- "shape": "ServiceName"
1142
- }
1143
- }
1144
- },
1145
- "VirtualRouterStatusCode": {
1146
- "type": "string",
1147
- "enum": [
1148
- "ACTIVE",
1149
- "DELETED",
1150
- "INACTIVE"
1151
- ]
1152
- },
1153
- "UpdateVirtualRouterInput": {
1154
- "type": "structure",
1155
- "required": [
1156
- "meshName",
1157
- "spec",
1158
- "virtualRouterName"
1159
- ],
1160
- "members": {
1161
- "clientToken": {
1162
- "shape": "String",
1163
- "idempotencyToken": true
1164
- },
1165
- "meshName": {
1166
- "shape": "ResourceName",
1167
- "location": "uri",
1168
- "locationName": "meshName"
1169
- },
1170
- "spec": {
1171
- "shape": "VirtualRouterSpec"
1172
- },
1173
- "virtualRouterName": {
1174
- "shape": "ResourceName",
1175
- "location": "uri",
1176
- "locationName": "virtualRouterName"
1177
- }
1178
- }
1179
- },
1180
- "TagKeyList": {
1181
- "type": "list",
1182
- "member": {
1183
- "shape": "TagKey"
1184
- },
1185
- "min": 0,
1186
- "max": 50
1187
- },
1188
- "ListTagsForResourceInput": {
1189
- "type": "structure",
1190
- "required": [
1191
- "resourceArn"
1192
- ],
1193
- "members": {
1194
- "limit": {
1195
- "shape": "TagsLimit",
1196
- "location": "querystring",
1197
- "locationName": "limit"
1198
- },
1199
- "nextToken": {
1200
- "shape": "String",
1201
- "location": "querystring",
1202
- "locationName": "nextToken"
1203
- },
1204
- "resourceArn": {
1205
- "shape": "Arn",
1206
- "location": "querystring",
1207
- "locationName": "resourceArn"
1208
- }
1209
- }
1210
- },
1211
- "CreateVirtualNodeOutput": {
1212
- "type": "structure",
1213
- "required": [
1214
- "virtualNode"
1215
- ],
1216
- "members": {
1217
- "virtualNode": {
1218
- "shape": "VirtualNodeData"
1219
- }
1220
- },
1221
- "payload": "virtualNode"
1222
- },
1223
- "Logging": {
1224
- "type": "structure",
1225
- "members": {
1226
- "accessLog": {
1227
- "shape": "AccessLog"
1228
- }
1229
- }
1230
- },
1231
- "ServiceUnavailableException": {
1232
- "type": "structure",
1233
- "members": {
1234
- "message": {
1235
- "shape": "String"
1236
- }
1237
- },
1238
- "exception": true,
1239
- "error": {
1240
- "code": "ServiceUnavailableException",
1241
- "httpStatusCode": 503,
1242
- "fault": true
1243
- }
1244
- },
1245
- "Long": {
1246
- "type": "long",
1247
- "box": true
1248
- },
1249
- "UpdateVirtualRouterOutput": {
1250
- "type": "structure",
1251
- "required": [
1252
- "virtualRouter"
1253
- ],
1254
- "members": {
1255
- "virtualRouter": {
1256
- "shape": "VirtualRouterData"
1257
- }
1258
- },
1259
- "payload": "virtualRouter"
1260
- },
1261
- "DescribeMeshOutput": {
1262
- "type": "structure",
1263
- "required": [
1264
- "mesh"
1265
- ],
1266
- "members": {
1267
- "mesh": {
1268
- "shape": "MeshData"
1269
- }
1270
- },
1271
- "payload": "mesh"
1272
- },
1273
- "DeleteVirtualRouterInput": {
1274
- "type": "structure",
1275
- "required": [
1276
- "meshName",
1277
- "virtualRouterName"
1278
- ],
1279
- "members": {
1280
- "meshName": {
1281
- "shape": "ResourceName",
1282
- "location": "uri",
1283
- "locationName": "meshName"
1284
- },
1285
- "virtualRouterName": {
1286
- "shape": "ResourceName",
1287
- "location": "uri",
1288
- "locationName": "virtualRouterName"
1289
- }
1290
- }
1291
- },
1292
- "ListVirtualRoutersOutput": {
1293
- "type": "structure",
1294
- "required": [
1295
- "virtualRouters"
1296
- ],
1297
- "members": {
1298
- "nextToken": {
1299
- "shape": "String"
1300
- },
1301
- "virtualRouters": {
1302
- "shape": "VirtualRouterList"
1303
- }
1304
- }
1305
- },
1306
- "DescribeRouteInput": {
1307
- "type": "structure",
1308
- "required": [
1309
- "meshName",
1310
- "routeName",
1311
- "virtualRouterName"
1312
- ],
1313
- "members": {
1314
- "meshName": {
1315
- "shape": "ResourceName",
1316
- "location": "uri",
1317
- "locationName": "meshName"
1318
- },
1319
- "routeName": {
1320
- "shape": "ResourceName",
1321
- "location": "uri",
1322
- "locationName": "routeName"
1323
- },
1324
- "virtualRouterName": {
1325
- "shape": "ResourceName",
1326
- "location": "uri",
1327
- "locationName": "virtualRouterName"
1328
- }
1329
- }
1330
- },
1331
- "DeleteRouteOutput": {
1332
- "type": "structure",
1333
- "required": [
1334
- "route"
1335
- ],
1336
- "members": {
1337
- "route": {
1338
- "shape": "RouteData"
1339
- }
1340
- },
1341
- "payload": "route"
1342
- },
1343
- "ResourceMetadata": {
1344
- "type": "structure",
1345
- "required": [
1346
- "arn",
1347
- "createdAt",
1348
- "lastUpdatedAt",
1349
- "uid",
1350
- "version"
1351
- ],
1352
- "members": {
1353
- "arn": {
1354
- "shape": "Arn"
1355
- },
1356
- "createdAt": {
1357
- "shape": "Timestamp"
1358
- },
1359
- "lastUpdatedAt": {
1360
- "shape": "Timestamp"
1361
- },
1362
- "uid": {
1363
- "shape": "String"
1364
- },
1365
- "version": {
1366
- "shape": "Long"
1367
- }
1368
- }
1369
- },
1370
- "Listeners": {
1371
- "type": "list",
1372
- "member": {
1373
- "shape": "Listener"
1374
- },
1375
- "min": 0,
1376
- "max": 1
1377
- },
1378
- "Backends": {
1379
- "type": "list",
1380
- "member": {
1381
- "shape": "Backend"
1382
- },
1383
- "min": 0,
1384
- "max": 25
1385
- },
1386
- "ResourceInUseException": {
1387
- "type": "structure",
1388
- "members": {
1389
- "message": {
1390
- "shape": "String"
1391
- }
1392
- },
1393
- "exception": true,
1394
- "error": {
1395
- "code": "ResourceInUseException",
1396
- "httpStatusCode": 409,
1397
- "senderFault": true
1398
- }
1399
- },
1400
- "PortProtocol": {
1401
- "type": "string",
1402
- "enum": [
1403
- "http",
1404
- "tcp"
1405
- ]
1406
- },
1407
- "UpdateVirtualNodeOutput": {
1408
- "type": "structure",
1409
- "required": [
1410
- "virtualNode"
1411
- ],
1412
- "members": {
1413
- "virtualNode": {
1414
- "shape": "VirtualNodeData"
1415
- }
1416
- },
1417
- "payload": "virtualNode"
1418
- },
1419
- "ListRoutesOutput": {
1420
- "type": "structure",
1421
- "required": [
1422
- "routes"
1423
- ],
1424
- "members": {
1425
- "nextToken": {
1426
- "shape": "String"
1427
- },
1428
- "routes": {
1429
- "shape": "RouteList"
1430
- }
1431
- }
1432
- },
1433
- "VirtualServiceBackend": {
1434
- "type": "structure",
1435
- "required": [
1436
- "virtualServiceName"
1437
- ],
1438
- "members": {
1439
- "virtualServiceName": {
1440
- "shape": "ServiceName"
1441
- }
1442
- }
1443
- },
1444
- "VirtualNodeStatusCode": {
1445
- "type": "string",
1446
- "enum": [
1447
- "ACTIVE",
1448
- "DELETED",
1449
- "INACTIVE"
1450
- ]
1451
- },
1452
- "ServiceName": {
1453
- "type": "string"
1454
- },
1455
- "BadRequestException": {
1456
- "type": "structure",
1457
- "members": {
1458
- "message": {
1459
- "shape": "String"
1460
- }
1461
- },
1462
- "exception": true,
1463
- "error": {
1464
- "code": "BadRequestException",
1465
- "httpStatusCode": 400,
1466
- "senderFault": true
1467
- }
1468
- },
1469
- "UpdateVirtualServiceInput": {
1470
- "type": "structure",
1471
- "required": [
1472
- "meshName",
1473
- "spec",
1474
- "virtualServiceName"
1475
- ],
1476
- "members": {
1477
- "clientToken": {
1478
- "shape": "String",
1479
- "idempotencyToken": true
1480
- },
1481
- "meshName": {
1482
- "shape": "ResourceName",
1483
- "location": "uri",
1484
- "locationName": "meshName"
1485
- },
1486
- "spec": {
1487
- "shape": "VirtualServiceSpec"
1488
- },
1489
- "virtualServiceName": {
1490
- "shape": "ServiceName",
1491
- "location": "uri",
1492
- "locationName": "virtualServiceName"
1493
- }
1494
- }
1495
- },
1496
- "HealthCheckThreshold": {
1497
- "type": "integer",
1498
- "min": 2,
1499
- "max": 10
1500
- },
1501
- "UpdateRouteOutput": {
1502
- "type": "structure",
1503
- "required": [
1504
- "route"
1505
- ],
1506
- "members": {
1507
- "route": {
1508
- "shape": "RouteData"
1509
- }
1510
- },
1511
- "payload": "route"
1512
- },
1513
- "PercentInt": {
1514
- "type": "integer",
1515
- "min": 0,
1516
- "max": 100
1517
- },
1518
- "TagValue": {
1519
- "type": "string",
1520
- "min": 0,
1521
- "max": 256
1522
- },
1523
- "HttpRouteAction": {
1524
- "type": "structure",
1525
- "required": [
1526
- "weightedTargets"
1527
- ],
1528
- "members": {
1529
- "weightedTargets": {
1530
- "shape": "WeightedTargets"
1531
- }
1532
- }
1533
- },
1534
- "ListRoutesInput": {
1535
- "type": "structure",
1536
- "required": [
1537
- "meshName",
1538
- "virtualRouterName"
1539
- ],
1540
- "members": {
1541
- "limit": {
1542
- "shape": "ListRoutesLimit",
1543
- "location": "querystring",
1544
- "locationName": "limit"
1545
- },
1546
- "meshName": {
1547
- "shape": "ResourceName",
1548
- "location": "uri",
1549
- "locationName": "meshName"
1550
- },
1551
- "nextToken": {
1552
- "shape": "String",
1553
- "location": "querystring",
1554
- "locationName": "nextToken"
1555
- },
1556
- "virtualRouterName": {
1557
- "shape": "ResourceName",
1558
- "location": "uri",
1559
- "locationName": "virtualRouterName"
1560
- }
1561
- }
1562
- },
1563
- "HealthCheckPolicy": {
1564
- "type": "structure",
1565
- "required": [
1566
- "healthyThreshold",
1567
- "intervalMillis",
1568
- "protocol",
1569
- "timeoutMillis",
1570
- "unhealthyThreshold"
1571
- ],
1572
- "members": {
1573
- "healthyThreshold": {
1574
- "shape": "HealthCheckThreshold"
1575
- },
1576
- "intervalMillis": {
1577
- "shape": "HealthCheckIntervalMillis"
1578
- },
1579
- "path": {
1580
- "shape": "String"
1581
- },
1582
- "port": {
1583
- "shape": "PortNumber"
1584
- },
1585
- "protocol": {
1586
- "shape": "PortProtocol"
1587
- },
1588
- "timeoutMillis": {
1589
- "shape": "HealthCheckTimeoutMillis"
1590
- },
1591
- "unhealthyThreshold": {
1592
- "shape": "HealthCheckThreshold"
1593
- }
1594
- }
1595
- },
1596
- "VirtualServiceRef": {
1597
- "type": "structure",
1598
- "required": [
1599
- "arn",
1600
- "meshName",
1601
- "virtualServiceName"
1602
- ],
1603
- "members": {
1604
- "arn": {
1605
- "shape": "Arn"
1606
- },
1607
- "meshName": {
1608
- "shape": "ResourceName"
1609
- },
1610
- "virtualServiceName": {
1611
- "shape": "ServiceName"
1612
- }
1613
- }
1614
- },
1615
- "EgressFilter": {
1616
- "type": "structure",
1617
- "required": [
1618
- "type"
1619
- ],
1620
- "members": {
1621
- "type": {
1622
- "shape": "EgressFilterType"
1623
- }
1624
- }
1625
- },
1626
- "VirtualServiceList": {
1627
- "type": "list",
1628
- "member": {
1629
- "shape": "VirtualServiceRef"
1630
- }
1631
- },
1632
- "VirtualNodeStatus": {
1633
- "type": "structure",
1634
- "required": [
1635
- "status"
1636
- ],
1637
- "members": {
1638
- "status": {
1639
- "shape": "VirtualNodeStatusCode"
1640
- }
1641
- }
1642
- },
1643
- "VirtualRouterRef": {
1644
- "type": "structure",
1645
- "required": [
1646
- "arn",
1647
- "meshName",
1648
- "virtualRouterName"
1649
- ],
1650
- "members": {
1651
- "arn": {
1652
- "shape": "Arn"
1653
- },
1654
- "meshName": {
1655
- "shape": "ResourceName"
1656
- },
1657
- "virtualRouterName": {
1658
- "shape": "ResourceName"
1659
- }
1660
- }
1661
- },
1662
- "VirtualServiceData": {
1663
- "type": "structure",
1664
- "required": [
1665
- "meshName",
1666
- "metadata",
1667
- "spec",
1668
- "status",
1669
- "virtualServiceName"
1670
- ],
1671
- "members": {
1672
- "meshName": {
1673
- "shape": "ResourceName"
1674
- },
1675
- "metadata": {
1676
- "shape": "ResourceMetadata"
1677
- },
1678
- "spec": {
1679
- "shape": "VirtualServiceSpec"
1680
- },
1681
- "status": {
1682
- "shape": "VirtualServiceStatus"
1683
- },
1684
- "virtualServiceName": {
1685
- "shape": "ServiceName"
1686
- }
1687
- }
1688
- },
1689
- "Boolean": {
1690
- "type": "boolean",
1691
- "box": true
1692
- },
1693
- "HttpRouteHeader": {
1694
- "type": "structure",
1695
- "required": [
1696
- "name"
1697
- ],
1698
- "members": {
1699
- "invert": {
1700
- "shape": "Boolean"
1701
- },
1702
- "match": {
1703
- "shape": "HeaderMatchMethod"
1704
- },
1705
- "name": {
1706
- "shape": "HeaderName"
1707
- }
1708
- }
1709
- },
1710
- "HttpRetryPolicyEvent": {
1711
- "type": "string",
1712
- "min": 1,
1713
- "max": 25
1714
- },
1715
- "DescribeVirtualServiceOutput": {
1716
- "type": "structure",
1717
- "required": [
1718
- "virtualService"
1719
- ],
1720
- "members": {
1721
- "virtualService": {
1722
- "shape": "VirtualServiceData"
1723
- }
1724
- },
1725
- "payload": "virtualService"
1726
- },
1727
- "FilePath": {
1728
- "type": "string",
1729
- "min": 1,
1730
- "max": 255
1731
- },
1732
- "AwsCloudMapInstanceAttributes": {
1733
- "type": "list",
1734
- "member": {
1735
- "shape": "AwsCloudMapInstanceAttribute"
1736
- }
1737
- },
1738
- "VirtualNodeRef": {
1739
- "type": "structure",
1740
- "required": [
1741
- "arn",
1742
- "meshName",
1743
- "virtualNodeName"
1744
- ],
1745
- "members": {
1746
- "arn": {
1747
- "shape": "Arn"
1748
- },
1749
- "meshName": {
1750
- "shape": "ResourceName"
1751
- },
1752
- "virtualNodeName": {
1753
- "shape": "ResourceName"
1754
- }
1755
- }
1756
- },
1757
- "CreateMeshInput": {
1758
- "type": "structure",
1759
- "required": [
1760
- "meshName"
1761
- ],
1762
- "members": {
1763
- "clientToken": {
1764
- "shape": "String",
1765
- "idempotencyToken": true
1766
- },
1767
- "meshName": {
1768
- "shape": "ResourceName"
1769
- },
1770
- "spec": {
1771
- "shape": "MeshSpec"
1772
- },
1773
- "tags": {
1774
- "shape": "TagList"
1775
- }
1776
- }
1777
- },
1778
- "DescribeVirtualNodeOutput": {
1779
- "type": "structure",
1780
- "required": [
1781
- "virtualNode"
1782
- ],
1783
- "members": {
1784
- "virtualNode": {
1785
- "shape": "VirtualNodeData"
1786
- }
1787
- },
1788
- "payload": "virtualNode"
1789
- },
1790
- "AwsCloudMapName": {
1791
- "type": "string",
1792
- "min": 1,
1793
- "max": 1024,
1794
- "pattern": "((?=^.{1,127}$)^([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9])(.([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9]))*$)|(^.$)"
1795
- },
1796
- "LimitExceededException": {
1797
- "type": "structure",
1798
- "members": {
1799
- "message": {
1800
- "shape": "String"
1801
- }
1802
- },
1803
- "exception": true,
1804
- "error": {
1805
- "code": "LimitExceededException",
1806
- "httpStatusCode": 400,
1807
- "senderFault": true
1808
- }
1809
- },
1810
- "UpdateMeshOutput": {
1811
- "type": "structure",
1812
- "required": [
1813
- "mesh"
1814
- ],
1815
- "members": {
1816
- "mesh": {
1817
- "shape": "MeshData"
1818
- }
1819
- },
1820
- "payload": "mesh"
1821
- },
1822
- "CreateRouteOutput": {
1823
- "type": "structure",
1824
- "required": [
1825
- "route"
1826
- ],
1827
- "members": {
1828
- "route": {
1829
- "shape": "RouteData"
1830
- }
1831
- },
1832
- "payload": "route"
1833
- },
1834
- "DnsServiceDiscovery": {
1835
- "type": "structure",
1836
- "required": [
1837
- "hostname"
1838
- ],
1839
- "members": {
1840
- "hostname": {
1841
- "shape": "Hostname"
1842
- }
1843
- }
1844
- },
1845
- "DescribeVirtualServiceInput": {
1846
- "type": "structure",
1847
- "required": [
1848
- "meshName",
1849
- "virtualServiceName"
1850
- ],
1851
- "members": {
1852
- "meshName": {
1853
- "shape": "ResourceName",
1854
- "location": "uri",
1855
- "locationName": "meshName"
1856
- },
1857
- "virtualServiceName": {
1858
- "shape": "ServiceName",
1859
- "location": "uri",
1860
- "locationName": "virtualServiceName"
1861
- }
1862
- }
1863
- },
1864
- "ListVirtualServicesLimit": {
1865
- "type": "integer",
1866
- "box": true,
1867
- "min": 1,
1868
- "max": 100
1869
- },
1870
- "DeleteRouteInput": {
1871
- "type": "structure",
1872
- "required": [
1873
- "meshName",
1874
- "routeName",
1875
- "virtualRouterName"
1876
- ],
1877
- "members": {
1878
- "meshName": {
1879
- "shape": "ResourceName",
1880
- "location": "uri",
1881
- "locationName": "meshName"
1882
- },
1883
- "routeName": {
1884
- "shape": "ResourceName",
1885
- "location": "uri",
1886
- "locationName": "routeName"
1887
- },
1888
- "virtualRouterName": {
1889
- "shape": "ResourceName",
1890
- "location": "uri",
1891
- "locationName": "virtualRouterName"
1892
- }
1893
- }
1894
- },
1895
- "VirtualNodeData": {
1896
- "type": "structure",
1897
- "required": [
1898
- "meshName",
1899
- "metadata",
1900
- "spec",
1901
- "status",
1902
- "virtualNodeName"
1903
- ],
1904
- "members": {
1905
- "meshName": {
1906
- "shape": "ResourceName"
1907
- },
1908
- "metadata": {
1909
- "shape": "ResourceMetadata"
1910
- },
1911
- "spec": {
1912
- "shape": "VirtualNodeSpec"
1913
- },
1914
- "status": {
1915
- "shape": "VirtualNodeStatus"
1916
- },
1917
- "virtualNodeName": {
1918
- "shape": "ResourceName"
1919
- }
1920
- }
1921
- },
1922
- "UntagResourceOutput": {
1923
- "type": "structure",
1924
- "members": { }
1925
- },
1926
- "AwsCloudMapInstanceAttribute": {
1927
- "type": "structure",
1928
- "required": [
1929
- "key",
1930
- "value"
1931
- ],
1932
- "members": {
1933
- "key": {
1934
- "shape": "AwsCloudMapInstanceAttributeKey"
1935
- },
1936
- "value": {
1937
- "shape": "AwsCloudMapInstanceAttributeValue"
1938
- }
1939
- }
1940
- },
1941
- "TcpRetryPolicyEvent": {
1942
- "type": "string",
1943
- "enum": [
1944
- "connection-error"
1945
- ]
1946
- },
1947
- "VirtualServiceSpec": {
1948
- "type": "structure",
1949
- "members": {
1950
- "provider": {
1951
- "shape": "VirtualServiceProvider"
1952
- }
1953
- }
1954
- },
1955
- "Backend": {
1956
- "type": "structure",
1957
- "members": {
1958
- "virtualService": {
1959
- "shape": "VirtualServiceBackend"
1960
- }
1961
- }
1962
- },
1963
- "MatchRange": {
1964
- "type": "structure",
1965
- "required": [
1966
- "end",
1967
- "start"
1968
- ],
1969
- "members": {
1970
- "end": {
1971
- "shape": "Long"
1972
- },
1973
- "start": {
1974
- "shape": "Long"
1975
- }
1976
- }
1977
- },
1978
- "ListVirtualRoutersLimit": {
1979
- "type": "integer",
1980
- "box": true,
1981
- "min": 1,
1982
- "max": 100
1983
- },
1984
- "HealthCheckIntervalMillis": {
1985
- "type": "long",
1986
- "box": true,
1987
- "min": 5000,
1988
- "max": 300000
1989
- },
1990
- "VirtualRouterList": {
1991
- "type": "list",
1992
- "member": {
1993
- "shape": "VirtualRouterRef"
1994
- }
1995
- },
1996
- "ListMeshesInput": {
1997
- "type": "structure",
1998
- "members": {
1999
- "limit": {
2000
- "shape": "ListMeshesLimit",
2001
- "location": "querystring",
2002
- "locationName": "limit"
2003
- },
2004
- "nextToken": {
2005
- "shape": "String",
2006
- "location": "querystring",
2007
- "locationName": "nextToken"
2008
- }
2009
- }
2010
- },
2011
- "Arn": {
2012
- "type": "string"
2013
- },
2014
- "TcpRoute": {
2015
- "type": "structure",
2016
- "required": [
2017
- "action"
2018
- ],
2019
- "members": {
2020
- "action": {
2021
- "shape": "TcpRouteAction"
2022
- }
2023
- }
2024
- },
2025
- "VirtualNodeList": {
2026
- "type": "list",
2027
- "member": {
2028
- "shape": "VirtualNodeRef"
2029
- }
2030
- },
2031
- "ListVirtualRoutersInput": {
2032
- "type": "structure",
2033
- "required": [
2034
- "meshName"
2035
- ],
2036
- "members": {
2037
- "limit": {
2038
- "shape": "ListVirtualRoutersLimit",
2039
- "location": "querystring",
2040
- "locationName": "limit"
2041
- },
2042
- "meshName": {
2043
- "shape": "ResourceName",
2044
- "location": "uri",
2045
- "locationName": "meshName"
2046
- },
2047
- "nextToken": {
2048
- "shape": "String",
2049
- "location": "querystring",
2050
- "locationName": "nextToken"
2051
- }
2052
- }
2053
- },
2054
- "VirtualRouterData": {
2055
- "type": "structure",
2056
- "required": [
2057
- "meshName",
2058
- "metadata",
2059
- "spec",
2060
- "status",
2061
- "virtualRouterName"
2062
- ],
2063
- "members": {
2064
- "meshName": {
2065
- "shape": "ResourceName"
2066
- },
2067
- "metadata": {
2068
- "shape": "ResourceMetadata"
2069
- },
2070
- "spec": {
2071
- "shape": "VirtualRouterSpec"
2072
- },
2073
- "status": {
2074
- "shape": "VirtualRouterStatus"
2075
- },
2076
- "virtualRouterName": {
2077
- "shape": "ResourceName"
2078
- }
2079
- }
2080
- },
2081
- "UpdateMeshInput": {
2082
- "type": "structure",
2083
- "required": [
2084
- "meshName"
2085
- ],
2086
- "members": {
2087
- "clientToken": {
2088
- "shape": "String",
2089
- "idempotencyToken": true
2090
- },
2091
- "meshName": {
2092
- "shape": "ResourceName",
2093
- "location": "uri",
2094
- "locationName": "meshName"
2095
- },
2096
- "spec": {
2097
- "shape": "MeshSpec"
2098
- }
2099
- }
2100
- },
2101
- "DurationUnit": {
2102
- "type": "string",
2103
- "enum": [
2104
- "ms",
2105
- "s"
2106
- ]
2107
- },
2108
- "RoutePriority": {
2109
- "type": "integer",
2110
- "box": true,
2111
- "min": 0,
2112
- "max": 1000
2113
- },
2114
- "ListVirtualServicesInput": {
2115
- "type": "structure",
2116
- "required": [
2117
- "meshName"
2118
- ],
2119
- "members": {
2120
- "limit": {
2121
- "shape": "ListVirtualServicesLimit",
2122
- "location": "querystring",
2123
- "locationName": "limit"
2124
- },
2125
- "meshName": {
2126
- "shape": "ResourceName",
2127
- "location": "uri",
2128
- "locationName": "meshName"
2129
- },
2130
- "nextToken": {
2131
- "shape": "String",
2132
- "location": "querystring",
2133
- "locationName": "nextToken"
2134
- }
2135
- }
2136
- },
2137
- "CreateVirtualRouterInput": {
2138
- "type": "structure",
2139
- "required": [
2140
- "meshName",
2141
- "spec",
2142
- "virtualRouterName"
2143
- ],
2144
- "members": {
2145
- "clientToken": {
2146
- "shape": "String",
2147
- "idempotencyToken": true
2148
- },
2149
- "meshName": {
2150
- "shape": "ResourceName",
2151
- "location": "uri",
2152
- "locationName": "meshName"
2153
- },
2154
- "spec": {
2155
- "shape": "VirtualRouterSpec"
2156
- },
2157
- "tags": {
2158
- "shape": "TagList"
2159
- },
2160
- "virtualRouterName": {
2161
- "shape": "ResourceName"
2162
- }
2163
- }
2164
- },
2165
- "AccessLog": {
2166
- "type": "structure",
2167
- "members": {
2168
- "file": {
2169
- "shape": "FileAccessLog"
2170
- }
2171
- }
2172
- },
2173
- "ListVirtualNodesInput": {
2174
- "type": "structure",
2175
- "required": [
2176
- "meshName"
2177
- ],
2178
- "members": {
2179
- "limit": {
2180
- "shape": "ListVirtualNodesLimit",
2181
- "location": "querystring",
2182
- "locationName": "limit"
2183
- },
2184
- "meshName": {
2185
- "shape": "ResourceName",
2186
- "location": "uri",
2187
- "locationName": "meshName"
2188
- },
2189
- "nextToken": {
2190
- "shape": "String",
2191
- "location": "querystring",
2192
- "locationName": "nextToken"
2193
- }
2194
- }
2195
- },
2196
- "DescribeVirtualRouterOutput": {
2197
- "type": "structure",
2198
- "required": [
2199
- "virtualRouter"
2200
- ],
2201
- "members": {
2202
- "virtualRouter": {
2203
- "shape": "VirtualRouterData"
2204
- }
2205
- },
2206
- "payload": "virtualRouter"
2207
- },
2208
- "CreateMeshOutput": {
2209
- "type": "structure",
2210
- "required": [
2211
- "mesh"
2212
- ],
2213
- "members": {
2214
- "mesh": {
2215
- "shape": "MeshData"
2216
- }
2217
- },
2218
- "payload": "mesh"
2219
- },
2220
- "CreateVirtualRouterOutput": {
2221
- "type": "structure",
2222
- "required": [
2223
- "virtualRouter"
2224
- ],
2225
- "members": {
2226
- "virtualRouter": {
2227
- "shape": "VirtualRouterData"
2228
- }
2229
- },
2230
- "payload": "virtualRouter"
2231
- },
2232
- "VirtualServiceStatus": {
2233
- "type": "structure",
2234
- "required": [
2235
- "status"
2236
- ],
2237
- "members": {
2238
- "status": {
2239
- "shape": "VirtualServiceStatusCode"
2240
- }
2241
- }
2242
- },
2243
- "HttpRetryPolicyEvents": {
2244
- "type": "list",
2245
- "member": {
2246
- "shape": "HttpRetryPolicyEvent"
2247
- },
2248
- "min": 1,
2249
- "max": 25
2250
- },
2251
- "ListVirtualNodesLimit": {
2252
- "type": "integer",
2253
- "box": true,
2254
- "min": 1,
2255
- "max": 100
2256
- },
2257
- "HealthCheckTimeoutMillis": {
2258
- "type": "long",
2259
- "box": true,
2260
- "min": 2000,
2261
- "max": 60000
2262
- },
2263
- "ListMeshesLimit": {
2264
- "type": "integer",
2265
- "box": true,
2266
- "min": 1,
2267
- "max": 100
2268
- },
2269
- "ResourceName": {
2270
- "type": "string",
2271
- "min": 1,
2272
- "max": 255
2273
- },
2274
- "AwsCloudMapInstanceAttributeKey": {
2275
- "type": "string",
2276
- "min": 1,
2277
- "max": 255,
2278
- "pattern": "^[a-zA-Z0-9!-~]+$"
2279
- },
2280
- "VirtualRouterSpec": {
2281
- "type": "structure",
2282
- "members": {
2283
- "listeners": {
2284
- "shape": "VirtualRouterListeners"
2285
- }
2286
- }
2287
- },
2288
- "TooManyRequestsException": {
2289
- "type": "structure",
2290
- "members": {
2291
- "message": {
2292
- "shape": "String"
2293
- }
2294
- },
2295
- "exception": true,
2296
- "error": {
2297
- "code": "TooManyRequestsException",
2298
- "httpStatusCode": 429,
2299
- "senderFault": true
2300
- }
2301
- },
2302
- "Timestamp": {
2303
- "type": "timestamp"
2304
- },
2305
- "HeaderMatch": {
2306
- "type": "string",
2307
- "min": 1,
2308
- "max": 255
2309
- },
2310
- "VirtualNodeSpec": {
2311
- "type": "structure",
2312
- "members": {
2313
- "backends": {
2314
- "shape": "Backends"
2315
- },
2316
- "listeners": {
2317
- "shape": "Listeners"
2318
- },
2319
- "logging": {
2320
- "shape": "Logging"
2321
- },
2322
- "serviceDiscovery": {
2323
- "shape": "ServiceDiscovery"
2324
- }
2325
- }
2326
- },
2327
- "ListMeshesOutput": {
2328
- "type": "structure",
2329
- "required": [
2330
- "meshes"
2331
- ],
2332
- "members": {
2333
- "meshes": {
2334
- "shape": "MeshList"
2335
- },
2336
- "nextToken": {
2337
- "shape": "String"
2338
- }
2339
- }
2340
- },
2341
- "VirtualRouterListeners": {
2342
- "type": "list",
2343
- "member": {
2344
- "shape": "VirtualRouterListener"
2345
- },
2346
- "min": 1,
2347
- "max": 1
2348
- },
2349
- "HttpMethod": {
2350
- "type": "string",
2351
- "enum": [
2352
- "CONNECT",
2353
- "DELETE",
2354
- "GET",
2355
- "HEAD",
2356
- "OPTIONS",
2357
- "PATCH",
2358
- "POST",
2359
- "PUT",
2360
- "TRACE"
2361
- ]
2362
- },
2363
- "Duration": {
2364
- "type": "structure",
2365
- "members": {
2366
- "unit": {
2367
- "shape": "DurationUnit"
2368
- },
2369
- "value": {
2370
- "shape": "DurationValue"
2371
- }
2372
- }
2373
- },
2374
- "ConflictException": {
2375
- "type": "structure",
2376
- "members": {
2377
- "message": {
2378
- "shape": "String"
2379
- }
2380
- },
2381
- "exception": true,
2382
- "error": {
2383
- "code": "ConflictException",
2384
- "httpStatusCode": 409,
2385
- "senderFault": true
2386
- }
2387
- },
2388
- "DescribeRouteOutput": {
2389
- "type": "structure",
2390
- "required": [
2391
- "route"
2392
- ],
2393
- "members": {
2394
- "route": {
2395
- "shape": "RouteData"
2396
- }
2397
- },
2398
- "payload": "route"
2399
- },
2400
- "HttpRouteMatch": {
2401
- "type": "structure",
2402
- "required": [
2403
- "prefix"
2404
- ],
2405
- "members": {
2406
- "headers": {
2407
- "shape": "HttpRouteHeaders"
2408
- },
2409
- "method": {
2410
- "shape": "HttpMethod"
2411
- },
2412
- "prefix": {
2413
- "shape": "String"
2414
- },
2415
- "scheme": {
2416
- "shape": "HttpScheme"
2417
- }
2418
- }
2419
- },
2420
- "MeshList": {
2421
- "type": "list",
2422
- "member": {
2423
- "shape": "MeshRef"
2424
- }
2425
- },
2426
- "TagRef": {
2427
- "type": "structure",
2428
- "required": [
2429
- "key"
2430
- ],
2431
- "members": {
2432
- "key": {
2433
- "shape": "TagKey"
2434
- },
2435
- "value": {
2436
- "shape": "TagValue"
2437
- }
2438
- }
2439
- },
2440
- "MeshRef": {
2441
- "type": "structure",
2442
- "required": [
2443
- "arn",
2444
- "meshName"
2445
- ],
2446
- "members": {
2447
- "arn": {
2448
- "shape": "Arn"
2449
- },
2450
- "meshName": {
2451
- "shape": "ResourceName"
2452
- }
2453
- }
2454
- },
2455
- "MaxRetries": {
2456
- "type": "long",
2457
- "box": true,
2458
- "min": 0
2459
- },
2460
- "MeshStatusCode": {
2461
- "type": "string",
2462
- "enum": [
2463
- "ACTIVE",
2464
- "DELETED",
2465
- "INACTIVE"
2466
- ]
2467
- },
2468
- "PortMapping": {
2469
- "type": "structure",
2470
- "required": [
2471
- "port",
2472
- "protocol"
2473
- ],
2474
- "members": {
2475
- "port": {
2476
- "shape": "PortNumber"
2477
- },
2478
- "protocol": {
2479
- "shape": "PortProtocol"
2480
- }
2481
- }
2482
- },
2483
- "MeshData": {
2484
- "type": "structure",
2485
- "required": [
2486
- "meshName",
2487
- "metadata",
2488
- "spec",
2489
- "status"
2490
- ],
2491
- "members": {
2492
- "meshName": {
2493
- "shape": "ResourceName"
2494
- },
2495
- "metadata": {
2496
- "shape": "ResourceMetadata"
2497
- },
2498
- "spec": {
2499
- "shape": "MeshSpec"
2500
- },
2501
- "status": {
2502
- "shape": "MeshStatus"
2503
- }
2504
- }
2505
- },
2506
- "VirtualRouterStatus": {
2507
- "type": "structure",
2508
- "required": [
2509
- "status"
2510
- ],
2511
- "members": {
2512
- "status": {
2513
- "shape": "VirtualRouterStatusCode"
2514
- }
2515
- }
2516
- },
2517
- "ListVirtualServicesOutput": {
2518
- "type": "structure",
2519
- "required": [
2520
- "virtualServices"
2521
- ],
2522
- "members": {
2523
- "nextToken": {
2524
- "shape": "String"
2525
- },
2526
- "virtualServices": {
2527
- "shape": "VirtualServiceList"
2528
- }
2529
- }
2530
- },
2531
- "AwsCloudMapInstanceAttributeValue": {
2532
- "type": "string",
2533
- "min": 1,
2534
- "max": 1024,
2535
- "pattern": "^([a-zA-Z0-9!-~][ ta-zA-Z0-9!-~]*){0,1}[a-zA-Z0-9!-~]{0,1}$"
2536
- },
2537
- "WeightedTarget": {
2538
- "type": "structure",
2539
- "required": [
2540
- "virtualNode",
2541
- "weight"
2542
- ],
2543
- "members": {
2544
- "virtualNode": {
2545
- "shape": "ResourceName"
2546
- },
2547
- "weight": {
2548
- "shape": "PercentInt"
2549
- }
2550
- }
2551
- },
2552
- "TcpRouteAction": {
2553
- "type": "structure",
2554
- "required": [
2555
- "weightedTargets"
2556
- ],
2557
- "members": {
2558
- "weightedTargets": {
2559
- "shape": "WeightedTargets"
2560
- }
2561
- }
2562
- },
2563
- "DescribeVirtualNodeInput": {
2564
- "type": "structure",
2565
- "required": [
2566
- "meshName",
2567
- "virtualNodeName"
2568
- ],
2569
- "members": {
2570
- "meshName": {
2571
- "shape": "ResourceName",
2572
- "location": "uri",
2573
- "locationName": "meshName"
2574
- },
2575
- "virtualNodeName": {
2576
- "shape": "ResourceName",
2577
- "location": "uri",
2578
- "locationName": "virtualNodeName"
2579
- }
2580
- }
2581
- },
2582
- "RouteStatus": {
2583
- "type": "structure",
2584
- "required": [
2585
- "status"
2586
- ],
2587
- "members": {
2588
- "status": {
2589
- "shape": "RouteStatusCode"
2590
- }
2591
- }
2592
- },
2593
- "RouteRef": {
2594
- "type": "structure",
2595
- "required": [
2596
- "arn",
2597
- "meshName",
2598
- "routeName",
2599
- "virtualRouterName"
2600
- ],
2601
- "members": {
2602
- "arn": {
2603
- "shape": "Arn"
2604
- },
2605
- "meshName": {
2606
- "shape": "ResourceName"
2607
- },
2608
- "routeName": {
2609
- "shape": "ResourceName"
2610
- },
2611
- "virtualRouterName": {
2612
- "shape": "ResourceName"
2613
- }
2614
- }
2615
- },
2616
- "Listener": {
2617
- "type": "structure",
2618
- "required": [
2619
- "portMapping"
2620
- ],
2621
- "members": {
2622
- "healthCheck": {
2623
- "shape": "HealthCheckPolicy"
2624
- },
2625
- "portMapping": {
2626
- "shape": "PortMapping"
2627
- }
2628
- }
2629
- },
2630
- "DeleteVirtualNodeInput": {
2631
- "type": "structure",
2632
- "required": [
2633
- "meshName",
2634
- "virtualNodeName"
2635
- ],
2636
- "members": {
2637
- "meshName": {
2638
- "shape": "ResourceName",
2639
- "location": "uri",
2640
- "locationName": "meshName"
2641
- },
2642
- "virtualNodeName": {
2643
- "shape": "ResourceName",
2644
- "location": "uri",
2645
- "locationName": "virtualNodeName"
2646
- }
2647
- }
2648
- },
2649
- "RouteData": {
2650
- "type": "structure",
2651
- "required": [
2652
- "meshName",
2653
- "metadata",
2654
- "routeName",
2655
- "spec",
2656
- "status",
2657
- "virtualRouterName"
2658
- ],
2659
- "members": {
2660
- "meshName": {
2661
- "shape": "ResourceName"
2662
- },
2663
- "metadata": {
2664
- "shape": "ResourceMetadata"
2665
- },
2666
- "routeName": {
2667
- "shape": "ResourceName"
2668
- },
2669
- "spec": {
2670
- "shape": "RouteSpec"
2671
- },
2672
- "status": {
2673
- "shape": "RouteStatus"
2674
- },
2675
- "virtualRouterName": {
2676
- "shape": "ResourceName"
2677
- }
2678
- }
2679
- },
2680
- "RouteStatusCode": {
2681
- "type": "string",
2682
- "enum": [
2683
- "ACTIVE",
2684
- "DELETED",
2685
- "INACTIVE"
2686
- ]
2687
- },
2688
- "ListRoutesLimit": {
2689
- "type": "integer",
2690
- "box": true,
2691
- "min": 1,
2692
- "max": 100
2693
- },
2694
- "DeleteVirtualServiceOutput": {
2695
- "type": "structure",
2696
- "required": [
2697
- "virtualService"
2698
- ],
2699
- "members": {
2700
- "virtualService": {
2701
- "shape": "VirtualServiceData"
2702
- }
2703
- },
2704
- "payload": "virtualService"
2705
- },
2706
- "VirtualNodeServiceProvider": {
2707
- "type": "structure",
2708
- "required": [
2709
- "virtualNodeName"
2710
- ],
2711
- "members": {
2712
- "virtualNodeName": {
2713
- "shape": "ResourceName"
2714
- }
2715
- }
2716
- },
2717
- "InternalServerErrorException": {
2718
- "type": "structure",
2719
- "members": {
2720
- "message": {
2721
- "shape": "String"
2722
- }
2723
- },
2724
- "exception": true,
2725
- "error": {
2726
- "code": "InternalServerErrorException",
2727
- "httpStatusCode": 500,
2728
- "fault": true
2729
- }
2730
- },
2731
- "HeaderName": {
2732
- "type": "string",
2733
- "min": 1,
2734
- "max": 50
2735
- },
2736
- "TagList": {
2737
- "type": "list",
2738
- "member": {
2739
- "shape": "TagRef"
2740
- },
2741
- "min": 0,
2742
- "max": 50
2743
- },
2744
- "HttpRetryPolicy": {
2745
- "type": "structure",
2746
- "required": [
2747
- "maxRetries",
2748
- "perRetryTimeout"
2749
- ],
2750
- "members": {
2751
- "httpRetryEvents": {
2752
- "shape": "HttpRetryPolicyEvents"
2753
- },
2754
- "maxRetries": {
2755
- "shape": "MaxRetries"
2756
- },
2757
- "perRetryTimeout": {
2758
- "shape": "Duration"
2759
- },
2760
- "tcpRetryEvents": {
2761
- "shape": "TcpRetryPolicyEvents"
2762
- }
2763
- }
2764
- },
2765
- "DescribeVirtualRouterInput": {
2766
- "type": "structure",
2767
- "required": [
2768
- "meshName",
2769
- "virtualRouterName"
2770
- ],
2771
- "members": {
2772
- "meshName": {
2773
- "shape": "ResourceName",
2774
- "location": "uri",
2775
- "locationName": "meshName"
2776
- },
2777
- "virtualRouterName": {
2778
- "shape": "ResourceName",
2779
- "location": "uri",
2780
- "locationName": "virtualRouterName"
2781
- }
2782
- }
2783
- },
2784
- "TagResourceOutput": {
2785
- "type": "structure",
2786
- "members": { }
2787
- },
2788
- "RouteList": {
2789
- "type": "list",
2790
- "member": {
2791
- "shape": "RouteRef"
2792
- }
2793
- },
2794
- "ForbiddenException": {
2795
- "type": "structure",
2796
- "members": {
2797
- "message": {
2798
- "shape": "String"
2799
- }
2800
- },
2801
- "exception": true,
2802
- "error": {
2803
- "code": "ForbiddenException",
2804
- "httpStatusCode": 403,
2805
- "senderFault": true
2806
- }
2807
- },
2808
- "TooManyTagsException": {
2809
- "type": "structure",
2810
- "members": {
2811
- "message": {
2812
- "shape": "String"
2813
- }
2814
- },
2815
- "exception": true,
2816
- "error": {
2817
- "code": "TooManyTagsException",
2818
- "httpStatusCode": 400,
2819
- "senderFault": true
2820
- }
2821
- },
2822
- "HeaderMatchMethod": {
2823
- "type": "structure",
2824
- "members": {
2825
- "exact": {
2826
- "shape": "HeaderMatch"
2827
- },
2828
- "prefix": {
2829
- "shape": "HeaderMatch"
2830
- },
2831
- "range": {
2832
- "shape": "MatchRange"
2833
- },
2834
- "regex": {
2835
- "shape": "HeaderMatch"
2836
- },
2837
- "suffix": {
2838
- "shape": "HeaderMatch"
2839
- }
2840
- }
2841
- },
2842
- "DeleteMeshOutput": {
2843
- "type": "structure",
2844
- "required": [
2845
- "mesh"
2846
- ],
2847
- "members": {
2848
- "mesh": {
2849
- "shape": "MeshData"
2850
- }
2851
- },
2852
- "payload": "mesh"
2853
- },
2854
- "EgressFilterType": {
2855
- "type": "string",
2856
- "enum": [
2857
- "ALLOW_ALL",
2858
- "DROP_ALL"
2859
- ]
2860
- },
2861
- "DurationValue": {
2862
- "type": "long",
2863
- "box": true,
2864
- "min": 0
2865
- },
2866
- "Hostname": {
2867
- "type": "string"
2868
- },
2869
- "PortNumber": {
2870
- "type": "integer",
2871
- "min": 1,
2872
- "max": 65535
2873
- },
2874
- "TagResourceInput": {
2875
- "type": "structure",
2876
- "required": [
2877
- "resourceArn",
2878
- "tags"
2879
- ],
2880
- "members": {
2881
- "resourceArn": {
2882
- "shape": "Arn",
2883
- "location": "querystring",
2884
- "locationName": "resourceArn"
2885
- },
2886
- "tags": {
2887
- "shape": "TagList"
2888
- }
2889
- }
2890
- },
2891
- "CreateRouteInput": {
2892
- "type": "structure",
2893
- "required": [
2894
- "meshName",
2895
- "routeName",
2896
- "spec",
2897
- "virtualRouterName"
2898
- ],
2899
- "members": {
2900
- "clientToken": {
2901
- "shape": "String",
2902
- "idempotencyToken": true
2903
- },
2904
- "meshName": {
2905
- "shape": "ResourceName",
2906
- "location": "uri",
2907
- "locationName": "meshName"
2908
- },
2909
- "routeName": {
2910
- "shape": "ResourceName"
2911
- },
2912
- "spec": {
2913
- "shape": "RouteSpec"
2914
- },
2915
- "tags": {
2916
- "shape": "TagList"
2917
- },
2918
- "virtualRouterName": {
2919
- "shape": "ResourceName",
2920
- "location": "uri",
2921
- "locationName": "virtualRouterName"
2922
- }
2923
- }
2924
- },
2925
- "WeightedTargets": {
2926
- "type": "list",
2927
- "member": {
2928
- "shape": "WeightedTarget"
2929
- },
2930
- "min": 1,
2931
- "max": 10
2932
- },
2933
- "HttpRouteHeaders": {
2934
- "type": "list",
2935
- "member": {
2936
- "shape": "HttpRouteHeader"
2937
- },
2938
- "min": 1,
2939
- "max": 10
2940
- },
2941
- "VirtualServiceProvider": {
2942
- "type": "structure",
2943
- "members": {
2944
- "virtualNode": {
2945
- "shape": "VirtualNodeServiceProvider"
2946
- },
2947
- "virtualRouter": {
2948
- "shape": "VirtualRouterServiceProvider"
2949
- }
2950
- }
2951
- },
2952
- "String": {
2953
- "type": "string"
2954
- },
2955
- "AwsCloudMapServiceDiscovery": {
2956
- "type": "structure",
2957
- "required": [
2958
- "namespaceName",
2959
- "serviceName"
2960
- ],
2961
- "members": {
2962
- "attributes": {
2963
- "shape": "AwsCloudMapInstanceAttributes"
2964
- },
2965
- "namespaceName": {
2966
- "shape": "AwsCloudMapName"
2967
- },
2968
- "serviceName": {
2969
- "shape": "AwsCloudMapName"
2970
- }
2971
- }
2972
- },
2973
- "HttpScheme": {
2974
- "type": "string",
2975
- "enum": [
2976
- "http",
2977
- "https"
2978
- ]
2979
- },
2980
- "UpdateVirtualServiceOutput": {
2981
- "type": "structure",
2982
- "required": [
2983
- "virtualService"
2984
- ],
2985
- "members": {
2986
- "virtualService": {
2987
- "shape": "VirtualServiceData"
2988
- }
2989
- },
2990
- "payload": "virtualService"
2991
- },
2992
- "UpdateRouteInput": {
2993
- "type": "structure",
2994
- "required": [
2995
- "meshName",
2996
- "routeName",
2997
- "spec",
2998
- "virtualRouterName"
2999
- ],
3000
- "members": {
3001
- "clientToken": {
3002
- "shape": "String",
3003
- "idempotencyToken": true
3004
- },
3005
- "meshName": {
3006
- "shape": "ResourceName",
3007
- "location": "uri",
3008
- "locationName": "meshName"
3009
- },
3010
- "routeName": {
3011
- "shape": "ResourceName",
3012
- "location": "uri",
3013
- "locationName": "routeName"
3014
- },
3015
- "spec": {
3016
- "shape": "RouteSpec"
3017
- },
3018
- "virtualRouterName": {
3019
- "shape": "ResourceName",
3020
- "location": "uri",
3021
- "locationName": "virtualRouterName"
3022
- }
3023
- }
3024
- },
3025
- "MeshStatus": {
3026
- "type": "structure",
3027
- "members": {
3028
- "status": {
3029
- "shape": "MeshStatusCode"
3030
- }
3031
- }
3032
- },
3033
- "CreateVirtualNodeInput": {
3034
- "type": "structure",
3035
- "required": [
3036
- "meshName",
3037
- "spec",
3038
- "virtualNodeName"
3039
- ],
3040
- "members": {
3041
- "clientToken": {
3042
- "shape": "String",
3043
- "idempotencyToken": true
3044
- },
3045
- "meshName": {
3046
- "shape": "ResourceName",
3047
- "location": "uri",
3048
- "locationName": "meshName"
3049
- },
3050
- "spec": {
3051
- "shape": "VirtualNodeSpec"
3052
- },
3053
- "tags": {
3054
- "shape": "TagList"
3055
- },
3056
- "virtualNodeName": {
3057
- "shape": "ResourceName"
3058
- }
3059
- }
3060
- },
3061
- "NotFoundException": {
3062
- "type": "structure",
3063
- "members": {
3064
- "message": {
3065
- "shape": "String"
3066
- }
3067
- },
3068
- "exception": true,
3069
- "error": {
3070
- "code": "NotFoundException",
3071
- "httpStatusCode": 404,
3072
- "senderFault": true
3073
- }
3074
- },
3075
- "RouteSpec": {
3076
- "type": "structure",
3077
- "members": {
3078
- "httpRoute": {
3079
- "shape": "HttpRoute"
3080
- },
3081
- "priority": {
3082
- "shape": "RoutePriority"
3083
- },
3084
- "tcpRoute": {
3085
- "shape": "TcpRoute"
3086
- }
3087
- }
3088
- },
3089
- "HttpRoute": {
3090
- "type": "structure",
3091
- "required": [
3092
- "action",
3093
- "match"
3094
- ],
3095
- "members": {
3096
- "action": {
3097
- "shape": "HttpRouteAction"
3098
- },
3099
- "match": {
3100
- "shape": "HttpRouteMatch"
3101
- },
3102
- "retryPolicy": {
3103
- "shape": "HttpRetryPolicy"
3104
- }
3105
- }
3106
- },
3107
- "DescribeMeshInput": {
3108
- "type": "structure",
3109
- "required": [
3110
- "meshName"
3111
- ],
3112
- "members": {
3113
- "meshName": {
3114
- "shape": "ResourceName",
3115
- "location": "uri",
3116
- "locationName": "meshName"
3117
- }
3118
- }
3119
- },
3120
- "MeshSpec": {
3121
- "type": "structure",
3122
- "members": {
3123
- "egressFilter": {
3124
- "shape": "EgressFilter"
3125
- }
3126
- }
3127
- },
3128
- "CreateVirtualServiceOutput": {
3129
- "type": "structure",
3130
- "required": [
3131
- "virtualService"
3132
- ],
3133
- "members": {
3134
- "virtualService": {
3135
- "shape": "VirtualServiceData"
3136
- }
3137
- },
3138
- "payload": "virtualService"
3139
- },
3140
- "FileAccessLog": {
3141
- "type": "structure",
3142
- "required": [
3143
- "path"
3144
- ],
3145
- "members": {
3146
- "path": {
3147
- "shape": "FilePath"
3148
- }
3149
- }
3150
- },
3151
- "VirtualRouterServiceProvider": {
3152
- "type": "structure",
3153
- "required": [
3154
- "virtualRouterName"
3155
- ],
3156
- "members": {
3157
- "virtualRouterName": {
3158
- "shape": "ResourceName"
3159
- }
3160
- }
3161
- },
3162
- "DeleteVirtualServiceInput": {
3163
- "type": "structure",
3164
- "required": [
3165
- "meshName",
3166
- "virtualServiceName"
3167
- ],
3168
- "members": {
3169
- "meshName": {
3170
- "shape": "ResourceName",
3171
- "location": "uri",
3172
- "locationName": "meshName"
3173
- },
3174
- "virtualServiceName": {
3175
- "shape": "ServiceName",
3176
- "location": "uri",
3177
- "locationName": "virtualServiceName"
3178
- }
3179
- }
3180
- },
3181
- "ListTagsForResourceOutput": {
3182
- "type": "structure",
3183
- "required": [
3184
- "tags"
3185
- ],
3186
- "members": {
3187
- "nextToken": {
3188
- "shape": "String"
3189
- },
3190
- "tags": {
3191
- "shape": "TagList"
3192
- }
3193
- }
3194
- },
3195
- "ServiceDiscovery": {
3196
- "type": "structure",
3197
- "members": {
3198
- "awsCloudMap": {
3199
- "shape": "AwsCloudMapServiceDiscovery"
3200
- },
3201
- "dns": {
3202
- "shape": "DnsServiceDiscovery"
3203
- }
3204
- }
3205
- },
3206
- "ListVirtualNodesOutput": {
3207
- "type": "structure",
3208
- "required": [
3209
- "virtualNodes"
3210
- ],
3211
- "members": {
3212
- "nextToken": {
3213
- "shape": "String"
3214
- },
3215
- "virtualNodes": {
3216
- "shape": "VirtualNodeList"
3217
- }
3218
- }
3219
- },
3220
- "UntagResourceInput": {
3221
- "type": "structure",
3222
- "required": [
3223
- "resourceArn",
3224
- "tagKeys"
3225
- ],
3226
- "members": {
3227
- "resourceArn": {
3228
- "shape": "Arn",
3229
- "location": "querystring",
3230
- "locationName": "resourceArn"
3231
- },
3232
- "tagKeys": {
3233
- "shape": "TagKeyList"
3234
- }
3235
- }
3236
- },
3237
- "DeleteVirtualRouterOutput": {
3238
- "type": "structure",
3239
- "required": [
3240
- "virtualRouter"
3241
- ],
3242
- "members": {
3243
- "virtualRouter": {
3244
- "shape": "VirtualRouterData"
3245
- }
3246
- },
3247
- "payload": "virtualRouter"
3248
- },
3249
- "TagsLimit": {
3250
- "type": "integer",
3251
- "box": true,
3252
- "min": 1,
3253
- "max": 50
3254
- },
3255
- "TagKey": {
3256
- "type": "string",
3257
- "min": 1,
3258
- "max": 128
3259
- },
3260
- "VirtualServiceStatusCode": {
3261
- "type": "string",
3262
- "enum": [
3263
- "ACTIVE",
3264
- "DELETED",
3265
- "INACTIVE"
3266
- ]
3267
- },
3268
- "DeleteVirtualNodeOutput": {
3269
- "type": "structure",
3270
- "required": [
3271
- "virtualNode"
3272
- ],
3273
- "members": {
3274
- "virtualNode": {
3275
- "shape": "VirtualNodeData"
3276
- }
3277
- },
3278
- "payload": "virtualNode"
3279
- }
3280
- }
3281
- }