aws-sdk-core 2.4.0 → 3.53.0

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