aws-sdk-core 2.11.404 → 3.75.0

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