aws-sdk-core 2.4.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,2144 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2012-06-01",
5
- "checksumFormat":"sha256",
6
- "endpointPrefix":"glacier",
7
- "serviceFullName":"Amazon Glacier",
8
- "signatureVersion":"v4",
9
- "protocol":"rest-json"
10
- },
11
- "operations":{
12
- "AbortMultipartUpload":{
13
- "name":"AbortMultipartUpload",
14
- "http":{
15
- "method":"DELETE",
16
- "requestUri":"/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}",
17
- "responseCode":204
18
- },
19
- "input":{"shape":"AbortMultipartUploadInput"},
20
- "errors":[
21
- {
22
- "shape":"ResourceNotFoundException",
23
- "error":{"httpStatusCode":404},
24
- "exception":true
25
- },
26
- {
27
- "shape":"InvalidParameterValueException",
28
- "error":{"httpStatusCode":400},
29
- "exception":true
30
- },
31
- {
32
- "shape":"MissingParameterValueException",
33
- "error":{"httpStatusCode":400},
34
- "exception":true
35
- },
36
- {
37
- "shape":"ServiceUnavailableException",
38
- "error":{"httpStatusCode":500},
39
- "exception":true
40
- }
41
- ]
42
- },
43
- "AbortVaultLock":{
44
- "name":"AbortVaultLock",
45
- "http":{
46
- "method":"DELETE",
47
- "requestUri":"/{accountId}/vaults/{vaultName}/lock-policy",
48
- "responseCode":204
49
- },
50
- "input":{"shape":"AbortVaultLockInput"},
51
- "errors":[
52
- {
53
- "shape":"ResourceNotFoundException",
54
- "error":{"httpStatusCode":404},
55
- "exception":true
56
- },
57
- {
58
- "shape":"InvalidParameterValueException",
59
- "error":{"httpStatusCode":400},
60
- "exception":true
61
- },
62
- {
63
- "shape":"MissingParameterValueException",
64
- "error":{"httpStatusCode":400},
65
- "exception":true
66
- },
67
- {
68
- "shape":"ServiceUnavailableException",
69
- "error":{"httpStatusCode":500},
70
- "exception":true
71
- }
72
- ]
73
- },
74
- "AddTagsToVault":{
75
- "name":"AddTagsToVault",
76
- "http":{
77
- "method":"POST",
78
- "requestUri":"/{accountId}/vaults/{vaultName}/tags?operation=add",
79
- "responseCode":204
80
- },
81
- "input":{"shape":"AddTagsToVaultInput"},
82
- "errors":[
83
- {
84
- "shape":"InvalidParameterValueException",
85
- "error":{"httpStatusCode":400},
86
- "exception":true
87
- },
88
- {
89
- "shape":"MissingParameterValueException",
90
- "error":{"httpStatusCode":400},
91
- "exception":true
92
- },
93
- {
94
- "shape":"ResourceNotFoundException",
95
- "error":{"httpStatusCode":404},
96
- "exception":true
97
- },
98
- {
99
- "shape":"LimitExceededException",
100
- "error":{"httpStatusCode":400},
101
- "exception":true
102
- },
103
- {
104
- "shape":"ServiceUnavailableException",
105
- "error":{"httpStatusCode":500},
106
- "exception":true
107
- }
108
- ]
109
- },
110
- "CompleteMultipartUpload":{
111
- "name":"CompleteMultipartUpload",
112
- "http":{
113
- "method":"POST",
114
- "requestUri":"/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}",
115
- "responseCode":201
116
- },
117
- "input":{"shape":"CompleteMultipartUploadInput"},
118
- "output":{"shape":"ArchiveCreationOutput"},
119
- "errors":[
120
- {
121
- "shape":"ResourceNotFoundException",
122
- "error":{"httpStatusCode":404},
123
- "exception":true
124
- },
125
- {
126
- "shape":"InvalidParameterValueException",
127
- "error":{"httpStatusCode":400},
128
- "exception":true
129
- },
130
- {
131
- "shape":"MissingParameterValueException",
132
- "error":{"httpStatusCode":400},
133
- "exception":true
134
- },
135
- {
136
- "shape":"ServiceUnavailableException",
137
- "error":{"httpStatusCode":500},
138
- "exception":true
139
- }
140
- ]
141
- },
142
- "CompleteVaultLock":{
143
- "name":"CompleteVaultLock",
144
- "http":{
145
- "method":"POST",
146
- "requestUri":"/{accountId}/vaults/{vaultName}/lock-policy/{lockId}",
147
- "responseCode":204
148
- },
149
- "input":{"shape":"CompleteVaultLockInput"},
150
- "errors":[
151
- {
152
- "shape":"ResourceNotFoundException",
153
- "error":{"httpStatusCode":404},
154
- "exception":true
155
- },
156
- {
157
- "shape":"InvalidParameterValueException",
158
- "error":{"httpStatusCode":400},
159
- "exception":true
160
- },
161
- {
162
- "shape":"MissingParameterValueException",
163
- "error":{"httpStatusCode":400},
164
- "exception":true
165
- },
166
- {
167
- "shape":"ServiceUnavailableException",
168
- "error":{"httpStatusCode":500},
169
- "exception":true
170
- }
171
- ]
172
- },
173
- "CreateVault":{
174
- "name":"CreateVault",
175
- "http":{
176
- "method":"PUT",
177
- "requestUri":"/{accountId}/vaults/{vaultName}",
178
- "responseCode":201
179
- },
180
- "input":{"shape":"CreateVaultInput"},
181
- "output":{"shape":"CreateVaultOutput"},
182
- "errors":[
183
- {
184
- "shape":"InvalidParameterValueException",
185
- "error":{"httpStatusCode":400},
186
- "exception":true
187
- },
188
- {
189
- "shape":"MissingParameterValueException",
190
- "error":{"httpStatusCode":400},
191
- "exception":true
192
- },
193
- {
194
- "shape":"ServiceUnavailableException",
195
- "error":{"httpStatusCode":500},
196
- "exception":true
197
- },
198
- {
199
- "shape":"LimitExceededException",
200
- "error":{"httpStatusCode":400},
201
- "exception":true
202
- }
203
- ]
204
- },
205
- "DeleteArchive":{
206
- "name":"DeleteArchive",
207
- "http":{
208
- "method":"DELETE",
209
- "requestUri":"/{accountId}/vaults/{vaultName}/archives/{archiveId}",
210
- "responseCode":204
211
- },
212
- "input":{"shape":"DeleteArchiveInput"},
213
- "errors":[
214
- {
215
- "shape":"ResourceNotFoundException",
216
- "error":{"httpStatusCode":404},
217
- "exception":true
218
- },
219
- {
220
- "shape":"InvalidParameterValueException",
221
- "error":{"httpStatusCode":400},
222
- "exception":true
223
- },
224
- {
225
- "shape":"MissingParameterValueException",
226
- "error":{"httpStatusCode":400},
227
- "exception":true
228
- },
229
- {
230
- "shape":"ServiceUnavailableException",
231
- "error":{"httpStatusCode":500},
232
- "exception":true
233
- }
234
- ]
235
- },
236
- "DeleteVault":{
237
- "name":"DeleteVault",
238
- "http":{
239
- "method":"DELETE",
240
- "requestUri":"/{accountId}/vaults/{vaultName}",
241
- "responseCode":204
242
- },
243
- "input":{"shape":"DeleteVaultInput"},
244
- "errors":[
245
- {
246
- "shape":"ResourceNotFoundException",
247
- "error":{"httpStatusCode":404},
248
- "exception":true
249
- },
250
- {
251
- "shape":"InvalidParameterValueException",
252
- "error":{"httpStatusCode":400},
253
- "exception":true
254
- },
255
- {
256
- "shape":"MissingParameterValueException",
257
- "error":{"httpStatusCode":400},
258
- "exception":true
259
- },
260
- {
261
- "shape":"ServiceUnavailableException",
262
- "error":{"httpStatusCode":500},
263
- "exception":true
264
- }
265
- ]
266
- },
267
- "DeleteVaultAccessPolicy":{
268
- "name":"DeleteVaultAccessPolicy",
269
- "http":{
270
- "method":"DELETE",
271
- "requestUri":"/{accountId}/vaults/{vaultName}/access-policy",
272
- "responseCode":204
273
- },
274
- "input":{"shape":"DeleteVaultAccessPolicyInput"},
275
- "errors":[
276
- {
277
- "shape":"ResourceNotFoundException",
278
- "error":{"httpStatusCode":404},
279
- "exception":true
280
- },
281
- {
282
- "shape":"InvalidParameterValueException",
283
- "error":{"httpStatusCode":400},
284
- "exception":true
285
- },
286
- {
287
- "shape":"MissingParameterValueException",
288
- "error":{"httpStatusCode":400},
289
- "exception":true
290
- },
291
- {
292
- "shape":"ServiceUnavailableException",
293
- "error":{"httpStatusCode":500},
294
- "exception":true
295
- }
296
- ]
297
- },
298
- "DeleteVaultNotifications":{
299
- "name":"DeleteVaultNotifications",
300
- "http":{
301
- "method":"DELETE",
302
- "requestUri":"/{accountId}/vaults/{vaultName}/notification-configuration",
303
- "responseCode":204
304
- },
305
- "input":{"shape":"DeleteVaultNotificationsInput"},
306
- "errors":[
307
- {
308
- "shape":"ResourceNotFoundException",
309
- "error":{"httpStatusCode":404},
310
- "exception":true
311
- },
312
- {
313
- "shape":"InvalidParameterValueException",
314
- "error":{"httpStatusCode":400},
315
- "exception":true
316
- },
317
- {
318
- "shape":"MissingParameterValueException",
319
- "error":{"httpStatusCode":400},
320
- "exception":true
321
- },
322
- {
323
- "shape":"ServiceUnavailableException",
324
- "error":{"httpStatusCode":500},
325
- "exception":true
326
- }
327
- ]
328
- },
329
- "DescribeJob":{
330
- "name":"DescribeJob",
331
- "http":{
332
- "method":"GET",
333
- "requestUri":"/{accountId}/vaults/{vaultName}/jobs/{jobId}"
334
- },
335
- "input":{"shape":"DescribeJobInput"},
336
- "output":{"shape":"GlacierJobDescription"},
337
- "errors":[
338
- {
339
- "shape":"ResourceNotFoundException",
340
- "error":{"httpStatusCode":404},
341
- "exception":true
342
- },
343
- {
344
- "shape":"InvalidParameterValueException",
345
- "error":{"httpStatusCode":400},
346
- "exception":true
347
- },
348
- {
349
- "shape":"MissingParameterValueException",
350
- "error":{"httpStatusCode":400},
351
- "exception":true
352
- },
353
- {
354
- "shape":"ServiceUnavailableException",
355
- "error":{"httpStatusCode":500},
356
- "exception":true
357
- }
358
- ]
359
- },
360
- "DescribeVault":{
361
- "name":"DescribeVault",
362
- "http":{
363
- "method":"GET",
364
- "requestUri":"/{accountId}/vaults/{vaultName}"
365
- },
366
- "input":{"shape":"DescribeVaultInput"},
367
- "output":{"shape":"DescribeVaultOutput"},
368
- "errors":[
369
- {
370
- "shape":"ResourceNotFoundException",
371
- "error":{"httpStatusCode":404},
372
- "exception":true
373
- },
374
- {
375
- "shape":"InvalidParameterValueException",
376
- "error":{"httpStatusCode":400},
377
- "exception":true
378
- },
379
- {
380
- "shape":"MissingParameterValueException",
381
- "error":{"httpStatusCode":400},
382
- "exception":true
383
- },
384
- {
385
- "shape":"ServiceUnavailableException",
386
- "error":{"httpStatusCode":500},
387
- "exception":true
388
- }
389
- ]
390
- },
391
- "GetDataRetrievalPolicy":{
392
- "name":"GetDataRetrievalPolicy",
393
- "http":{
394
- "method":"GET",
395
- "requestUri":"/{accountId}/policies/data-retrieval"
396
- },
397
- "input":{"shape":"GetDataRetrievalPolicyInput"},
398
- "output":{"shape":"GetDataRetrievalPolicyOutput"},
399
- "errors":[
400
- {
401
- "shape":"InvalidParameterValueException",
402
- "error":{"httpStatusCode":400},
403
- "exception":true
404
- },
405
- {
406
- "shape":"MissingParameterValueException",
407
- "error":{"httpStatusCode":400},
408
- "exception":true
409
- },
410
- {
411
- "shape":"ServiceUnavailableException",
412
- "error":{"httpStatusCode":500},
413
- "exception":true
414
- }
415
- ]
416
- },
417
- "GetJobOutput":{
418
- "name":"GetJobOutput",
419
- "http":{
420
- "method":"GET",
421
- "requestUri":"/{accountId}/vaults/{vaultName}/jobs/{jobId}/output"
422
- },
423
- "input":{"shape":"GetJobOutputInput"},
424
- "output":{"shape":"GetJobOutputOutput"},
425
- "errors":[
426
- {
427
- "shape":"ResourceNotFoundException",
428
- "error":{"httpStatusCode":404},
429
- "exception":true
430
- },
431
- {
432
- "shape":"InvalidParameterValueException",
433
- "error":{"httpStatusCode":400},
434
- "exception":true
435
- },
436
- {
437
- "shape":"MissingParameterValueException",
438
- "error":{"httpStatusCode":400},
439
- "exception":true
440
- },
441
- {
442
- "shape":"ServiceUnavailableException",
443
- "error":{"httpStatusCode":500},
444
- "exception":true
445
- }
446
- ]
447
- },
448
- "GetVaultAccessPolicy":{
449
- "name":"GetVaultAccessPolicy",
450
- "http":{
451
- "method":"GET",
452
- "requestUri":"/{accountId}/vaults/{vaultName}/access-policy"
453
- },
454
- "input":{"shape":"GetVaultAccessPolicyInput"},
455
- "output":{"shape":"GetVaultAccessPolicyOutput"},
456
- "errors":[
457
- {
458
- "shape":"ResourceNotFoundException",
459
- "error":{"httpStatusCode":404},
460
- "exception":true
461
- },
462
- {
463
- "shape":"InvalidParameterValueException",
464
- "error":{"httpStatusCode":400},
465
- "exception":true
466
- },
467
- {
468
- "shape":"MissingParameterValueException",
469
- "error":{"httpStatusCode":400},
470
- "exception":true
471
- },
472
- {
473
- "shape":"ServiceUnavailableException",
474
- "error":{"httpStatusCode":500},
475
- "exception":true
476
- }
477
- ]
478
- },
479
- "GetVaultLock":{
480
- "name":"GetVaultLock",
481
- "http":{
482
- "method":"GET",
483
- "requestUri":"/{accountId}/vaults/{vaultName}/lock-policy"
484
- },
485
- "input":{"shape":"GetVaultLockInput"},
486
- "output":{"shape":"GetVaultLockOutput"},
487
- "errors":[
488
- {
489
- "shape":"ResourceNotFoundException",
490
- "error":{"httpStatusCode":404},
491
- "exception":true
492
- },
493
- {
494
- "shape":"InvalidParameterValueException",
495
- "error":{"httpStatusCode":400},
496
- "exception":true
497
- },
498
- {
499
- "shape":"MissingParameterValueException",
500
- "error":{"httpStatusCode":400},
501
- "exception":true
502
- },
503
- {
504
- "shape":"ServiceUnavailableException",
505
- "error":{"httpStatusCode":500},
506
- "exception":true
507
- }
508
- ]
509
- },
510
- "GetVaultNotifications":{
511
- "name":"GetVaultNotifications",
512
- "http":{
513
- "method":"GET",
514
- "requestUri":"/{accountId}/vaults/{vaultName}/notification-configuration"
515
- },
516
- "input":{"shape":"GetVaultNotificationsInput"},
517
- "output":{"shape":"GetVaultNotificationsOutput"},
518
- "errors":[
519
- {
520
- "shape":"ResourceNotFoundException",
521
- "error":{"httpStatusCode":404},
522
- "exception":true
523
- },
524
- {
525
- "shape":"InvalidParameterValueException",
526
- "error":{"httpStatusCode":400},
527
- "exception":true
528
- },
529
- {
530
- "shape":"MissingParameterValueException",
531
- "error":{"httpStatusCode":400},
532
- "exception":true
533
- },
534
- {
535
- "shape":"ServiceUnavailableException",
536
- "error":{"httpStatusCode":500},
537
- "exception":true
538
- }
539
- ]
540
- },
541
- "InitiateJob":{
542
- "name":"InitiateJob",
543
- "http":{
544
- "method":"POST",
545
- "requestUri":"/{accountId}/vaults/{vaultName}/jobs",
546
- "responseCode":202
547
- },
548
- "input":{"shape":"InitiateJobInput"},
549
- "output":{"shape":"InitiateJobOutput"},
550
- "errors":[
551
- {
552
- "shape":"ResourceNotFoundException",
553
- "error":{"httpStatusCode":404},
554
- "exception":true
555
- },
556
- {
557
- "shape":"PolicyEnforcedException",
558
- "error":{"httpStatusCode":400},
559
- "exception":true
560
- },
561
- {
562
- "shape":"InvalidParameterValueException",
563
- "error":{"httpStatusCode":400},
564
- "exception":true
565
- },
566
- {
567
- "shape":"MissingParameterValueException",
568
- "error":{"httpStatusCode":400},
569
- "exception":true
570
- },
571
- {
572
- "shape":"ServiceUnavailableException",
573
- "error":{"httpStatusCode":500},
574
- "exception":true
575
- }
576
- ]
577
- },
578
- "InitiateMultipartUpload":{
579
- "name":"InitiateMultipartUpload",
580
- "http":{
581
- "method":"POST",
582
- "requestUri":"/{accountId}/vaults/{vaultName}/multipart-uploads",
583
- "responseCode":201
584
- },
585
- "input":{"shape":"InitiateMultipartUploadInput"},
586
- "output":{"shape":"InitiateMultipartUploadOutput"},
587
- "errors":[
588
- {
589
- "shape":"ResourceNotFoundException",
590
- "error":{"httpStatusCode":404},
591
- "exception":true
592
- },
593
- {
594
- "shape":"InvalidParameterValueException",
595
- "error":{"httpStatusCode":400},
596
- "exception":true
597
- },
598
- {
599
- "shape":"MissingParameterValueException",
600
- "error":{"httpStatusCode":400},
601
- "exception":true
602
- },
603
- {
604
- "shape":"ServiceUnavailableException",
605
- "error":{"httpStatusCode":500},
606
- "exception":true
607
- }
608
- ]
609
- },
610
- "InitiateVaultLock":{
611
- "name":"InitiateVaultLock",
612
- "http":{
613
- "method":"POST",
614
- "requestUri":"/{accountId}/vaults/{vaultName}/lock-policy",
615
- "responseCode":201
616
- },
617
- "input":{"shape":"InitiateVaultLockInput"},
618
- "output":{"shape":"InitiateVaultLockOutput"},
619
- "errors":[
620
- {
621
- "shape":"ResourceNotFoundException",
622
- "error":{"httpStatusCode":404},
623
- "exception":true
624
- },
625
- {
626
- "shape":"InvalidParameterValueException",
627
- "error":{"httpStatusCode":400},
628
- "exception":true
629
- },
630
- {
631
- "shape":"MissingParameterValueException",
632
- "error":{"httpStatusCode":400},
633
- "exception":true
634
- },
635
- {
636
- "shape":"ServiceUnavailableException",
637
- "error":{"httpStatusCode":500},
638
- "exception":true
639
- }
640
- ]
641
- },
642
- "ListJobs":{
643
- "name":"ListJobs",
644
- "http":{
645
- "method":"GET",
646
- "requestUri":"/{accountId}/vaults/{vaultName}/jobs"
647
- },
648
- "input":{"shape":"ListJobsInput"},
649
- "output":{"shape":"ListJobsOutput"},
650
- "errors":[
651
- {
652
- "shape":"ResourceNotFoundException",
653
- "error":{"httpStatusCode":404},
654
- "exception":true
655
- },
656
- {
657
- "shape":"InvalidParameterValueException",
658
- "error":{"httpStatusCode":400},
659
- "exception":true
660
- },
661
- {
662
- "shape":"MissingParameterValueException",
663
- "error":{"httpStatusCode":400},
664
- "exception":true
665
- },
666
- {
667
- "shape":"ServiceUnavailableException",
668
- "error":{"httpStatusCode":500},
669
- "exception":true
670
- }
671
- ]
672
- },
673
- "ListMultipartUploads":{
674
- "name":"ListMultipartUploads",
675
- "http":{
676
- "method":"GET",
677
- "requestUri":"/{accountId}/vaults/{vaultName}/multipart-uploads"
678
- },
679
- "input":{"shape":"ListMultipartUploadsInput"},
680
- "output":{"shape":"ListMultipartUploadsOutput"},
681
- "errors":[
682
- {
683
- "shape":"ResourceNotFoundException",
684
- "error":{"httpStatusCode":404},
685
- "exception":true
686
- },
687
- {
688
- "shape":"InvalidParameterValueException",
689
- "error":{"httpStatusCode":400},
690
- "exception":true
691
- },
692
- {
693
- "shape":"MissingParameterValueException",
694
- "error":{"httpStatusCode":400},
695
- "exception":true
696
- },
697
- {
698
- "shape":"ServiceUnavailableException",
699
- "error":{"httpStatusCode":500},
700
- "exception":true
701
- }
702
- ]
703
- },
704
- "ListParts":{
705
- "name":"ListParts",
706
- "http":{
707
- "method":"GET",
708
- "requestUri":"/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}"
709
- },
710
- "input":{"shape":"ListPartsInput"},
711
- "output":{"shape":"ListPartsOutput"},
712
- "errors":[
713
- {
714
- "shape":"ResourceNotFoundException",
715
- "error":{"httpStatusCode":404},
716
- "exception":true
717
- },
718
- {
719
- "shape":"InvalidParameterValueException",
720
- "error":{"httpStatusCode":400},
721
- "exception":true
722
- },
723
- {
724
- "shape":"MissingParameterValueException",
725
- "error":{"httpStatusCode":400},
726
- "exception":true
727
- },
728
- {
729
- "shape":"ServiceUnavailableException",
730
- "error":{"httpStatusCode":500},
731
- "exception":true
732
- }
733
- ]
734
- },
735
- "ListTagsForVault":{
736
- "name":"ListTagsForVault",
737
- "http":{
738
- "method":"GET",
739
- "requestUri":"/{accountId}/vaults/{vaultName}/tags"
740
- },
741
- "input":{"shape":"ListTagsForVaultInput"},
742
- "output":{"shape":"ListTagsForVaultOutput"},
743
- "errors":[
744
- {
745
- "shape":"InvalidParameterValueException",
746
- "error":{"httpStatusCode":400},
747
- "exception":true
748
- },
749
- {
750
- "shape":"MissingParameterValueException",
751
- "error":{"httpStatusCode":400},
752
- "exception":true
753
- },
754
- {
755
- "shape":"ResourceNotFoundException",
756
- "error":{"httpStatusCode":404},
757
- "exception":true
758
- },
759
- {
760
- "shape":"ServiceUnavailableException",
761
- "error":{"httpStatusCode":500},
762
- "exception":true
763
- }
764
- ]
765
- },
766
- "ListVaults":{
767
- "name":"ListVaults",
768
- "http":{
769
- "method":"GET",
770
- "requestUri":"/{accountId}/vaults"
771
- },
772
- "input":{"shape":"ListVaultsInput"},
773
- "output":{"shape":"ListVaultsOutput"},
774
- "errors":[
775
- {
776
- "shape":"ResourceNotFoundException",
777
- "error":{"httpStatusCode":404},
778
- "exception":true
779
- },
780
- {
781
- "shape":"InvalidParameterValueException",
782
- "error":{"httpStatusCode":400},
783
- "exception":true
784
- },
785
- {
786
- "shape":"MissingParameterValueException",
787
- "error":{"httpStatusCode":400},
788
- "exception":true
789
- },
790
- {
791
- "shape":"ServiceUnavailableException",
792
- "error":{"httpStatusCode":500},
793
- "exception":true
794
- }
795
- ]
796
- },
797
- "RemoveTagsFromVault":{
798
- "name":"RemoveTagsFromVault",
799
- "http":{
800
- "method":"POST",
801
- "requestUri":"/{accountId}/vaults/{vaultName}/tags?operation=remove",
802
- "responseCode":204
803
- },
804
- "input":{"shape":"RemoveTagsFromVaultInput"},
805
- "errors":[
806
- {
807
- "shape":"InvalidParameterValueException",
808
- "error":{"httpStatusCode":400},
809
- "exception":true
810
- },
811
- {
812
- "shape":"MissingParameterValueException",
813
- "error":{"httpStatusCode":400},
814
- "exception":true
815
- },
816
- {
817
- "shape":"ResourceNotFoundException",
818
- "error":{"httpStatusCode":404},
819
- "exception":true
820
- },
821
- {
822
- "shape":"ServiceUnavailableException",
823
- "error":{"httpStatusCode":500},
824
- "exception":true
825
- }
826
- ]
827
- },
828
- "SetDataRetrievalPolicy":{
829
- "name":"SetDataRetrievalPolicy",
830
- "http":{
831
- "method":"PUT",
832
- "requestUri":"/{accountId}/policies/data-retrieval",
833
- "responseCode":204
834
- },
835
- "input":{"shape":"SetDataRetrievalPolicyInput"},
836
- "errors":[
837
- {
838
- "shape":"InvalidParameterValueException",
839
- "error":{"httpStatusCode":400},
840
- "exception":true
841
- },
842
- {
843
- "shape":"MissingParameterValueException",
844
- "error":{"httpStatusCode":400},
845
- "exception":true
846
- },
847
- {
848
- "shape":"ServiceUnavailableException",
849
- "error":{"httpStatusCode":500},
850
- "exception":true
851
- }
852
- ]
853
- },
854
- "SetVaultAccessPolicy":{
855
- "name":"SetVaultAccessPolicy",
856
- "http":{
857
- "method":"PUT",
858
- "requestUri":"/{accountId}/vaults/{vaultName}/access-policy",
859
- "responseCode":204
860
- },
861
- "input":{"shape":"SetVaultAccessPolicyInput"},
862
- "errors":[
863
- {
864
- "shape":"ResourceNotFoundException",
865
- "error":{"httpStatusCode":404},
866
- "exception":true
867
- },
868
- {
869
- "shape":"InvalidParameterValueException",
870
- "error":{"httpStatusCode":400},
871
- "exception":true
872
- },
873
- {
874
- "shape":"MissingParameterValueException",
875
- "error":{"httpStatusCode":400},
876
- "exception":true
877
- },
878
- {
879
- "shape":"ServiceUnavailableException",
880
- "error":{"httpStatusCode":500},
881
- "exception":true
882
- }
883
- ]
884
- },
885
- "SetVaultNotifications":{
886
- "name":"SetVaultNotifications",
887
- "http":{
888
- "method":"PUT",
889
- "requestUri":"/{accountId}/vaults/{vaultName}/notification-configuration",
890
- "responseCode":204
891
- },
892
- "input":{"shape":"SetVaultNotificationsInput"},
893
- "errors":[
894
- {
895
- "shape":"ResourceNotFoundException",
896
- "error":{"httpStatusCode":404},
897
- "exception":true
898
- },
899
- {
900
- "shape":"InvalidParameterValueException",
901
- "error":{"httpStatusCode":400},
902
- "exception":true
903
- },
904
- {
905
- "shape":"MissingParameterValueException",
906
- "error":{"httpStatusCode":400},
907
- "exception":true
908
- },
909
- {
910
- "shape":"ServiceUnavailableException",
911
- "error":{"httpStatusCode":500},
912
- "exception":true
913
- }
914
- ]
915
- },
916
- "UploadArchive":{
917
- "name":"UploadArchive",
918
- "http":{
919
- "method":"POST",
920
- "requestUri":"/{accountId}/vaults/{vaultName}/archives",
921
- "responseCode":201
922
- },
923
- "input":{"shape":"UploadArchiveInput"},
924
- "output":{"shape":"ArchiveCreationOutput"},
925
- "errors":[
926
- {
927
- "shape":"ResourceNotFoundException",
928
- "error":{"httpStatusCode":404},
929
- "exception":true
930
- },
931
- {
932
- "shape":"InvalidParameterValueException",
933
- "error":{"httpStatusCode":400},
934
- "exception":true
935
- },
936
- {
937
- "shape":"MissingParameterValueException",
938
- "error":{"httpStatusCode":400},
939
- "exception":true
940
- },
941
- {
942
- "shape":"RequestTimeoutException",
943
- "error":{"httpStatusCode":408},
944
- "exception":true
945
- },
946
- {
947
- "shape":"ServiceUnavailableException",
948
- "error":{"httpStatusCode":500},
949
- "exception":true
950
- }
951
- ]
952
- },
953
- "UploadMultipartPart":{
954
- "name":"UploadMultipartPart",
955
- "http":{
956
- "method":"PUT",
957
- "requestUri":"/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}",
958
- "responseCode":204
959
- },
960
- "input":{"shape":"UploadMultipartPartInput"},
961
- "output":{"shape":"UploadMultipartPartOutput"},
962
- "errors":[
963
- {
964
- "shape":"ResourceNotFoundException",
965
- "error":{"httpStatusCode":404},
966
- "exception":true
967
- },
968
- {
969
- "shape":"InvalidParameterValueException",
970
- "error":{"httpStatusCode":400},
971
- "exception":true
972
- },
973
- {
974
- "shape":"MissingParameterValueException",
975
- "error":{"httpStatusCode":400},
976
- "exception":true
977
- },
978
- {
979
- "shape":"RequestTimeoutException",
980
- "error":{"httpStatusCode":408},
981
- "exception":true
982
- },
983
- {
984
- "shape":"ServiceUnavailableException",
985
- "error":{"httpStatusCode":500},
986
- "exception":true
987
- }
988
- ]
989
- }
990
- },
991
- "shapes":{
992
- "AbortMultipartUploadInput":{
993
- "type":"structure",
994
- "members":{
995
- "accountId":{
996
- "shape":"string",
997
- "location":"uri",
998
- "locationName":"accountId"
999
- },
1000
- "vaultName":{
1001
- "shape":"string",
1002
- "location":"uri",
1003
- "locationName":"vaultName"
1004
- },
1005
- "uploadId":{
1006
- "shape":"string",
1007
- "location":"uri",
1008
- "locationName":"uploadId"
1009
- }
1010
- },
1011
- "required":[
1012
- "accountId",
1013
- "vaultName",
1014
- "uploadId"
1015
- ]
1016
- },
1017
- "AbortVaultLockInput":{
1018
- "type":"structure",
1019
- "members":{
1020
- "accountId":{
1021
- "shape":"string",
1022
- "location":"uri",
1023
- "locationName":"accountId"
1024
- },
1025
- "vaultName":{
1026
- "shape":"string",
1027
- "location":"uri",
1028
- "locationName":"vaultName"
1029
- }
1030
- },
1031
- "required":[
1032
- "accountId",
1033
- "vaultName"
1034
- ]
1035
- },
1036
- "ActionCode":{
1037
- "type":"string",
1038
- "enum":[
1039
- "ArchiveRetrieval",
1040
- "InventoryRetrieval"
1041
- ]
1042
- },
1043
- "AddTagsToVaultInput":{
1044
- "type":"structure",
1045
- "members":{
1046
- "accountId":{
1047
- "shape":"string",
1048
- "location":"uri",
1049
- "locationName":"accountId"
1050
- },
1051
- "vaultName":{
1052
- "shape":"string",
1053
- "location":"uri",
1054
- "locationName":"vaultName"
1055
- },
1056
- "Tags":{"shape":"TagMap"}
1057
- },
1058
- "required":[
1059
- "accountId",
1060
- "vaultName"
1061
- ]
1062
- },
1063
- "ArchiveCreationOutput":{
1064
- "type":"structure",
1065
- "members":{
1066
- "location":{
1067
- "shape":"string",
1068
- "location":"header",
1069
- "locationName":"Location"
1070
- },
1071
- "checksum":{
1072
- "shape":"string",
1073
- "location":"header",
1074
- "locationName":"x-amz-sha256-tree-hash"
1075
- },
1076
- "archiveId":{
1077
- "shape":"string",
1078
- "location":"header",
1079
- "locationName":"x-amz-archive-id"
1080
- }
1081
- }
1082
- },
1083
- "CompleteMultipartUploadInput":{
1084
- "type":"structure",
1085
- "members":{
1086
- "accountId":{
1087
- "shape":"string",
1088
- "location":"uri",
1089
- "locationName":"accountId"
1090
- },
1091
- "vaultName":{
1092
- "shape":"string",
1093
- "location":"uri",
1094
- "locationName":"vaultName"
1095
- },
1096
- "uploadId":{
1097
- "shape":"string",
1098
- "location":"uri",
1099
- "locationName":"uploadId"
1100
- },
1101
- "archiveSize":{
1102
- "shape":"string",
1103
- "location":"header",
1104
- "locationName":"x-amz-archive-size"
1105
- },
1106
- "checksum":{
1107
- "shape":"string",
1108
- "location":"header",
1109
- "locationName":"x-amz-sha256-tree-hash"
1110
- }
1111
- },
1112
- "required":[
1113
- "accountId",
1114
- "vaultName",
1115
- "uploadId"
1116
- ]
1117
- },
1118
- "CompleteVaultLockInput":{
1119
- "type":"structure",
1120
- "members":{
1121
- "accountId":{
1122
- "shape":"string",
1123
- "location":"uri",
1124
- "locationName":"accountId"
1125
- },
1126
- "vaultName":{
1127
- "shape":"string",
1128
- "location":"uri",
1129
- "locationName":"vaultName"
1130
- },
1131
- "lockId":{
1132
- "shape":"string",
1133
- "location":"uri",
1134
- "locationName":"lockId"
1135
- }
1136
- },
1137
- "required":[
1138
- "accountId",
1139
- "vaultName",
1140
- "lockId"
1141
- ]
1142
- },
1143
- "CreateVaultInput":{
1144
- "type":"structure",
1145
- "members":{
1146
- "accountId":{
1147
- "shape":"string",
1148
- "location":"uri",
1149
- "locationName":"accountId"
1150
- },
1151
- "vaultName":{
1152
- "shape":"string",
1153
- "location":"uri",
1154
- "locationName":"vaultName"
1155
- }
1156
- },
1157
- "required":[
1158
- "accountId",
1159
- "vaultName"
1160
- ]
1161
- },
1162
- "CreateVaultOutput":{
1163
- "type":"structure",
1164
- "members":{
1165
- "location":{
1166
- "shape":"string",
1167
- "location":"header",
1168
- "locationName":"Location"
1169
- }
1170
- }
1171
- },
1172
- "DataRetrievalPolicy":{
1173
- "type":"structure",
1174
- "members":{
1175
- "Rules":{"shape":"DataRetrievalRulesList"}
1176
- }
1177
- },
1178
- "DataRetrievalRule":{
1179
- "type":"structure",
1180
- "members":{
1181
- "Strategy":{"shape":"string"},
1182
- "BytesPerHour":{"shape":"NullableLong"}
1183
- }
1184
- },
1185
- "DataRetrievalRulesList":{
1186
- "type":"list",
1187
- "member":{"shape":"DataRetrievalRule"}
1188
- },
1189
- "DateTime":{"type":"string"},
1190
- "DeleteArchiveInput":{
1191
- "type":"structure",
1192
- "members":{
1193
- "accountId":{
1194
- "shape":"string",
1195
- "location":"uri",
1196
- "locationName":"accountId"
1197
- },
1198
- "vaultName":{
1199
- "shape":"string",
1200
- "location":"uri",
1201
- "locationName":"vaultName"
1202
- },
1203
- "archiveId":{
1204
- "shape":"string",
1205
- "location":"uri",
1206
- "locationName":"archiveId"
1207
- }
1208
- },
1209
- "required":[
1210
- "accountId",
1211
- "vaultName",
1212
- "archiveId"
1213
- ]
1214
- },
1215
- "DeleteVaultAccessPolicyInput":{
1216
- "type":"structure",
1217
- "members":{
1218
- "accountId":{
1219
- "shape":"string",
1220
- "location":"uri",
1221
- "locationName":"accountId"
1222
- },
1223
- "vaultName":{
1224
- "shape":"string",
1225
- "location":"uri",
1226
- "locationName":"vaultName"
1227
- }
1228
- },
1229
- "required":[
1230
- "accountId",
1231
- "vaultName"
1232
- ]
1233
- },
1234
- "DeleteVaultInput":{
1235
- "type":"structure",
1236
- "members":{
1237
- "accountId":{
1238
- "shape":"string",
1239
- "location":"uri",
1240
- "locationName":"accountId"
1241
- },
1242
- "vaultName":{
1243
- "shape":"string",
1244
- "location":"uri",
1245
- "locationName":"vaultName"
1246
- }
1247
- },
1248
- "required":[
1249
- "accountId",
1250
- "vaultName"
1251
- ]
1252
- },
1253
- "DeleteVaultNotificationsInput":{
1254
- "type":"structure",
1255
- "members":{
1256
- "accountId":{
1257
- "shape":"string",
1258
- "location":"uri",
1259
- "locationName":"accountId"
1260
- },
1261
- "vaultName":{
1262
- "shape":"string",
1263
- "location":"uri",
1264
- "locationName":"vaultName"
1265
- }
1266
- },
1267
- "required":[
1268
- "accountId",
1269
- "vaultName"
1270
- ]
1271
- },
1272
- "DescribeJobInput":{
1273
- "type":"structure",
1274
- "members":{
1275
- "accountId":{
1276
- "shape":"string",
1277
- "location":"uri",
1278
- "locationName":"accountId"
1279
- },
1280
- "vaultName":{
1281
- "shape":"string",
1282
- "location":"uri",
1283
- "locationName":"vaultName"
1284
- },
1285
- "jobId":{
1286
- "shape":"string",
1287
- "location":"uri",
1288
- "locationName":"jobId"
1289
- }
1290
- },
1291
- "required":[
1292
- "accountId",
1293
- "vaultName",
1294
- "jobId"
1295
- ]
1296
- },
1297
- "DescribeVaultInput":{
1298
- "type":"structure",
1299
- "members":{
1300
- "accountId":{
1301
- "shape":"string",
1302
- "location":"uri",
1303
- "locationName":"accountId"
1304
- },
1305
- "vaultName":{
1306
- "shape":"string",
1307
- "location":"uri",
1308
- "locationName":"vaultName"
1309
- }
1310
- },
1311
- "required":[
1312
- "accountId",
1313
- "vaultName"
1314
- ]
1315
- },
1316
- "DescribeVaultOutput":{
1317
- "type":"structure",
1318
- "members":{
1319
- "VaultARN":{"shape":"string"},
1320
- "VaultName":{"shape":"string"},
1321
- "CreationDate":{"shape":"string"},
1322
- "LastInventoryDate":{"shape":"string"},
1323
- "NumberOfArchives":{"shape":"long"},
1324
- "SizeInBytes":{"shape":"long"}
1325
- }
1326
- },
1327
- "GetDataRetrievalPolicyInput":{
1328
- "type":"structure",
1329
- "members":{
1330
- "accountId":{
1331
- "shape":"string",
1332
- "location":"uri",
1333
- "locationName":"accountId"
1334
- }
1335
- },
1336
- "required":["accountId"]
1337
- },
1338
- "GetDataRetrievalPolicyOutput":{
1339
- "type":"structure",
1340
- "members":{
1341
- "Policy":{"shape":"DataRetrievalPolicy"}
1342
- }
1343
- },
1344
- "GetJobOutputInput":{
1345
- "type":"structure",
1346
- "members":{
1347
- "accountId":{
1348
- "shape":"string",
1349
- "location":"uri",
1350
- "locationName":"accountId"
1351
- },
1352
- "vaultName":{
1353
- "shape":"string",
1354
- "location":"uri",
1355
- "locationName":"vaultName"
1356
- },
1357
- "jobId":{
1358
- "shape":"string",
1359
- "location":"uri",
1360
- "locationName":"jobId"
1361
- },
1362
- "range":{
1363
- "shape":"string",
1364
- "location":"header",
1365
- "locationName":"Range"
1366
- }
1367
- },
1368
- "required":[
1369
- "accountId",
1370
- "vaultName",
1371
- "jobId"
1372
- ]
1373
- },
1374
- "GetJobOutputOutput":{
1375
- "type":"structure",
1376
- "members":{
1377
- "body":{"shape":"Stream"},
1378
- "checksum":{
1379
- "shape":"string",
1380
- "location":"header",
1381
- "locationName":"x-amz-sha256-tree-hash"
1382
- },
1383
- "status":{
1384
- "shape":"httpstatus",
1385
- "location":"statusCode"
1386
- },
1387
- "contentRange":{
1388
- "shape":"string",
1389
- "location":"header",
1390
- "locationName":"Content-Range"
1391
- },
1392
- "acceptRanges":{
1393
- "shape":"string",
1394
- "location":"header",
1395
- "locationName":"Accept-Ranges"
1396
- },
1397
- "contentType":{
1398
- "shape":"string",
1399
- "location":"header",
1400
- "locationName":"Content-Type"
1401
- },
1402
- "archiveDescription":{
1403
- "shape":"string",
1404
- "location":"header",
1405
- "locationName":"x-amz-archive-description"
1406
- }
1407
- },
1408
- "payload":"body"
1409
- },
1410
- "GetVaultAccessPolicyInput":{
1411
- "type":"structure",
1412
- "members":{
1413
- "accountId":{
1414
- "shape":"string",
1415
- "location":"uri",
1416
- "locationName":"accountId"
1417
- },
1418
- "vaultName":{
1419
- "shape":"string",
1420
- "location":"uri",
1421
- "locationName":"vaultName"
1422
- }
1423
- },
1424
- "required":[
1425
- "accountId",
1426
- "vaultName"
1427
- ]
1428
- },
1429
- "GetVaultAccessPolicyOutput":{
1430
- "type":"structure",
1431
- "members":{
1432
- "policy":{"shape":"VaultAccessPolicy"}
1433
- },
1434
- "payload":"policy"
1435
- },
1436
- "GetVaultLockInput":{
1437
- "type":"structure",
1438
- "members":{
1439
- "accountId":{
1440
- "shape":"string",
1441
- "location":"uri",
1442
- "locationName":"accountId"
1443
- },
1444
- "vaultName":{
1445
- "shape":"string",
1446
- "location":"uri",
1447
- "locationName":"vaultName"
1448
- }
1449
- },
1450
- "required":[
1451
- "accountId",
1452
- "vaultName"
1453
- ]
1454
- },
1455
- "GetVaultLockOutput":{
1456
- "type":"structure",
1457
- "members":{
1458
- "Policy":{"shape":"string"},
1459
- "State":{"shape":"string"},
1460
- "ExpirationDate":{"shape":"string"},
1461
- "CreationDate":{"shape":"string"}
1462
- }
1463
- },
1464
- "GetVaultNotificationsInput":{
1465
- "type":"structure",
1466
- "members":{
1467
- "accountId":{
1468
- "shape":"string",
1469
- "location":"uri",
1470
- "locationName":"accountId"
1471
- },
1472
- "vaultName":{
1473
- "shape":"string",
1474
- "location":"uri",
1475
- "locationName":"vaultName"
1476
- }
1477
- },
1478
- "required":[
1479
- "accountId",
1480
- "vaultName"
1481
- ]
1482
- },
1483
- "GetVaultNotificationsOutput":{
1484
- "type":"structure",
1485
- "members":{
1486
- "vaultNotificationConfig":{"shape":"VaultNotificationConfig"}
1487
- },
1488
- "payload":"vaultNotificationConfig"
1489
- },
1490
- "GlacierJobDescription":{
1491
- "type":"structure",
1492
- "members":{
1493
- "JobId":{"shape":"string"},
1494
- "JobDescription":{"shape":"string"},
1495
- "Action":{"shape":"ActionCode"},
1496
- "ArchiveId":{"shape":"string"},
1497
- "VaultARN":{"shape":"string"},
1498
- "CreationDate":{"shape":"string"},
1499
- "Completed":{"shape":"boolean"},
1500
- "StatusCode":{"shape":"StatusCode"},
1501
- "StatusMessage":{"shape":"string"},
1502
- "ArchiveSizeInBytes":{"shape":"Size"},
1503
- "InventorySizeInBytes":{"shape":"Size"},
1504
- "SNSTopic":{"shape":"string"},
1505
- "CompletionDate":{"shape":"string"},
1506
- "SHA256TreeHash":{"shape":"string"},
1507
- "ArchiveSHA256TreeHash":{"shape":"string"},
1508
- "RetrievalByteRange":{"shape":"string"},
1509
- "InventoryRetrievalParameters":{"shape":"InventoryRetrievalJobDescription"}
1510
- }
1511
- },
1512
- "InitiateJobInput":{
1513
- "type":"structure",
1514
- "members":{
1515
- "accountId":{
1516
- "shape":"string",
1517
- "location":"uri",
1518
- "locationName":"accountId"
1519
- },
1520
- "vaultName":{
1521
- "shape":"string",
1522
- "location":"uri",
1523
- "locationName":"vaultName"
1524
- },
1525
- "jobParameters":{"shape":"JobParameters"}
1526
- },
1527
- "required":[
1528
- "accountId",
1529
- "vaultName"
1530
- ],
1531
- "payload":"jobParameters"
1532
- },
1533
- "InitiateJobOutput":{
1534
- "type":"structure",
1535
- "members":{
1536
- "location":{
1537
- "shape":"string",
1538
- "location":"header",
1539
- "locationName":"Location"
1540
- },
1541
- "jobId":{
1542
- "shape":"string",
1543
- "location":"header",
1544
- "locationName":"x-amz-job-id"
1545
- }
1546
- }
1547
- },
1548
- "InitiateMultipartUploadInput":{
1549
- "type":"structure",
1550
- "members":{
1551
- "accountId":{
1552
- "shape":"string",
1553
- "location":"uri",
1554
- "locationName":"accountId"
1555
- },
1556
- "vaultName":{
1557
- "shape":"string",
1558
- "location":"uri",
1559
- "locationName":"vaultName"
1560
- },
1561
- "archiveDescription":{
1562
- "shape":"string",
1563
- "location":"header",
1564
- "locationName":"x-amz-archive-description"
1565
- },
1566
- "partSize":{
1567
- "shape":"string",
1568
- "location":"header",
1569
- "locationName":"x-amz-part-size"
1570
- }
1571
- },
1572
- "required":[
1573
- "accountId",
1574
- "vaultName"
1575
- ]
1576
- },
1577
- "InitiateMultipartUploadOutput":{
1578
- "type":"structure",
1579
- "members":{
1580
- "location":{
1581
- "shape":"string",
1582
- "location":"header",
1583
- "locationName":"Location"
1584
- },
1585
- "uploadId":{
1586
- "shape":"string",
1587
- "location":"header",
1588
- "locationName":"x-amz-multipart-upload-id"
1589
- }
1590
- }
1591
- },
1592
- "InitiateVaultLockInput":{
1593
- "type":"structure",
1594
- "members":{
1595
- "accountId":{
1596
- "shape":"string",
1597
- "location":"uri",
1598
- "locationName":"accountId"
1599
- },
1600
- "vaultName":{
1601
- "shape":"string",
1602
- "location":"uri",
1603
- "locationName":"vaultName"
1604
- },
1605
- "policy":{"shape":"VaultLockPolicy"}
1606
- },
1607
- "required":[
1608
- "accountId",
1609
- "vaultName"
1610
- ],
1611
- "payload":"policy"
1612
- },
1613
- "InitiateVaultLockOutput":{
1614
- "type":"structure",
1615
- "members":{
1616
- "lockId":{
1617
- "shape":"string",
1618
- "location":"header",
1619
- "locationName":"x-amz-lock-id"
1620
- }
1621
- }
1622
- },
1623
- "InvalidParameterValueException":{
1624
- "type":"structure",
1625
- "members":{
1626
- "type":{"shape":"string"},
1627
- "code":{"shape":"string"},
1628
- "message":{"shape":"string"}
1629
- },
1630
- "error":{"httpStatusCode":400},
1631
- "exception":true
1632
- },
1633
- "InventoryRetrievalJobDescription":{
1634
- "type":"structure",
1635
- "members":{
1636
- "Format":{"shape":"string"},
1637
- "StartDate":{"shape":"DateTime"},
1638
- "EndDate":{"shape":"DateTime"},
1639
- "Limit":{"shape":"string"},
1640
- "Marker":{"shape":"string"}
1641
- }
1642
- },
1643
- "InventoryRetrievalJobInput":{
1644
- "type":"structure",
1645
- "members":{
1646
- "StartDate":{"shape":"string"},
1647
- "EndDate":{"shape":"string"},
1648
- "Limit":{"shape":"string"},
1649
- "Marker":{"shape":"string"}
1650
- }
1651
- },
1652
- "JobList":{
1653
- "type":"list",
1654
- "member":{"shape":"GlacierJobDescription"}
1655
- },
1656
- "JobParameters":{
1657
- "type":"structure",
1658
- "members":{
1659
- "Format":{"shape":"string"},
1660
- "Type":{"shape":"string"},
1661
- "ArchiveId":{"shape":"string"},
1662
- "Description":{"shape":"string"},
1663
- "SNSTopic":{"shape":"string"},
1664
- "RetrievalByteRange":{"shape":"string"},
1665
- "InventoryRetrievalParameters":{"shape":"InventoryRetrievalJobInput"}
1666
- }
1667
- },
1668
- "LimitExceededException":{
1669
- "type":"structure",
1670
- "members":{
1671
- "type":{"shape":"string"},
1672
- "code":{"shape":"string"},
1673
- "message":{"shape":"string"}
1674
- },
1675
- "error":{"httpStatusCode":400},
1676
- "exception":true
1677
- },
1678
- "ListJobsInput":{
1679
- "type":"structure",
1680
- "members":{
1681
- "accountId":{
1682
- "shape":"string",
1683
- "location":"uri",
1684
- "locationName":"accountId"
1685
- },
1686
- "vaultName":{
1687
- "shape":"string",
1688
- "location":"uri",
1689
- "locationName":"vaultName"
1690
- },
1691
- "limit":{
1692
- "shape":"string",
1693
- "location":"querystring",
1694
- "locationName":"limit"
1695
- },
1696
- "marker":{
1697
- "shape":"string",
1698
- "location":"querystring",
1699
- "locationName":"marker"
1700
- },
1701
- "statuscode":{
1702
- "shape":"string",
1703
- "location":"querystring",
1704
- "locationName":"statuscode"
1705
- },
1706
- "completed":{
1707
- "shape":"string",
1708
- "location":"querystring",
1709
- "locationName":"completed"
1710
- }
1711
- },
1712
- "required":[
1713
- "accountId",
1714
- "vaultName"
1715
- ]
1716
- },
1717
- "ListJobsOutput":{
1718
- "type":"structure",
1719
- "members":{
1720
- "JobList":{"shape":"JobList"},
1721
- "Marker":{"shape":"string"}
1722
- }
1723
- },
1724
- "ListMultipartUploadsInput":{
1725
- "type":"structure",
1726
- "members":{
1727
- "accountId":{
1728
- "shape":"string",
1729
- "location":"uri",
1730
- "locationName":"accountId"
1731
- },
1732
- "vaultName":{
1733
- "shape":"string",
1734
- "location":"uri",
1735
- "locationName":"vaultName"
1736
- },
1737
- "marker":{
1738
- "shape":"string",
1739
- "location":"querystring",
1740
- "locationName":"marker"
1741
- },
1742
- "limit":{
1743
- "shape":"string",
1744
- "location":"querystring",
1745
- "locationName":"limit"
1746
- }
1747
- },
1748
- "required":[
1749
- "accountId",
1750
- "vaultName"
1751
- ]
1752
- },
1753
- "ListMultipartUploadsOutput":{
1754
- "type":"structure",
1755
- "members":{
1756
- "UploadsList":{"shape":"UploadsList"},
1757
- "Marker":{"shape":"string"}
1758
- }
1759
- },
1760
- "ListPartsInput":{
1761
- "type":"structure",
1762
- "members":{
1763
- "accountId":{
1764
- "shape":"string",
1765
- "location":"uri",
1766
- "locationName":"accountId"
1767
- },
1768
- "vaultName":{
1769
- "shape":"string",
1770
- "location":"uri",
1771
- "locationName":"vaultName"
1772
- },
1773
- "uploadId":{
1774
- "shape":"string",
1775
- "location":"uri",
1776
- "locationName":"uploadId"
1777
- },
1778
- "marker":{
1779
- "shape":"string",
1780
- "location":"querystring",
1781
- "locationName":"marker"
1782
- },
1783
- "limit":{
1784
- "shape":"string",
1785
- "location":"querystring",
1786
- "locationName":"limit"
1787
- }
1788
- },
1789
- "required":[
1790
- "accountId",
1791
- "vaultName",
1792
- "uploadId"
1793
- ]
1794
- },
1795
- "ListPartsOutput":{
1796
- "type":"structure",
1797
- "members":{
1798
- "MultipartUploadId":{"shape":"string"},
1799
- "VaultARN":{"shape":"string"},
1800
- "ArchiveDescription":{"shape":"string"},
1801
- "PartSizeInBytes":{"shape":"long"},
1802
- "CreationDate":{"shape":"string"},
1803
- "Parts":{"shape":"PartList"},
1804
- "Marker":{"shape":"string"}
1805
- }
1806
- },
1807
- "ListTagsForVaultInput":{
1808
- "type":"structure",
1809
- "members":{
1810
- "accountId":{
1811
- "shape":"string",
1812
- "location":"uri",
1813
- "locationName":"accountId"
1814
- },
1815
- "vaultName":{
1816
- "shape":"string",
1817
- "location":"uri",
1818
- "locationName":"vaultName"
1819
- }
1820
- },
1821
- "required":[
1822
- "accountId",
1823
- "vaultName"
1824
- ]
1825
- },
1826
- "ListTagsForVaultOutput":{
1827
- "type":"structure",
1828
- "members":{
1829
- "Tags":{"shape":"TagMap"}
1830
- }
1831
- },
1832
- "ListVaultsInput":{
1833
- "type":"structure",
1834
- "members":{
1835
- "accountId":{
1836
- "shape":"string",
1837
- "location":"uri",
1838
- "locationName":"accountId"
1839
- },
1840
- "marker":{
1841
- "shape":"string",
1842
- "location":"querystring",
1843
- "locationName":"marker"
1844
- },
1845
- "limit":{
1846
- "shape":"string",
1847
- "location":"querystring",
1848
- "locationName":"limit"
1849
- }
1850
- },
1851
- "required":["accountId"]
1852
- },
1853
- "ListVaultsOutput":{
1854
- "type":"structure",
1855
- "members":{
1856
- "VaultList":{"shape":"VaultList"},
1857
- "Marker":{"shape":"string"}
1858
- }
1859
- },
1860
- "MissingParameterValueException":{
1861
- "type":"structure",
1862
- "members":{
1863
- "type":{"shape":"string"},
1864
- "code":{"shape":"string"},
1865
- "message":{"shape":"string"}
1866
- },
1867
- "error":{"httpStatusCode":400},
1868
- "exception":true
1869
- },
1870
- "NotificationEventList":{
1871
- "type":"list",
1872
- "member":{"shape":"string"}
1873
- },
1874
- "NullableLong":{"type":"long"},
1875
- "PartList":{
1876
- "type":"list",
1877
- "member":{"shape":"PartListElement"}
1878
- },
1879
- "PartListElement":{
1880
- "type":"structure",
1881
- "members":{
1882
- "RangeInBytes":{"shape":"string"},
1883
- "SHA256TreeHash":{"shape":"string"}
1884
- }
1885
- },
1886
- "PolicyEnforcedException":{
1887
- "type":"structure",
1888
- "members":{
1889
- "type":{"shape":"string"},
1890
- "code":{"shape":"string"},
1891
- "message":{"shape":"string"}
1892
- },
1893
- "error":{"httpStatusCode":400},
1894
- "exception":true
1895
- },
1896
- "RemoveTagsFromVaultInput":{
1897
- "type":"structure",
1898
- "members":{
1899
- "accountId":{
1900
- "shape":"string",
1901
- "location":"uri",
1902
- "locationName":"accountId"
1903
- },
1904
- "vaultName":{
1905
- "shape":"string",
1906
- "location":"uri",
1907
- "locationName":"vaultName"
1908
- },
1909
- "TagKeys":{"shape":"TagKeyList"}
1910
- },
1911
- "required":[
1912
- "accountId",
1913
- "vaultName"
1914
- ]
1915
- },
1916
- "RequestTimeoutException":{
1917
- "type":"structure",
1918
- "members":{
1919
- "type":{"shape":"string"},
1920
- "code":{"shape":"string"},
1921
- "message":{"shape":"string"}
1922
- },
1923
- "error":{"httpStatusCode":408},
1924
- "exception":true
1925
- },
1926
- "ResourceNotFoundException":{
1927
- "type":"structure",
1928
- "members":{
1929
- "type":{"shape":"string"},
1930
- "code":{"shape":"string"},
1931
- "message":{"shape":"string"}
1932
- },
1933
- "error":{"httpStatusCode":404},
1934
- "exception":true
1935
- },
1936
- "ServiceUnavailableException":{
1937
- "type":"structure",
1938
- "members":{
1939
- "type":{"shape":"string"},
1940
- "code":{"shape":"string"},
1941
- "message":{"shape":"string"}
1942
- },
1943
- "error":{"httpStatusCode":500},
1944
- "exception":true
1945
- },
1946
- "SetDataRetrievalPolicyInput":{
1947
- "type":"structure",
1948
- "members":{
1949
- "accountId":{
1950
- "shape":"string",
1951
- "location":"uri",
1952
- "locationName":"accountId"
1953
- },
1954
- "Policy":{"shape":"DataRetrievalPolicy"}
1955
- },
1956
- "required":["accountId"]
1957
- },
1958
- "SetVaultAccessPolicyInput":{
1959
- "type":"structure",
1960
- "members":{
1961
- "accountId":{
1962
- "shape":"string",
1963
- "location":"uri",
1964
- "locationName":"accountId"
1965
- },
1966
- "vaultName":{
1967
- "shape":"string",
1968
- "location":"uri",
1969
- "locationName":"vaultName"
1970
- },
1971
- "policy":{"shape":"VaultAccessPolicy"}
1972
- },
1973
- "required":[
1974
- "accountId",
1975
- "vaultName"
1976
- ],
1977
- "payload":"policy"
1978
- },
1979
- "SetVaultNotificationsInput":{
1980
- "type":"structure",
1981
- "members":{
1982
- "accountId":{
1983
- "shape":"string",
1984
- "location":"uri",
1985
- "locationName":"accountId"
1986
- },
1987
- "vaultName":{
1988
- "shape":"string",
1989
- "location":"uri",
1990
- "locationName":"vaultName"
1991
- },
1992
- "vaultNotificationConfig":{"shape":"VaultNotificationConfig"}
1993
- },
1994
- "required":[
1995
- "accountId",
1996
- "vaultName"
1997
- ],
1998
- "payload":"vaultNotificationConfig"
1999
- },
2000
- "Size":{"type":"long"},
2001
- "StatusCode":{
2002
- "type":"string",
2003
- "enum":[
2004
- "InProgress",
2005
- "Succeeded",
2006
- "Failed"
2007
- ]
2008
- },
2009
- "Stream":{
2010
- "type":"blob",
2011
- "streaming":true
2012
- },
2013
- "TagKey":{"type":"string"},
2014
- "TagKeyList":{
2015
- "type":"list",
2016
- "member":{"shape":"string"}
2017
- },
2018
- "TagMap":{
2019
- "type":"map",
2020
- "key":{"shape":"TagKey"},
2021
- "value":{"shape":"TagValue"}
2022
- },
2023
- "TagValue":{"type":"string"},
2024
- "UploadArchiveInput":{
2025
- "type":"structure",
2026
- "members":{
2027
- "vaultName":{
2028
- "shape":"string",
2029
- "location":"uri",
2030
- "locationName":"vaultName"
2031
- },
2032
- "accountId":{
2033
- "shape":"string",
2034
- "location":"uri",
2035
- "locationName":"accountId"
2036
- },
2037
- "archiveDescription":{
2038
- "shape":"string",
2039
- "location":"header",
2040
- "locationName":"x-amz-archive-description"
2041
- },
2042
- "checksum":{
2043
- "shape":"string",
2044
- "location":"header",
2045
- "locationName":"x-amz-sha256-tree-hash"
2046
- },
2047
- "body":{"shape":"Stream"}
2048
- },
2049
- "required":[
2050
- "vaultName",
2051
- "accountId"
2052
- ],
2053
- "payload":"body"
2054
- },
2055
- "UploadListElement":{
2056
- "type":"structure",
2057
- "members":{
2058
- "MultipartUploadId":{"shape":"string"},
2059
- "VaultARN":{"shape":"string"},
2060
- "ArchiveDescription":{"shape":"string"},
2061
- "PartSizeInBytes":{"shape":"long"},
2062
- "CreationDate":{"shape":"string"}
2063
- }
2064
- },
2065
- "UploadMultipartPartInput":{
2066
- "type":"structure",
2067
- "members":{
2068
- "accountId":{
2069
- "shape":"string",
2070
- "location":"uri",
2071
- "locationName":"accountId"
2072
- },
2073
- "vaultName":{
2074
- "shape":"string",
2075
- "location":"uri",
2076
- "locationName":"vaultName"
2077
- },
2078
- "uploadId":{
2079
- "shape":"string",
2080
- "location":"uri",
2081
- "locationName":"uploadId"
2082
- },
2083
- "checksum":{
2084
- "shape":"string",
2085
- "location":"header",
2086
- "locationName":"x-amz-sha256-tree-hash"
2087
- },
2088
- "range":{
2089
- "shape":"string",
2090
- "location":"header",
2091
- "locationName":"Content-Range"
2092
- },
2093
- "body":{"shape":"Stream"}
2094
- },
2095
- "required":[
2096
- "accountId",
2097
- "vaultName",
2098
- "uploadId"
2099
- ],
2100
- "payload":"body"
2101
- },
2102
- "UploadMultipartPartOutput":{
2103
- "type":"structure",
2104
- "members":{
2105
- "checksum":{
2106
- "shape":"string",
2107
- "location":"header",
2108
- "locationName":"x-amz-sha256-tree-hash"
2109
- }
2110
- }
2111
- },
2112
- "UploadsList":{
2113
- "type":"list",
2114
- "member":{"shape":"UploadListElement"}
2115
- },
2116
- "VaultAccessPolicy":{
2117
- "type":"structure",
2118
- "members":{
2119
- "Policy":{"shape":"string"}
2120
- }
2121
- },
2122
- "VaultList":{
2123
- "type":"list",
2124
- "member":{"shape":"DescribeVaultOutput"}
2125
- },
2126
- "VaultLockPolicy":{
2127
- "type":"structure",
2128
- "members":{
2129
- "Policy":{"shape":"string"}
2130
- }
2131
- },
2132
- "VaultNotificationConfig":{
2133
- "type":"structure",
2134
- "members":{
2135
- "SNSTopic":{"shape":"string"},
2136
- "Events":{"shape":"NotificationEventList"}
2137
- }
2138
- },
2139
- "boolean":{"type":"boolean"},
2140
- "httpstatus":{"type":"integer"},
2141
- "long":{"type":"long"},
2142
- "string":{"type":"string"}
2143
- }
2144
- }