aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,2551 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2013-06-30",
5
- "endpointPrefix":"storagegateway",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"AWS Storage Gateway",
9
- "signatureVersion":"v4",
10
- "targetPrefix":"StorageGateway_20130630",
11
- "uid":"storagegateway-2013-06-30"
12
- },
13
- "operations":{
14
- "ActivateGateway":{
15
- "name":"ActivateGateway",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"ActivateGatewayInput"},
21
- "output":{"shape":"ActivateGatewayOutput"},
22
- "errors":[
23
- {"shape":"InvalidGatewayRequestException"},
24
- {"shape":"InternalServerError"}
25
- ]
26
- },
27
- "AddCache":{
28
- "name":"AddCache",
29
- "http":{
30
- "method":"POST",
31
- "requestUri":"/"
32
- },
33
- "input":{"shape":"AddCacheInput"},
34
- "output":{"shape":"AddCacheOutput"},
35
- "errors":[
36
- {"shape":"InvalidGatewayRequestException"},
37
- {"shape":"InternalServerError"}
38
- ]
39
- },
40
- "AddTagsToResource":{
41
- "name":"AddTagsToResource",
42
- "http":{
43
- "method":"POST",
44
- "requestUri":"/"
45
- },
46
- "input":{"shape":"AddTagsToResourceInput"},
47
- "output":{"shape":"AddTagsToResourceOutput"},
48
- "errors":[
49
- {"shape":"InvalidGatewayRequestException"},
50
- {"shape":"InternalServerError"}
51
- ]
52
- },
53
- "AddUploadBuffer":{
54
- "name":"AddUploadBuffer",
55
- "http":{
56
- "method":"POST",
57
- "requestUri":"/"
58
- },
59
- "input":{"shape":"AddUploadBufferInput"},
60
- "output":{"shape":"AddUploadBufferOutput"},
61
- "errors":[
62
- {"shape":"InvalidGatewayRequestException"},
63
- {"shape":"InternalServerError"}
64
- ]
65
- },
66
- "AddWorkingStorage":{
67
- "name":"AddWorkingStorage",
68
- "http":{
69
- "method":"POST",
70
- "requestUri":"/"
71
- },
72
- "input":{"shape":"AddWorkingStorageInput"},
73
- "output":{"shape":"AddWorkingStorageOutput"},
74
- "errors":[
75
- {"shape":"InvalidGatewayRequestException"},
76
- {"shape":"InternalServerError"}
77
- ]
78
- },
79
- "CancelArchival":{
80
- "name":"CancelArchival",
81
- "http":{
82
- "method":"POST",
83
- "requestUri":"/"
84
- },
85
- "input":{"shape":"CancelArchivalInput"},
86
- "output":{"shape":"CancelArchivalOutput"},
87
- "errors":[
88
- {"shape":"InvalidGatewayRequestException"},
89
- {"shape":"InternalServerError"}
90
- ]
91
- },
92
- "CancelRetrieval":{
93
- "name":"CancelRetrieval",
94
- "http":{
95
- "method":"POST",
96
- "requestUri":"/"
97
- },
98
- "input":{"shape":"CancelRetrievalInput"},
99
- "output":{"shape":"CancelRetrievalOutput"},
100
- "errors":[
101
- {"shape":"InvalidGatewayRequestException"},
102
- {"shape":"InternalServerError"}
103
- ]
104
- },
105
- "CreateCachediSCSIVolume":{
106
- "name":"CreateCachediSCSIVolume",
107
- "http":{
108
- "method":"POST",
109
- "requestUri":"/"
110
- },
111
- "input":{"shape":"CreateCachediSCSIVolumeInput"},
112
- "output":{"shape":"CreateCachediSCSIVolumeOutput"},
113
- "errors":[
114
- {"shape":"InvalidGatewayRequestException"},
115
- {"shape":"InternalServerError"}
116
- ]
117
- },
118
- "CreateNFSFileShare":{
119
- "name":"CreateNFSFileShare",
120
- "http":{
121
- "method":"POST",
122
- "requestUri":"/"
123
- },
124
- "input":{"shape":"CreateNFSFileShareInput"},
125
- "output":{"shape":"CreateNFSFileShareOutput"},
126
- "errors":[
127
- {"shape":"InvalidGatewayRequestException"},
128
- {"shape":"InternalServerError"}
129
- ]
130
- },
131
- "CreateSnapshot":{
132
- "name":"CreateSnapshot",
133
- "http":{
134
- "method":"POST",
135
- "requestUri":"/"
136
- },
137
- "input":{"shape":"CreateSnapshotInput"},
138
- "output":{"shape":"CreateSnapshotOutput"},
139
- "errors":[
140
- {"shape":"InvalidGatewayRequestException"},
141
- {"shape":"InternalServerError"},
142
- {"shape":"ServiceUnavailableError"}
143
- ]
144
- },
145
- "CreateSnapshotFromVolumeRecoveryPoint":{
146
- "name":"CreateSnapshotFromVolumeRecoveryPoint",
147
- "http":{
148
- "method":"POST",
149
- "requestUri":"/"
150
- },
151
- "input":{"shape":"CreateSnapshotFromVolumeRecoveryPointInput"},
152
- "output":{"shape":"CreateSnapshotFromVolumeRecoveryPointOutput"},
153
- "errors":[
154
- {"shape":"InvalidGatewayRequestException"},
155
- {"shape":"InternalServerError"},
156
- {"shape":"ServiceUnavailableError"}
157
- ]
158
- },
159
- "CreateStorediSCSIVolume":{
160
- "name":"CreateStorediSCSIVolume",
161
- "http":{
162
- "method":"POST",
163
- "requestUri":"/"
164
- },
165
- "input":{"shape":"CreateStorediSCSIVolumeInput"},
166
- "output":{"shape":"CreateStorediSCSIVolumeOutput"},
167
- "errors":[
168
- {"shape":"InvalidGatewayRequestException"},
169
- {"shape":"InternalServerError"}
170
- ]
171
- },
172
- "CreateTapeWithBarcode":{
173
- "name":"CreateTapeWithBarcode",
174
- "http":{
175
- "method":"POST",
176
- "requestUri":"/"
177
- },
178
- "input":{"shape":"CreateTapeWithBarcodeInput"},
179
- "output":{"shape":"CreateTapeWithBarcodeOutput"},
180
- "errors":[
181
- {"shape":"InvalidGatewayRequestException"},
182
- {"shape":"InternalServerError"}
183
- ]
184
- },
185
- "CreateTapes":{
186
- "name":"CreateTapes",
187
- "http":{
188
- "method":"POST",
189
- "requestUri":"/"
190
- },
191
- "input":{"shape":"CreateTapesInput"},
192
- "output":{"shape":"CreateTapesOutput"},
193
- "errors":[
194
- {"shape":"InvalidGatewayRequestException"},
195
- {"shape":"InternalServerError"}
196
- ]
197
- },
198
- "DeleteBandwidthRateLimit":{
199
- "name":"DeleteBandwidthRateLimit",
200
- "http":{
201
- "method":"POST",
202
- "requestUri":"/"
203
- },
204
- "input":{"shape":"DeleteBandwidthRateLimitInput"},
205
- "output":{"shape":"DeleteBandwidthRateLimitOutput"},
206
- "errors":[
207
- {"shape":"InvalidGatewayRequestException"},
208
- {"shape":"InternalServerError"}
209
- ]
210
- },
211
- "DeleteChapCredentials":{
212
- "name":"DeleteChapCredentials",
213
- "http":{
214
- "method":"POST",
215
- "requestUri":"/"
216
- },
217
- "input":{"shape":"DeleteChapCredentialsInput"},
218
- "output":{"shape":"DeleteChapCredentialsOutput"},
219
- "errors":[
220
- {"shape":"InvalidGatewayRequestException"},
221
- {"shape":"InternalServerError"}
222
- ]
223
- },
224
- "DeleteFileShare":{
225
- "name":"DeleteFileShare",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"DeleteFileShareInput"},
231
- "output":{"shape":"DeleteFileShareOutput"},
232
- "errors":[
233
- {"shape":"InvalidGatewayRequestException"},
234
- {"shape":"InternalServerError"}
235
- ]
236
- },
237
- "DeleteGateway":{
238
- "name":"DeleteGateway",
239
- "http":{
240
- "method":"POST",
241
- "requestUri":"/"
242
- },
243
- "input":{"shape":"DeleteGatewayInput"},
244
- "output":{"shape":"DeleteGatewayOutput"},
245
- "errors":[
246
- {"shape":"InvalidGatewayRequestException"},
247
- {"shape":"InternalServerError"}
248
- ]
249
- },
250
- "DeleteSnapshotSchedule":{
251
- "name":"DeleteSnapshotSchedule",
252
- "http":{
253
- "method":"POST",
254
- "requestUri":"/"
255
- },
256
- "input":{"shape":"DeleteSnapshotScheduleInput"},
257
- "output":{"shape":"DeleteSnapshotScheduleOutput"},
258
- "errors":[
259
- {"shape":"InvalidGatewayRequestException"},
260
- {"shape":"InternalServerError"}
261
- ]
262
- },
263
- "DeleteTape":{
264
- "name":"DeleteTape",
265
- "http":{
266
- "method":"POST",
267
- "requestUri":"/"
268
- },
269
- "input":{"shape":"DeleteTapeInput"},
270
- "output":{"shape":"DeleteTapeOutput"},
271
- "errors":[
272
- {"shape":"InvalidGatewayRequestException"},
273
- {"shape":"InternalServerError"}
274
- ]
275
- },
276
- "DeleteTapeArchive":{
277
- "name":"DeleteTapeArchive",
278
- "http":{
279
- "method":"POST",
280
- "requestUri":"/"
281
- },
282
- "input":{"shape":"DeleteTapeArchiveInput"},
283
- "output":{"shape":"DeleteTapeArchiveOutput"},
284
- "errors":[
285
- {"shape":"InvalidGatewayRequestException"},
286
- {"shape":"InternalServerError"}
287
- ]
288
- },
289
- "DeleteVolume":{
290
- "name":"DeleteVolume",
291
- "http":{
292
- "method":"POST",
293
- "requestUri":"/"
294
- },
295
- "input":{"shape":"DeleteVolumeInput"},
296
- "output":{"shape":"DeleteVolumeOutput"},
297
- "errors":[
298
- {"shape":"InvalidGatewayRequestException"},
299
- {"shape":"InternalServerError"}
300
- ]
301
- },
302
- "DescribeBandwidthRateLimit":{
303
- "name":"DescribeBandwidthRateLimit",
304
- "http":{
305
- "method":"POST",
306
- "requestUri":"/"
307
- },
308
- "input":{"shape":"DescribeBandwidthRateLimitInput"},
309
- "output":{"shape":"DescribeBandwidthRateLimitOutput"},
310
- "errors":[
311
- {"shape":"InvalidGatewayRequestException"},
312
- {"shape":"InternalServerError"}
313
- ]
314
- },
315
- "DescribeCache":{
316
- "name":"DescribeCache",
317
- "http":{
318
- "method":"POST",
319
- "requestUri":"/"
320
- },
321
- "input":{"shape":"DescribeCacheInput"},
322
- "output":{"shape":"DescribeCacheOutput"},
323
- "errors":[
324
- {"shape":"InvalidGatewayRequestException"},
325
- {"shape":"InternalServerError"}
326
- ]
327
- },
328
- "DescribeCachediSCSIVolumes":{
329
- "name":"DescribeCachediSCSIVolumes",
330
- "http":{
331
- "method":"POST",
332
- "requestUri":"/"
333
- },
334
- "input":{"shape":"DescribeCachediSCSIVolumesInput"},
335
- "output":{"shape":"DescribeCachediSCSIVolumesOutput"},
336
- "errors":[
337
- {"shape":"InvalidGatewayRequestException"},
338
- {"shape":"InternalServerError"}
339
- ]
340
- },
341
- "DescribeChapCredentials":{
342
- "name":"DescribeChapCredentials",
343
- "http":{
344
- "method":"POST",
345
- "requestUri":"/"
346
- },
347
- "input":{"shape":"DescribeChapCredentialsInput"},
348
- "output":{"shape":"DescribeChapCredentialsOutput"},
349
- "errors":[
350
- {"shape":"InvalidGatewayRequestException"},
351
- {"shape":"InternalServerError"}
352
- ]
353
- },
354
- "DescribeGatewayInformation":{
355
- "name":"DescribeGatewayInformation",
356
- "http":{
357
- "method":"POST",
358
- "requestUri":"/"
359
- },
360
- "input":{"shape":"DescribeGatewayInformationInput"},
361
- "output":{"shape":"DescribeGatewayInformationOutput"},
362
- "errors":[
363
- {"shape":"InvalidGatewayRequestException"},
364
- {"shape":"InternalServerError"}
365
- ]
366
- },
367
- "DescribeMaintenanceStartTime":{
368
- "name":"DescribeMaintenanceStartTime",
369
- "http":{
370
- "method":"POST",
371
- "requestUri":"/"
372
- },
373
- "input":{"shape":"DescribeMaintenanceStartTimeInput"},
374
- "output":{"shape":"DescribeMaintenanceStartTimeOutput"},
375
- "errors":[
376
- {"shape":"InvalidGatewayRequestException"},
377
- {"shape":"InternalServerError"}
378
- ]
379
- },
380
- "DescribeNFSFileShares":{
381
- "name":"DescribeNFSFileShares",
382
- "http":{
383
- "method":"POST",
384
- "requestUri":"/"
385
- },
386
- "input":{"shape":"DescribeNFSFileSharesInput"},
387
- "output":{"shape":"DescribeNFSFileSharesOutput"},
388
- "errors":[
389
- {"shape":"InvalidGatewayRequestException"},
390
- {"shape":"InternalServerError"}
391
- ]
392
- },
393
- "DescribeSnapshotSchedule":{
394
- "name":"DescribeSnapshotSchedule",
395
- "http":{
396
- "method":"POST",
397
- "requestUri":"/"
398
- },
399
- "input":{"shape":"DescribeSnapshotScheduleInput"},
400
- "output":{"shape":"DescribeSnapshotScheduleOutput"},
401
- "errors":[
402
- {"shape":"InvalidGatewayRequestException"},
403
- {"shape":"InternalServerError"}
404
- ]
405
- },
406
- "DescribeStorediSCSIVolumes":{
407
- "name":"DescribeStorediSCSIVolumes",
408
- "http":{
409
- "method":"POST",
410
- "requestUri":"/"
411
- },
412
- "input":{"shape":"DescribeStorediSCSIVolumesInput"},
413
- "output":{"shape":"DescribeStorediSCSIVolumesOutput"},
414
- "errors":[
415
- {"shape":"InvalidGatewayRequestException"},
416
- {"shape":"InternalServerError"}
417
- ]
418
- },
419
- "DescribeTapeArchives":{
420
- "name":"DescribeTapeArchives",
421
- "http":{
422
- "method":"POST",
423
- "requestUri":"/"
424
- },
425
- "input":{"shape":"DescribeTapeArchivesInput"},
426
- "output":{"shape":"DescribeTapeArchivesOutput"},
427
- "errors":[
428
- {"shape":"InvalidGatewayRequestException"},
429
- {"shape":"InternalServerError"}
430
- ]
431
- },
432
- "DescribeTapeRecoveryPoints":{
433
- "name":"DescribeTapeRecoveryPoints",
434
- "http":{
435
- "method":"POST",
436
- "requestUri":"/"
437
- },
438
- "input":{"shape":"DescribeTapeRecoveryPointsInput"},
439
- "output":{"shape":"DescribeTapeRecoveryPointsOutput"},
440
- "errors":[
441
- {"shape":"InvalidGatewayRequestException"},
442
- {"shape":"InternalServerError"}
443
- ]
444
- },
445
- "DescribeTapes":{
446
- "name":"DescribeTapes",
447
- "http":{
448
- "method":"POST",
449
- "requestUri":"/"
450
- },
451
- "input":{"shape":"DescribeTapesInput"},
452
- "output":{"shape":"DescribeTapesOutput"},
453
- "errors":[
454
- {"shape":"InvalidGatewayRequestException"},
455
- {"shape":"InternalServerError"}
456
- ]
457
- },
458
- "DescribeUploadBuffer":{
459
- "name":"DescribeUploadBuffer",
460
- "http":{
461
- "method":"POST",
462
- "requestUri":"/"
463
- },
464
- "input":{"shape":"DescribeUploadBufferInput"},
465
- "output":{"shape":"DescribeUploadBufferOutput"},
466
- "errors":[
467
- {"shape":"InvalidGatewayRequestException"},
468
- {"shape":"InternalServerError"}
469
- ]
470
- },
471
- "DescribeVTLDevices":{
472
- "name":"DescribeVTLDevices",
473
- "http":{
474
- "method":"POST",
475
- "requestUri":"/"
476
- },
477
- "input":{"shape":"DescribeVTLDevicesInput"},
478
- "output":{"shape":"DescribeVTLDevicesOutput"},
479
- "errors":[
480
- {"shape":"InvalidGatewayRequestException"},
481
- {"shape":"InternalServerError"}
482
- ]
483
- },
484
- "DescribeWorkingStorage":{
485
- "name":"DescribeWorkingStorage",
486
- "http":{
487
- "method":"POST",
488
- "requestUri":"/"
489
- },
490
- "input":{"shape":"DescribeWorkingStorageInput"},
491
- "output":{"shape":"DescribeWorkingStorageOutput"},
492
- "errors":[
493
- {"shape":"InvalidGatewayRequestException"},
494
- {"shape":"InternalServerError"}
495
- ]
496
- },
497
- "DisableGateway":{
498
- "name":"DisableGateway",
499
- "http":{
500
- "method":"POST",
501
- "requestUri":"/"
502
- },
503
- "input":{"shape":"DisableGatewayInput"},
504
- "output":{"shape":"DisableGatewayOutput"},
505
- "errors":[
506
- {"shape":"InvalidGatewayRequestException"},
507
- {"shape":"InternalServerError"}
508
- ]
509
- },
510
- "ListFileShares":{
511
- "name":"ListFileShares",
512
- "http":{
513
- "method":"POST",
514
- "requestUri":"/"
515
- },
516
- "input":{"shape":"ListFileSharesInput"},
517
- "output":{"shape":"ListFileSharesOutput"},
518
- "errors":[
519
- {"shape":"InvalidGatewayRequestException"},
520
- {"shape":"InternalServerError"}
521
- ]
522
- },
523
- "ListGateways":{
524
- "name":"ListGateways",
525
- "http":{
526
- "method":"POST",
527
- "requestUri":"/"
528
- },
529
- "input":{"shape":"ListGatewaysInput"},
530
- "output":{"shape":"ListGatewaysOutput"},
531
- "errors":[
532
- {"shape":"InvalidGatewayRequestException"},
533
- {"shape":"InternalServerError"}
534
- ]
535
- },
536
- "ListLocalDisks":{
537
- "name":"ListLocalDisks",
538
- "http":{
539
- "method":"POST",
540
- "requestUri":"/"
541
- },
542
- "input":{"shape":"ListLocalDisksInput"},
543
- "output":{"shape":"ListLocalDisksOutput"},
544
- "errors":[
545
- {"shape":"InvalidGatewayRequestException"},
546
- {"shape":"InternalServerError"}
547
- ]
548
- },
549
- "ListTagsForResource":{
550
- "name":"ListTagsForResource",
551
- "http":{
552
- "method":"POST",
553
- "requestUri":"/"
554
- },
555
- "input":{"shape":"ListTagsForResourceInput"},
556
- "output":{"shape":"ListTagsForResourceOutput"},
557
- "errors":[
558
- {"shape":"InvalidGatewayRequestException"},
559
- {"shape":"InternalServerError"}
560
- ]
561
- },
562
- "ListTapes":{
563
- "name":"ListTapes",
564
- "http":{
565
- "method":"POST",
566
- "requestUri":"/"
567
- },
568
- "input":{"shape":"ListTapesInput"},
569
- "output":{"shape":"ListTapesOutput"},
570
- "errors":[
571
- {"shape":"InvalidGatewayRequestException"},
572
- {"shape":"InternalServerError"}
573
- ]
574
- },
575
- "ListVolumeInitiators":{
576
- "name":"ListVolumeInitiators",
577
- "http":{
578
- "method":"POST",
579
- "requestUri":"/"
580
- },
581
- "input":{"shape":"ListVolumeInitiatorsInput"},
582
- "output":{"shape":"ListVolumeInitiatorsOutput"},
583
- "errors":[
584
- {"shape":"InvalidGatewayRequestException"},
585
- {"shape":"InternalServerError"}
586
- ]
587
- },
588
- "ListVolumeRecoveryPoints":{
589
- "name":"ListVolumeRecoveryPoints",
590
- "http":{
591
- "method":"POST",
592
- "requestUri":"/"
593
- },
594
- "input":{"shape":"ListVolumeRecoveryPointsInput"},
595
- "output":{"shape":"ListVolumeRecoveryPointsOutput"},
596
- "errors":[
597
- {"shape":"InvalidGatewayRequestException"},
598
- {"shape":"InternalServerError"}
599
- ]
600
- },
601
- "ListVolumes":{
602
- "name":"ListVolumes",
603
- "http":{
604
- "method":"POST",
605
- "requestUri":"/"
606
- },
607
- "input":{"shape":"ListVolumesInput"},
608
- "output":{"shape":"ListVolumesOutput"},
609
- "errors":[
610
- {"shape":"InvalidGatewayRequestException"},
611
- {"shape":"InternalServerError"}
612
- ]
613
- },
614
- "RemoveTagsFromResource":{
615
- "name":"RemoveTagsFromResource",
616
- "http":{
617
- "method":"POST",
618
- "requestUri":"/"
619
- },
620
- "input":{"shape":"RemoveTagsFromResourceInput"},
621
- "output":{"shape":"RemoveTagsFromResourceOutput"},
622
- "errors":[
623
- {"shape":"InvalidGatewayRequestException"},
624
- {"shape":"InternalServerError"}
625
- ]
626
- },
627
- "ResetCache":{
628
- "name":"ResetCache",
629
- "http":{
630
- "method":"POST",
631
- "requestUri":"/"
632
- },
633
- "input":{"shape":"ResetCacheInput"},
634
- "output":{"shape":"ResetCacheOutput"},
635
- "errors":[
636
- {"shape":"InvalidGatewayRequestException"},
637
- {"shape":"InternalServerError"}
638
- ]
639
- },
640
- "RetrieveTapeArchive":{
641
- "name":"RetrieveTapeArchive",
642
- "http":{
643
- "method":"POST",
644
- "requestUri":"/"
645
- },
646
- "input":{"shape":"RetrieveTapeArchiveInput"},
647
- "output":{"shape":"RetrieveTapeArchiveOutput"},
648
- "errors":[
649
- {"shape":"InvalidGatewayRequestException"},
650
- {"shape":"InternalServerError"}
651
- ]
652
- },
653
- "RetrieveTapeRecoveryPoint":{
654
- "name":"RetrieveTapeRecoveryPoint",
655
- "http":{
656
- "method":"POST",
657
- "requestUri":"/"
658
- },
659
- "input":{"shape":"RetrieveTapeRecoveryPointInput"},
660
- "output":{"shape":"RetrieveTapeRecoveryPointOutput"},
661
- "errors":[
662
- {"shape":"InvalidGatewayRequestException"},
663
- {"shape":"InternalServerError"}
664
- ]
665
- },
666
- "SetLocalConsolePassword":{
667
- "name":"SetLocalConsolePassword",
668
- "http":{
669
- "method":"POST",
670
- "requestUri":"/"
671
- },
672
- "input":{"shape":"SetLocalConsolePasswordInput"},
673
- "output":{"shape":"SetLocalConsolePasswordOutput"},
674
- "errors":[
675
- {"shape":"InvalidGatewayRequestException"},
676
- {"shape":"InternalServerError"}
677
- ]
678
- },
679
- "ShutdownGateway":{
680
- "name":"ShutdownGateway",
681
- "http":{
682
- "method":"POST",
683
- "requestUri":"/"
684
- },
685
- "input":{"shape":"ShutdownGatewayInput"},
686
- "output":{"shape":"ShutdownGatewayOutput"},
687
- "errors":[
688
- {"shape":"InvalidGatewayRequestException"},
689
- {"shape":"InternalServerError"}
690
- ]
691
- },
692
- "StartGateway":{
693
- "name":"StartGateway",
694
- "http":{
695
- "method":"POST",
696
- "requestUri":"/"
697
- },
698
- "input":{"shape":"StartGatewayInput"},
699
- "output":{"shape":"StartGatewayOutput"},
700
- "errors":[
701
- {"shape":"InvalidGatewayRequestException"},
702
- {"shape":"InternalServerError"}
703
- ]
704
- },
705
- "UpdateBandwidthRateLimit":{
706
- "name":"UpdateBandwidthRateLimit",
707
- "http":{
708
- "method":"POST",
709
- "requestUri":"/"
710
- },
711
- "input":{"shape":"UpdateBandwidthRateLimitInput"},
712
- "output":{"shape":"UpdateBandwidthRateLimitOutput"},
713
- "errors":[
714
- {"shape":"InvalidGatewayRequestException"},
715
- {"shape":"InternalServerError"}
716
- ]
717
- },
718
- "UpdateChapCredentials":{
719
- "name":"UpdateChapCredentials",
720
- "http":{
721
- "method":"POST",
722
- "requestUri":"/"
723
- },
724
- "input":{"shape":"UpdateChapCredentialsInput"},
725
- "output":{"shape":"UpdateChapCredentialsOutput"},
726
- "errors":[
727
- {"shape":"InvalidGatewayRequestException"},
728
- {"shape":"InternalServerError"}
729
- ]
730
- },
731
- "UpdateGatewayInformation":{
732
- "name":"UpdateGatewayInformation",
733
- "http":{
734
- "method":"POST",
735
- "requestUri":"/"
736
- },
737
- "input":{"shape":"UpdateGatewayInformationInput"},
738
- "output":{"shape":"UpdateGatewayInformationOutput"},
739
- "errors":[
740
- {"shape":"InvalidGatewayRequestException"},
741
- {"shape":"InternalServerError"}
742
- ]
743
- },
744
- "UpdateGatewaySoftwareNow":{
745
- "name":"UpdateGatewaySoftwareNow",
746
- "http":{
747
- "method":"POST",
748
- "requestUri":"/"
749
- },
750
- "input":{"shape":"UpdateGatewaySoftwareNowInput"},
751
- "output":{"shape":"UpdateGatewaySoftwareNowOutput"},
752
- "errors":[
753
- {"shape":"InvalidGatewayRequestException"},
754
- {"shape":"InternalServerError"}
755
- ]
756
- },
757
- "UpdateMaintenanceStartTime":{
758
- "name":"UpdateMaintenanceStartTime",
759
- "http":{
760
- "method":"POST",
761
- "requestUri":"/"
762
- },
763
- "input":{"shape":"UpdateMaintenanceStartTimeInput"},
764
- "output":{"shape":"UpdateMaintenanceStartTimeOutput"},
765
- "errors":[
766
- {"shape":"InvalidGatewayRequestException"},
767
- {"shape":"InternalServerError"}
768
- ]
769
- },
770
- "UpdateNFSFileShare":{
771
- "name":"UpdateNFSFileShare",
772
- "http":{
773
- "method":"POST",
774
- "requestUri":"/"
775
- },
776
- "input":{"shape":"UpdateNFSFileShareInput"},
777
- "output":{"shape":"UpdateNFSFileShareOutput"},
778
- "errors":[
779
- {"shape":"InvalidGatewayRequestException"},
780
- {"shape":"InternalServerError"}
781
- ]
782
- },
783
- "UpdateSnapshotSchedule":{
784
- "name":"UpdateSnapshotSchedule",
785
- "http":{
786
- "method":"POST",
787
- "requestUri":"/"
788
- },
789
- "input":{"shape":"UpdateSnapshotScheduleInput"},
790
- "output":{"shape":"UpdateSnapshotScheduleOutput"},
791
- "errors":[
792
- {"shape":"InvalidGatewayRequestException"},
793
- {"shape":"InternalServerError"}
794
- ]
795
- },
796
- "UpdateVTLDeviceType":{
797
- "name":"UpdateVTLDeviceType",
798
- "http":{
799
- "method":"POST",
800
- "requestUri":"/"
801
- },
802
- "input":{"shape":"UpdateVTLDeviceTypeInput"},
803
- "output":{"shape":"UpdateVTLDeviceTypeOutput"},
804
- "errors":[
805
- {"shape":"InvalidGatewayRequestException"},
806
- {"shape":"InternalServerError"}
807
- ]
808
- }
809
- },
810
- "shapes":{
811
- "ActivateGatewayInput":{
812
- "type":"structure",
813
- "required":[
814
- "ActivationKey",
815
- "GatewayName",
816
- "GatewayTimezone",
817
- "GatewayRegion"
818
- ],
819
- "members":{
820
- "ActivationKey":{"shape":"ActivationKey"},
821
- "GatewayName":{"shape":"GatewayName"},
822
- "GatewayTimezone":{"shape":"GatewayTimezone"},
823
- "GatewayRegion":{"shape":"RegionId"},
824
- "GatewayType":{"shape":"GatewayType"},
825
- "TapeDriveType":{"shape":"TapeDriveType"},
826
- "MediumChangerType":{"shape":"MediumChangerType"}
827
- }
828
- },
829
- "ActivateGatewayOutput":{
830
- "type":"structure",
831
- "members":{
832
- "GatewayARN":{"shape":"GatewayARN"}
833
- }
834
- },
835
- "ActivationKey":{
836
- "type":"string",
837
- "max":50,
838
- "min":1
839
- },
840
- "AddCacheInput":{
841
- "type":"structure",
842
- "required":[
843
- "GatewayARN",
844
- "DiskIds"
845
- ],
846
- "members":{
847
- "GatewayARN":{"shape":"GatewayARN"},
848
- "DiskIds":{"shape":"DiskIds"}
849
- }
850
- },
851
- "AddCacheOutput":{
852
- "type":"structure",
853
- "members":{
854
- "GatewayARN":{"shape":"GatewayARN"}
855
- }
856
- },
857
- "AddTagsToResourceInput":{
858
- "type":"structure",
859
- "required":[
860
- "ResourceARN",
861
- "Tags"
862
- ],
863
- "members":{
864
- "ResourceARN":{"shape":"ResourceARN"},
865
- "Tags":{"shape":"Tags"}
866
- }
867
- },
868
- "AddTagsToResourceOutput":{
869
- "type":"structure",
870
- "members":{
871
- "ResourceARN":{"shape":"ResourceARN"}
872
- }
873
- },
874
- "AddUploadBufferInput":{
875
- "type":"structure",
876
- "required":[
877
- "GatewayARN",
878
- "DiskIds"
879
- ],
880
- "members":{
881
- "GatewayARN":{"shape":"GatewayARN"},
882
- "DiskIds":{"shape":"DiskIds"}
883
- }
884
- },
885
- "AddUploadBufferOutput":{
886
- "type":"structure",
887
- "members":{
888
- "GatewayARN":{"shape":"GatewayARN"}
889
- }
890
- },
891
- "AddWorkingStorageInput":{
892
- "type":"structure",
893
- "required":[
894
- "GatewayARN",
895
- "DiskIds"
896
- ],
897
- "members":{
898
- "GatewayARN":{"shape":"GatewayARN"},
899
- "DiskIds":{"shape":"DiskIds"}
900
- }
901
- },
902
- "AddWorkingStorageOutput":{
903
- "type":"structure",
904
- "members":{
905
- "GatewayARN":{"shape":"GatewayARN"}
906
- }
907
- },
908
- "BandwidthDownloadRateLimit":{
909
- "type":"long",
910
- "min":102400
911
- },
912
- "BandwidthType":{
913
- "type":"string",
914
- "max":25,
915
- "min":3
916
- },
917
- "BandwidthUploadRateLimit":{
918
- "type":"long",
919
- "min":51200
920
- },
921
- "Boolean":{"type":"boolean"},
922
- "CachediSCSIVolume":{
923
- "type":"structure",
924
- "members":{
925
- "VolumeARN":{"shape":"VolumeARN"},
926
- "VolumeId":{"shape":"VolumeId"},
927
- "VolumeType":{"shape":"VolumeType"},
928
- "VolumeStatus":{"shape":"VolumeStatus"},
929
- "VolumeSizeInBytes":{"shape":"long"},
930
- "VolumeProgress":{"shape":"DoubleObject"},
931
- "SourceSnapshotId":{"shape":"SnapshotId"},
932
- "VolumeiSCSIAttributes":{"shape":"VolumeiSCSIAttributes"},
933
- "CreatedDate":{"shape":"CreatedDate"}
934
- }
935
- },
936
- "CachediSCSIVolumes":{
937
- "type":"list",
938
- "member":{"shape":"CachediSCSIVolume"}
939
- },
940
- "CancelArchivalInput":{
941
- "type":"structure",
942
- "required":[
943
- "GatewayARN",
944
- "TapeARN"
945
- ],
946
- "members":{
947
- "GatewayARN":{"shape":"GatewayARN"},
948
- "TapeARN":{"shape":"TapeARN"}
949
- }
950
- },
951
- "CancelArchivalOutput":{
952
- "type":"structure",
953
- "members":{
954
- "TapeARN":{"shape":"TapeARN"}
955
- }
956
- },
957
- "CancelRetrievalInput":{
958
- "type":"structure",
959
- "required":[
960
- "GatewayARN",
961
- "TapeARN"
962
- ],
963
- "members":{
964
- "GatewayARN":{"shape":"GatewayARN"},
965
- "TapeARN":{"shape":"TapeARN"}
966
- }
967
- },
968
- "CancelRetrievalOutput":{
969
- "type":"structure",
970
- "members":{
971
- "TapeARN":{"shape":"TapeARN"}
972
- }
973
- },
974
- "ChapCredentials":{
975
- "type":"list",
976
- "member":{"shape":"ChapInfo"}
977
- },
978
- "ChapInfo":{
979
- "type":"structure",
980
- "members":{
981
- "TargetARN":{"shape":"TargetARN"},
982
- "SecretToAuthenticateInitiator":{"shape":"ChapSecret"},
983
- "InitiatorName":{"shape":"IqnName"},
984
- "SecretToAuthenticateTarget":{"shape":"ChapSecret"}
985
- }
986
- },
987
- "ChapSecret":{
988
- "type":"string",
989
- "max":100,
990
- "min":1
991
- },
992
- "ClientToken":{
993
- "type":"string",
994
- "max":100,
995
- "min":5
996
- },
997
- "CreateCachediSCSIVolumeInput":{
998
- "type":"structure",
999
- "required":[
1000
- "GatewayARN",
1001
- "VolumeSizeInBytes",
1002
- "TargetName",
1003
- "NetworkInterfaceId",
1004
- "ClientToken"
1005
- ],
1006
- "members":{
1007
- "GatewayARN":{"shape":"GatewayARN"},
1008
- "VolumeSizeInBytes":{"shape":"long"},
1009
- "SnapshotId":{"shape":"SnapshotId"},
1010
- "TargetName":{"shape":"TargetName"},
1011
- "SourceVolumeARN":{"shape":"VolumeARN"},
1012
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
1013
- "ClientToken":{"shape":"ClientToken"}
1014
- }
1015
- },
1016
- "CreateCachediSCSIVolumeOutput":{
1017
- "type":"structure",
1018
- "members":{
1019
- "VolumeARN":{"shape":"VolumeARN"},
1020
- "TargetARN":{"shape":"TargetARN"}
1021
- }
1022
- },
1023
- "CreateNFSFileShareInput":{
1024
- "type":"structure",
1025
- "required":[
1026
- "ClientToken",
1027
- "GatewayARN",
1028
- "Role",
1029
- "LocationARN"
1030
- ],
1031
- "members":{
1032
- "ClientToken":{"shape":"ClientToken"},
1033
- "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
1034
- "GatewayARN":{"shape":"GatewayARN"},
1035
- "KMSEncrypted":{"shape":"Boolean"},
1036
- "KMSKey":{"shape":"KMSKey"},
1037
- "Role":{"shape":"Role"},
1038
- "LocationARN":{"shape":"LocationARN"},
1039
- "DefaultStorageClass":{"shape":"StorageClass"},
1040
- "ClientList":{"shape":"FileShareClientList"}
1041
- }
1042
- },
1043
- "CreateNFSFileShareOutput":{
1044
- "type":"structure",
1045
- "members":{
1046
- "FileShareARN":{"shape":"FileShareARN"}
1047
- }
1048
- },
1049
- "CreateSnapshotFromVolumeRecoveryPointInput":{
1050
- "type":"structure",
1051
- "required":[
1052
- "VolumeARN",
1053
- "SnapshotDescription"
1054
- ],
1055
- "members":{
1056
- "VolumeARN":{"shape":"VolumeARN"},
1057
- "SnapshotDescription":{"shape":"SnapshotDescription"}
1058
- }
1059
- },
1060
- "CreateSnapshotFromVolumeRecoveryPointOutput":{
1061
- "type":"structure",
1062
- "members":{
1063
- "SnapshotId":{"shape":"SnapshotId"},
1064
- "VolumeARN":{"shape":"VolumeARN"},
1065
- "VolumeRecoveryPointTime":{"shape":"string"}
1066
- }
1067
- },
1068
- "CreateSnapshotInput":{
1069
- "type":"structure",
1070
- "required":[
1071
- "VolumeARN",
1072
- "SnapshotDescription"
1073
- ],
1074
- "members":{
1075
- "VolumeARN":{"shape":"VolumeARN"},
1076
- "SnapshotDescription":{"shape":"SnapshotDescription"}
1077
- }
1078
- },
1079
- "CreateSnapshotOutput":{
1080
- "type":"structure",
1081
- "members":{
1082
- "VolumeARN":{"shape":"VolumeARN"},
1083
- "SnapshotId":{"shape":"SnapshotId"}
1084
- }
1085
- },
1086
- "CreateStorediSCSIVolumeInput":{
1087
- "type":"structure",
1088
- "required":[
1089
- "GatewayARN",
1090
- "DiskId",
1091
- "PreserveExistingData",
1092
- "TargetName",
1093
- "NetworkInterfaceId"
1094
- ],
1095
- "members":{
1096
- "GatewayARN":{"shape":"GatewayARN"},
1097
- "DiskId":{"shape":"DiskId"},
1098
- "SnapshotId":{"shape":"SnapshotId"},
1099
- "PreserveExistingData":{"shape":"boolean"},
1100
- "TargetName":{"shape":"TargetName"},
1101
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"}
1102
- }
1103
- },
1104
- "CreateStorediSCSIVolumeOutput":{
1105
- "type":"structure",
1106
- "members":{
1107
- "VolumeARN":{"shape":"VolumeARN"},
1108
- "VolumeSizeInBytes":{"shape":"long"},
1109
- "TargetARN":{"shape":"TargetARN"}
1110
- }
1111
- },
1112
- "CreateTapeWithBarcodeInput":{
1113
- "type":"structure",
1114
- "required":[
1115
- "GatewayARN",
1116
- "TapeSizeInBytes",
1117
- "TapeBarcode"
1118
- ],
1119
- "members":{
1120
- "GatewayARN":{"shape":"GatewayARN"},
1121
- "TapeSizeInBytes":{"shape":"TapeSize"},
1122
- "TapeBarcode":{"shape":"TapeBarcode"}
1123
- }
1124
- },
1125
- "CreateTapeWithBarcodeOutput":{
1126
- "type":"structure",
1127
- "members":{
1128
- "TapeARN":{"shape":"TapeARN"}
1129
- }
1130
- },
1131
- "CreateTapesInput":{
1132
- "type":"structure",
1133
- "required":[
1134
- "GatewayARN",
1135
- "TapeSizeInBytes",
1136
- "ClientToken",
1137
- "NumTapesToCreate",
1138
- "TapeBarcodePrefix"
1139
- ],
1140
- "members":{
1141
- "GatewayARN":{"shape":"GatewayARN"},
1142
- "TapeSizeInBytes":{"shape":"TapeSize"},
1143
- "ClientToken":{"shape":"ClientToken"},
1144
- "NumTapesToCreate":{"shape":"NumTapesToCreate"},
1145
- "TapeBarcodePrefix":{"shape":"TapeBarcodePrefix"}
1146
- }
1147
- },
1148
- "CreateTapesOutput":{
1149
- "type":"structure",
1150
- "members":{
1151
- "TapeARNs":{"shape":"TapeARNs"}
1152
- }
1153
- },
1154
- "CreatedDate":{"type":"timestamp"},
1155
- "DayOfWeek":{
1156
- "type":"integer",
1157
- "max":6,
1158
- "min":0
1159
- },
1160
- "DeleteBandwidthRateLimitInput":{
1161
- "type":"structure",
1162
- "required":[
1163
- "GatewayARN",
1164
- "BandwidthType"
1165
- ],
1166
- "members":{
1167
- "GatewayARN":{"shape":"GatewayARN"},
1168
- "BandwidthType":{"shape":"BandwidthType"}
1169
- }
1170
- },
1171
- "DeleteBandwidthRateLimitOutput":{
1172
- "type":"structure",
1173
- "members":{
1174
- "GatewayARN":{"shape":"GatewayARN"}
1175
- }
1176
- },
1177
- "DeleteChapCredentialsInput":{
1178
- "type":"structure",
1179
- "required":[
1180
- "TargetARN",
1181
- "InitiatorName"
1182
- ],
1183
- "members":{
1184
- "TargetARN":{"shape":"TargetARN"},
1185
- "InitiatorName":{"shape":"IqnName"}
1186
- }
1187
- },
1188
- "DeleteChapCredentialsOutput":{
1189
- "type":"structure",
1190
- "members":{
1191
- "TargetARN":{"shape":"TargetARN"},
1192
- "InitiatorName":{"shape":"IqnName"}
1193
- }
1194
- },
1195
- "DeleteFileShareInput":{
1196
- "type":"structure",
1197
- "required":["FileShareARN"],
1198
- "members":{
1199
- "FileShareARN":{"shape":"FileShareARN"}
1200
- }
1201
- },
1202
- "DeleteFileShareOutput":{
1203
- "type":"structure",
1204
- "members":{
1205
- "FileShareARN":{"shape":"FileShareARN"}
1206
- }
1207
- },
1208
- "DeleteGatewayInput":{
1209
- "type":"structure",
1210
- "required":["GatewayARN"],
1211
- "members":{
1212
- "GatewayARN":{"shape":"GatewayARN"}
1213
- }
1214
- },
1215
- "DeleteGatewayOutput":{
1216
- "type":"structure",
1217
- "members":{
1218
- "GatewayARN":{"shape":"GatewayARN"}
1219
- }
1220
- },
1221
- "DeleteSnapshotScheduleInput":{
1222
- "type":"structure",
1223
- "required":["VolumeARN"],
1224
- "members":{
1225
- "VolumeARN":{"shape":"VolumeARN"}
1226
- }
1227
- },
1228
- "DeleteSnapshotScheduleOutput":{
1229
- "type":"structure",
1230
- "members":{
1231
- "VolumeARN":{"shape":"VolumeARN"}
1232
- }
1233
- },
1234
- "DeleteTapeArchiveInput":{
1235
- "type":"structure",
1236
- "required":["TapeARN"],
1237
- "members":{
1238
- "TapeARN":{"shape":"TapeARN"}
1239
- }
1240
- },
1241
- "DeleteTapeArchiveOutput":{
1242
- "type":"structure",
1243
- "members":{
1244
- "TapeARN":{"shape":"TapeARN"}
1245
- }
1246
- },
1247
- "DeleteTapeInput":{
1248
- "type":"structure",
1249
- "required":[
1250
- "GatewayARN",
1251
- "TapeARN"
1252
- ],
1253
- "members":{
1254
- "GatewayARN":{"shape":"GatewayARN"},
1255
- "TapeARN":{"shape":"TapeARN"}
1256
- }
1257
- },
1258
- "DeleteTapeOutput":{
1259
- "type":"structure",
1260
- "members":{
1261
- "TapeARN":{"shape":"TapeARN"}
1262
- }
1263
- },
1264
- "DeleteVolumeInput":{
1265
- "type":"structure",
1266
- "required":["VolumeARN"],
1267
- "members":{
1268
- "VolumeARN":{"shape":"VolumeARN"}
1269
- }
1270
- },
1271
- "DeleteVolumeOutput":{
1272
- "type":"structure",
1273
- "members":{
1274
- "VolumeARN":{"shape":"VolumeARN"}
1275
- }
1276
- },
1277
- "DescribeBandwidthRateLimitInput":{
1278
- "type":"structure",
1279
- "required":["GatewayARN"],
1280
- "members":{
1281
- "GatewayARN":{"shape":"GatewayARN"}
1282
- }
1283
- },
1284
- "DescribeBandwidthRateLimitOutput":{
1285
- "type":"structure",
1286
- "members":{
1287
- "GatewayARN":{"shape":"GatewayARN"},
1288
- "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
1289
- "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
1290
- }
1291
- },
1292
- "DescribeCacheInput":{
1293
- "type":"structure",
1294
- "required":["GatewayARN"],
1295
- "members":{
1296
- "GatewayARN":{"shape":"GatewayARN"}
1297
- }
1298
- },
1299
- "DescribeCacheOutput":{
1300
- "type":"structure",
1301
- "members":{
1302
- "GatewayARN":{"shape":"GatewayARN"},
1303
- "DiskIds":{"shape":"DiskIds"},
1304
- "CacheAllocatedInBytes":{"shape":"long"},
1305
- "CacheUsedPercentage":{"shape":"double"},
1306
- "CacheDirtyPercentage":{"shape":"double"},
1307
- "CacheHitPercentage":{"shape":"double"},
1308
- "CacheMissPercentage":{"shape":"double"}
1309
- }
1310
- },
1311
- "DescribeCachediSCSIVolumesInput":{
1312
- "type":"structure",
1313
- "required":["VolumeARNs"],
1314
- "members":{
1315
- "VolumeARNs":{"shape":"VolumeARNs"}
1316
- }
1317
- },
1318
- "DescribeCachediSCSIVolumesOutput":{
1319
- "type":"structure",
1320
- "members":{
1321
- "CachediSCSIVolumes":{"shape":"CachediSCSIVolumes"}
1322
- }
1323
- },
1324
- "DescribeChapCredentialsInput":{
1325
- "type":"structure",
1326
- "required":["TargetARN"],
1327
- "members":{
1328
- "TargetARN":{"shape":"TargetARN"}
1329
- }
1330
- },
1331
- "DescribeChapCredentialsOutput":{
1332
- "type":"structure",
1333
- "members":{
1334
- "ChapCredentials":{"shape":"ChapCredentials"}
1335
- }
1336
- },
1337
- "DescribeGatewayInformationInput":{
1338
- "type":"structure",
1339
- "required":["GatewayARN"],
1340
- "members":{
1341
- "GatewayARN":{"shape":"GatewayARN"}
1342
- }
1343
- },
1344
- "DescribeGatewayInformationOutput":{
1345
- "type":"structure",
1346
- "members":{
1347
- "GatewayARN":{"shape":"GatewayARN"},
1348
- "GatewayId":{"shape":"GatewayId"},
1349
- "GatewayName":{"shape":"string"},
1350
- "GatewayTimezone":{"shape":"GatewayTimezone"},
1351
- "GatewayState":{"shape":"GatewayState"},
1352
- "GatewayNetworkInterfaces":{"shape":"GatewayNetworkInterfaces"},
1353
- "GatewayType":{"shape":"GatewayType"},
1354
- "NextUpdateAvailabilityDate":{"shape":"NextUpdateAvailabilityDate"},
1355
- "LastSoftwareUpdate":{"shape":"LastSoftwareUpdate"}
1356
- }
1357
- },
1358
- "DescribeMaintenanceStartTimeInput":{
1359
- "type":"structure",
1360
- "required":["GatewayARN"],
1361
- "members":{
1362
- "GatewayARN":{"shape":"GatewayARN"}
1363
- }
1364
- },
1365
- "DescribeMaintenanceStartTimeOutput":{
1366
- "type":"structure",
1367
- "members":{
1368
- "GatewayARN":{"shape":"GatewayARN"},
1369
- "HourOfDay":{"shape":"HourOfDay"},
1370
- "MinuteOfHour":{"shape":"MinuteOfHour"},
1371
- "DayOfWeek":{"shape":"DayOfWeek"},
1372
- "Timezone":{"shape":"GatewayTimezone"}
1373
- }
1374
- },
1375
- "DescribeNFSFileSharesInput":{
1376
- "type":"structure",
1377
- "required":["FileShareARNList"],
1378
- "members":{
1379
- "FileShareARNList":{"shape":"FileShareARNList"}
1380
- }
1381
- },
1382
- "DescribeNFSFileSharesOutput":{
1383
- "type":"structure",
1384
- "members":{
1385
- "NFSFileShareInfoList":{"shape":"NFSFileShareInfoList"}
1386
- }
1387
- },
1388
- "DescribeSnapshotScheduleInput":{
1389
- "type":"structure",
1390
- "required":["VolumeARN"],
1391
- "members":{
1392
- "VolumeARN":{"shape":"VolumeARN"}
1393
- }
1394
- },
1395
- "DescribeSnapshotScheduleOutput":{
1396
- "type":"structure",
1397
- "members":{
1398
- "VolumeARN":{"shape":"VolumeARN"},
1399
- "StartAt":{"shape":"HourOfDay"},
1400
- "RecurrenceInHours":{"shape":"RecurrenceInHours"},
1401
- "Description":{"shape":"Description"},
1402
- "Timezone":{"shape":"GatewayTimezone"}
1403
- }
1404
- },
1405
- "DescribeStorediSCSIVolumesInput":{
1406
- "type":"structure",
1407
- "required":["VolumeARNs"],
1408
- "members":{
1409
- "VolumeARNs":{"shape":"VolumeARNs"}
1410
- }
1411
- },
1412
- "DescribeStorediSCSIVolumesOutput":{
1413
- "type":"structure",
1414
- "members":{
1415
- "StorediSCSIVolumes":{"shape":"StorediSCSIVolumes"}
1416
- }
1417
- },
1418
- "DescribeTapeArchivesInput":{
1419
- "type":"structure",
1420
- "members":{
1421
- "TapeARNs":{"shape":"TapeARNs"},
1422
- "Marker":{"shape":"Marker"},
1423
- "Limit":{"shape":"PositiveIntObject"}
1424
- }
1425
- },
1426
- "DescribeTapeArchivesOutput":{
1427
- "type":"structure",
1428
- "members":{
1429
- "TapeArchives":{"shape":"TapeArchives"},
1430
- "Marker":{"shape":"Marker"}
1431
- }
1432
- },
1433
- "DescribeTapeRecoveryPointsInput":{
1434
- "type":"structure",
1435
- "required":["GatewayARN"],
1436
- "members":{
1437
- "GatewayARN":{"shape":"GatewayARN"},
1438
- "Marker":{"shape":"Marker"},
1439
- "Limit":{"shape":"PositiveIntObject"}
1440
- }
1441
- },
1442
- "DescribeTapeRecoveryPointsOutput":{
1443
- "type":"structure",
1444
- "members":{
1445
- "GatewayARN":{"shape":"GatewayARN"},
1446
- "TapeRecoveryPointInfos":{"shape":"TapeRecoveryPointInfos"},
1447
- "Marker":{"shape":"Marker"}
1448
- }
1449
- },
1450
- "DescribeTapesInput":{
1451
- "type":"structure",
1452
- "required":["GatewayARN"],
1453
- "members":{
1454
- "GatewayARN":{"shape":"GatewayARN"},
1455
- "TapeARNs":{"shape":"TapeARNs"},
1456
- "Marker":{"shape":"Marker"},
1457
- "Limit":{"shape":"PositiveIntObject"}
1458
- }
1459
- },
1460
- "DescribeTapesOutput":{
1461
- "type":"structure",
1462
- "members":{
1463
- "Tapes":{"shape":"Tapes"},
1464
- "Marker":{"shape":"Marker"}
1465
- }
1466
- },
1467
- "DescribeUploadBufferInput":{
1468
- "type":"structure",
1469
- "required":["GatewayARN"],
1470
- "members":{
1471
- "GatewayARN":{"shape":"GatewayARN"}
1472
- }
1473
- },
1474
- "DescribeUploadBufferOutput":{
1475
- "type":"structure",
1476
- "members":{
1477
- "GatewayARN":{"shape":"GatewayARN"},
1478
- "DiskIds":{"shape":"DiskIds"},
1479
- "UploadBufferUsedInBytes":{"shape":"long"},
1480
- "UploadBufferAllocatedInBytes":{"shape":"long"}
1481
- }
1482
- },
1483
- "DescribeVTLDevicesInput":{
1484
- "type":"structure",
1485
- "required":["GatewayARN"],
1486
- "members":{
1487
- "GatewayARN":{"shape":"GatewayARN"},
1488
- "VTLDeviceARNs":{"shape":"VTLDeviceARNs"},
1489
- "Marker":{"shape":"Marker"},
1490
- "Limit":{"shape":"PositiveIntObject"}
1491
- }
1492
- },
1493
- "DescribeVTLDevicesOutput":{
1494
- "type":"structure",
1495
- "members":{
1496
- "GatewayARN":{"shape":"GatewayARN"},
1497
- "VTLDevices":{"shape":"VTLDevices"},
1498
- "Marker":{"shape":"Marker"}
1499
- }
1500
- },
1501
- "DescribeWorkingStorageInput":{
1502
- "type":"structure",
1503
- "required":["GatewayARN"],
1504
- "members":{
1505
- "GatewayARN":{"shape":"GatewayARN"}
1506
- }
1507
- },
1508
- "DescribeWorkingStorageOutput":{
1509
- "type":"structure",
1510
- "members":{
1511
- "GatewayARN":{"shape":"GatewayARN"},
1512
- "DiskIds":{"shape":"DiskIds"},
1513
- "WorkingStorageUsedInBytes":{"shape":"long"},
1514
- "WorkingStorageAllocatedInBytes":{"shape":"long"}
1515
- }
1516
- },
1517
- "Description":{
1518
- "type":"string",
1519
- "max":255,
1520
- "min":1
1521
- },
1522
- "DeviceType":{
1523
- "type":"string",
1524
- "max":50,
1525
- "min":2
1526
- },
1527
- "DeviceiSCSIAttributes":{
1528
- "type":"structure",
1529
- "members":{
1530
- "TargetARN":{"shape":"TargetARN"},
1531
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
1532
- "NetworkInterfacePort":{"shape":"integer"},
1533
- "ChapEnabled":{"shape":"boolean"}
1534
- }
1535
- },
1536
- "DisableGatewayInput":{
1537
- "type":"structure",
1538
- "required":["GatewayARN"],
1539
- "members":{
1540
- "GatewayARN":{"shape":"GatewayARN"}
1541
- }
1542
- },
1543
- "DisableGatewayOutput":{
1544
- "type":"structure",
1545
- "members":{
1546
- "GatewayARN":{"shape":"GatewayARN"}
1547
- }
1548
- },
1549
- "Disk":{
1550
- "type":"structure",
1551
- "members":{
1552
- "DiskId":{"shape":"DiskId"},
1553
- "DiskPath":{"shape":"string"},
1554
- "DiskNode":{"shape":"string"},
1555
- "DiskStatus":{"shape":"string"},
1556
- "DiskSizeInBytes":{"shape":"long"},
1557
- "DiskAllocationType":{"shape":"DiskAllocationType"},
1558
- "DiskAllocationResource":{"shape":"string"}
1559
- }
1560
- },
1561
- "DiskAllocationType":{
1562
- "type":"string",
1563
- "max":100,
1564
- "min":3
1565
- },
1566
- "DiskId":{
1567
- "type":"string",
1568
- "max":300,
1569
- "min":1
1570
- },
1571
- "DiskIds":{
1572
- "type":"list",
1573
- "member":{"shape":"DiskId"}
1574
- },
1575
- "Disks":{
1576
- "type":"list",
1577
- "member":{"shape":"Disk"}
1578
- },
1579
- "DoubleObject":{"type":"double"},
1580
- "ErrorCode":{
1581
- "type":"string",
1582
- "enum":[
1583
- "ActivationKeyExpired",
1584
- "ActivationKeyInvalid",
1585
- "ActivationKeyNotFound",
1586
- "GatewayInternalError",
1587
- "GatewayNotConnected",
1588
- "GatewayNotFound",
1589
- "GatewayProxyNetworkConnectionBusy",
1590
- "AuthenticationFailure",
1591
- "BandwidthThrottleScheduleNotFound",
1592
- "Blocked",
1593
- "CannotExportSnapshot",
1594
- "ChapCredentialNotFound",
1595
- "DiskAlreadyAllocated",
1596
- "DiskDoesNotExist",
1597
- "DiskSizeGreaterThanVolumeMaxSize",
1598
- "DiskSizeLessThanVolumeSize",
1599
- "DiskSizeNotGigAligned",
1600
- "DuplicateCertificateInfo",
1601
- "DuplicateSchedule",
1602
- "EndpointNotFound",
1603
- "IAMNotSupported",
1604
- "InitiatorInvalid",
1605
- "InitiatorNotFound",
1606
- "InternalError",
1607
- "InvalidGateway",
1608
- "InvalidEndpoint",
1609
- "InvalidParameters",
1610
- "InvalidSchedule",
1611
- "LocalStorageLimitExceeded",
1612
- "LunAlreadyAllocated ",
1613
- "LunInvalid",
1614
- "MaximumContentLengthExceeded",
1615
- "MaximumTapeCartridgeCountExceeded",
1616
- "MaximumVolumeCountExceeded",
1617
- "NetworkConfigurationChanged",
1618
- "NoDisksAvailable",
1619
- "NotImplemented",
1620
- "NotSupported",
1621
- "OperationAborted",
1622
- "OutdatedGateway",
1623
- "ParametersNotImplemented",
1624
- "RegionInvalid",
1625
- "RequestTimeout",
1626
- "ServiceUnavailable",
1627
- "SnapshotDeleted",
1628
- "SnapshotIdInvalid",
1629
- "SnapshotInProgress",
1630
- "SnapshotNotFound",
1631
- "SnapshotScheduleNotFound",
1632
- "StagingAreaFull",
1633
- "StorageFailure",
1634
- "TapeCartridgeNotFound",
1635
- "TargetAlreadyExists",
1636
- "TargetInvalid",
1637
- "TargetNotFound",
1638
- "UnauthorizedOperation",
1639
- "VolumeAlreadyExists",
1640
- "VolumeIdInvalid",
1641
- "VolumeInUse",
1642
- "VolumeNotFound",
1643
- "VolumeNotReady"
1644
- ]
1645
- },
1646
- "FileShareARN":{
1647
- "type":"string",
1648
- "max":500,
1649
- "min":50
1650
- },
1651
- "FileShareARNList":{
1652
- "type":"list",
1653
- "member":{"shape":"FileShareARN"},
1654
- "max":10,
1655
- "min":1
1656
- },
1657
- "FileShareClientList":{
1658
- "type":"list",
1659
- "member":{"shape":"IPV4AddressCIDR"},
1660
- "max":100,
1661
- "min":1
1662
- },
1663
- "FileShareId":{
1664
- "type":"string",
1665
- "max":30,
1666
- "min":12
1667
- },
1668
- "FileShareInfo":{
1669
- "type":"structure",
1670
- "members":{
1671
- "FileShareARN":{"shape":"FileShareARN"},
1672
- "FileShareId":{"shape":"FileShareId"},
1673
- "FileShareStatus":{"shape":"FileShareStatus"},
1674
- "GatewayARN":{"shape":"GatewayARN"}
1675
- }
1676
- },
1677
- "FileShareInfoList":{
1678
- "type":"list",
1679
- "member":{"shape":"FileShareInfo"}
1680
- },
1681
- "FileShareStatus":{
1682
- "type":"string",
1683
- "max":50,
1684
- "min":3
1685
- },
1686
- "GatewayARN":{
1687
- "type":"string",
1688
- "max":500,
1689
- "min":50
1690
- },
1691
- "GatewayId":{
1692
- "type":"string",
1693
- "max":30,
1694
- "min":12
1695
- },
1696
- "GatewayInfo":{
1697
- "type":"structure",
1698
- "members":{
1699
- "GatewayId":{"shape":"GatewayId"},
1700
- "GatewayARN":{"shape":"GatewayARN"},
1701
- "GatewayType":{"shape":"GatewayType"},
1702
- "GatewayOperationalState":{"shape":"GatewayOperationalState"},
1703
- "GatewayName":{"shape":"string"}
1704
- }
1705
- },
1706
- "GatewayName":{
1707
- "type":"string",
1708
- "max":255,
1709
- "min":2,
1710
- "pattern":"^[ -\\.0-\\[\\]-~]*[!-\\.0-\\[\\]-~][ -\\.0-\\[\\]-~]*$"
1711
- },
1712
- "GatewayNetworkInterfaces":{
1713
- "type":"list",
1714
- "member":{"shape":"NetworkInterface"}
1715
- },
1716
- "GatewayOperationalState":{
1717
- "type":"string",
1718
- "max":25,
1719
- "min":2
1720
- },
1721
- "GatewayState":{
1722
- "type":"string",
1723
- "max":25,
1724
- "min":2
1725
- },
1726
- "GatewayTimezone":{
1727
- "type":"string",
1728
- "max":10,
1729
- "min":3
1730
- },
1731
- "GatewayType":{
1732
- "type":"string",
1733
- "max":20,
1734
- "min":2
1735
- },
1736
- "Gateways":{
1737
- "type":"list",
1738
- "member":{"shape":"GatewayInfo"}
1739
- },
1740
- "HourOfDay":{
1741
- "type":"integer",
1742
- "max":23,
1743
- "min":0
1744
- },
1745
- "IPV4AddressCIDR":{
1746
- "type":"string",
1747
- "pattern":"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\/([0-9]|[1-2][0-9]|3[0-2]))?$"
1748
- },
1749
- "Initiator":{
1750
- "type":"string",
1751
- "max":50,
1752
- "min":1
1753
- },
1754
- "Initiators":{
1755
- "type":"list",
1756
- "member":{"shape":"Initiator"}
1757
- },
1758
- "InternalServerError":{
1759
- "type":"structure",
1760
- "members":{
1761
- "message":{"shape":"string"},
1762
- "error":{"shape":"StorageGatewayError"}
1763
- },
1764
- "exception":true
1765
- },
1766
- "InvalidGatewayRequestException":{
1767
- "type":"structure",
1768
- "members":{
1769
- "message":{"shape":"string"},
1770
- "error":{"shape":"StorageGatewayError"}
1771
- },
1772
- "exception":true
1773
- },
1774
- "IqnName":{
1775
- "type":"string",
1776
- "max":255,
1777
- "min":1,
1778
- "pattern":"[0-9a-z:.-]+"
1779
- },
1780
- "KMSKey":{
1781
- "type":"string",
1782
- "max":2048,
1783
- "min":20
1784
- },
1785
- "LastSoftwareUpdate":{
1786
- "type":"string",
1787
- "max":25,
1788
- "min":1
1789
- },
1790
- "ListFileSharesInput":{
1791
- "type":"structure",
1792
- "members":{
1793
- "GatewayARN":{"shape":"GatewayARN"},
1794
- "Limit":{"shape":"PositiveIntObject"},
1795
- "Marker":{"shape":"Marker"}
1796
- }
1797
- },
1798
- "ListFileSharesOutput":{
1799
- "type":"structure",
1800
- "members":{
1801
- "Marker":{"shape":"Marker"},
1802
- "NextMarker":{"shape":"Marker"},
1803
- "FileShareInfoList":{"shape":"FileShareInfoList"}
1804
- }
1805
- },
1806
- "ListGatewaysInput":{
1807
- "type":"structure",
1808
- "members":{
1809
- "Marker":{"shape":"Marker"},
1810
- "Limit":{"shape":"PositiveIntObject"}
1811
- }
1812
- },
1813
- "ListGatewaysOutput":{
1814
- "type":"structure",
1815
- "members":{
1816
- "Gateways":{"shape":"Gateways"},
1817
- "Marker":{"shape":"Marker"}
1818
- }
1819
- },
1820
- "ListLocalDisksInput":{
1821
- "type":"structure",
1822
- "required":["GatewayARN"],
1823
- "members":{
1824
- "GatewayARN":{"shape":"GatewayARN"}
1825
- }
1826
- },
1827
- "ListLocalDisksOutput":{
1828
- "type":"structure",
1829
- "members":{
1830
- "GatewayARN":{"shape":"GatewayARN"},
1831
- "Disks":{"shape":"Disks"}
1832
- }
1833
- },
1834
- "ListTagsForResourceInput":{
1835
- "type":"structure",
1836
- "required":["ResourceARN"],
1837
- "members":{
1838
- "ResourceARN":{"shape":"ResourceARN"},
1839
- "Marker":{"shape":"Marker"},
1840
- "Limit":{"shape":"PositiveIntObject"}
1841
- }
1842
- },
1843
- "ListTagsForResourceOutput":{
1844
- "type":"structure",
1845
- "members":{
1846
- "ResourceARN":{"shape":"ResourceARN"},
1847
- "Marker":{"shape":"Marker"},
1848
- "Tags":{"shape":"Tags"}
1849
- }
1850
- },
1851
- "ListTapesInput":{
1852
- "type":"structure",
1853
- "members":{
1854
- "TapeARNs":{"shape":"TapeARNs"},
1855
- "Marker":{"shape":"Marker"},
1856
- "Limit":{"shape":"PositiveIntObject"}
1857
- }
1858
- },
1859
- "ListTapesOutput":{
1860
- "type":"structure",
1861
- "members":{
1862
- "TapeInfos":{"shape":"TapeInfos"},
1863
- "Marker":{"shape":"Marker"}
1864
- }
1865
- },
1866
- "ListVolumeInitiatorsInput":{
1867
- "type":"structure",
1868
- "required":["VolumeARN"],
1869
- "members":{
1870
- "VolumeARN":{"shape":"VolumeARN"}
1871
- }
1872
- },
1873
- "ListVolumeInitiatorsOutput":{
1874
- "type":"structure",
1875
- "members":{
1876
- "Initiators":{"shape":"Initiators"}
1877
- }
1878
- },
1879
- "ListVolumeRecoveryPointsInput":{
1880
- "type":"structure",
1881
- "required":["GatewayARN"],
1882
- "members":{
1883
- "GatewayARN":{"shape":"GatewayARN"}
1884
- }
1885
- },
1886
- "ListVolumeRecoveryPointsOutput":{
1887
- "type":"structure",
1888
- "members":{
1889
- "GatewayARN":{"shape":"GatewayARN"},
1890
- "VolumeRecoveryPointInfos":{"shape":"VolumeRecoveryPointInfos"}
1891
- }
1892
- },
1893
- "ListVolumesInput":{
1894
- "type":"structure",
1895
- "members":{
1896
- "GatewayARN":{"shape":"GatewayARN"},
1897
- "Marker":{"shape":"Marker"},
1898
- "Limit":{"shape":"PositiveIntObject"}
1899
- }
1900
- },
1901
- "ListVolumesOutput":{
1902
- "type":"structure",
1903
- "members":{
1904
- "GatewayARN":{"shape":"GatewayARN"},
1905
- "Marker":{"shape":"Marker"},
1906
- "VolumeInfos":{"shape":"VolumeInfos"}
1907
- }
1908
- },
1909
- "LocalConsolePassword":{
1910
- "type":"string",
1911
- "max":512,
1912
- "min":6,
1913
- "pattern":"^[ -~]+$",
1914
- "sensitive":true
1915
- },
1916
- "LocationARN":{
1917
- "type":"string",
1918
- "max":310,
1919
- "min":16
1920
- },
1921
- "Marker":{
1922
- "type":"string",
1923
- "max":1000,
1924
- "min":1
1925
- },
1926
- "MediumChangerType":{
1927
- "type":"string",
1928
- "max":50,
1929
- "min":2
1930
- },
1931
- "MinuteOfHour":{
1932
- "type":"integer",
1933
- "max":59,
1934
- "min":0
1935
- },
1936
- "NFSFileShareDefaults":{
1937
- "type":"structure",
1938
- "members":{
1939
- "FileMode":{"shape":"PermissionMode"},
1940
- "DirectoryMode":{"shape":"PermissionMode"},
1941
- "GroupId":{"shape":"PermissionId"},
1942
- "OwnerId":{"shape":"PermissionId"}
1943
- }
1944
- },
1945
- "NFSFileShareInfo":{
1946
- "type":"structure",
1947
- "members":{
1948
- "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
1949
- "FileShareARN":{"shape":"FileShareARN"},
1950
- "FileShareId":{"shape":"FileShareId"},
1951
- "FileShareStatus":{"shape":"FileShareStatus"},
1952
- "GatewayARN":{"shape":"GatewayARN"},
1953
- "KMSEncrypted":{"shape":"boolean"},
1954
- "KMSKey":{"shape":"KMSKey"},
1955
- "Path":{"shape":"Path"},
1956
- "Role":{"shape":"Role"},
1957
- "LocationARN":{"shape":"LocationARN"},
1958
- "DefaultStorageClass":{"shape":"StorageClass"},
1959
- "ClientList":{"shape":"FileShareClientList"}
1960
- }
1961
- },
1962
- "NFSFileShareInfoList":{
1963
- "type":"list",
1964
- "member":{"shape":"NFSFileShareInfo"}
1965
- },
1966
- "NetworkInterface":{
1967
- "type":"structure",
1968
- "members":{
1969
- "Ipv4Address":{"shape":"string"},
1970
- "MacAddress":{"shape":"string"},
1971
- "Ipv6Address":{"shape":"string"}
1972
- }
1973
- },
1974
- "NetworkInterfaceId":{
1975
- "type":"string",
1976
- "pattern":"\\A(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z"
1977
- },
1978
- "NextUpdateAvailabilityDate":{
1979
- "type":"string",
1980
- "max":25,
1981
- "min":1
1982
- },
1983
- "NumTapesToCreate":{
1984
- "type":"integer",
1985
- "max":10,
1986
- "min":1
1987
- },
1988
- "Path":{"type":"string"},
1989
- "PermissionId":{
1990
- "type":"long",
1991
- "max":4294967294,
1992
- "min":0
1993
- },
1994
- "PermissionMode":{
1995
- "type":"string",
1996
- "max":4,
1997
- "min":1,
1998
- "pattern":"^[0-7]{4}$"
1999
- },
2000
- "PositiveIntObject":{
2001
- "type":"integer",
2002
- "min":1
2003
- },
2004
- "RecurrenceInHours":{
2005
- "type":"integer",
2006
- "max":24,
2007
- "min":1
2008
- },
2009
- "RegionId":{
2010
- "type":"string",
2011
- "max":25,
2012
- "min":1
2013
- },
2014
- "RemoveTagsFromResourceInput":{
2015
- "type":"structure",
2016
- "required":[
2017
- "ResourceARN",
2018
- "TagKeys"
2019
- ],
2020
- "members":{
2021
- "ResourceARN":{"shape":"ResourceARN"},
2022
- "TagKeys":{"shape":"TagKeys"}
2023
- }
2024
- },
2025
- "RemoveTagsFromResourceOutput":{
2026
- "type":"structure",
2027
- "members":{
2028
- "ResourceARN":{"shape":"ResourceARN"}
2029
- }
2030
- },
2031
- "ResetCacheInput":{
2032
- "type":"structure",
2033
- "required":["GatewayARN"],
2034
- "members":{
2035
- "GatewayARN":{"shape":"GatewayARN"}
2036
- }
2037
- },
2038
- "ResetCacheOutput":{
2039
- "type":"structure",
2040
- "members":{
2041
- "GatewayARN":{"shape":"GatewayARN"}
2042
- }
2043
- },
2044
- "ResourceARN":{
2045
- "type":"string",
2046
- "max":500,
2047
- "min":50
2048
- },
2049
- "RetrieveTapeArchiveInput":{
2050
- "type":"structure",
2051
- "required":[
2052
- "TapeARN",
2053
- "GatewayARN"
2054
- ],
2055
- "members":{
2056
- "TapeARN":{"shape":"TapeARN"},
2057
- "GatewayARN":{"shape":"GatewayARN"}
2058
- }
2059
- },
2060
- "RetrieveTapeArchiveOutput":{
2061
- "type":"structure",
2062
- "members":{
2063
- "TapeARN":{"shape":"TapeARN"}
2064
- }
2065
- },
2066
- "RetrieveTapeRecoveryPointInput":{
2067
- "type":"structure",
2068
- "required":[
2069
- "TapeARN",
2070
- "GatewayARN"
2071
- ],
2072
- "members":{
2073
- "TapeARN":{"shape":"TapeARN"},
2074
- "GatewayARN":{"shape":"GatewayARN"}
2075
- }
2076
- },
2077
- "RetrieveTapeRecoveryPointOutput":{
2078
- "type":"structure",
2079
- "members":{
2080
- "TapeARN":{"shape":"TapeARN"}
2081
- }
2082
- },
2083
- "Role":{
2084
- "type":"string",
2085
- "max":2048,
2086
- "min":20
2087
- },
2088
- "ServiceUnavailableError":{
2089
- "type":"structure",
2090
- "members":{
2091
- "message":{"shape":"string"},
2092
- "error":{"shape":"StorageGatewayError"}
2093
- },
2094
- "exception":true
2095
- },
2096
- "SetLocalConsolePasswordInput":{
2097
- "type":"structure",
2098
- "required":[
2099
- "GatewayARN",
2100
- "LocalConsolePassword"
2101
- ],
2102
- "members":{
2103
- "GatewayARN":{"shape":"GatewayARN"},
2104
- "LocalConsolePassword":{"shape":"LocalConsolePassword"}
2105
- }
2106
- },
2107
- "SetLocalConsolePasswordOutput":{
2108
- "type":"structure",
2109
- "members":{
2110
- "GatewayARN":{"shape":"GatewayARN"}
2111
- }
2112
- },
2113
- "ShutdownGatewayInput":{
2114
- "type":"structure",
2115
- "required":["GatewayARN"],
2116
- "members":{
2117
- "GatewayARN":{"shape":"GatewayARN"}
2118
- }
2119
- },
2120
- "ShutdownGatewayOutput":{
2121
- "type":"structure",
2122
- "members":{
2123
- "GatewayARN":{"shape":"GatewayARN"}
2124
- }
2125
- },
2126
- "SnapshotDescription":{
2127
- "type":"string",
2128
- "max":255,
2129
- "min":1
2130
- },
2131
- "SnapshotId":{
2132
- "type":"string",
2133
- "pattern":"\\Asnap-([0-9A-Fa-f]{8}|[0-9A-Fa-f]{17})\\z"
2134
- },
2135
- "StartGatewayInput":{
2136
- "type":"structure",
2137
- "required":["GatewayARN"],
2138
- "members":{
2139
- "GatewayARN":{"shape":"GatewayARN"}
2140
- }
2141
- },
2142
- "StartGatewayOutput":{
2143
- "type":"structure",
2144
- "members":{
2145
- "GatewayARN":{"shape":"GatewayARN"}
2146
- }
2147
- },
2148
- "StorageClass":{
2149
- "type":"string",
2150
- "max":20,
2151
- "min":5
2152
- },
2153
- "StorageGatewayError":{
2154
- "type":"structure",
2155
- "members":{
2156
- "errorCode":{"shape":"ErrorCode"},
2157
- "errorDetails":{"shape":"errorDetails"}
2158
- }
2159
- },
2160
- "StorediSCSIVolume":{
2161
- "type":"structure",
2162
- "members":{
2163
- "VolumeARN":{"shape":"VolumeARN"},
2164
- "VolumeId":{"shape":"VolumeId"},
2165
- "VolumeType":{"shape":"VolumeType"},
2166
- "VolumeStatus":{"shape":"VolumeStatus"},
2167
- "VolumeSizeInBytes":{"shape":"long"},
2168
- "VolumeProgress":{"shape":"DoubleObject"},
2169
- "VolumeDiskId":{"shape":"DiskId"},
2170
- "SourceSnapshotId":{"shape":"SnapshotId"},
2171
- "PreservedExistingData":{"shape":"boolean"},
2172
- "VolumeiSCSIAttributes":{"shape":"VolumeiSCSIAttributes"},
2173
- "CreatedDate":{"shape":"CreatedDate"}
2174
- }
2175
- },
2176
- "StorediSCSIVolumes":{
2177
- "type":"list",
2178
- "member":{"shape":"StorediSCSIVolume"}
2179
- },
2180
- "Tag":{
2181
- "type":"structure",
2182
- "required":[
2183
- "Key",
2184
- "Value"
2185
- ],
2186
- "members":{
2187
- "Key":{"shape":"TagKey"},
2188
- "Value":{"shape":"TagValue"}
2189
- }
2190
- },
2191
- "TagKey":{
2192
- "type":"string",
2193
- "max":128,
2194
- "min":1,
2195
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
2196
- },
2197
- "TagKeys":{
2198
- "type":"list",
2199
- "member":{"shape":"TagKey"}
2200
- },
2201
- "TagValue":{
2202
- "type":"string",
2203
- "max":256
2204
- },
2205
- "Tags":{
2206
- "type":"list",
2207
- "member":{"shape":"Tag"}
2208
- },
2209
- "Tape":{
2210
- "type":"structure",
2211
- "members":{
2212
- "TapeARN":{"shape":"TapeARN"},
2213
- "TapeBarcode":{"shape":"TapeBarcode"},
2214
- "TapeCreatedDate":{"shape":"Time"},
2215
- "TapeSizeInBytes":{"shape":"TapeSize"},
2216
- "TapeStatus":{"shape":"TapeStatus"},
2217
- "VTLDevice":{"shape":"VTLDeviceARN"},
2218
- "Progress":{"shape":"DoubleObject"}
2219
- }
2220
- },
2221
- "TapeARN":{
2222
- "type":"string",
2223
- "max":500,
2224
- "min":50,
2225
- "pattern":"^arn:(aws|aws-cn):storagegateway:[a-z\\-0-9]+:[0-9]+:tape\\/[0-9A-Z]{7,16}$"
2226
- },
2227
- "TapeARNs":{
2228
- "type":"list",
2229
- "member":{"shape":"TapeARN"}
2230
- },
2231
- "TapeArchive":{
2232
- "type":"structure",
2233
- "members":{
2234
- "TapeARN":{"shape":"TapeARN"},
2235
- "TapeBarcode":{"shape":"TapeBarcode"},
2236
- "TapeCreatedDate":{"shape":"Time"},
2237
- "TapeSizeInBytes":{"shape":"TapeSize"},
2238
- "CompletionTime":{"shape":"Time"},
2239
- "RetrievedTo":{"shape":"GatewayARN"},
2240
- "TapeStatus":{"shape":"TapeArchiveStatus"}
2241
- }
2242
- },
2243
- "TapeArchiveStatus":{"type":"string"},
2244
- "TapeArchives":{
2245
- "type":"list",
2246
- "member":{"shape":"TapeArchive"}
2247
- },
2248
- "TapeBarcode":{
2249
- "type":"string",
2250
- "max":16,
2251
- "min":7,
2252
- "pattern":"^[A-Z0-9]*$"
2253
- },
2254
- "TapeBarcodePrefix":{
2255
- "type":"string",
2256
- "max":4,
2257
- "min":1,
2258
- "pattern":"^[A-Z]*$"
2259
- },
2260
- "TapeDriveType":{
2261
- "type":"string",
2262
- "max":50,
2263
- "min":2
2264
- },
2265
- "TapeInfo":{
2266
- "type":"structure",
2267
- "members":{
2268
- "TapeARN":{"shape":"TapeARN"},
2269
- "TapeBarcode":{"shape":"TapeBarcode"},
2270
- "TapeSizeInBytes":{"shape":"TapeSize"},
2271
- "TapeStatus":{"shape":"TapeStatus"},
2272
- "GatewayARN":{"shape":"GatewayARN"}
2273
- }
2274
- },
2275
- "TapeInfos":{
2276
- "type":"list",
2277
- "member":{"shape":"TapeInfo"}
2278
- },
2279
- "TapeRecoveryPointInfo":{
2280
- "type":"structure",
2281
- "members":{
2282
- "TapeARN":{"shape":"TapeARN"},
2283
- "TapeRecoveryPointTime":{"shape":"Time"},
2284
- "TapeSizeInBytes":{"shape":"TapeSize"},
2285
- "TapeStatus":{"shape":"TapeRecoveryPointStatus"}
2286
- }
2287
- },
2288
- "TapeRecoveryPointInfos":{
2289
- "type":"list",
2290
- "member":{"shape":"TapeRecoveryPointInfo"}
2291
- },
2292
- "TapeRecoveryPointStatus":{"type":"string"},
2293
- "TapeSize":{"type":"long"},
2294
- "TapeStatus":{"type":"string"},
2295
- "Tapes":{
2296
- "type":"list",
2297
- "member":{"shape":"Tape"}
2298
- },
2299
- "TargetARN":{
2300
- "type":"string",
2301
- "max":800,
2302
- "min":50
2303
- },
2304
- "TargetName":{
2305
- "type":"string",
2306
- "max":200,
2307
- "min":1,
2308
- "pattern":"^[-\\.;a-z0-9]+$"
2309
- },
2310
- "Time":{"type":"timestamp"},
2311
- "UpdateBandwidthRateLimitInput":{
2312
- "type":"structure",
2313
- "required":["GatewayARN"],
2314
- "members":{
2315
- "GatewayARN":{"shape":"GatewayARN"},
2316
- "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
2317
- "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
2318
- }
2319
- },
2320
- "UpdateBandwidthRateLimitOutput":{
2321
- "type":"structure",
2322
- "members":{
2323
- "GatewayARN":{"shape":"GatewayARN"}
2324
- }
2325
- },
2326
- "UpdateChapCredentialsInput":{
2327
- "type":"structure",
2328
- "required":[
2329
- "TargetARN",
2330
- "SecretToAuthenticateInitiator",
2331
- "InitiatorName"
2332
- ],
2333
- "members":{
2334
- "TargetARN":{"shape":"TargetARN"},
2335
- "SecretToAuthenticateInitiator":{"shape":"ChapSecret"},
2336
- "InitiatorName":{"shape":"IqnName"},
2337
- "SecretToAuthenticateTarget":{"shape":"ChapSecret"}
2338
- }
2339
- },
2340
- "UpdateChapCredentialsOutput":{
2341
- "type":"structure",
2342
- "members":{
2343
- "TargetARN":{"shape":"TargetARN"},
2344
- "InitiatorName":{"shape":"IqnName"}
2345
- }
2346
- },
2347
- "UpdateGatewayInformationInput":{
2348
- "type":"structure",
2349
- "required":["GatewayARN"],
2350
- "members":{
2351
- "GatewayARN":{"shape":"GatewayARN"},
2352
- "GatewayName":{"shape":"GatewayName"},
2353
- "GatewayTimezone":{"shape":"GatewayTimezone"}
2354
- }
2355
- },
2356
- "UpdateGatewayInformationOutput":{
2357
- "type":"structure",
2358
- "members":{
2359
- "GatewayARN":{"shape":"GatewayARN"},
2360
- "GatewayName":{"shape":"string"}
2361
- }
2362
- },
2363
- "UpdateGatewaySoftwareNowInput":{
2364
- "type":"structure",
2365
- "required":["GatewayARN"],
2366
- "members":{
2367
- "GatewayARN":{"shape":"GatewayARN"}
2368
- }
2369
- },
2370
- "UpdateGatewaySoftwareNowOutput":{
2371
- "type":"structure",
2372
- "members":{
2373
- "GatewayARN":{"shape":"GatewayARN"}
2374
- }
2375
- },
2376
- "UpdateMaintenanceStartTimeInput":{
2377
- "type":"structure",
2378
- "required":[
2379
- "GatewayARN",
2380
- "HourOfDay",
2381
- "MinuteOfHour",
2382
- "DayOfWeek"
2383
- ],
2384
- "members":{
2385
- "GatewayARN":{"shape":"GatewayARN"},
2386
- "HourOfDay":{"shape":"HourOfDay"},
2387
- "MinuteOfHour":{"shape":"MinuteOfHour"},
2388
- "DayOfWeek":{"shape":"DayOfWeek"}
2389
- }
2390
- },
2391
- "UpdateMaintenanceStartTimeOutput":{
2392
- "type":"structure",
2393
- "members":{
2394
- "GatewayARN":{"shape":"GatewayARN"}
2395
- }
2396
- },
2397
- "UpdateNFSFileShareInput":{
2398
- "type":"structure",
2399
- "required":["FileShareARN"],
2400
- "members":{
2401
- "FileShareARN":{"shape":"FileShareARN"},
2402
- "KMSEncrypted":{"shape":"Boolean"},
2403
- "KMSKey":{"shape":"KMSKey"},
2404
- "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
2405
- "DefaultStorageClass":{"shape":"StorageClass"},
2406
- "ClientList":{"shape":"FileShareClientList"}
2407
- }
2408
- },
2409
- "UpdateNFSFileShareOutput":{
2410
- "type":"structure",
2411
- "members":{
2412
- "FileShareARN":{"shape":"FileShareARN"}
2413
- }
2414
- },
2415
- "UpdateSnapshotScheduleInput":{
2416
- "type":"structure",
2417
- "required":[
2418
- "VolumeARN",
2419
- "StartAt",
2420
- "RecurrenceInHours"
2421
- ],
2422
- "members":{
2423
- "VolumeARN":{"shape":"VolumeARN"},
2424
- "StartAt":{"shape":"HourOfDay"},
2425
- "RecurrenceInHours":{"shape":"RecurrenceInHours"},
2426
- "Description":{"shape":"Description"}
2427
- }
2428
- },
2429
- "UpdateSnapshotScheduleOutput":{
2430
- "type":"structure",
2431
- "members":{
2432
- "VolumeARN":{"shape":"VolumeARN"}
2433
- }
2434
- },
2435
- "UpdateVTLDeviceTypeInput":{
2436
- "type":"structure",
2437
- "required":[
2438
- "VTLDeviceARN",
2439
- "DeviceType"
2440
- ],
2441
- "members":{
2442
- "VTLDeviceARN":{"shape":"VTLDeviceARN"},
2443
- "DeviceType":{"shape":"DeviceType"}
2444
- }
2445
- },
2446
- "UpdateVTLDeviceTypeOutput":{
2447
- "type":"structure",
2448
- "members":{
2449
- "VTLDeviceARN":{"shape":"VTLDeviceARN"}
2450
- }
2451
- },
2452
- "VTLDevice":{
2453
- "type":"structure",
2454
- "members":{
2455
- "VTLDeviceARN":{"shape":"VTLDeviceARN"},
2456
- "VTLDeviceType":{"shape":"VTLDeviceType"},
2457
- "VTLDeviceVendor":{"shape":"VTLDeviceVendor"},
2458
- "VTLDeviceProductIdentifier":{"shape":"VTLDeviceProductIdentifier"},
2459
- "DeviceiSCSIAttributes":{"shape":"DeviceiSCSIAttributes"}
2460
- }
2461
- },
2462
- "VTLDeviceARN":{
2463
- "type":"string",
2464
- "max":500,
2465
- "min":50
2466
- },
2467
- "VTLDeviceARNs":{
2468
- "type":"list",
2469
- "member":{"shape":"VTLDeviceARN"}
2470
- },
2471
- "VTLDeviceProductIdentifier":{"type":"string"},
2472
- "VTLDeviceType":{"type":"string"},
2473
- "VTLDeviceVendor":{"type":"string"},
2474
- "VTLDevices":{
2475
- "type":"list",
2476
- "member":{"shape":"VTLDevice"}
2477
- },
2478
- "VolumeARN":{
2479
- "type":"string",
2480
- "max":500,
2481
- "min":50
2482
- },
2483
- "VolumeARNs":{
2484
- "type":"list",
2485
- "member":{"shape":"VolumeARN"}
2486
- },
2487
- "VolumeId":{
2488
- "type":"string",
2489
- "max":30,
2490
- "min":12
2491
- },
2492
- "VolumeInfo":{
2493
- "type":"structure",
2494
- "members":{
2495
- "VolumeARN":{"shape":"VolumeARN"},
2496
- "VolumeId":{"shape":"VolumeId"},
2497
- "GatewayARN":{"shape":"GatewayARN"},
2498
- "GatewayId":{"shape":"GatewayId"},
2499
- "VolumeType":{"shape":"VolumeType"},
2500
- "VolumeSizeInBytes":{"shape":"long"}
2501
- }
2502
- },
2503
- "VolumeInfos":{
2504
- "type":"list",
2505
- "member":{"shape":"VolumeInfo"}
2506
- },
2507
- "VolumeRecoveryPointInfo":{
2508
- "type":"structure",
2509
- "members":{
2510
- "VolumeARN":{"shape":"VolumeARN"},
2511
- "VolumeSizeInBytes":{"shape":"long"},
2512
- "VolumeUsageInBytes":{"shape":"long"},
2513
- "VolumeRecoveryPointTime":{"shape":"string"}
2514
- }
2515
- },
2516
- "VolumeRecoveryPointInfos":{
2517
- "type":"list",
2518
- "member":{"shape":"VolumeRecoveryPointInfo"}
2519
- },
2520
- "VolumeStatus":{
2521
- "type":"string",
2522
- "max":50,
2523
- "min":3
2524
- },
2525
- "VolumeType":{
2526
- "type":"string",
2527
- "max":100,
2528
- "min":3
2529
- },
2530
- "VolumeiSCSIAttributes":{
2531
- "type":"structure",
2532
- "members":{
2533
- "TargetARN":{"shape":"TargetARN"},
2534
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
2535
- "NetworkInterfacePort":{"shape":"integer"},
2536
- "LunNumber":{"shape":"PositiveIntObject"},
2537
- "ChapEnabled":{"shape":"boolean"}
2538
- }
2539
- },
2540
- "boolean":{"type":"boolean"},
2541
- "double":{"type":"double"},
2542
- "errorDetails":{
2543
- "type":"map",
2544
- "key":{"shape":"string"},
2545
- "value":{"shape":"string"}
2546
- },
2547
- "integer":{"type":"integer"},
2548
- "long":{"type":"long"},
2549
- "string":{"type":"string"}
2550
- }
2551
- }