aws-sdk-core 2.11.501 → 3.94.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1306) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -584
  4. data/lib/aws-sdk-core/arn.rb +77 -0
  5. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  6. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +102 -0
  7. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  8. data/lib/aws-sdk-core/binary.rb +6 -0
  9. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  11. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  12. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  13. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  14. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  15. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  17. data/lib/aws-sdk-core/client_stubs.rb +20 -16
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +88 -32
  20. data/lib/aws-sdk-core/deprecations.rb +16 -10
  21. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  22. data/lib/aws-sdk-core/errors.rb +167 -26
  23. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  24. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  25. data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
  26. data/lib/aws-sdk-core/json.rb +17 -19
  27. data/lib/aws-sdk-core/json/builder.rb +4 -2
  28. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  29. data/lib/aws-sdk-core/json/handler.rb +22 -3
  30. data/lib/aws-sdk-core/json/parser.rb +1 -1
  31. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  32. data/lib/aws-sdk-core/log/param_filter.rb +6 -5
  33. data/lib/aws-sdk-core/pageable_response.rb +35 -20
  34. data/lib/aws-sdk-core/pager.rb +30 -25
  35. data/lib/aws-sdk-core/param_converter.rb +3 -3
  36. data/lib/aws-sdk-core/param_validator.rb +58 -25
  37. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  38. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  39. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  40. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  41. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +281 -0
  42. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  43. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  44. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +44 -51
  45. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  46. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  47. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  48. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  49. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  50. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  51. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  52. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  53. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  54. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  55. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  56. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  57. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
  58. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  59. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +137 -0
  60. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +98 -0
  61. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +142 -0
  62. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +57 -0
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +332 -98
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +152 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +36 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +51 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  80. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +139 -96
  86. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +70 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  99. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  105. data/lib/aws-sdk-sts.rb +48 -0
  106. data/lib/aws-sdk-sts/client.rb +2210 -0
  107. data/lib/aws-sdk-sts/client_api.rb +336 -0
  108. data/lib/aws-sdk-sts/customizations.rb +2 -0
  109. data/lib/aws-sdk-sts/errors.rb +164 -0
  110. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  111. data/lib/aws-sdk-sts/presigner.rb +67 -0
  112. data/lib/aws-sdk-sts/resource.rb +24 -0
  113. data/lib/aws-sdk-sts/types.rb +1504 -0
  114. data/lib/seahorse.rb +60 -60
  115. data/lib/seahorse/client/async_base.rb +50 -0
  116. data/lib/seahorse/client/async_response.rb +62 -0
  117. data/lib/seahorse/client/base.rb +5 -9
  118. data/lib/seahorse/client/configuration.rb +4 -2
  119. data/lib/seahorse/client/h2/connection.rb +246 -0
  120. data/lib/seahorse/client/h2/handler.rb +151 -0
  121. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  122. data/lib/seahorse/client/http/async_response.rb +42 -0
  123. data/lib/seahorse/client/http/response.rb +10 -5
  124. data/lib/seahorse/client/logging/formatter.rb +6 -2
  125. data/lib/seahorse/client/logging/handler.rb +2 -0
  126. data/lib/seahorse/client/net_http/connection_pool.rb +35 -24
  127. data/lib/seahorse/client/net_http/handler.rb +12 -1
  128. data/lib/seahorse/client/net_http/patches.rb +9 -1
  129. data/lib/seahorse/client/networking_error.rb +28 -0
  130. data/lib/seahorse/client/plugin.rb +67 -6
  131. data/lib/seahorse/client/plugins/content_length.rb +5 -2
  132. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  133. data/lib/seahorse/client/plugins/h2.rb +64 -0
  134. data/lib/seahorse/client/plugins/logging.rb +17 -19
  135. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  136. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  137. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  138. data/lib/seahorse/client/request_context.rb +5 -0
  139. data/lib/seahorse/client/response.rb +3 -5
  140. data/lib/seahorse/model/api.rb +33 -0
  141. data/lib/seahorse/model/authorizer.rb +21 -0
  142. data/lib/seahorse/model/operation.rb +11 -0
  143. data/lib/seahorse/model/shapes.rb +44 -2
  144. data/lib/seahorse/util.rb +1 -22
  145. metadata +110 -1176
  146. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  147. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  148. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  149. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1195
  150. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  151. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  152. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  153. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  154. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  155. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  156. data/apis/acm/2015-12-08/api-2.json +0 -872
  157. data/apis/acm/2015-12-08/examples-1.json +0 -5
  158. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  159. data/apis/acm/2015-12-08/smoke.json +0 -18
  160. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  161. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  162. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  163. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  164. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  165. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  166. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  167. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  168. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  169. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  170. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  171. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  172. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  173. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6981
  174. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  175. data/apis/appconfig/2019-10-09/api-2.json +0 -1428
  176. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  177. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  178. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -791
  179. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  180. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  181. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  182. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  183. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  184. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  185. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  186. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  187. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  188. data/apis/appmesh/2019-01-25/api-2.json +0 -3756
  189. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  190. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  191. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  192. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  193. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  194. data/apis/appstream/2016-12-01/smoke.json +0 -11
  195. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  196. data/apis/appsync/2017-07-25/api-2.json +0 -2288
  197. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  198. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  199. data/apis/athena/2017-05-18/api-2.json +0 -989
  200. data/apis/athena/2017-05-18/examples-1.json +0 -5
  201. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  202. data/apis/athena/2017-05-18/smoke.json +0 -11
  203. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  204. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  205. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  206. data/apis/autoscaling/2011-01-01/api-2.json +0 -2467
  207. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  208. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  209. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  210. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  211. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  212. data/apis/backup/2018-11-15/api-2.json +0 -2345
  213. data/apis/backup/2018-11-15/examples-1.json +0 -5
  214. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  215. data/apis/batch/2016-08-10/api-2.json +0 -1137
  216. data/apis/batch/2016-08-10/examples-1.json +0 -589
  217. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  218. data/apis/batch/2016-08-10/smoke.json +0 -11
  219. data/apis/budgets/2016-10-20/api-2.json +0 -830
  220. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  221. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  222. data/apis/ce/2017-10-25/api-2.json +0 -1722
  223. data/apis/ce/2017-10-25/examples-1.json +0 -5
  224. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  225. data/apis/chime/2018-05-01/api-2.json +0 -5506
  226. data/apis/chime/2018-05-01/examples-1.json +0 -5
  227. data/apis/chime/2018-05-01/paginators-1.json +0 -64
  228. data/apis/cloud9/2017-09-23/api-2.json +0 -674
  229. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  230. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  234. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  235. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  236. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  237. data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
  238. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  239. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  240. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  241. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  242. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  243. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  244. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  248. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  251. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  252. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  255. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  259. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  262. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  263. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  264. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  265. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  266. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  267. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  268. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  269. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  270. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  271. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  272. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  273. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  274. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  276. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  279. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  280. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  281. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  282. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  283. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  284. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  285. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  286. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  287. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  288. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  289. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  290. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  291. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  292. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  293. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  294. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  295. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  296. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  297. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  298. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  299. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  300. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  301. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  302. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  303. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  304. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  305. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  306. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  307. data/apis/codebuild/2016-10-06/api-2.json +0 -1910
  308. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  309. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  310. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  311. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  312. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  313. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  314. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  315. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  316. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  317. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  318. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  319. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  320. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -820
  321. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  322. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  323. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -801
  324. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  325. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -15
  326. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  327. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  328. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  329. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  330. data/apis/codestar-connections/2019-12-01/api-2.json +0 -194
  331. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  332. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  333. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  334. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  335. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  336. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  337. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  338. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  339. data/apis/codestar/2017-04-19/smoke.json +0 -11
  340. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  341. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  342. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  343. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5450
  344. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  345. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  346. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  347. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  348. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  349. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  350. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  351. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -955
  352. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  353. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  354. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  355. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  356. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  357. data/apis/config/2014-11-12/api-2.json +0 -4379
  358. data/apis/config/2014-11-12/examples-1.json +0 -5
  359. data/apis/config/2014-11-12/paginators-1.json +0 -26
  360. data/apis/config/2014-11-12/smoke.json +0 -19
  361. data/apis/connect/2017-08-08/api-2.json +0 -2139
  362. data/apis/connect/2017-08-08/examples-1.json +0 -5
  363. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  364. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  365. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  366. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  367. data/apis/cur/2017-01-06/api-2.json +0 -277
  368. data/apis/cur/2017-01-06/examples-1.json +0 -102
  369. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  370. data/apis/cur/2017-01-06/smoke.json +0 -11
  371. data/apis/dataexchange/2017-07-25/api-2.json +0 -2273
  372. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  373. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  374. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  375. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  376. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  377. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  378. data/apis/dax/2017-04-19/api-2.json +0 -1140
  379. data/apis/dax/2017-04-19/examples-1.json +0 -5
  380. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  381. data/apis/detective/2018-10-26/api-2.json +0 -486
  382. data/apis/detective/2018-10-26/examples-1.json +0 -5
  383. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  384. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  385. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  386. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  387. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  388. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  389. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  390. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  391. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  392. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  393. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  394. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  395. data/apis/discovery/2015-11-01/smoke.json +0 -11
  396. data/apis/dlm/2018-01-12/api-2.json +0 -687
  397. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  398. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  399. data/apis/dms/2016-01-01/api-2.json +0 -2341
  400. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  401. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  402. data/apis/dms/2016-01-01/smoke.json +0 -18
  403. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  404. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  405. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  406. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  407. data/apis/docdb/2014-10-31/smoke.json +0 -18
  408. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  409. data/apis/ds/2015-04-16/api-2.json +0 -3019
  410. data/apis/ds/2015-04-16/examples-1.json +0 -5
  411. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  412. data/apis/ds/2015-04-16/smoke.json +0 -20
  413. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  414. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  415. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  416. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  417. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  418. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  419. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  420. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  421. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  422. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  423. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  424. data/apis/ebs/2019-11-02/api-2.json +0 -277
  425. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  426. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  427. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  428. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  429. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  430. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  431. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  432. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  433. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  434. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  436. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  437. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  438. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  439. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  440. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  441. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  442. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  443. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  444. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  445. data/apis/ec2/2016-11-15/api-2.json +0 -29632
  446. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  447. data/apis/ec2/2016-11-15/paginators-1.json +0 -558
  448. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  449. data/apis/ec2/2016-11-15/smoke.json +0 -20
  450. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  451. data/apis/ecr/2015-09-21/api-2.json +0 -1633
  452. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  453. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  454. data/apis/ecr/2015-09-21/smoke.json +0 -18
  455. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  456. data/apis/ecs/2014-11-13/api-2.json +0 -3176
  457. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  458. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  459. data/apis/ecs/2014-11-13/smoke.json +0 -18
  460. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  461. data/apis/eks/2017-11-01/api-2.json +0 -1457
  462. data/apis/eks/2017-11-01/examples-1.json +0 -135
  463. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  464. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  465. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  466. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  467. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  468. data/apis/elasticache/2015-02-02/api-2.json +0 -3758
  469. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  470. data/apis/elasticache/2015-02-02/paginators-1.json +0 -94
  471. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  472. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  473. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2567
  474. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  475. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -30
  476. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  477. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1377
  478. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  479. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  480. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  481. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  482. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  483. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  484. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  486. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  487. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  488. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  489. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  490. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  491. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2338
  492. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  493. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  494. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  495. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  496. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  497. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  498. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  499. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  500. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  501. data/apis/email/2010-12-01/api-2.json +0 -3182
  502. data/apis/email/2010-12-01/examples-1.json +0 -1021
  503. data/apis/email/2010-12-01/paginators-1.json +0 -18
  504. data/apis/email/2010-12-01/smoke.json +0 -18
  505. data/apis/email/2010-12-01/waiters-2.json +0 -18
  506. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  507. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  508. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  509. data/apis/es/2015-01-01/api-2.json +0 -2044
  510. data/apis/es/2015-01-01/examples-1.json +0 -5
  511. data/apis/es/2015-01-01/paginators-1.json +0 -44
  512. data/apis/es/2015-01-01/smoke.json +0 -18
  513. data/apis/eventbridge/2015-10-07/api-2.json +0 -1467
  514. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  515. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  516. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  517. data/apis/events/2015-10-07/api-2.json +0 -1467
  518. data/apis/events/2015-10-07/examples-1.json +0 -5
  519. data/apis/events/2015-10-07/paginators-1.json +0 -4
  520. data/apis/events/2015-10-07/smoke.json +0 -18
  521. data/apis/firehose/2015-08-04/api-2.json +0 -1552
  522. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  523. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  524. data/apis/firehose/2015-08-04/smoke.json +0 -18
  525. data/apis/fms/2018-01-01/api-2.json +0 -834
  526. data/apis/fms/2018-01-01/examples-1.json +0 -5
  527. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  528. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  529. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  530. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  531. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  532. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  533. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  534. data/apis/frauddetector/2019-11-15/api-2.json +0 -1633
  535. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  536. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  537. data/apis/fsx/2018-03-01/api-2.json +0 -1384
  538. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  539. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  540. data/apis/gamelift/2015-10-01/api-2.json +0 -4455
  541. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  542. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  543. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  545. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  546. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  547. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  548. data/apis/glacier/2012-06-01/smoke.json +0 -18
  549. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  550. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1165
  551. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  552. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  553. data/apis/glue/2017-03-31/api-2.json +0 -6344
  554. data/apis/glue/2017-03-31/examples-1.json +0 -5
  555. data/apis/glue/2017-03-31/paginators-1.json +0 -125
  556. data/apis/glue/2017-03-31/smoke.json +0 -11
  557. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  558. data/apis/groundstation/2019-05-23/api-2.json +0 -1409
  559. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  560. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  561. data/apis/guardduty/2017-11-28/api-2.json +0 -3736
  562. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  563. data/apis/guardduty/2017-11-28/paginators-1.json +0 -57
  564. data/apis/health/2016-08-04/api-2.json +0 -836
  565. data/apis/health/2016-08-04/examples-1.json +0 -5
  566. data/apis/health/2016-08-04/paginators-1.json +0 -52
  567. data/apis/health/2016-08-04/smoke.json +0 -11
  568. data/apis/iam/2010-05-08/api-2.json +0 -5797
  569. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  570. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  571. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  572. data/apis/iam/2010-05-08/smoke.json +0 -18
  573. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  574. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2431
  575. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  576. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  577. data/apis/importexport/2010-06-01/api-2.json +0 -667
  578. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  579. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  580. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  581. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  582. data/apis/inspector/2016-02-16/smoke.json +0 -18
  583. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  584. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  585. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  586. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  587. data/apis/iot/2015-05-28/api-2.json +0 -11427
  588. data/apis/iot/2015-05-28/examples-1.json +0 -5
  589. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  590. data/apis/iot/2015-05-28/smoke.json +0 -18
  591. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  592. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  593. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  594. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  595. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  596. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  597. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  598. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  599. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  600. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  601. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  602. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  603. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  604. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  605. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  606. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  607. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3580
  608. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  609. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  610. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  611. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  612. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  613. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  614. data/apis/kafka/2018-11-14/api-2.json +0 -2297
  615. data/apis/kafka/2018-11-14/paginators-1.json +0 -40
  616. data/apis/kendra/2019-02-03/api-2.json +0 -1748
  617. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  618. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  619. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  620. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  622. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  623. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  624. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  625. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  626. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  627. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  628. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  629. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  630. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  631. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  632. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  633. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  634. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  635. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  636. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  637. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  638. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  639. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  640. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  641. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  642. data/apis/kms/2014-11-01/api-2.json +0 -2155
  643. data/apis/kms/2014-11-01/examples-1.json +0 -906
  644. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  645. data/apis/kms/2014-11-01/smoke.json +0 -19
  646. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  647. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  648. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  649. data/apis/lambda/2014-11-11/api-2.json +0 -668
  650. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  651. data/apis/lambda/2015-03-31/api-2.json +0 -2946
  652. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  653. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  654. data/apis/lambda/2015-03-31/smoke.json +0 -18
  655. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  656. data/apis/lex-models/2017-04-19/api-2.json +0 -2550
  657. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  658. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  659. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  660. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  661. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  662. data/apis/lightsail/2016-11-28/api-2.json +0 -5429
  663. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  664. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  665. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  666. data/apis/logs/2014-03-28/api-2.json +0 -1701
  667. data/apis/logs/2014-03-28/examples-1.json +0 -5
  668. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  669. data/apis/logs/2014-03-28/smoke.json +0 -19
  670. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  671. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  672. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  673. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  674. data/apis/macie/2017-12-19/api-2.json +0 -365
  675. data/apis/macie/2017-12-19/examples-1.json +0 -5
  676. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  677. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1498
  678. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  679. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  680. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  681. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  682. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  683. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  684. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  685. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  686. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  687. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2405
  688. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  689. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8921
  690. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  691. data/apis/medialive/2017-10-14/api-2.json +0 -10868
  692. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  693. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  694. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1757
  695. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  696. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  697. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  698. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  699. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  700. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  701. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  702. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  703. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  704. data/apis/mediatailor/2018-04-23/api-2.json +0 -584
  705. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  706. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  707. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  708. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  709. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  710. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  711. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  712. data/apis/mobile/2017-07-01/api-2.json +0 -551
  713. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  714. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  715. data/apis/monitoring/2010-08-01/api-2.json +0 -1973
  716. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  717. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  718. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  719. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  720. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  721. data/apis/mq/2017-11-27/api-2.json +0 -2577
  722. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  723. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  724. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  725. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  726. data/apis/neptune/2014-10-31/api-2.json +0 -3583
  727. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  728. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  729. data/apis/neptune/2014-10-31/smoke.json +0 -18
  730. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  731. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  732. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  733. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  734. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  735. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  736. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  737. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  738. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  739. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  740. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  741. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  742. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  743. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  744. data/apis/organizations/2016-11-28/api-2.json +0 -2578
  745. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  746. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  747. data/apis/outposts/2019-12-03/api-2.json +0 -429
  748. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  749. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  750. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  751. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  752. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  753. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -149
  754. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  755. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  756. data/apis/personalize/2018-05-22/api-2.json +0 -1871
  757. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  758. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  759. data/apis/pi/2018-02-27/api-2.json +0 -253
  760. data/apis/pi/2018-02-27/examples-1.json +0 -5
  761. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  762. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  763. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  764. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  765. data/apis/pinpoint/2016-12-01/api-2.json +0 -12340
  766. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  767. data/apis/polly/2016-06-10/api-2.json +0 -832
  768. data/apis/polly/2016-06-10/examples-1.json +0 -171
  769. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  770. data/apis/polly/2016-06-10/smoke.json +0 -11
  771. data/apis/pricing/2017-10-15/api-2.json +0 -227
  772. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  773. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  774. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  775. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  776. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  777. data/apis/qldb/2019-01-02/api-2.json +0 -776
  778. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  779. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  780. data/apis/quicksight/2018-04-01/api-2.json +0 -5550
  781. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  782. data/apis/quicksight/2018-04-01/paginators-1.json +0 -49
  783. data/apis/ram/2018-01-04/api-2.json +0 -1315
  784. data/apis/ram/2018-01-04/examples-1.json +0 -5
  785. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  786. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  787. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  788. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  789. data/apis/rds/2013-01-10/api-2.json +0 -2903
  790. data/apis/rds/2013-01-10/examples-1.json +0 -5
  791. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  792. data/apis/rds/2013-01-10/smoke.json +0 -18
  793. data/apis/rds/2013-02-12/api-2.json +0 -3059
  794. data/apis/rds/2013-02-12/examples-1.json +0 -5
  795. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  796. data/apis/rds/2013-02-12/smoke.json +0 -18
  797. data/apis/rds/2013-09-09/api-2.json +0 -3160
  798. data/apis/rds/2013-09-09/examples-1.json +0 -5
  799. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  800. data/apis/rds/2013-09-09/smoke.json +0 -18
  801. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  802. data/apis/rds/2014-09-01/api-2.json +0 -3273
  803. data/apis/rds/2014-09-01/examples-1.json +0 -5
  804. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  805. data/apis/rds/2014-09-01/smoke.json +0 -18
  806. data/apis/rds/2014-10-31/api-2.json +0 -7703
  807. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  808. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  809. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  810. data/apis/rds/2014-10-31/smoke.json +0 -18
  811. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  812. data/apis/redshift/2012-12-01/api-2.json +0 -5526
  813. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  814. data/apis/redshift/2012-12-01/paginators-1.json +0 -112
  815. data/apis/redshift/2012-12-01/smoke.json +0 -18
  816. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  817. data/apis/rekognition/2016-06-27/api-2.json +0 -2854
  818. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  819. data/apis/rekognition/2016-06-27/paginators-1.json +0 -68
  820. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  821. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  822. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  823. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  824. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  825. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  826. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  827. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  828. data/apis/robomaker/2018-06-29/api-2.json +0 -2420
  829. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  830. data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
  831. data/apis/route53/2013-04-01/api-2.json +0 -3791
  832. data/apis/route53/2013-04-01/examples-1.json +0 -762
  833. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  834. data/apis/route53/2013-04-01/smoke.json +0 -18
  835. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  836. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  837. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  838. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  839. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  840. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  841. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  842. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  843. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  844. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  845. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  846. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  847. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  848. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  849. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  850. data/apis/s3/2006-03-01/api-2.json +0 -6653
  851. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  852. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  853. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  854. data/apis/s3/2006-03-01/smoke.json +0 -11
  855. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  856. data/apis/s3control/2018-08-20/api-2.json +0 -1585
  857. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  858. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  859. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  860. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  861. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  862. data/apis/sagemaker/2017-07-24/api-2.json +0 -9257
  863. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  864. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  865. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  866. data/apis/savingsplans/2019-06-28/api-2.json +0 -755
  867. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  868. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  869. data/apis/schemas/2019-12-02/api-2.json +0 -2867
  870. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  871. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  872. data/apis/sdb/2009-04-15/api-2.json +0 -955
  873. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  874. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  875. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  876. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  877. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  878. data/apis/securityhub/2018-10-26/api-2.json +0 -2979
  879. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  880. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  881. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  882. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  883. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  884. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  885. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  886. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3983
  887. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  888. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -89
  889. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  890. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  891. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -342
  892. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  893. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  894. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  895. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  896. data/apis/shield/2016-06-02/api-2.json +0 -968
  897. data/apis/shield/2016-06-02/examples-1.json +0 -5
  898. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  899. data/apis/shield/2016-06-02/smoke.json +0 -11
  900. data/apis/signer/2017-08-25/api-2.json +0 -822
  901. data/apis/signer/2017-08-25/examples-1.json +0 -5
  902. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  903. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  904. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  905. data/apis/sms/2016-10-24/api-2.json +0 -1366
  906. data/apis/sms/2016-10-24/examples-1.json +0 -5
  907. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  908. data/apis/sms/2016-10-24/smoke.json +0 -18
  909. data/apis/snowball/2016-06-30/api-2.json +0 -977
  910. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  911. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  912. data/apis/snowball/2016-06-30/smoke.json +0 -11
  913. data/apis/sns/2010-03-31/api-2.json +0 -1468
  914. data/apis/sns/2010-03-31/examples-1.json +0 -5
  915. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  916. data/apis/sns/2010-03-31/resources-1.json +0 -327
  917. data/apis/sns/2010-03-31/smoke.json +0 -19
  918. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  919. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  920. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  921. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  922. data/apis/sqs/2012-11-05/smoke.json +0 -18
  923. data/apis/ssm/2014-11-06/api-2.json +0 -9261
  924. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  925. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  926. data/apis/ssm/2014-11-06/smoke.json +0 -18
  927. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  928. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  929. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  930. data/apis/sso/2019-06-10/api-2.json +0 -281
  931. data/apis/sso/2019-06-10/examples-1.json +0 -5
  932. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  933. data/apis/states/2016-11-23/api-2.json +0 -1477
  934. data/apis/states/2016-11-23/examples-1.json +0 -5
  935. data/apis/states/2016-11-23/paginators-1.json +0 -28
  936. data/apis/states/2016-11-23/smoke.json +0 -11
  937. data/apis/storagegateway/2013-06-30/api-2.json +0 -3385
  938. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  939. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  940. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  941. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  942. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  943. data/apis/sts/2011-06-15/api-2.json +0 -598
  944. data/apis/sts/2011-06-15/examples-1.json +0 -271
  945. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  946. data/apis/sts/2011-06-15/smoke.json +0 -19
  947. data/apis/support/2013-04-15/api-2.json +0 -773
  948. data/apis/support/2013-04-15/examples-1.json +0 -5
  949. data/apis/support/2013-04-15/paginators-1.json +0 -25
  950. data/apis/support/2013-04-15/smoke.json +0 -22
  951. data/apis/swf/2012-01-25/api-2.json +0 -2792
  952. data/apis/swf/2012-01-25/examples-1.json +0 -5
  953. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  954. data/apis/synthetics/2017-10-11/api-2.json +0 -754
  955. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  956. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  957. data/apis/textract/2018-06-27/api-2.json +0 -653
  958. data/apis/textract/2018-06-27/examples-1.json +0 -5
  959. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  960. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -272
  961. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  962. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  963. data/apis/transcribe/2017-10-26/api-2.json +0 -1115
  964. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  965. data/apis/transcribe/2017-10-26/paginators-1.json +0 -29
  966. data/apis/transfer/2018-11-05/api-2.json +0 -1001
  967. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  968. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  969. data/apis/translate/2017-07-01/api-2.json +0 -658
  970. data/apis/translate/2017-07-01/examples-1.json +0 -5
  971. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  972. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  973. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  974. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  975. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  976. data/apis/waf/2015-08-24/api-2.json +0 -3958
  977. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  978. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  979. data/apis/waf/2015-08-24/smoke.json +0 -21
  980. data/apis/wafv2/2019-07-29/api-2.json +0 -2637
  981. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  982. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  983. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  984. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  985. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  986. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  987. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  988. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  989. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  990. data/apis/workmail/2017-10-01/api-2.json +0 -1918
  991. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  992. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  993. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  994. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  995. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  996. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  997. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  998. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  999. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1000. data/apis/xray/2016-04-12/api-2.json +0 -1355
  1001. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1002. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  1003. data/bin/aws.rb +0 -180
  1004. data/endpoints.json +0 -8012
  1005. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1006. data/lib/aws-sdk-core/acm.rb +0 -7
  1007. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1008. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1009. data/lib/aws-sdk-core/amplify.rb +0 -6
  1010. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1011. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1012. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1013. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1014. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1015. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1016. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1017. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1018. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1019. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1020. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1021. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1022. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1023. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1024. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1025. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1026. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1027. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1028. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1029. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1030. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1031. data/lib/aws-sdk-core/appstream.rb +0 -7
  1032. data/lib/aws-sdk-core/appsync.rb +0 -6
  1033. data/lib/aws-sdk-core/athena.rb +0 -6
  1034. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1035. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1036. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1037. data/lib/aws-sdk-core/backup.rb +0 -6
  1038. data/lib/aws-sdk-core/batch.rb +0 -6
  1039. data/lib/aws-sdk-core/budgets.rb +0 -6
  1040. data/lib/aws-sdk-core/checksums.rb +0 -51
  1041. data/lib/aws-sdk-core/chime.rb +0 -6
  1042. data/lib/aws-sdk-core/client.rb +0 -72
  1043. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1044. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1045. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1047. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1048. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1049. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1050. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1051. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1052. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1054. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1055. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1056. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1057. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1058. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1059. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1060. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1061. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1062. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1063. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1064. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1065. data/lib/aws-sdk-core/codestar.rb +0 -6
  1066. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1067. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1068. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1069. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1070. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1071. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1072. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1073. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1074. data/lib/aws-sdk-core/configservice.rb +0 -6
  1075. data/lib/aws-sdk-core/connect.rb +0 -6
  1076. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1077. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1078. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1079. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1080. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1081. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1082. data/lib/aws-sdk-core/datasync.rb +0 -6
  1083. data/lib/aws-sdk-core/dax.rb +0 -6
  1084. data/lib/aws-sdk-core/detective.rb +0 -6
  1085. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1086. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1087. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1088. data/lib/aws-sdk-core/dlm.rb +0 -6
  1089. data/lib/aws-sdk-core/docdb.rb +0 -7
  1090. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1091. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1092. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1093. data/lib/aws-sdk-core/ebs.rb +0 -6
  1094. data/lib/aws-sdk-core/ec2.rb +0 -8
  1095. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1096. data/lib/aws-sdk-core/ecr.rb +0 -7
  1097. data/lib/aws-sdk-core/ecs.rb +0 -7
  1098. data/lib/aws-sdk-core/efs.rb +0 -6
  1099. data/lib/aws-sdk-core/eks.rb +0 -7
  1100. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1101. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1102. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1103. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1104. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1105. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1106. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1107. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1108. data/lib/aws-sdk-core/emr.rb +0 -7
  1109. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1110. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1111. data/lib/aws-sdk-core/firehose.rb +0 -6
  1112. data/lib/aws-sdk-core/fms.rb +0 -6
  1113. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1114. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1115. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1116. data/lib/aws-sdk-core/fsx.rb +0 -6
  1117. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1118. data/lib/aws-sdk-core/glacier.rb +0 -8
  1119. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1120. data/lib/aws-sdk-core/glue.rb +0 -6
  1121. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1122. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1123. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1124. data/lib/aws-sdk-core/health.rb +0 -6
  1125. data/lib/aws-sdk-core/iam.rb +0 -8
  1126. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1127. data/lib/aws-sdk-core/importexport.rb +0 -5
  1128. data/lib/aws-sdk-core/inspector.rb +0 -6
  1129. data/lib/aws-sdk-core/iot.rb +0 -6
  1130. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1131. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1132. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1133. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1134. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1135. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1136. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1137. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1138. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1139. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1140. data/lib/aws-sdk-core/kafka.rb +0 -5
  1141. data/lib/aws-sdk-core/kendra.rb +0 -6
  1142. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1143. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1144. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1145. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1146. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1147. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1148. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1149. data/lib/aws-sdk-core/kms.rb +0 -6
  1150. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1151. data/lib/aws-sdk-core/lambda.rb +0 -7
  1152. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1153. data/lib/aws-sdk-core/lex.rb +0 -6
  1154. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1155. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1156. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1157. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1158. data/lib/aws-sdk-core/macie.rb +0 -6
  1159. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1160. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1161. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1162. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1163. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1164. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1165. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1166. data/lib/aws-sdk-core/medialive.rb +0 -6
  1167. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1168. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1169. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1170. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1171. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1172. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1173. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1174. data/lib/aws-sdk-core/mobile.rb +0 -6
  1175. data/lib/aws-sdk-core/mq.rb +0 -5
  1176. data/lib/aws-sdk-core/mturk.rb +0 -6
  1177. data/lib/aws-sdk-core/neptune.rb +0 -7
  1178. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1179. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1180. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1181. data/lib/aws-sdk-core/organizations.rb +0 -6
  1182. data/lib/aws-sdk-core/outposts.rb +0 -6
  1183. data/lib/aws-sdk-core/partitions.rb +0 -174
  1184. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1185. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1186. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1187. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1188. data/lib/aws-sdk-core/personalize.rb +0 -6
  1189. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1190. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1191. data/lib/aws-sdk-core/pi.rb +0 -6
  1192. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1193. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1194. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1195. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1197. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1198. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1199. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1200. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1201. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1202. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1203. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1204. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1205. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1206. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1207. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1208. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1209. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1210. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1211. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1212. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1213. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1214. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1215. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1216. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1217. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1218. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1219. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1220. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1221. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1222. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1223. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1224. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1225. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1226. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1227. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1228. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1229. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1230. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1231. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1232. data/lib/aws-sdk-core/polly.rb +0 -14
  1233. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1234. data/lib/aws-sdk-core/pricing.rb +0 -6
  1235. data/lib/aws-sdk-core/qldb.rb +0 -6
  1236. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1237. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1238. data/lib/aws-sdk-core/ram.rb +0 -6
  1239. data/lib/aws-sdk-core/rds.rb +0 -16
  1240. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1241. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1242. data/lib/aws-sdk-core/redshift.rb +0 -7
  1243. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1244. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1245. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1246. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1247. data/lib/aws-sdk-core/route53.rb +0 -7
  1248. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1249. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1250. data/lib/aws-sdk-core/s3.rb +0 -26
  1251. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1252. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1253. data/lib/aws-sdk-core/s3control.rb +0 -6
  1254. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1255. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1256. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1257. data/lib/aws-sdk-core/schemas.rb +0 -6
  1258. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1259. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1260. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1261. data/lib/aws-sdk-core/service.rb +0 -4
  1262. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1263. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1264. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1265. data/lib/aws-sdk-core/ses.rb +0 -7
  1266. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1267. data/lib/aws-sdk-core/shield.rb +0 -6
  1268. data/lib/aws-sdk-core/signer.rb +0 -7
  1269. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1270. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1271. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1272. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1273. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1274. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1275. data/lib/aws-sdk-core/sms.rb +0 -6
  1276. data/lib/aws-sdk-core/snowball.rb +0 -6
  1277. data/lib/aws-sdk-core/sns.rb +0 -7
  1278. data/lib/aws-sdk-core/sqs.rb +0 -7
  1279. data/lib/aws-sdk-core/ssm.rb +0 -6
  1280. data/lib/aws-sdk-core/sso.rb +0 -6
  1281. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1282. data/lib/aws-sdk-core/states.rb +0 -6
  1283. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1284. data/lib/aws-sdk-core/sts.rb +0 -6
  1285. data/lib/aws-sdk-core/support.rb +0 -6
  1286. data/lib/aws-sdk-core/swf.rb +0 -6
  1287. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1288. data/lib/aws-sdk-core/textract.rb +0 -6
  1289. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1290. data/lib/aws-sdk-core/transfer.rb +0 -6
  1291. data/lib/aws-sdk-core/translate.rb +0 -6
  1292. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1293. data/lib/aws-sdk-core/version.rb +0 -3
  1294. data/lib/aws-sdk-core/waf.rb +0 -6
  1295. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1296. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1297. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1298. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1299. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1300. data/lib/aws-sdk-core/worklink.rb +0 -6
  1301. data/lib/aws-sdk-core/workmail.rb +0 -6
  1302. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1303. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1304. data/lib/aws-sdk-core/xray.rb +0 -6
  1305. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1306. data/service-models.json +0 -889
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,28 +0,0 @@
1
- {
2
- "pagination": {
3
- "GetExecutionHistory": {
4
- "input_token": "nextToken",
5
- "limit_key": "maxResults",
6
- "output_token": "nextToken",
7
- "result_key": "events"
8
- },
9
- "ListActivities": {
10
- "input_token": "nextToken",
11
- "limit_key": "maxResults",
12
- "output_token": "nextToken",
13
- "result_key": "activities"
14
- },
15
- "ListExecutions": {
16
- "input_token": "nextToken",
17
- "limit_key": "maxResults",
18
- "output_token": "nextToken",
19
- "result_key": "executions"
20
- },
21
- "ListStateMachines": {
22
- "input_token": "nextToken",
23
- "limit_key": "maxResults",
24
- "output_token": "nextToken",
25
- "result_key": "stateMachines"
26
- }
27
- }
28
- }
@@ -1,11 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "ListActivities",
7
- "input": {},
8
- "errorExpectedFromService": false
9
- }
10
- ]
11
- }
@@ -1,3385 +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
- "serviceId":"Storage Gateway",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"StorageGateway_20130630",
12
- "uid":"storagegateway-2013-06-30"
13
- },
14
- "operations":{
15
- "ActivateGateway":{
16
- "name":"ActivateGateway",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"ActivateGatewayInput"},
22
- "output":{"shape":"ActivateGatewayOutput"},
23
- "errors":[
24
- {"shape":"InvalidGatewayRequestException"},
25
- {"shape":"InternalServerError"}
26
- ]
27
- },
28
- "AddCache":{
29
- "name":"AddCache",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/"
33
- },
34
- "input":{"shape":"AddCacheInput"},
35
- "output":{"shape":"AddCacheOutput"},
36
- "errors":[
37
- {"shape":"InvalidGatewayRequestException"},
38
- {"shape":"InternalServerError"}
39
- ]
40
- },
41
- "AddTagsToResource":{
42
- "name":"AddTagsToResource",
43
- "http":{
44
- "method":"POST",
45
- "requestUri":"/"
46
- },
47
- "input":{"shape":"AddTagsToResourceInput"},
48
- "output":{"shape":"AddTagsToResourceOutput"},
49
- "errors":[
50
- {"shape":"InvalidGatewayRequestException"},
51
- {"shape":"InternalServerError"}
52
- ]
53
- },
54
- "AddUploadBuffer":{
55
- "name":"AddUploadBuffer",
56
- "http":{
57
- "method":"POST",
58
- "requestUri":"/"
59
- },
60
- "input":{"shape":"AddUploadBufferInput"},
61
- "output":{"shape":"AddUploadBufferOutput"},
62
- "errors":[
63
- {"shape":"InvalidGatewayRequestException"},
64
- {"shape":"InternalServerError"}
65
- ]
66
- },
67
- "AddWorkingStorage":{
68
- "name":"AddWorkingStorage",
69
- "http":{
70
- "method":"POST",
71
- "requestUri":"/"
72
- },
73
- "input":{"shape":"AddWorkingStorageInput"},
74
- "output":{"shape":"AddWorkingStorageOutput"},
75
- "errors":[
76
- {"shape":"InvalidGatewayRequestException"},
77
- {"shape":"InternalServerError"}
78
- ]
79
- },
80
- "AssignTapePool":{
81
- "name":"AssignTapePool",
82
- "http":{
83
- "method":"POST",
84
- "requestUri":"/"
85
- },
86
- "input":{"shape":"AssignTapePoolInput"},
87
- "output":{"shape":"AssignTapePoolOutput"},
88
- "errors":[
89
- {"shape":"InvalidGatewayRequestException"},
90
- {"shape":"InternalServerError"}
91
- ]
92
- },
93
- "AttachVolume":{
94
- "name":"AttachVolume",
95
- "http":{
96
- "method":"POST",
97
- "requestUri":"/"
98
- },
99
- "input":{"shape":"AttachVolumeInput"},
100
- "output":{"shape":"AttachVolumeOutput"},
101
- "errors":[
102
- {"shape":"InvalidGatewayRequestException"},
103
- {"shape":"InternalServerError"}
104
- ]
105
- },
106
- "CancelArchival":{
107
- "name":"CancelArchival",
108
- "http":{
109
- "method":"POST",
110
- "requestUri":"/"
111
- },
112
- "input":{"shape":"CancelArchivalInput"},
113
- "output":{"shape":"CancelArchivalOutput"},
114
- "errors":[
115
- {"shape":"InvalidGatewayRequestException"},
116
- {"shape":"InternalServerError"}
117
- ]
118
- },
119
- "CancelRetrieval":{
120
- "name":"CancelRetrieval",
121
- "http":{
122
- "method":"POST",
123
- "requestUri":"/"
124
- },
125
- "input":{"shape":"CancelRetrievalInput"},
126
- "output":{"shape":"CancelRetrievalOutput"},
127
- "errors":[
128
- {"shape":"InvalidGatewayRequestException"},
129
- {"shape":"InternalServerError"}
130
- ]
131
- },
132
- "CreateCachediSCSIVolume":{
133
- "name":"CreateCachediSCSIVolume",
134
- "http":{
135
- "method":"POST",
136
- "requestUri":"/"
137
- },
138
- "input":{"shape":"CreateCachediSCSIVolumeInput"},
139
- "output":{"shape":"CreateCachediSCSIVolumeOutput"},
140
- "errors":[
141
- {"shape":"InvalidGatewayRequestException"},
142
- {"shape":"InternalServerError"}
143
- ]
144
- },
145
- "CreateNFSFileShare":{
146
- "name":"CreateNFSFileShare",
147
- "http":{
148
- "method":"POST",
149
- "requestUri":"/"
150
- },
151
- "input":{"shape":"CreateNFSFileShareInput"},
152
- "output":{"shape":"CreateNFSFileShareOutput"},
153
- "errors":[
154
- {"shape":"InvalidGatewayRequestException"},
155
- {"shape":"InternalServerError"}
156
- ]
157
- },
158
- "CreateSMBFileShare":{
159
- "name":"CreateSMBFileShare",
160
- "http":{
161
- "method":"POST",
162
- "requestUri":"/"
163
- },
164
- "input":{"shape":"CreateSMBFileShareInput"},
165
- "output":{"shape":"CreateSMBFileShareOutput"},
166
- "errors":[
167
- {"shape":"InvalidGatewayRequestException"},
168
- {"shape":"InternalServerError"}
169
- ]
170
- },
171
- "CreateSnapshot":{
172
- "name":"CreateSnapshot",
173
- "http":{
174
- "method":"POST",
175
- "requestUri":"/"
176
- },
177
- "input":{"shape":"CreateSnapshotInput"},
178
- "output":{"shape":"CreateSnapshotOutput"},
179
- "errors":[
180
- {"shape":"InvalidGatewayRequestException"},
181
- {"shape":"InternalServerError"},
182
- {"shape":"ServiceUnavailableError"}
183
- ]
184
- },
185
- "CreateSnapshotFromVolumeRecoveryPoint":{
186
- "name":"CreateSnapshotFromVolumeRecoveryPoint",
187
- "http":{
188
- "method":"POST",
189
- "requestUri":"/"
190
- },
191
- "input":{"shape":"CreateSnapshotFromVolumeRecoveryPointInput"},
192
- "output":{"shape":"CreateSnapshotFromVolumeRecoveryPointOutput"},
193
- "errors":[
194
- {"shape":"InvalidGatewayRequestException"},
195
- {"shape":"InternalServerError"},
196
- {"shape":"ServiceUnavailableError"}
197
- ]
198
- },
199
- "CreateStorediSCSIVolume":{
200
- "name":"CreateStorediSCSIVolume",
201
- "http":{
202
- "method":"POST",
203
- "requestUri":"/"
204
- },
205
- "input":{"shape":"CreateStorediSCSIVolumeInput"},
206
- "output":{"shape":"CreateStorediSCSIVolumeOutput"},
207
- "errors":[
208
- {"shape":"InvalidGatewayRequestException"},
209
- {"shape":"InternalServerError"}
210
- ]
211
- },
212
- "CreateTapeWithBarcode":{
213
- "name":"CreateTapeWithBarcode",
214
- "http":{
215
- "method":"POST",
216
- "requestUri":"/"
217
- },
218
- "input":{"shape":"CreateTapeWithBarcodeInput"},
219
- "output":{"shape":"CreateTapeWithBarcodeOutput"},
220
- "errors":[
221
- {"shape":"InvalidGatewayRequestException"},
222
- {"shape":"InternalServerError"}
223
- ]
224
- },
225
- "CreateTapes":{
226
- "name":"CreateTapes",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/"
230
- },
231
- "input":{"shape":"CreateTapesInput"},
232
- "output":{"shape":"CreateTapesOutput"},
233
- "errors":[
234
- {"shape":"InvalidGatewayRequestException"},
235
- {"shape":"InternalServerError"}
236
- ]
237
- },
238
- "DeleteAutomaticTapeCreationPolicy":{
239
- "name":"DeleteAutomaticTapeCreationPolicy",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"DeleteAutomaticTapeCreationPolicyInput"},
245
- "output":{"shape":"DeleteAutomaticTapeCreationPolicyOutput"},
246
- "errors":[
247
- {"shape":"InvalidGatewayRequestException"},
248
- {"shape":"InternalServerError"}
249
- ]
250
- },
251
- "DeleteBandwidthRateLimit":{
252
- "name":"DeleteBandwidthRateLimit",
253
- "http":{
254
- "method":"POST",
255
- "requestUri":"/"
256
- },
257
- "input":{"shape":"DeleteBandwidthRateLimitInput"},
258
- "output":{"shape":"DeleteBandwidthRateLimitOutput"},
259
- "errors":[
260
- {"shape":"InvalidGatewayRequestException"},
261
- {"shape":"InternalServerError"}
262
- ]
263
- },
264
- "DeleteChapCredentials":{
265
- "name":"DeleteChapCredentials",
266
- "http":{
267
- "method":"POST",
268
- "requestUri":"/"
269
- },
270
- "input":{"shape":"DeleteChapCredentialsInput"},
271
- "output":{"shape":"DeleteChapCredentialsOutput"},
272
- "errors":[
273
- {"shape":"InvalidGatewayRequestException"},
274
- {"shape":"InternalServerError"}
275
- ]
276
- },
277
- "DeleteFileShare":{
278
- "name":"DeleteFileShare",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"DeleteFileShareInput"},
284
- "output":{"shape":"DeleteFileShareOutput"},
285
- "errors":[
286
- {"shape":"InvalidGatewayRequestException"},
287
- {"shape":"InternalServerError"}
288
- ]
289
- },
290
- "DeleteGateway":{
291
- "name":"DeleteGateway",
292
- "http":{
293
- "method":"POST",
294
- "requestUri":"/"
295
- },
296
- "input":{"shape":"DeleteGatewayInput"},
297
- "output":{"shape":"DeleteGatewayOutput"},
298
- "errors":[
299
- {"shape":"InvalidGatewayRequestException"},
300
- {"shape":"InternalServerError"}
301
- ]
302
- },
303
- "DeleteSnapshotSchedule":{
304
- "name":"DeleteSnapshotSchedule",
305
- "http":{
306
- "method":"POST",
307
- "requestUri":"/"
308
- },
309
- "input":{"shape":"DeleteSnapshotScheduleInput"},
310
- "output":{"shape":"DeleteSnapshotScheduleOutput"},
311
- "errors":[
312
- {"shape":"InvalidGatewayRequestException"},
313
- {"shape":"InternalServerError"}
314
- ]
315
- },
316
- "DeleteTape":{
317
- "name":"DeleteTape",
318
- "http":{
319
- "method":"POST",
320
- "requestUri":"/"
321
- },
322
- "input":{"shape":"DeleteTapeInput"},
323
- "output":{"shape":"DeleteTapeOutput"},
324
- "errors":[
325
- {"shape":"InvalidGatewayRequestException"},
326
- {"shape":"InternalServerError"}
327
- ]
328
- },
329
- "DeleteTapeArchive":{
330
- "name":"DeleteTapeArchive",
331
- "http":{
332
- "method":"POST",
333
- "requestUri":"/"
334
- },
335
- "input":{"shape":"DeleteTapeArchiveInput"},
336
- "output":{"shape":"DeleteTapeArchiveOutput"},
337
- "errors":[
338
- {"shape":"InvalidGatewayRequestException"},
339
- {"shape":"InternalServerError"}
340
- ]
341
- },
342
- "DeleteVolume":{
343
- "name":"DeleteVolume",
344
- "http":{
345
- "method":"POST",
346
- "requestUri":"/"
347
- },
348
- "input":{"shape":"DeleteVolumeInput"},
349
- "output":{"shape":"DeleteVolumeOutput"},
350
- "errors":[
351
- {"shape":"InvalidGatewayRequestException"},
352
- {"shape":"InternalServerError"}
353
- ]
354
- },
355
- "DescribeAvailabilityMonitorTest":{
356
- "name":"DescribeAvailabilityMonitorTest",
357
- "http":{
358
- "method":"POST",
359
- "requestUri":"/"
360
- },
361
- "input":{"shape":"DescribeAvailabilityMonitorTestInput"},
362
- "output":{"shape":"DescribeAvailabilityMonitorTestOutput"},
363
- "errors":[
364
- {"shape":"InvalidGatewayRequestException"},
365
- {"shape":"InternalServerError"}
366
- ]
367
- },
368
- "DescribeBandwidthRateLimit":{
369
- "name":"DescribeBandwidthRateLimit",
370
- "http":{
371
- "method":"POST",
372
- "requestUri":"/"
373
- },
374
- "input":{"shape":"DescribeBandwidthRateLimitInput"},
375
- "output":{"shape":"DescribeBandwidthRateLimitOutput"},
376
- "errors":[
377
- {"shape":"InvalidGatewayRequestException"},
378
- {"shape":"InternalServerError"}
379
- ]
380
- },
381
- "DescribeCache":{
382
- "name":"DescribeCache",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"DescribeCacheInput"},
388
- "output":{"shape":"DescribeCacheOutput"},
389
- "errors":[
390
- {"shape":"InvalidGatewayRequestException"},
391
- {"shape":"InternalServerError"}
392
- ]
393
- },
394
- "DescribeCachediSCSIVolumes":{
395
- "name":"DescribeCachediSCSIVolumes",
396
- "http":{
397
- "method":"POST",
398
- "requestUri":"/"
399
- },
400
- "input":{"shape":"DescribeCachediSCSIVolumesInput"},
401
- "output":{"shape":"DescribeCachediSCSIVolumesOutput"},
402
- "errors":[
403
- {"shape":"InvalidGatewayRequestException"},
404
- {"shape":"InternalServerError"}
405
- ]
406
- },
407
- "DescribeChapCredentials":{
408
- "name":"DescribeChapCredentials",
409
- "http":{
410
- "method":"POST",
411
- "requestUri":"/"
412
- },
413
- "input":{"shape":"DescribeChapCredentialsInput"},
414
- "output":{"shape":"DescribeChapCredentialsOutput"},
415
- "errors":[
416
- {"shape":"InvalidGatewayRequestException"},
417
- {"shape":"InternalServerError"}
418
- ]
419
- },
420
- "DescribeGatewayInformation":{
421
- "name":"DescribeGatewayInformation",
422
- "http":{
423
- "method":"POST",
424
- "requestUri":"/"
425
- },
426
- "input":{"shape":"DescribeGatewayInformationInput"},
427
- "output":{"shape":"DescribeGatewayInformationOutput"},
428
- "errors":[
429
- {"shape":"InvalidGatewayRequestException"},
430
- {"shape":"InternalServerError"}
431
- ]
432
- },
433
- "DescribeMaintenanceStartTime":{
434
- "name":"DescribeMaintenanceStartTime",
435
- "http":{
436
- "method":"POST",
437
- "requestUri":"/"
438
- },
439
- "input":{"shape":"DescribeMaintenanceStartTimeInput"},
440
- "output":{"shape":"DescribeMaintenanceStartTimeOutput"},
441
- "errors":[
442
- {"shape":"InvalidGatewayRequestException"},
443
- {"shape":"InternalServerError"}
444
- ]
445
- },
446
- "DescribeNFSFileShares":{
447
- "name":"DescribeNFSFileShares",
448
- "http":{
449
- "method":"POST",
450
- "requestUri":"/"
451
- },
452
- "input":{"shape":"DescribeNFSFileSharesInput"},
453
- "output":{"shape":"DescribeNFSFileSharesOutput"},
454
- "errors":[
455
- {"shape":"InvalidGatewayRequestException"},
456
- {"shape":"InternalServerError"}
457
- ]
458
- },
459
- "DescribeSMBFileShares":{
460
- "name":"DescribeSMBFileShares",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"DescribeSMBFileSharesInput"},
466
- "output":{"shape":"DescribeSMBFileSharesOutput"},
467
- "errors":[
468
- {"shape":"InvalidGatewayRequestException"},
469
- {"shape":"InternalServerError"}
470
- ]
471
- },
472
- "DescribeSMBSettings":{
473
- "name":"DescribeSMBSettings",
474
- "http":{
475
- "method":"POST",
476
- "requestUri":"/"
477
- },
478
- "input":{"shape":"DescribeSMBSettingsInput"},
479
- "output":{"shape":"DescribeSMBSettingsOutput"},
480
- "errors":[
481
- {"shape":"InvalidGatewayRequestException"},
482
- {"shape":"InternalServerError"}
483
- ]
484
- },
485
- "DescribeSnapshotSchedule":{
486
- "name":"DescribeSnapshotSchedule",
487
- "http":{
488
- "method":"POST",
489
- "requestUri":"/"
490
- },
491
- "input":{"shape":"DescribeSnapshotScheduleInput"},
492
- "output":{"shape":"DescribeSnapshotScheduleOutput"},
493
- "errors":[
494
- {"shape":"InvalidGatewayRequestException"},
495
- {"shape":"InternalServerError"}
496
- ]
497
- },
498
- "DescribeStorediSCSIVolumes":{
499
- "name":"DescribeStorediSCSIVolumes",
500
- "http":{
501
- "method":"POST",
502
- "requestUri":"/"
503
- },
504
- "input":{"shape":"DescribeStorediSCSIVolumesInput"},
505
- "output":{"shape":"DescribeStorediSCSIVolumesOutput"},
506
- "errors":[
507
- {"shape":"InvalidGatewayRequestException"},
508
- {"shape":"InternalServerError"}
509
- ]
510
- },
511
- "DescribeTapeArchives":{
512
- "name":"DescribeTapeArchives",
513
- "http":{
514
- "method":"POST",
515
- "requestUri":"/"
516
- },
517
- "input":{"shape":"DescribeTapeArchivesInput"},
518
- "output":{"shape":"DescribeTapeArchivesOutput"},
519
- "errors":[
520
- {"shape":"InvalidGatewayRequestException"},
521
- {"shape":"InternalServerError"}
522
- ]
523
- },
524
- "DescribeTapeRecoveryPoints":{
525
- "name":"DescribeTapeRecoveryPoints",
526
- "http":{
527
- "method":"POST",
528
- "requestUri":"/"
529
- },
530
- "input":{"shape":"DescribeTapeRecoveryPointsInput"},
531
- "output":{"shape":"DescribeTapeRecoveryPointsOutput"},
532
- "errors":[
533
- {"shape":"InvalidGatewayRequestException"},
534
- {"shape":"InternalServerError"}
535
- ]
536
- },
537
- "DescribeTapes":{
538
- "name":"DescribeTapes",
539
- "http":{
540
- "method":"POST",
541
- "requestUri":"/"
542
- },
543
- "input":{"shape":"DescribeTapesInput"},
544
- "output":{"shape":"DescribeTapesOutput"},
545
- "errors":[
546
- {"shape":"InvalidGatewayRequestException"},
547
- {"shape":"InternalServerError"}
548
- ]
549
- },
550
- "DescribeUploadBuffer":{
551
- "name":"DescribeUploadBuffer",
552
- "http":{
553
- "method":"POST",
554
- "requestUri":"/"
555
- },
556
- "input":{"shape":"DescribeUploadBufferInput"},
557
- "output":{"shape":"DescribeUploadBufferOutput"},
558
- "errors":[
559
- {"shape":"InvalidGatewayRequestException"},
560
- {"shape":"InternalServerError"}
561
- ]
562
- },
563
- "DescribeVTLDevices":{
564
- "name":"DescribeVTLDevices",
565
- "http":{
566
- "method":"POST",
567
- "requestUri":"/"
568
- },
569
- "input":{"shape":"DescribeVTLDevicesInput"},
570
- "output":{"shape":"DescribeVTLDevicesOutput"},
571
- "errors":[
572
- {"shape":"InvalidGatewayRequestException"},
573
- {"shape":"InternalServerError"}
574
- ]
575
- },
576
- "DescribeWorkingStorage":{
577
- "name":"DescribeWorkingStorage",
578
- "http":{
579
- "method":"POST",
580
- "requestUri":"/"
581
- },
582
- "input":{"shape":"DescribeWorkingStorageInput"},
583
- "output":{"shape":"DescribeWorkingStorageOutput"},
584
- "errors":[
585
- {"shape":"InvalidGatewayRequestException"},
586
- {"shape":"InternalServerError"}
587
- ]
588
- },
589
- "DetachVolume":{
590
- "name":"DetachVolume",
591
- "http":{
592
- "method":"POST",
593
- "requestUri":"/"
594
- },
595
- "input":{"shape":"DetachVolumeInput"},
596
- "output":{"shape":"DetachVolumeOutput"},
597
- "errors":[
598
- {"shape":"InvalidGatewayRequestException"},
599
- {"shape":"InternalServerError"}
600
- ]
601
- },
602
- "DisableGateway":{
603
- "name":"DisableGateway",
604
- "http":{
605
- "method":"POST",
606
- "requestUri":"/"
607
- },
608
- "input":{"shape":"DisableGatewayInput"},
609
- "output":{"shape":"DisableGatewayOutput"},
610
- "errors":[
611
- {"shape":"InvalidGatewayRequestException"},
612
- {"shape":"InternalServerError"}
613
- ]
614
- },
615
- "JoinDomain":{
616
- "name":"JoinDomain",
617
- "http":{
618
- "method":"POST",
619
- "requestUri":"/"
620
- },
621
- "input":{"shape":"JoinDomainInput"},
622
- "output":{"shape":"JoinDomainOutput"},
623
- "errors":[
624
- {"shape":"InvalidGatewayRequestException"},
625
- {"shape":"InternalServerError"}
626
- ]
627
- },
628
- "ListAutomaticTapeCreationPolicies":{
629
- "name":"ListAutomaticTapeCreationPolicies",
630
- "http":{
631
- "method":"POST",
632
- "requestUri":"/"
633
- },
634
- "input":{"shape":"ListAutomaticTapeCreationPoliciesInput"},
635
- "output":{"shape":"ListAutomaticTapeCreationPoliciesOutput"},
636
- "errors":[
637
- {"shape":"InvalidGatewayRequestException"},
638
- {"shape":"InternalServerError"}
639
- ]
640
- },
641
- "ListFileShares":{
642
- "name":"ListFileShares",
643
- "http":{
644
- "method":"POST",
645
- "requestUri":"/"
646
- },
647
- "input":{"shape":"ListFileSharesInput"},
648
- "output":{"shape":"ListFileSharesOutput"},
649
- "errors":[
650
- {"shape":"InvalidGatewayRequestException"},
651
- {"shape":"InternalServerError"}
652
- ]
653
- },
654
- "ListGateways":{
655
- "name":"ListGateways",
656
- "http":{
657
- "method":"POST",
658
- "requestUri":"/"
659
- },
660
- "input":{"shape":"ListGatewaysInput"},
661
- "output":{"shape":"ListGatewaysOutput"},
662
- "errors":[
663
- {"shape":"InvalidGatewayRequestException"},
664
- {"shape":"InternalServerError"}
665
- ]
666
- },
667
- "ListLocalDisks":{
668
- "name":"ListLocalDisks",
669
- "http":{
670
- "method":"POST",
671
- "requestUri":"/"
672
- },
673
- "input":{"shape":"ListLocalDisksInput"},
674
- "output":{"shape":"ListLocalDisksOutput"},
675
- "errors":[
676
- {"shape":"InvalidGatewayRequestException"},
677
- {"shape":"InternalServerError"}
678
- ]
679
- },
680
- "ListTagsForResource":{
681
- "name":"ListTagsForResource",
682
- "http":{
683
- "method":"POST",
684
- "requestUri":"/"
685
- },
686
- "input":{"shape":"ListTagsForResourceInput"},
687
- "output":{"shape":"ListTagsForResourceOutput"},
688
- "errors":[
689
- {"shape":"InvalidGatewayRequestException"},
690
- {"shape":"InternalServerError"}
691
- ]
692
- },
693
- "ListTapes":{
694
- "name":"ListTapes",
695
- "http":{
696
- "method":"POST",
697
- "requestUri":"/"
698
- },
699
- "input":{"shape":"ListTapesInput"},
700
- "output":{"shape":"ListTapesOutput"},
701
- "errors":[
702
- {"shape":"InvalidGatewayRequestException"},
703
- {"shape":"InternalServerError"}
704
- ]
705
- },
706
- "ListVolumeInitiators":{
707
- "name":"ListVolumeInitiators",
708
- "http":{
709
- "method":"POST",
710
- "requestUri":"/"
711
- },
712
- "input":{"shape":"ListVolumeInitiatorsInput"},
713
- "output":{"shape":"ListVolumeInitiatorsOutput"},
714
- "errors":[
715
- {"shape":"InvalidGatewayRequestException"},
716
- {"shape":"InternalServerError"}
717
- ]
718
- },
719
- "ListVolumeRecoveryPoints":{
720
- "name":"ListVolumeRecoveryPoints",
721
- "http":{
722
- "method":"POST",
723
- "requestUri":"/"
724
- },
725
- "input":{"shape":"ListVolumeRecoveryPointsInput"},
726
- "output":{"shape":"ListVolumeRecoveryPointsOutput"},
727
- "errors":[
728
- {"shape":"InvalidGatewayRequestException"},
729
- {"shape":"InternalServerError"}
730
- ]
731
- },
732
- "ListVolumes":{
733
- "name":"ListVolumes",
734
- "http":{
735
- "method":"POST",
736
- "requestUri":"/"
737
- },
738
- "input":{"shape":"ListVolumesInput"},
739
- "output":{"shape":"ListVolumesOutput"},
740
- "errors":[
741
- {"shape":"InvalidGatewayRequestException"},
742
- {"shape":"InternalServerError"}
743
- ]
744
- },
745
- "NotifyWhenUploaded":{
746
- "name":"NotifyWhenUploaded",
747
- "http":{
748
- "method":"POST",
749
- "requestUri":"/"
750
- },
751
- "input":{"shape":"NotifyWhenUploadedInput"},
752
- "output":{"shape":"NotifyWhenUploadedOutput"},
753
- "errors":[
754
- {"shape":"InvalidGatewayRequestException"},
755
- {"shape":"InternalServerError"}
756
- ]
757
- },
758
- "RefreshCache":{
759
- "name":"RefreshCache",
760
- "http":{
761
- "method":"POST",
762
- "requestUri":"/"
763
- },
764
- "input":{"shape":"RefreshCacheInput"},
765
- "output":{"shape":"RefreshCacheOutput"},
766
- "errors":[
767
- {"shape":"InvalidGatewayRequestException"},
768
- {"shape":"InternalServerError"}
769
- ]
770
- },
771
- "RemoveTagsFromResource":{
772
- "name":"RemoveTagsFromResource",
773
- "http":{
774
- "method":"POST",
775
- "requestUri":"/"
776
- },
777
- "input":{"shape":"RemoveTagsFromResourceInput"},
778
- "output":{"shape":"RemoveTagsFromResourceOutput"},
779
- "errors":[
780
- {"shape":"InvalidGatewayRequestException"},
781
- {"shape":"InternalServerError"}
782
- ]
783
- },
784
- "ResetCache":{
785
- "name":"ResetCache",
786
- "http":{
787
- "method":"POST",
788
- "requestUri":"/"
789
- },
790
- "input":{"shape":"ResetCacheInput"},
791
- "output":{"shape":"ResetCacheOutput"},
792
- "errors":[
793
- {"shape":"InvalidGatewayRequestException"},
794
- {"shape":"InternalServerError"}
795
- ]
796
- },
797
- "RetrieveTapeArchive":{
798
- "name":"RetrieveTapeArchive",
799
- "http":{
800
- "method":"POST",
801
- "requestUri":"/"
802
- },
803
- "input":{"shape":"RetrieveTapeArchiveInput"},
804
- "output":{"shape":"RetrieveTapeArchiveOutput"},
805
- "errors":[
806
- {"shape":"InvalidGatewayRequestException"},
807
- {"shape":"InternalServerError"}
808
- ]
809
- },
810
- "RetrieveTapeRecoveryPoint":{
811
- "name":"RetrieveTapeRecoveryPoint",
812
- "http":{
813
- "method":"POST",
814
- "requestUri":"/"
815
- },
816
- "input":{"shape":"RetrieveTapeRecoveryPointInput"},
817
- "output":{"shape":"RetrieveTapeRecoveryPointOutput"},
818
- "errors":[
819
- {"shape":"InvalidGatewayRequestException"},
820
- {"shape":"InternalServerError"}
821
- ]
822
- },
823
- "SetLocalConsolePassword":{
824
- "name":"SetLocalConsolePassword",
825
- "http":{
826
- "method":"POST",
827
- "requestUri":"/"
828
- },
829
- "input":{"shape":"SetLocalConsolePasswordInput"},
830
- "output":{"shape":"SetLocalConsolePasswordOutput"},
831
- "errors":[
832
- {"shape":"InvalidGatewayRequestException"},
833
- {"shape":"InternalServerError"}
834
- ]
835
- },
836
- "SetSMBGuestPassword":{
837
- "name":"SetSMBGuestPassword",
838
- "http":{
839
- "method":"POST",
840
- "requestUri":"/"
841
- },
842
- "input":{"shape":"SetSMBGuestPasswordInput"},
843
- "output":{"shape":"SetSMBGuestPasswordOutput"},
844
- "errors":[
845
- {"shape":"InvalidGatewayRequestException"},
846
- {"shape":"InternalServerError"}
847
- ]
848
- },
849
- "ShutdownGateway":{
850
- "name":"ShutdownGateway",
851
- "http":{
852
- "method":"POST",
853
- "requestUri":"/"
854
- },
855
- "input":{"shape":"ShutdownGatewayInput"},
856
- "output":{"shape":"ShutdownGatewayOutput"},
857
- "errors":[
858
- {"shape":"InvalidGatewayRequestException"},
859
- {"shape":"InternalServerError"}
860
- ]
861
- },
862
- "StartAvailabilityMonitorTest":{
863
- "name":"StartAvailabilityMonitorTest",
864
- "http":{
865
- "method":"POST",
866
- "requestUri":"/"
867
- },
868
- "input":{"shape":"StartAvailabilityMonitorTestInput"},
869
- "output":{"shape":"StartAvailabilityMonitorTestOutput"},
870
- "errors":[
871
- {"shape":"InvalidGatewayRequestException"},
872
- {"shape":"InternalServerError"}
873
- ]
874
- },
875
- "StartGateway":{
876
- "name":"StartGateway",
877
- "http":{
878
- "method":"POST",
879
- "requestUri":"/"
880
- },
881
- "input":{"shape":"StartGatewayInput"},
882
- "output":{"shape":"StartGatewayOutput"},
883
- "errors":[
884
- {"shape":"InvalidGatewayRequestException"},
885
- {"shape":"InternalServerError"}
886
- ]
887
- },
888
- "UpdateAutomaticTapeCreationPolicy":{
889
- "name":"UpdateAutomaticTapeCreationPolicy",
890
- "http":{
891
- "method":"POST",
892
- "requestUri":"/"
893
- },
894
- "input":{"shape":"UpdateAutomaticTapeCreationPolicyInput"},
895
- "output":{"shape":"UpdateAutomaticTapeCreationPolicyOutput"},
896
- "errors":[
897
- {"shape":"InvalidGatewayRequestException"},
898
- {"shape":"InternalServerError"}
899
- ]
900
- },
901
- "UpdateBandwidthRateLimit":{
902
- "name":"UpdateBandwidthRateLimit",
903
- "http":{
904
- "method":"POST",
905
- "requestUri":"/"
906
- },
907
- "input":{"shape":"UpdateBandwidthRateLimitInput"},
908
- "output":{"shape":"UpdateBandwidthRateLimitOutput"},
909
- "errors":[
910
- {"shape":"InvalidGatewayRequestException"},
911
- {"shape":"InternalServerError"}
912
- ]
913
- },
914
- "UpdateChapCredentials":{
915
- "name":"UpdateChapCredentials",
916
- "http":{
917
- "method":"POST",
918
- "requestUri":"/"
919
- },
920
- "input":{"shape":"UpdateChapCredentialsInput"},
921
- "output":{"shape":"UpdateChapCredentialsOutput"},
922
- "errors":[
923
- {"shape":"InvalidGatewayRequestException"},
924
- {"shape":"InternalServerError"}
925
- ]
926
- },
927
- "UpdateGatewayInformation":{
928
- "name":"UpdateGatewayInformation",
929
- "http":{
930
- "method":"POST",
931
- "requestUri":"/"
932
- },
933
- "input":{"shape":"UpdateGatewayInformationInput"},
934
- "output":{"shape":"UpdateGatewayInformationOutput"},
935
- "errors":[
936
- {"shape":"InvalidGatewayRequestException"},
937
- {"shape":"InternalServerError"}
938
- ]
939
- },
940
- "UpdateGatewaySoftwareNow":{
941
- "name":"UpdateGatewaySoftwareNow",
942
- "http":{
943
- "method":"POST",
944
- "requestUri":"/"
945
- },
946
- "input":{"shape":"UpdateGatewaySoftwareNowInput"},
947
- "output":{"shape":"UpdateGatewaySoftwareNowOutput"},
948
- "errors":[
949
- {"shape":"InvalidGatewayRequestException"},
950
- {"shape":"InternalServerError"}
951
- ]
952
- },
953
- "UpdateMaintenanceStartTime":{
954
- "name":"UpdateMaintenanceStartTime",
955
- "http":{
956
- "method":"POST",
957
- "requestUri":"/"
958
- },
959
- "input":{"shape":"UpdateMaintenanceStartTimeInput"},
960
- "output":{"shape":"UpdateMaintenanceStartTimeOutput"},
961
- "errors":[
962
- {"shape":"InvalidGatewayRequestException"},
963
- {"shape":"InternalServerError"}
964
- ]
965
- },
966
- "UpdateNFSFileShare":{
967
- "name":"UpdateNFSFileShare",
968
- "http":{
969
- "method":"POST",
970
- "requestUri":"/"
971
- },
972
- "input":{"shape":"UpdateNFSFileShareInput"},
973
- "output":{"shape":"UpdateNFSFileShareOutput"},
974
- "errors":[
975
- {"shape":"InvalidGatewayRequestException"},
976
- {"shape":"InternalServerError"}
977
- ]
978
- },
979
- "UpdateSMBFileShare":{
980
- "name":"UpdateSMBFileShare",
981
- "http":{
982
- "method":"POST",
983
- "requestUri":"/"
984
- },
985
- "input":{"shape":"UpdateSMBFileShareInput"},
986
- "output":{"shape":"UpdateSMBFileShareOutput"},
987
- "errors":[
988
- {"shape":"InvalidGatewayRequestException"},
989
- {"shape":"InternalServerError"}
990
- ]
991
- },
992
- "UpdateSMBSecurityStrategy":{
993
- "name":"UpdateSMBSecurityStrategy",
994
- "http":{
995
- "method":"POST",
996
- "requestUri":"/"
997
- },
998
- "input":{"shape":"UpdateSMBSecurityStrategyInput"},
999
- "output":{"shape":"UpdateSMBSecurityStrategyOutput"},
1000
- "errors":[
1001
- {"shape":"InvalidGatewayRequestException"},
1002
- {"shape":"InternalServerError"}
1003
- ]
1004
- },
1005
- "UpdateSnapshotSchedule":{
1006
- "name":"UpdateSnapshotSchedule",
1007
- "http":{
1008
- "method":"POST",
1009
- "requestUri":"/"
1010
- },
1011
- "input":{"shape":"UpdateSnapshotScheduleInput"},
1012
- "output":{"shape":"UpdateSnapshotScheduleOutput"},
1013
- "errors":[
1014
- {"shape":"InvalidGatewayRequestException"},
1015
- {"shape":"InternalServerError"}
1016
- ]
1017
- },
1018
- "UpdateVTLDeviceType":{
1019
- "name":"UpdateVTLDeviceType",
1020
- "http":{
1021
- "method":"POST",
1022
- "requestUri":"/"
1023
- },
1024
- "input":{"shape":"UpdateVTLDeviceTypeInput"},
1025
- "output":{"shape":"UpdateVTLDeviceTypeOutput"},
1026
- "errors":[
1027
- {"shape":"InvalidGatewayRequestException"},
1028
- {"shape":"InternalServerError"}
1029
- ]
1030
- }
1031
- },
1032
- "shapes":{
1033
- "ActivateGatewayInput":{
1034
- "type":"structure",
1035
- "required":[
1036
- "ActivationKey",
1037
- "GatewayName",
1038
- "GatewayTimezone",
1039
- "GatewayRegion"
1040
- ],
1041
- "members":{
1042
- "ActivationKey":{"shape":"ActivationKey"},
1043
- "GatewayName":{"shape":"GatewayName"},
1044
- "GatewayTimezone":{"shape":"GatewayTimezone"},
1045
- "GatewayRegion":{"shape":"RegionId"},
1046
- "GatewayType":{"shape":"GatewayType"},
1047
- "TapeDriveType":{"shape":"TapeDriveType"},
1048
- "MediumChangerType":{"shape":"MediumChangerType"},
1049
- "Tags":{"shape":"Tags"}
1050
- }
1051
- },
1052
- "ActivateGatewayOutput":{
1053
- "type":"structure",
1054
- "members":{
1055
- "GatewayARN":{"shape":"GatewayARN"}
1056
- }
1057
- },
1058
- "ActivationKey":{
1059
- "type":"string",
1060
- "max":50,
1061
- "min":1
1062
- },
1063
- "ActiveDirectoryStatus":{
1064
- "type":"string",
1065
- "enum":[
1066
- "ACCESS_DENIED",
1067
- "DETACHED",
1068
- "JOINED",
1069
- "JOINING",
1070
- "NETWORK_ERROR",
1071
- "TIMEOUT",
1072
- "UNKNOWN_ERROR"
1073
- ]
1074
- },
1075
- "AddCacheInput":{
1076
- "type":"structure",
1077
- "required":[
1078
- "GatewayARN",
1079
- "DiskIds"
1080
- ],
1081
- "members":{
1082
- "GatewayARN":{"shape":"GatewayARN"},
1083
- "DiskIds":{"shape":"DiskIds"}
1084
- }
1085
- },
1086
- "AddCacheOutput":{
1087
- "type":"structure",
1088
- "members":{
1089
- "GatewayARN":{"shape":"GatewayARN"}
1090
- }
1091
- },
1092
- "AddTagsToResourceInput":{
1093
- "type":"structure",
1094
- "required":[
1095
- "ResourceARN",
1096
- "Tags"
1097
- ],
1098
- "members":{
1099
- "ResourceARN":{"shape":"ResourceARN"},
1100
- "Tags":{"shape":"Tags"}
1101
- }
1102
- },
1103
- "AddTagsToResourceOutput":{
1104
- "type":"structure",
1105
- "members":{
1106
- "ResourceARN":{"shape":"ResourceARN"}
1107
- }
1108
- },
1109
- "AddUploadBufferInput":{
1110
- "type":"structure",
1111
- "required":[
1112
- "GatewayARN",
1113
- "DiskIds"
1114
- ],
1115
- "members":{
1116
- "GatewayARN":{"shape":"GatewayARN"},
1117
- "DiskIds":{"shape":"DiskIds"}
1118
- }
1119
- },
1120
- "AddUploadBufferOutput":{
1121
- "type":"structure",
1122
- "members":{
1123
- "GatewayARN":{"shape":"GatewayARN"}
1124
- }
1125
- },
1126
- "AddWorkingStorageInput":{
1127
- "type":"structure",
1128
- "required":[
1129
- "GatewayARN",
1130
- "DiskIds"
1131
- ],
1132
- "members":{
1133
- "GatewayARN":{"shape":"GatewayARN"},
1134
- "DiskIds":{"shape":"DiskIds"}
1135
- }
1136
- },
1137
- "AddWorkingStorageOutput":{
1138
- "type":"structure",
1139
- "members":{
1140
- "GatewayARN":{"shape":"GatewayARN"}
1141
- }
1142
- },
1143
- "AssignTapePoolInput":{
1144
- "type":"structure",
1145
- "required":[
1146
- "TapeARN",
1147
- "PoolId"
1148
- ],
1149
- "members":{
1150
- "TapeARN":{"shape":"TapeARN"},
1151
- "PoolId":{"shape":"PoolId"}
1152
- }
1153
- },
1154
- "AssignTapePoolOutput":{
1155
- "type":"structure",
1156
- "members":{
1157
- "TapeARN":{"shape":"TapeARN"}
1158
- }
1159
- },
1160
- "AttachVolumeInput":{
1161
- "type":"structure",
1162
- "required":[
1163
- "GatewayARN",
1164
- "VolumeARN",
1165
- "NetworkInterfaceId"
1166
- ],
1167
- "members":{
1168
- "GatewayARN":{"shape":"GatewayARN"},
1169
- "TargetName":{"shape":"TargetName"},
1170
- "VolumeARN":{"shape":"VolumeARN"},
1171
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
1172
- "DiskId":{"shape":"DiskId"}
1173
- }
1174
- },
1175
- "AttachVolumeOutput":{
1176
- "type":"structure",
1177
- "members":{
1178
- "VolumeARN":{"shape":"VolumeARN"},
1179
- "TargetARN":{"shape":"TargetARN"}
1180
- }
1181
- },
1182
- "AuditDestinationARN":{
1183
- "type":"string",
1184
- "max":1024
1185
- },
1186
- "Authentication":{
1187
- "type":"string",
1188
- "max":15,
1189
- "min":5
1190
- },
1191
- "AutomaticTapeCreationPolicyInfo":{
1192
- "type":"structure",
1193
- "members":{
1194
- "AutomaticTapeCreationRules":{"shape":"AutomaticTapeCreationRules"},
1195
- "GatewayARN":{"shape":"GatewayARN"}
1196
- }
1197
- },
1198
- "AutomaticTapeCreationPolicyInfos":{
1199
- "type":"list",
1200
- "member":{"shape":"AutomaticTapeCreationPolicyInfo"}
1201
- },
1202
- "AutomaticTapeCreationRule":{
1203
- "type":"structure",
1204
- "required":[
1205
- "TapeBarcodePrefix",
1206
- "PoolId",
1207
- "TapeSizeInBytes",
1208
- "MinimumNumTapes"
1209
- ],
1210
- "members":{
1211
- "TapeBarcodePrefix":{"shape":"TapeBarcodePrefix"},
1212
- "PoolId":{"shape":"PoolId"},
1213
- "TapeSizeInBytes":{"shape":"TapeSize"},
1214
- "MinimumNumTapes":{"shape":"MinimumNumTapes"}
1215
- }
1216
- },
1217
- "AutomaticTapeCreationRules":{
1218
- "type":"list",
1219
- "member":{"shape":"AutomaticTapeCreationRule"},
1220
- "max":10,
1221
- "min":1
1222
- },
1223
- "AvailabilityMonitorTestStatus":{
1224
- "type":"string",
1225
- "enum":[
1226
- "COMPLETE",
1227
- "FAILED",
1228
- "PENDING"
1229
- ]
1230
- },
1231
- "BandwidthDownloadRateLimit":{
1232
- "type":"long",
1233
- "min":102400
1234
- },
1235
- "BandwidthType":{
1236
- "type":"string",
1237
- "max":25,
1238
- "min":3
1239
- },
1240
- "BandwidthUploadRateLimit":{
1241
- "type":"long",
1242
- "min":51200
1243
- },
1244
- "Boolean":{"type":"boolean"},
1245
- "CachediSCSIVolume":{
1246
- "type":"structure",
1247
- "members":{
1248
- "VolumeARN":{"shape":"VolumeARN"},
1249
- "VolumeId":{"shape":"VolumeId"},
1250
- "VolumeType":{"shape":"VolumeType"},
1251
- "VolumeStatus":{"shape":"VolumeStatus"},
1252
- "VolumeAttachmentStatus":{"shape":"VolumeAttachmentStatus"},
1253
- "VolumeSizeInBytes":{"shape":"long"},
1254
- "VolumeProgress":{"shape":"DoubleObject"},
1255
- "SourceSnapshotId":{"shape":"SnapshotId"},
1256
- "VolumeiSCSIAttributes":{"shape":"VolumeiSCSIAttributes"},
1257
- "CreatedDate":{"shape":"CreatedDate"},
1258
- "VolumeUsedInBytes":{"shape":"VolumeUsedInBytes"},
1259
- "KMSKey":{"shape":"KMSKey"},
1260
- "TargetName":{"shape":"TargetName"}
1261
- }
1262
- },
1263
- "CachediSCSIVolumes":{
1264
- "type":"list",
1265
- "member":{"shape":"CachediSCSIVolume"}
1266
- },
1267
- "CancelArchivalInput":{
1268
- "type":"structure",
1269
- "required":[
1270
- "GatewayARN",
1271
- "TapeARN"
1272
- ],
1273
- "members":{
1274
- "GatewayARN":{"shape":"GatewayARN"},
1275
- "TapeARN":{"shape":"TapeARN"}
1276
- }
1277
- },
1278
- "CancelArchivalOutput":{
1279
- "type":"structure",
1280
- "members":{
1281
- "TapeARN":{"shape":"TapeARN"}
1282
- }
1283
- },
1284
- "CancelRetrievalInput":{
1285
- "type":"structure",
1286
- "required":[
1287
- "GatewayARN",
1288
- "TapeARN"
1289
- ],
1290
- "members":{
1291
- "GatewayARN":{"shape":"GatewayARN"},
1292
- "TapeARN":{"shape":"TapeARN"}
1293
- }
1294
- },
1295
- "CancelRetrievalOutput":{
1296
- "type":"structure",
1297
- "members":{
1298
- "TapeARN":{"shape":"TapeARN"}
1299
- }
1300
- },
1301
- "ChapCredentials":{
1302
- "type":"list",
1303
- "member":{"shape":"ChapInfo"}
1304
- },
1305
- "ChapInfo":{
1306
- "type":"structure",
1307
- "members":{
1308
- "TargetARN":{"shape":"TargetARN"},
1309
- "SecretToAuthenticateInitiator":{"shape":"ChapSecret"},
1310
- "InitiatorName":{"shape":"IqnName"},
1311
- "SecretToAuthenticateTarget":{"shape":"ChapSecret"}
1312
- }
1313
- },
1314
- "ChapSecret":{
1315
- "type":"string",
1316
- "max":100,
1317
- "min":1,
1318
- "sensitive":true
1319
- },
1320
- "ClientToken":{
1321
- "type":"string",
1322
- "max":100,
1323
- "min":5
1324
- },
1325
- "CloudWatchLogGroupARN":{
1326
- "type":"string",
1327
- "max":562
1328
- },
1329
- "CreateCachediSCSIVolumeInput":{
1330
- "type":"structure",
1331
- "required":[
1332
- "GatewayARN",
1333
- "VolumeSizeInBytes",
1334
- "TargetName",
1335
- "NetworkInterfaceId",
1336
- "ClientToken"
1337
- ],
1338
- "members":{
1339
- "GatewayARN":{"shape":"GatewayARN"},
1340
- "VolumeSizeInBytes":{"shape":"long"},
1341
- "SnapshotId":{"shape":"SnapshotId"},
1342
- "TargetName":{"shape":"TargetName"},
1343
- "SourceVolumeARN":{"shape":"VolumeARN"},
1344
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
1345
- "ClientToken":{"shape":"ClientToken"},
1346
- "KMSEncrypted":{"shape":"Boolean"},
1347
- "KMSKey":{"shape":"KMSKey"},
1348
- "Tags":{"shape":"Tags"}
1349
- }
1350
- },
1351
- "CreateCachediSCSIVolumeOutput":{
1352
- "type":"structure",
1353
- "members":{
1354
- "VolumeARN":{"shape":"VolumeARN"},
1355
- "TargetARN":{"shape":"TargetARN"}
1356
- }
1357
- },
1358
- "CreateNFSFileShareInput":{
1359
- "type":"structure",
1360
- "required":[
1361
- "ClientToken",
1362
- "GatewayARN",
1363
- "Role",
1364
- "LocationARN"
1365
- ],
1366
- "members":{
1367
- "ClientToken":{"shape":"ClientToken"},
1368
- "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
1369
- "GatewayARN":{"shape":"GatewayARN"},
1370
- "KMSEncrypted":{"shape":"Boolean"},
1371
- "KMSKey":{"shape":"KMSKey"},
1372
- "Role":{"shape":"Role"},
1373
- "LocationARN":{"shape":"LocationARN"},
1374
- "DefaultStorageClass":{"shape":"StorageClass"},
1375
- "ObjectACL":{"shape":"ObjectACL"},
1376
- "ClientList":{"shape":"FileShareClientList"},
1377
- "Squash":{"shape":"Squash"},
1378
- "ReadOnly":{"shape":"Boolean"},
1379
- "GuessMIMETypeEnabled":{"shape":"Boolean"},
1380
- "RequesterPays":{"shape":"Boolean"},
1381
- "Tags":{"shape":"Tags"}
1382
- }
1383
- },
1384
- "CreateNFSFileShareOutput":{
1385
- "type":"structure",
1386
- "members":{
1387
- "FileShareARN":{"shape":"FileShareARN"}
1388
- }
1389
- },
1390
- "CreateSMBFileShareInput":{
1391
- "type":"structure",
1392
- "required":[
1393
- "ClientToken",
1394
- "GatewayARN",
1395
- "Role",
1396
- "LocationARN"
1397
- ],
1398
- "members":{
1399
- "ClientToken":{"shape":"ClientToken"},
1400
- "GatewayARN":{"shape":"GatewayARN"},
1401
- "KMSEncrypted":{"shape":"Boolean"},
1402
- "KMSKey":{"shape":"KMSKey"},
1403
- "Role":{"shape":"Role"},
1404
- "LocationARN":{"shape":"LocationARN"},
1405
- "DefaultStorageClass":{"shape":"StorageClass"},
1406
- "ObjectACL":{"shape":"ObjectACL"},
1407
- "ReadOnly":{"shape":"Boolean"},
1408
- "GuessMIMETypeEnabled":{"shape":"Boolean"},
1409
- "RequesterPays":{"shape":"Boolean"},
1410
- "SMBACLEnabled":{"shape":"Boolean"},
1411
- "AdminUserList":{"shape":"FileShareUserList"},
1412
- "ValidUserList":{"shape":"FileShareUserList"},
1413
- "InvalidUserList":{"shape":"FileShareUserList"},
1414
- "AuditDestinationARN":{"shape":"AuditDestinationARN"},
1415
- "Authentication":{"shape":"Authentication"},
1416
- "Tags":{"shape":"Tags"}
1417
- }
1418
- },
1419
- "CreateSMBFileShareOutput":{
1420
- "type":"structure",
1421
- "members":{
1422
- "FileShareARN":{"shape":"FileShareARN"}
1423
- }
1424
- },
1425
- "CreateSnapshotFromVolumeRecoveryPointInput":{
1426
- "type":"structure",
1427
- "required":[
1428
- "VolumeARN",
1429
- "SnapshotDescription"
1430
- ],
1431
- "members":{
1432
- "VolumeARN":{"shape":"VolumeARN"},
1433
- "SnapshotDescription":{"shape":"SnapshotDescription"},
1434
- "Tags":{"shape":"Tags"}
1435
- }
1436
- },
1437
- "CreateSnapshotFromVolumeRecoveryPointOutput":{
1438
- "type":"structure",
1439
- "members":{
1440
- "SnapshotId":{"shape":"SnapshotId"},
1441
- "VolumeARN":{"shape":"VolumeARN"},
1442
- "VolumeRecoveryPointTime":{"shape":"string"}
1443
- }
1444
- },
1445
- "CreateSnapshotInput":{
1446
- "type":"structure",
1447
- "required":[
1448
- "VolumeARN",
1449
- "SnapshotDescription"
1450
- ],
1451
- "members":{
1452
- "VolumeARN":{"shape":"VolumeARN"},
1453
- "SnapshotDescription":{"shape":"SnapshotDescription"},
1454
- "Tags":{"shape":"Tags"}
1455
- }
1456
- },
1457
- "CreateSnapshotOutput":{
1458
- "type":"structure",
1459
- "members":{
1460
- "VolumeARN":{"shape":"VolumeARN"},
1461
- "SnapshotId":{"shape":"SnapshotId"}
1462
- }
1463
- },
1464
- "CreateStorediSCSIVolumeInput":{
1465
- "type":"structure",
1466
- "required":[
1467
- "GatewayARN",
1468
- "DiskId",
1469
- "PreserveExistingData",
1470
- "TargetName",
1471
- "NetworkInterfaceId"
1472
- ],
1473
- "members":{
1474
- "GatewayARN":{"shape":"GatewayARN"},
1475
- "DiskId":{"shape":"DiskId"},
1476
- "SnapshotId":{"shape":"SnapshotId"},
1477
- "PreserveExistingData":{"shape":"boolean"},
1478
- "TargetName":{"shape":"TargetName"},
1479
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
1480
- "KMSEncrypted":{"shape":"Boolean"},
1481
- "KMSKey":{"shape":"KMSKey"},
1482
- "Tags":{"shape":"Tags"}
1483
- }
1484
- },
1485
- "CreateStorediSCSIVolumeOutput":{
1486
- "type":"structure",
1487
- "members":{
1488
- "VolumeARN":{"shape":"VolumeARN"},
1489
- "VolumeSizeInBytes":{"shape":"long"},
1490
- "TargetARN":{"shape":"TargetARN"}
1491
- }
1492
- },
1493
- "CreateTapeWithBarcodeInput":{
1494
- "type":"structure",
1495
- "required":[
1496
- "GatewayARN",
1497
- "TapeSizeInBytes",
1498
- "TapeBarcode"
1499
- ],
1500
- "members":{
1501
- "GatewayARN":{"shape":"GatewayARN"},
1502
- "TapeSizeInBytes":{"shape":"TapeSize"},
1503
- "TapeBarcode":{"shape":"TapeBarcode"},
1504
- "KMSEncrypted":{"shape":"Boolean"},
1505
- "KMSKey":{"shape":"KMSKey"},
1506
- "PoolId":{"shape":"PoolId"},
1507
- "Tags":{"shape":"Tags"}
1508
- }
1509
- },
1510
- "CreateTapeWithBarcodeOutput":{
1511
- "type":"structure",
1512
- "members":{
1513
- "TapeARN":{"shape":"TapeARN"}
1514
- }
1515
- },
1516
- "CreateTapesInput":{
1517
- "type":"structure",
1518
- "required":[
1519
- "GatewayARN",
1520
- "TapeSizeInBytes",
1521
- "ClientToken",
1522
- "NumTapesToCreate",
1523
- "TapeBarcodePrefix"
1524
- ],
1525
- "members":{
1526
- "GatewayARN":{"shape":"GatewayARN"},
1527
- "TapeSizeInBytes":{"shape":"TapeSize"},
1528
- "ClientToken":{"shape":"ClientToken"},
1529
- "NumTapesToCreate":{"shape":"NumTapesToCreate"},
1530
- "TapeBarcodePrefix":{"shape":"TapeBarcodePrefix"},
1531
- "KMSEncrypted":{"shape":"Boolean"},
1532
- "KMSKey":{"shape":"KMSKey"},
1533
- "PoolId":{"shape":"PoolId"},
1534
- "Tags":{"shape":"Tags"}
1535
- }
1536
- },
1537
- "CreateTapesOutput":{
1538
- "type":"structure",
1539
- "members":{
1540
- "TapeARNs":{"shape":"TapeARNs"}
1541
- }
1542
- },
1543
- "CreatedDate":{"type":"timestamp"},
1544
- "DayOfMonth":{
1545
- "type":"integer",
1546
- "max":28,
1547
- "min":1
1548
- },
1549
- "DayOfWeek":{
1550
- "type":"integer",
1551
- "max":6,
1552
- "min":0
1553
- },
1554
- "DeleteAutomaticTapeCreationPolicyInput":{
1555
- "type":"structure",
1556
- "required":["GatewayARN"],
1557
- "members":{
1558
- "GatewayARN":{"shape":"GatewayARN"}
1559
- }
1560
- },
1561
- "DeleteAutomaticTapeCreationPolicyOutput":{
1562
- "type":"structure",
1563
- "members":{
1564
- "GatewayARN":{"shape":"GatewayARN"}
1565
- }
1566
- },
1567
- "DeleteBandwidthRateLimitInput":{
1568
- "type":"structure",
1569
- "required":[
1570
- "GatewayARN",
1571
- "BandwidthType"
1572
- ],
1573
- "members":{
1574
- "GatewayARN":{"shape":"GatewayARN"},
1575
- "BandwidthType":{"shape":"BandwidthType"}
1576
- }
1577
- },
1578
- "DeleteBandwidthRateLimitOutput":{
1579
- "type":"structure",
1580
- "members":{
1581
- "GatewayARN":{"shape":"GatewayARN"}
1582
- }
1583
- },
1584
- "DeleteChapCredentialsInput":{
1585
- "type":"structure",
1586
- "required":[
1587
- "TargetARN",
1588
- "InitiatorName"
1589
- ],
1590
- "members":{
1591
- "TargetARN":{"shape":"TargetARN"},
1592
- "InitiatorName":{"shape":"IqnName"}
1593
- }
1594
- },
1595
- "DeleteChapCredentialsOutput":{
1596
- "type":"structure",
1597
- "members":{
1598
- "TargetARN":{"shape":"TargetARN"},
1599
- "InitiatorName":{"shape":"IqnName"}
1600
- }
1601
- },
1602
- "DeleteFileShareInput":{
1603
- "type":"structure",
1604
- "required":["FileShareARN"],
1605
- "members":{
1606
- "FileShareARN":{"shape":"FileShareARN"},
1607
- "ForceDelete":{"shape":"boolean"}
1608
- }
1609
- },
1610
- "DeleteFileShareOutput":{
1611
- "type":"structure",
1612
- "members":{
1613
- "FileShareARN":{"shape":"FileShareARN"}
1614
- }
1615
- },
1616
- "DeleteGatewayInput":{
1617
- "type":"structure",
1618
- "required":["GatewayARN"],
1619
- "members":{
1620
- "GatewayARN":{"shape":"GatewayARN"}
1621
- }
1622
- },
1623
- "DeleteGatewayOutput":{
1624
- "type":"structure",
1625
- "members":{
1626
- "GatewayARN":{"shape":"GatewayARN"}
1627
- }
1628
- },
1629
- "DeleteSnapshotScheduleInput":{
1630
- "type":"structure",
1631
- "required":["VolumeARN"],
1632
- "members":{
1633
- "VolumeARN":{"shape":"VolumeARN"}
1634
- }
1635
- },
1636
- "DeleteSnapshotScheduleOutput":{
1637
- "type":"structure",
1638
- "members":{
1639
- "VolumeARN":{"shape":"VolumeARN"}
1640
- }
1641
- },
1642
- "DeleteTapeArchiveInput":{
1643
- "type":"structure",
1644
- "required":["TapeARN"],
1645
- "members":{
1646
- "TapeARN":{"shape":"TapeARN"}
1647
- }
1648
- },
1649
- "DeleteTapeArchiveOutput":{
1650
- "type":"structure",
1651
- "members":{
1652
- "TapeARN":{"shape":"TapeARN"}
1653
- }
1654
- },
1655
- "DeleteTapeInput":{
1656
- "type":"structure",
1657
- "required":[
1658
- "GatewayARN",
1659
- "TapeARN"
1660
- ],
1661
- "members":{
1662
- "GatewayARN":{"shape":"GatewayARN"},
1663
- "TapeARN":{"shape":"TapeARN"}
1664
- }
1665
- },
1666
- "DeleteTapeOutput":{
1667
- "type":"structure",
1668
- "members":{
1669
- "TapeARN":{"shape":"TapeARN"}
1670
- }
1671
- },
1672
- "DeleteVolumeInput":{
1673
- "type":"structure",
1674
- "required":["VolumeARN"],
1675
- "members":{
1676
- "VolumeARN":{"shape":"VolumeARN"}
1677
- }
1678
- },
1679
- "DeleteVolumeOutput":{
1680
- "type":"structure",
1681
- "members":{
1682
- "VolumeARN":{"shape":"VolumeARN"}
1683
- }
1684
- },
1685
- "DescribeAvailabilityMonitorTestInput":{
1686
- "type":"structure",
1687
- "required":["GatewayARN"],
1688
- "members":{
1689
- "GatewayARN":{"shape":"GatewayARN"}
1690
- }
1691
- },
1692
- "DescribeAvailabilityMonitorTestOutput":{
1693
- "type":"structure",
1694
- "members":{
1695
- "GatewayARN":{"shape":"GatewayARN"},
1696
- "Status":{"shape":"AvailabilityMonitorTestStatus"},
1697
- "StartTime":{"shape":"Time"}
1698
- }
1699
- },
1700
- "DescribeBandwidthRateLimitInput":{
1701
- "type":"structure",
1702
- "required":["GatewayARN"],
1703
- "members":{
1704
- "GatewayARN":{"shape":"GatewayARN"}
1705
- }
1706
- },
1707
- "DescribeBandwidthRateLimitOutput":{
1708
- "type":"structure",
1709
- "members":{
1710
- "GatewayARN":{"shape":"GatewayARN"},
1711
- "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
1712
- "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
1713
- }
1714
- },
1715
- "DescribeCacheInput":{
1716
- "type":"structure",
1717
- "required":["GatewayARN"],
1718
- "members":{
1719
- "GatewayARN":{"shape":"GatewayARN"}
1720
- }
1721
- },
1722
- "DescribeCacheOutput":{
1723
- "type":"structure",
1724
- "members":{
1725
- "GatewayARN":{"shape":"GatewayARN"},
1726
- "DiskIds":{"shape":"DiskIds"},
1727
- "CacheAllocatedInBytes":{"shape":"long"},
1728
- "CacheUsedPercentage":{"shape":"double"},
1729
- "CacheDirtyPercentage":{"shape":"double"},
1730
- "CacheHitPercentage":{"shape":"double"},
1731
- "CacheMissPercentage":{"shape":"double"}
1732
- }
1733
- },
1734
- "DescribeCachediSCSIVolumesInput":{
1735
- "type":"structure",
1736
- "required":["VolumeARNs"],
1737
- "members":{
1738
- "VolumeARNs":{"shape":"VolumeARNs"}
1739
- }
1740
- },
1741
- "DescribeCachediSCSIVolumesOutput":{
1742
- "type":"structure",
1743
- "members":{
1744
- "CachediSCSIVolumes":{"shape":"CachediSCSIVolumes"}
1745
- }
1746
- },
1747
- "DescribeChapCredentialsInput":{
1748
- "type":"structure",
1749
- "required":["TargetARN"],
1750
- "members":{
1751
- "TargetARN":{"shape":"TargetARN"}
1752
- }
1753
- },
1754
- "DescribeChapCredentialsOutput":{
1755
- "type":"structure",
1756
- "members":{
1757
- "ChapCredentials":{"shape":"ChapCredentials"}
1758
- }
1759
- },
1760
- "DescribeGatewayInformationInput":{
1761
- "type":"structure",
1762
- "required":["GatewayARN"],
1763
- "members":{
1764
- "GatewayARN":{"shape":"GatewayARN"}
1765
- }
1766
- },
1767
- "DescribeGatewayInformationOutput":{
1768
- "type":"structure",
1769
- "members":{
1770
- "GatewayARN":{"shape":"GatewayARN"},
1771
- "GatewayId":{"shape":"GatewayId"},
1772
- "GatewayName":{"shape":"string"},
1773
- "GatewayTimezone":{"shape":"GatewayTimezone"},
1774
- "GatewayState":{"shape":"GatewayState"},
1775
- "GatewayNetworkInterfaces":{"shape":"GatewayNetworkInterfaces"},
1776
- "GatewayType":{"shape":"GatewayType"},
1777
- "NextUpdateAvailabilityDate":{"shape":"NextUpdateAvailabilityDate"},
1778
- "LastSoftwareUpdate":{"shape":"LastSoftwareUpdate"},
1779
- "Ec2InstanceId":{"shape":"Ec2InstanceId"},
1780
- "Ec2InstanceRegion":{"shape":"Ec2InstanceRegion"},
1781
- "Tags":{"shape":"Tags"},
1782
- "VPCEndpoint":{"shape":"string"},
1783
- "CloudWatchLogGroupARN":{"shape":"CloudWatchLogGroupARN"},
1784
- "HostEnvironment":{"shape":"HostEnvironment"}
1785
- }
1786
- },
1787
- "DescribeMaintenanceStartTimeInput":{
1788
- "type":"structure",
1789
- "required":["GatewayARN"],
1790
- "members":{
1791
- "GatewayARN":{"shape":"GatewayARN"}
1792
- }
1793
- },
1794
- "DescribeMaintenanceStartTimeOutput":{
1795
- "type":"structure",
1796
- "members":{
1797
- "GatewayARN":{"shape":"GatewayARN"},
1798
- "HourOfDay":{"shape":"HourOfDay"},
1799
- "MinuteOfHour":{"shape":"MinuteOfHour"},
1800
- "DayOfWeek":{"shape":"DayOfWeek"},
1801
- "DayOfMonth":{"shape":"DayOfMonth"},
1802
- "Timezone":{"shape":"GatewayTimezone"}
1803
- }
1804
- },
1805
- "DescribeNFSFileSharesInput":{
1806
- "type":"structure",
1807
- "required":["FileShareARNList"],
1808
- "members":{
1809
- "FileShareARNList":{"shape":"FileShareARNList"}
1810
- }
1811
- },
1812
- "DescribeNFSFileSharesOutput":{
1813
- "type":"structure",
1814
- "members":{
1815
- "NFSFileShareInfoList":{"shape":"NFSFileShareInfoList"}
1816
- }
1817
- },
1818
- "DescribeSMBFileSharesInput":{
1819
- "type":"structure",
1820
- "required":["FileShareARNList"],
1821
- "members":{
1822
- "FileShareARNList":{"shape":"FileShareARNList"}
1823
- }
1824
- },
1825
- "DescribeSMBFileSharesOutput":{
1826
- "type":"structure",
1827
- "members":{
1828
- "SMBFileShareInfoList":{"shape":"SMBFileShareInfoList"}
1829
- }
1830
- },
1831
- "DescribeSMBSettingsInput":{
1832
- "type":"structure",
1833
- "required":["GatewayARN"],
1834
- "members":{
1835
- "GatewayARN":{"shape":"GatewayARN"}
1836
- }
1837
- },
1838
- "DescribeSMBSettingsOutput":{
1839
- "type":"structure",
1840
- "members":{
1841
- "GatewayARN":{"shape":"GatewayARN"},
1842
- "DomainName":{"shape":"DomainName"},
1843
- "ActiveDirectoryStatus":{"shape":"ActiveDirectoryStatus"},
1844
- "SMBGuestPasswordSet":{"shape":"Boolean"},
1845
- "SMBSecurityStrategy":{"shape":"SMBSecurityStrategy"}
1846
- }
1847
- },
1848
- "DescribeSnapshotScheduleInput":{
1849
- "type":"structure",
1850
- "required":["VolumeARN"],
1851
- "members":{
1852
- "VolumeARN":{"shape":"VolumeARN"}
1853
- }
1854
- },
1855
- "DescribeSnapshotScheduleOutput":{
1856
- "type":"structure",
1857
- "members":{
1858
- "VolumeARN":{"shape":"VolumeARN"},
1859
- "StartAt":{"shape":"HourOfDay"},
1860
- "RecurrenceInHours":{"shape":"RecurrenceInHours"},
1861
- "Description":{"shape":"Description"},
1862
- "Timezone":{"shape":"GatewayTimezone"},
1863
- "Tags":{"shape":"Tags"}
1864
- }
1865
- },
1866
- "DescribeStorediSCSIVolumesInput":{
1867
- "type":"structure",
1868
- "required":["VolumeARNs"],
1869
- "members":{
1870
- "VolumeARNs":{"shape":"VolumeARNs"}
1871
- }
1872
- },
1873
- "DescribeStorediSCSIVolumesOutput":{
1874
- "type":"structure",
1875
- "members":{
1876
- "StorediSCSIVolumes":{"shape":"StorediSCSIVolumes"}
1877
- }
1878
- },
1879
- "DescribeTapeArchivesInput":{
1880
- "type":"structure",
1881
- "members":{
1882
- "TapeARNs":{"shape":"TapeARNs"},
1883
- "Marker":{"shape":"Marker"},
1884
- "Limit":{"shape":"PositiveIntObject"}
1885
- }
1886
- },
1887
- "DescribeTapeArchivesOutput":{
1888
- "type":"structure",
1889
- "members":{
1890
- "TapeArchives":{"shape":"TapeArchives"},
1891
- "Marker":{"shape":"Marker"}
1892
- }
1893
- },
1894
- "DescribeTapeRecoveryPointsInput":{
1895
- "type":"structure",
1896
- "required":["GatewayARN"],
1897
- "members":{
1898
- "GatewayARN":{"shape":"GatewayARN"},
1899
- "Marker":{"shape":"Marker"},
1900
- "Limit":{"shape":"PositiveIntObject"}
1901
- }
1902
- },
1903
- "DescribeTapeRecoveryPointsOutput":{
1904
- "type":"structure",
1905
- "members":{
1906
- "GatewayARN":{"shape":"GatewayARN"},
1907
- "TapeRecoveryPointInfos":{"shape":"TapeRecoveryPointInfos"},
1908
- "Marker":{"shape":"Marker"}
1909
- }
1910
- },
1911
- "DescribeTapesInput":{
1912
- "type":"structure",
1913
- "required":["GatewayARN"],
1914
- "members":{
1915
- "GatewayARN":{"shape":"GatewayARN"},
1916
- "TapeARNs":{"shape":"TapeARNs"},
1917
- "Marker":{"shape":"Marker"},
1918
- "Limit":{"shape":"PositiveIntObject"}
1919
- }
1920
- },
1921
- "DescribeTapesOutput":{
1922
- "type":"structure",
1923
- "members":{
1924
- "Tapes":{"shape":"Tapes"},
1925
- "Marker":{"shape":"Marker"}
1926
- }
1927
- },
1928
- "DescribeUploadBufferInput":{
1929
- "type":"structure",
1930
- "required":["GatewayARN"],
1931
- "members":{
1932
- "GatewayARN":{"shape":"GatewayARN"}
1933
- }
1934
- },
1935
- "DescribeUploadBufferOutput":{
1936
- "type":"structure",
1937
- "members":{
1938
- "GatewayARN":{"shape":"GatewayARN"},
1939
- "DiskIds":{"shape":"DiskIds"},
1940
- "UploadBufferUsedInBytes":{"shape":"long"},
1941
- "UploadBufferAllocatedInBytes":{"shape":"long"}
1942
- }
1943
- },
1944
- "DescribeVTLDevicesInput":{
1945
- "type":"structure",
1946
- "required":["GatewayARN"],
1947
- "members":{
1948
- "GatewayARN":{"shape":"GatewayARN"},
1949
- "VTLDeviceARNs":{"shape":"VTLDeviceARNs"},
1950
- "Marker":{"shape":"Marker"},
1951
- "Limit":{"shape":"PositiveIntObject"}
1952
- }
1953
- },
1954
- "DescribeVTLDevicesOutput":{
1955
- "type":"structure",
1956
- "members":{
1957
- "GatewayARN":{"shape":"GatewayARN"},
1958
- "VTLDevices":{"shape":"VTLDevices"},
1959
- "Marker":{"shape":"Marker"}
1960
- }
1961
- },
1962
- "DescribeWorkingStorageInput":{
1963
- "type":"structure",
1964
- "required":["GatewayARN"],
1965
- "members":{
1966
- "GatewayARN":{"shape":"GatewayARN"}
1967
- }
1968
- },
1969
- "DescribeWorkingStorageOutput":{
1970
- "type":"structure",
1971
- "members":{
1972
- "GatewayARN":{"shape":"GatewayARN"},
1973
- "DiskIds":{"shape":"DiskIds"},
1974
- "WorkingStorageUsedInBytes":{"shape":"long"},
1975
- "WorkingStorageAllocatedInBytes":{"shape":"long"}
1976
- }
1977
- },
1978
- "Description":{
1979
- "type":"string",
1980
- "max":255,
1981
- "min":1
1982
- },
1983
- "DetachVolumeInput":{
1984
- "type":"structure",
1985
- "required":["VolumeARN"],
1986
- "members":{
1987
- "VolumeARN":{"shape":"VolumeARN"},
1988
- "ForceDetach":{"shape":"Boolean"}
1989
- }
1990
- },
1991
- "DetachVolumeOutput":{
1992
- "type":"structure",
1993
- "members":{
1994
- "VolumeARN":{"shape":"VolumeARN"}
1995
- }
1996
- },
1997
- "DeviceType":{
1998
- "type":"string",
1999
- "max":50,
2000
- "min":2
2001
- },
2002
- "DeviceiSCSIAttributes":{
2003
- "type":"structure",
2004
- "members":{
2005
- "TargetARN":{"shape":"TargetARN"},
2006
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
2007
- "NetworkInterfacePort":{"shape":"integer"},
2008
- "ChapEnabled":{"shape":"boolean"}
2009
- }
2010
- },
2011
- "DisableGatewayInput":{
2012
- "type":"structure",
2013
- "required":["GatewayARN"],
2014
- "members":{
2015
- "GatewayARN":{"shape":"GatewayARN"}
2016
- }
2017
- },
2018
- "DisableGatewayOutput":{
2019
- "type":"structure",
2020
- "members":{
2021
- "GatewayARN":{"shape":"GatewayARN"}
2022
- }
2023
- },
2024
- "Disk":{
2025
- "type":"structure",
2026
- "members":{
2027
- "DiskId":{"shape":"DiskId"},
2028
- "DiskPath":{"shape":"string"},
2029
- "DiskNode":{"shape":"string"},
2030
- "DiskStatus":{"shape":"string"},
2031
- "DiskSizeInBytes":{"shape":"long"},
2032
- "DiskAllocationType":{"shape":"DiskAllocationType"},
2033
- "DiskAllocationResource":{"shape":"string"},
2034
- "DiskAttributeList":{"shape":"DiskAttributeList"}
2035
- }
2036
- },
2037
- "DiskAllocationType":{
2038
- "type":"string",
2039
- "max":100,
2040
- "min":3
2041
- },
2042
- "DiskAttribute":{
2043
- "type":"string",
2044
- "max":64,
2045
- "min":1
2046
- },
2047
- "DiskAttributeList":{
2048
- "type":"list",
2049
- "member":{"shape":"DiskAttribute"},
2050
- "max":10,
2051
- "min":0
2052
- },
2053
- "DiskId":{
2054
- "type":"string",
2055
- "max":300,
2056
- "min":1
2057
- },
2058
- "DiskIds":{
2059
- "type":"list",
2060
- "member":{"shape":"DiskId"}
2061
- },
2062
- "Disks":{
2063
- "type":"list",
2064
- "member":{"shape":"Disk"}
2065
- },
2066
- "DomainName":{
2067
- "type":"string",
2068
- "max":1024,
2069
- "min":1,
2070
- "pattern":"^([a-z0-9]+(-[a-z0-9]+)*\\.)+[a-z]{2,}$"
2071
- },
2072
- "DomainUserName":{
2073
- "type":"string",
2074
- "max":1024,
2075
- "min":1,
2076
- "pattern":"^\\w[\\w\\.\\- ]*$"
2077
- },
2078
- "DomainUserPassword":{
2079
- "type":"string",
2080
- "max":1024,
2081
- "min":1,
2082
- "pattern":"^[ -~]+$",
2083
- "sensitive":true
2084
- },
2085
- "DoubleObject":{"type":"double"},
2086
- "Ec2InstanceId":{"type":"string"},
2087
- "Ec2InstanceRegion":{"type":"string"},
2088
- "ErrorCode":{
2089
- "type":"string",
2090
- "enum":[
2091
- "ActivationKeyExpired",
2092
- "ActivationKeyInvalid",
2093
- "ActivationKeyNotFound",
2094
- "GatewayInternalError",
2095
- "GatewayNotConnected",
2096
- "GatewayNotFound",
2097
- "GatewayProxyNetworkConnectionBusy",
2098
- "AuthenticationFailure",
2099
- "BandwidthThrottleScheduleNotFound",
2100
- "Blocked",
2101
- "CannotExportSnapshot",
2102
- "ChapCredentialNotFound",
2103
- "DiskAlreadyAllocated",
2104
- "DiskDoesNotExist",
2105
- "DiskSizeGreaterThanVolumeMaxSize",
2106
- "DiskSizeLessThanVolumeSize",
2107
- "DiskSizeNotGigAligned",
2108
- "DuplicateCertificateInfo",
2109
- "DuplicateSchedule",
2110
- "EndpointNotFound",
2111
- "IAMNotSupported",
2112
- "InitiatorInvalid",
2113
- "InitiatorNotFound",
2114
- "InternalError",
2115
- "InvalidGateway",
2116
- "InvalidEndpoint",
2117
- "InvalidParameters",
2118
- "InvalidSchedule",
2119
- "LocalStorageLimitExceeded",
2120
- "LunAlreadyAllocated ",
2121
- "LunInvalid",
2122
- "JoinDomainInProgress",
2123
- "MaximumContentLengthExceeded",
2124
- "MaximumTapeCartridgeCountExceeded",
2125
- "MaximumVolumeCountExceeded",
2126
- "NetworkConfigurationChanged",
2127
- "NoDisksAvailable",
2128
- "NotImplemented",
2129
- "NotSupported",
2130
- "OperationAborted",
2131
- "OutdatedGateway",
2132
- "ParametersNotImplemented",
2133
- "RegionInvalid",
2134
- "RequestTimeout",
2135
- "ServiceUnavailable",
2136
- "SnapshotDeleted",
2137
- "SnapshotIdInvalid",
2138
- "SnapshotInProgress",
2139
- "SnapshotNotFound",
2140
- "SnapshotScheduleNotFound",
2141
- "StagingAreaFull",
2142
- "StorageFailure",
2143
- "TapeCartridgeNotFound",
2144
- "TargetAlreadyExists",
2145
- "TargetInvalid",
2146
- "TargetNotFound",
2147
- "UnauthorizedOperation",
2148
- "VolumeAlreadyExists",
2149
- "VolumeIdInvalid",
2150
- "VolumeInUse",
2151
- "VolumeNotFound",
2152
- "VolumeNotReady"
2153
- ]
2154
- },
2155
- "FileShareARN":{
2156
- "type":"string",
2157
- "max":500,
2158
- "min":50
2159
- },
2160
- "FileShareARNList":{
2161
- "type":"list",
2162
- "member":{"shape":"FileShareARN"},
2163
- "max":10,
2164
- "min":1
2165
- },
2166
- "FileShareClientList":{
2167
- "type":"list",
2168
- "member":{"shape":"IPV4AddressCIDR"},
2169
- "max":100,
2170
- "min":1
2171
- },
2172
- "FileShareId":{
2173
- "type":"string",
2174
- "max":30,
2175
- "min":12
2176
- },
2177
- "FileShareInfo":{
2178
- "type":"structure",
2179
- "members":{
2180
- "FileShareType":{"shape":"FileShareType"},
2181
- "FileShareARN":{"shape":"FileShareARN"},
2182
- "FileShareId":{"shape":"FileShareId"},
2183
- "FileShareStatus":{"shape":"FileShareStatus"},
2184
- "GatewayARN":{"shape":"GatewayARN"}
2185
- }
2186
- },
2187
- "FileShareInfoList":{
2188
- "type":"list",
2189
- "member":{"shape":"FileShareInfo"}
2190
- },
2191
- "FileShareStatus":{
2192
- "type":"string",
2193
- "max":50,
2194
- "min":3
2195
- },
2196
- "FileShareType":{
2197
- "type":"string",
2198
- "enum":[
2199
- "NFS",
2200
- "SMB"
2201
- ]
2202
- },
2203
- "FileShareUser":{
2204
- "type":"string",
2205
- "max":64,
2206
- "min":1
2207
- },
2208
- "FileShareUserList":{
2209
- "type":"list",
2210
- "member":{"shape":"FileShareUser"},
2211
- "max":100,
2212
- "min":0
2213
- },
2214
- "Folder":{
2215
- "type":"string",
2216
- "max":1024,
2217
- "min":1
2218
- },
2219
- "FolderList":{
2220
- "type":"list",
2221
- "member":{"shape":"Folder"},
2222
- "max":50,
2223
- "min":1
2224
- },
2225
- "GatewayARN":{
2226
- "type":"string",
2227
- "max":500,
2228
- "min":50
2229
- },
2230
- "GatewayId":{
2231
- "type":"string",
2232
- "max":30,
2233
- "min":12
2234
- },
2235
- "GatewayInfo":{
2236
- "type":"structure",
2237
- "members":{
2238
- "GatewayId":{"shape":"GatewayId"},
2239
- "GatewayARN":{"shape":"GatewayARN"},
2240
- "GatewayType":{"shape":"GatewayType"},
2241
- "GatewayOperationalState":{"shape":"GatewayOperationalState"},
2242
- "GatewayName":{"shape":"string"},
2243
- "Ec2InstanceId":{"shape":"Ec2InstanceId"},
2244
- "Ec2InstanceRegion":{"shape":"Ec2InstanceRegion"}
2245
- }
2246
- },
2247
- "GatewayName":{
2248
- "type":"string",
2249
- "max":255,
2250
- "min":2,
2251
- "pattern":"^[ -\\.0-\\[\\]-~]*[!-\\.0-\\[\\]-~][ -\\.0-\\[\\]-~]*$"
2252
- },
2253
- "GatewayNetworkInterfaces":{
2254
- "type":"list",
2255
- "member":{"shape":"NetworkInterface"}
2256
- },
2257
- "GatewayOperationalState":{
2258
- "type":"string",
2259
- "max":25,
2260
- "min":2
2261
- },
2262
- "GatewayState":{
2263
- "type":"string",
2264
- "max":25,
2265
- "min":2
2266
- },
2267
- "GatewayTimezone":{
2268
- "type":"string",
2269
- "max":10,
2270
- "min":3
2271
- },
2272
- "GatewayType":{
2273
- "type":"string",
2274
- "max":20,
2275
- "min":2
2276
- },
2277
- "Gateways":{
2278
- "type":"list",
2279
- "member":{"shape":"GatewayInfo"}
2280
- },
2281
- "Host":{
2282
- "type":"string",
2283
- "pattern":"^(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])(:(\\d+))?$"
2284
- },
2285
- "HostEnvironment":{
2286
- "type":"string",
2287
- "enum":[
2288
- "VMWARE",
2289
- "HYPER-V",
2290
- "EC2",
2291
- "KVM",
2292
- "OTHER"
2293
- ]
2294
- },
2295
- "Hosts":{
2296
- "type":"list",
2297
- "member":{"shape":"Host"}
2298
- },
2299
- "HourOfDay":{
2300
- "type":"integer",
2301
- "max":23,
2302
- "min":0
2303
- },
2304
- "IPV4AddressCIDR":{
2305
- "type":"string",
2306
- "pattern":"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\/([0-9]|[1-2][0-9]|3[0-2]))?$"
2307
- },
2308
- "Initiator":{
2309
- "type":"string",
2310
- "max":50,
2311
- "min":1
2312
- },
2313
- "Initiators":{
2314
- "type":"list",
2315
- "member":{"shape":"Initiator"}
2316
- },
2317
- "InternalServerError":{
2318
- "type":"structure",
2319
- "members":{
2320
- "message":{"shape":"string"},
2321
- "error":{"shape":"StorageGatewayError"}
2322
- },
2323
- "exception":true
2324
- },
2325
- "InvalidGatewayRequestException":{
2326
- "type":"structure",
2327
- "members":{
2328
- "message":{"shape":"string"},
2329
- "error":{"shape":"StorageGatewayError"}
2330
- },
2331
- "exception":true
2332
- },
2333
- "IqnName":{
2334
- "type":"string",
2335
- "max":255,
2336
- "min":1,
2337
- "pattern":"[0-9a-z:.-]+"
2338
- },
2339
- "JoinDomainInput":{
2340
- "type":"structure",
2341
- "required":[
2342
- "GatewayARN",
2343
- "DomainName",
2344
- "UserName",
2345
- "Password"
2346
- ],
2347
- "members":{
2348
- "GatewayARN":{"shape":"GatewayARN"},
2349
- "DomainName":{"shape":"DomainName"},
2350
- "OrganizationalUnit":{"shape":"OrganizationalUnit"},
2351
- "DomainControllers":{"shape":"Hosts"},
2352
- "TimeoutInSeconds":{"shape":"TimeoutInSeconds"},
2353
- "UserName":{"shape":"DomainUserName"},
2354
- "Password":{"shape":"DomainUserPassword"}
2355
- }
2356
- },
2357
- "JoinDomainOutput":{
2358
- "type":"structure",
2359
- "members":{
2360
- "GatewayARN":{"shape":"GatewayARN"},
2361
- "ActiveDirectoryStatus":{"shape":"ActiveDirectoryStatus"}
2362
- }
2363
- },
2364
- "KMSKey":{
2365
- "type":"string",
2366
- "max":2048,
2367
- "min":7
2368
- },
2369
- "LastSoftwareUpdate":{
2370
- "type":"string",
2371
- "max":25,
2372
- "min":1
2373
- },
2374
- "ListAutomaticTapeCreationPoliciesInput":{
2375
- "type":"structure",
2376
- "members":{
2377
- "GatewayARN":{"shape":"GatewayARN"}
2378
- }
2379
- },
2380
- "ListAutomaticTapeCreationPoliciesOutput":{
2381
- "type":"structure",
2382
- "members":{
2383
- "AutomaticTapeCreationPolicyInfos":{"shape":"AutomaticTapeCreationPolicyInfos"}
2384
- }
2385
- },
2386
- "ListFileSharesInput":{
2387
- "type":"structure",
2388
- "members":{
2389
- "GatewayARN":{"shape":"GatewayARN"},
2390
- "Limit":{"shape":"PositiveIntObject"},
2391
- "Marker":{"shape":"Marker"}
2392
- }
2393
- },
2394
- "ListFileSharesOutput":{
2395
- "type":"structure",
2396
- "members":{
2397
- "Marker":{"shape":"Marker"},
2398
- "NextMarker":{"shape":"Marker"},
2399
- "FileShareInfoList":{"shape":"FileShareInfoList"}
2400
- }
2401
- },
2402
- "ListGatewaysInput":{
2403
- "type":"structure",
2404
- "members":{
2405
- "Marker":{"shape":"Marker"},
2406
- "Limit":{"shape":"PositiveIntObject"}
2407
- }
2408
- },
2409
- "ListGatewaysOutput":{
2410
- "type":"structure",
2411
- "members":{
2412
- "Gateways":{"shape":"Gateways"},
2413
- "Marker":{"shape":"Marker"}
2414
- }
2415
- },
2416
- "ListLocalDisksInput":{
2417
- "type":"structure",
2418
- "required":["GatewayARN"],
2419
- "members":{
2420
- "GatewayARN":{"shape":"GatewayARN"}
2421
- }
2422
- },
2423
- "ListLocalDisksOutput":{
2424
- "type":"structure",
2425
- "members":{
2426
- "GatewayARN":{"shape":"GatewayARN"},
2427
- "Disks":{"shape":"Disks"}
2428
- }
2429
- },
2430
- "ListTagsForResourceInput":{
2431
- "type":"structure",
2432
- "required":["ResourceARN"],
2433
- "members":{
2434
- "ResourceARN":{"shape":"ResourceARN"},
2435
- "Marker":{"shape":"Marker"},
2436
- "Limit":{"shape":"PositiveIntObject"}
2437
- }
2438
- },
2439
- "ListTagsForResourceOutput":{
2440
- "type":"structure",
2441
- "members":{
2442
- "ResourceARN":{"shape":"ResourceARN"},
2443
- "Marker":{"shape":"Marker"},
2444
- "Tags":{"shape":"Tags"}
2445
- }
2446
- },
2447
- "ListTapesInput":{
2448
- "type":"structure",
2449
- "members":{
2450
- "TapeARNs":{"shape":"TapeARNs"},
2451
- "Marker":{"shape":"Marker"},
2452
- "Limit":{"shape":"PositiveIntObject"}
2453
- }
2454
- },
2455
- "ListTapesOutput":{
2456
- "type":"structure",
2457
- "members":{
2458
- "TapeInfos":{"shape":"TapeInfos"},
2459
- "Marker":{"shape":"Marker"}
2460
- }
2461
- },
2462
- "ListVolumeInitiatorsInput":{
2463
- "type":"structure",
2464
- "required":["VolumeARN"],
2465
- "members":{
2466
- "VolumeARN":{"shape":"VolumeARN"}
2467
- }
2468
- },
2469
- "ListVolumeInitiatorsOutput":{
2470
- "type":"structure",
2471
- "members":{
2472
- "Initiators":{"shape":"Initiators"}
2473
- }
2474
- },
2475
- "ListVolumeRecoveryPointsInput":{
2476
- "type":"structure",
2477
- "required":["GatewayARN"],
2478
- "members":{
2479
- "GatewayARN":{"shape":"GatewayARN"}
2480
- }
2481
- },
2482
- "ListVolumeRecoveryPointsOutput":{
2483
- "type":"structure",
2484
- "members":{
2485
- "GatewayARN":{"shape":"GatewayARN"},
2486
- "VolumeRecoveryPointInfos":{"shape":"VolumeRecoveryPointInfos"}
2487
- }
2488
- },
2489
- "ListVolumesInput":{
2490
- "type":"structure",
2491
- "members":{
2492
- "GatewayARN":{"shape":"GatewayARN"},
2493
- "Marker":{"shape":"Marker"},
2494
- "Limit":{"shape":"PositiveIntObject"}
2495
- }
2496
- },
2497
- "ListVolumesOutput":{
2498
- "type":"structure",
2499
- "members":{
2500
- "GatewayARN":{"shape":"GatewayARN"},
2501
- "Marker":{"shape":"Marker"},
2502
- "VolumeInfos":{"shape":"VolumeInfos"}
2503
- }
2504
- },
2505
- "LocalConsolePassword":{
2506
- "type":"string",
2507
- "max":512,
2508
- "min":6,
2509
- "pattern":"^[ -~]+$",
2510
- "sensitive":true
2511
- },
2512
- "LocationARN":{
2513
- "type":"string",
2514
- "max":310,
2515
- "min":16
2516
- },
2517
- "Marker":{
2518
- "type":"string",
2519
- "max":1000,
2520
- "min":1
2521
- },
2522
- "MediumChangerType":{
2523
- "type":"string",
2524
- "max":50,
2525
- "min":2
2526
- },
2527
- "MinimumNumTapes":{
2528
- "type":"integer",
2529
- "max":10,
2530
- "min":1
2531
- },
2532
- "MinuteOfHour":{
2533
- "type":"integer",
2534
- "max":59,
2535
- "min":0
2536
- },
2537
- "NFSFileShareDefaults":{
2538
- "type":"structure",
2539
- "members":{
2540
- "FileMode":{"shape":"PermissionMode"},
2541
- "DirectoryMode":{"shape":"PermissionMode"},
2542
- "GroupId":{"shape":"PermissionId"},
2543
- "OwnerId":{"shape":"PermissionId"}
2544
- }
2545
- },
2546
- "NFSFileShareInfo":{
2547
- "type":"structure",
2548
- "members":{
2549
- "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
2550
- "FileShareARN":{"shape":"FileShareARN"},
2551
- "FileShareId":{"shape":"FileShareId"},
2552
- "FileShareStatus":{"shape":"FileShareStatus"},
2553
- "GatewayARN":{"shape":"GatewayARN"},
2554
- "KMSEncrypted":{"shape":"boolean"},
2555
- "KMSKey":{"shape":"KMSKey"},
2556
- "Path":{"shape":"Path"},
2557
- "Role":{"shape":"Role"},
2558
- "LocationARN":{"shape":"LocationARN"},
2559
- "DefaultStorageClass":{"shape":"StorageClass"},
2560
- "ObjectACL":{"shape":"ObjectACL"},
2561
- "ClientList":{"shape":"FileShareClientList"},
2562
- "Squash":{"shape":"Squash"},
2563
- "ReadOnly":{"shape":"Boolean"},
2564
- "GuessMIMETypeEnabled":{"shape":"Boolean"},
2565
- "RequesterPays":{"shape":"Boolean"},
2566
- "Tags":{"shape":"Tags"}
2567
- }
2568
- },
2569
- "NFSFileShareInfoList":{
2570
- "type":"list",
2571
- "member":{"shape":"NFSFileShareInfo"}
2572
- },
2573
- "NetworkInterface":{
2574
- "type":"structure",
2575
- "members":{
2576
- "Ipv4Address":{"shape":"string"},
2577
- "MacAddress":{"shape":"string"},
2578
- "Ipv6Address":{"shape":"string"}
2579
- }
2580
- },
2581
- "NetworkInterfaceId":{
2582
- "type":"string",
2583
- "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"
2584
- },
2585
- "NextUpdateAvailabilityDate":{
2586
- "type":"string",
2587
- "max":25,
2588
- "min":1
2589
- },
2590
- "NotificationId":{
2591
- "type":"string",
2592
- "max":2048,
2593
- "min":1
2594
- },
2595
- "NotifyWhenUploadedInput":{
2596
- "type":"structure",
2597
- "required":["FileShareARN"],
2598
- "members":{
2599
- "FileShareARN":{"shape":"FileShareARN"}
2600
- }
2601
- },
2602
- "NotifyWhenUploadedOutput":{
2603
- "type":"structure",
2604
- "members":{
2605
- "FileShareARN":{"shape":"FileShareARN"},
2606
- "NotificationId":{"shape":"NotificationId"}
2607
- }
2608
- },
2609
- "NumTapesToCreate":{
2610
- "type":"integer",
2611
- "max":10,
2612
- "min":1
2613
- },
2614
- "ObjectACL":{
2615
- "type":"string",
2616
- "enum":[
2617
- "private",
2618
- "public-read",
2619
- "public-read-write",
2620
- "authenticated-read",
2621
- "bucket-owner-read",
2622
- "bucket-owner-full-control",
2623
- "aws-exec-read"
2624
- ]
2625
- },
2626
- "OrganizationalUnit":{
2627
- "type":"string",
2628
- "max":1024,
2629
- "min":1
2630
- },
2631
- "Path":{"type":"string"},
2632
- "PermissionId":{
2633
- "type":"long",
2634
- "max":4294967294,
2635
- "min":0
2636
- },
2637
- "PermissionMode":{
2638
- "type":"string",
2639
- "max":4,
2640
- "min":1,
2641
- "pattern":"^[0-7]{4}$"
2642
- },
2643
- "PoolId":{
2644
- "type":"string",
2645
- "max":100,
2646
- "min":1
2647
- },
2648
- "PositiveIntObject":{
2649
- "type":"integer",
2650
- "min":1
2651
- },
2652
- "RecurrenceInHours":{
2653
- "type":"integer",
2654
- "max":24,
2655
- "min":1
2656
- },
2657
- "RefreshCacheInput":{
2658
- "type":"structure",
2659
- "required":["FileShareARN"],
2660
- "members":{
2661
- "FileShareARN":{"shape":"FileShareARN"},
2662
- "FolderList":{"shape":"FolderList"},
2663
- "Recursive":{"shape":"Boolean"}
2664
- }
2665
- },
2666
- "RefreshCacheOutput":{
2667
- "type":"structure",
2668
- "members":{
2669
- "FileShareARN":{"shape":"FileShareARN"},
2670
- "NotificationId":{"shape":"NotificationId"}
2671
- }
2672
- },
2673
- "RegionId":{
2674
- "type":"string",
2675
- "max":25,
2676
- "min":1
2677
- },
2678
- "RemoveTagsFromResourceInput":{
2679
- "type":"structure",
2680
- "required":[
2681
- "ResourceARN",
2682
- "TagKeys"
2683
- ],
2684
- "members":{
2685
- "ResourceARN":{"shape":"ResourceARN"},
2686
- "TagKeys":{"shape":"TagKeys"}
2687
- }
2688
- },
2689
- "RemoveTagsFromResourceOutput":{
2690
- "type":"structure",
2691
- "members":{
2692
- "ResourceARN":{"shape":"ResourceARN"}
2693
- }
2694
- },
2695
- "ResetCacheInput":{
2696
- "type":"structure",
2697
- "required":["GatewayARN"],
2698
- "members":{
2699
- "GatewayARN":{"shape":"GatewayARN"}
2700
- }
2701
- },
2702
- "ResetCacheOutput":{
2703
- "type":"structure",
2704
- "members":{
2705
- "GatewayARN":{"shape":"GatewayARN"}
2706
- }
2707
- },
2708
- "ResourceARN":{
2709
- "type":"string",
2710
- "max":500,
2711
- "min":50
2712
- },
2713
- "RetrieveTapeArchiveInput":{
2714
- "type":"structure",
2715
- "required":[
2716
- "TapeARN",
2717
- "GatewayARN"
2718
- ],
2719
- "members":{
2720
- "TapeARN":{"shape":"TapeARN"},
2721
- "GatewayARN":{"shape":"GatewayARN"}
2722
- }
2723
- },
2724
- "RetrieveTapeArchiveOutput":{
2725
- "type":"structure",
2726
- "members":{
2727
- "TapeARN":{"shape":"TapeARN"}
2728
- }
2729
- },
2730
- "RetrieveTapeRecoveryPointInput":{
2731
- "type":"structure",
2732
- "required":[
2733
- "TapeARN",
2734
- "GatewayARN"
2735
- ],
2736
- "members":{
2737
- "TapeARN":{"shape":"TapeARN"},
2738
- "GatewayARN":{"shape":"GatewayARN"}
2739
- }
2740
- },
2741
- "RetrieveTapeRecoveryPointOutput":{
2742
- "type":"structure",
2743
- "members":{
2744
- "TapeARN":{"shape":"TapeARN"}
2745
- }
2746
- },
2747
- "Role":{
2748
- "type":"string",
2749
- "max":2048,
2750
- "min":20
2751
- },
2752
- "SMBFileShareInfo":{
2753
- "type":"structure",
2754
- "members":{
2755
- "FileShareARN":{"shape":"FileShareARN"},
2756
- "FileShareId":{"shape":"FileShareId"},
2757
- "FileShareStatus":{"shape":"FileShareStatus"},
2758
- "GatewayARN":{"shape":"GatewayARN"},
2759
- "KMSEncrypted":{"shape":"boolean"},
2760
- "KMSKey":{"shape":"KMSKey"},
2761
- "Path":{"shape":"Path"},
2762
- "Role":{"shape":"Role"},
2763
- "LocationARN":{"shape":"LocationARN"},
2764
- "DefaultStorageClass":{"shape":"StorageClass"},
2765
- "ObjectACL":{"shape":"ObjectACL"},
2766
- "ReadOnly":{"shape":"Boolean"},
2767
- "GuessMIMETypeEnabled":{"shape":"Boolean"},
2768
- "RequesterPays":{"shape":"Boolean"},
2769
- "SMBACLEnabled":{"shape":"Boolean"},
2770
- "AdminUserList":{"shape":"FileShareUserList"},
2771
- "ValidUserList":{"shape":"FileShareUserList"},
2772
- "InvalidUserList":{"shape":"FileShareUserList"},
2773
- "AuditDestinationARN":{"shape":"AuditDestinationARN"},
2774
- "Authentication":{"shape":"Authentication"},
2775
- "Tags":{"shape":"Tags"}
2776
- }
2777
- },
2778
- "SMBFileShareInfoList":{
2779
- "type":"list",
2780
- "member":{"shape":"SMBFileShareInfo"}
2781
- },
2782
- "SMBGuestPassword":{
2783
- "type":"string",
2784
- "max":512,
2785
- "min":6,
2786
- "pattern":"^[ -~]+$",
2787
- "sensitive":true
2788
- },
2789
- "SMBSecurityStrategy":{
2790
- "type":"string",
2791
- "enum":[
2792
- "ClientSpecified",
2793
- "MandatorySigning",
2794
- "MandatoryEncryption"
2795
- ]
2796
- },
2797
- "ServiceUnavailableError":{
2798
- "type":"structure",
2799
- "members":{
2800
- "message":{"shape":"string"},
2801
- "error":{"shape":"StorageGatewayError"}
2802
- },
2803
- "exception":true
2804
- },
2805
- "SetLocalConsolePasswordInput":{
2806
- "type":"structure",
2807
- "required":[
2808
- "GatewayARN",
2809
- "LocalConsolePassword"
2810
- ],
2811
- "members":{
2812
- "GatewayARN":{"shape":"GatewayARN"},
2813
- "LocalConsolePassword":{"shape":"LocalConsolePassword"}
2814
- }
2815
- },
2816
- "SetLocalConsolePasswordOutput":{
2817
- "type":"structure",
2818
- "members":{
2819
- "GatewayARN":{"shape":"GatewayARN"}
2820
- }
2821
- },
2822
- "SetSMBGuestPasswordInput":{
2823
- "type":"structure",
2824
- "required":[
2825
- "GatewayARN",
2826
- "Password"
2827
- ],
2828
- "members":{
2829
- "GatewayARN":{"shape":"GatewayARN"},
2830
- "Password":{"shape":"SMBGuestPassword"}
2831
- }
2832
- },
2833
- "SetSMBGuestPasswordOutput":{
2834
- "type":"structure",
2835
- "members":{
2836
- "GatewayARN":{"shape":"GatewayARN"}
2837
- }
2838
- },
2839
- "ShutdownGatewayInput":{
2840
- "type":"structure",
2841
- "required":["GatewayARN"],
2842
- "members":{
2843
- "GatewayARN":{"shape":"GatewayARN"}
2844
- }
2845
- },
2846
- "ShutdownGatewayOutput":{
2847
- "type":"structure",
2848
- "members":{
2849
- "GatewayARN":{"shape":"GatewayARN"}
2850
- }
2851
- },
2852
- "SnapshotDescription":{
2853
- "type":"string",
2854
- "max":255,
2855
- "min":1
2856
- },
2857
- "SnapshotId":{
2858
- "type":"string",
2859
- "pattern":"\\Asnap-([0-9A-Fa-f]{8}|[0-9A-Fa-f]{17})\\z"
2860
- },
2861
- "Squash":{
2862
- "type":"string",
2863
- "max":15,
2864
- "min":5
2865
- },
2866
- "StartAvailabilityMonitorTestInput":{
2867
- "type":"structure",
2868
- "required":["GatewayARN"],
2869
- "members":{
2870
- "GatewayARN":{"shape":"GatewayARN"}
2871
- }
2872
- },
2873
- "StartAvailabilityMonitorTestOutput":{
2874
- "type":"structure",
2875
- "members":{
2876
- "GatewayARN":{"shape":"GatewayARN"}
2877
- }
2878
- },
2879
- "StartGatewayInput":{
2880
- "type":"structure",
2881
- "required":["GatewayARN"],
2882
- "members":{
2883
- "GatewayARN":{"shape":"GatewayARN"}
2884
- }
2885
- },
2886
- "StartGatewayOutput":{
2887
- "type":"structure",
2888
- "members":{
2889
- "GatewayARN":{"shape":"GatewayARN"}
2890
- }
2891
- },
2892
- "StorageClass":{
2893
- "type":"string",
2894
- "max":50,
2895
- "min":5
2896
- },
2897
- "StorageGatewayError":{
2898
- "type":"structure",
2899
- "members":{
2900
- "errorCode":{"shape":"ErrorCode"},
2901
- "errorDetails":{"shape":"errorDetails"}
2902
- }
2903
- },
2904
- "StorediSCSIVolume":{
2905
- "type":"structure",
2906
- "members":{
2907
- "VolumeARN":{"shape":"VolumeARN"},
2908
- "VolumeId":{"shape":"VolumeId"},
2909
- "VolumeType":{"shape":"VolumeType"},
2910
- "VolumeStatus":{"shape":"VolumeStatus"},
2911
- "VolumeAttachmentStatus":{"shape":"VolumeAttachmentStatus"},
2912
- "VolumeSizeInBytes":{"shape":"long"},
2913
- "VolumeProgress":{"shape":"DoubleObject"},
2914
- "VolumeDiskId":{"shape":"DiskId"},
2915
- "SourceSnapshotId":{"shape":"SnapshotId"},
2916
- "PreservedExistingData":{"shape":"boolean"},
2917
- "VolumeiSCSIAttributes":{"shape":"VolumeiSCSIAttributes"},
2918
- "CreatedDate":{"shape":"CreatedDate"},
2919
- "VolumeUsedInBytes":{"shape":"VolumeUsedInBytes"},
2920
- "KMSKey":{"shape":"KMSKey"},
2921
- "TargetName":{"shape":"TargetName"}
2922
- }
2923
- },
2924
- "StorediSCSIVolumes":{
2925
- "type":"list",
2926
- "member":{"shape":"StorediSCSIVolume"}
2927
- },
2928
- "Tag":{
2929
- "type":"structure",
2930
- "required":[
2931
- "Key",
2932
- "Value"
2933
- ],
2934
- "members":{
2935
- "Key":{"shape":"TagKey"},
2936
- "Value":{"shape":"TagValue"}
2937
- }
2938
- },
2939
- "TagKey":{
2940
- "type":"string",
2941
- "max":128,
2942
- "min":1,
2943
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2944
- },
2945
- "TagKeys":{
2946
- "type":"list",
2947
- "member":{"shape":"TagKey"}
2948
- },
2949
- "TagValue":{
2950
- "type":"string",
2951
- "max":256
2952
- },
2953
- "Tags":{
2954
- "type":"list",
2955
- "member":{"shape":"Tag"}
2956
- },
2957
- "Tape":{
2958
- "type":"structure",
2959
- "members":{
2960
- "TapeARN":{"shape":"TapeARN"},
2961
- "TapeBarcode":{"shape":"TapeBarcode"},
2962
- "TapeCreatedDate":{"shape":"Time"},
2963
- "TapeSizeInBytes":{"shape":"TapeSize"},
2964
- "TapeStatus":{"shape":"TapeStatus"},
2965
- "VTLDevice":{"shape":"VTLDeviceARN"},
2966
- "Progress":{"shape":"DoubleObject"},
2967
- "TapeUsedInBytes":{"shape":"TapeUsage"},
2968
- "KMSKey":{"shape":"KMSKey"},
2969
- "PoolId":{"shape":"PoolId"}
2970
- }
2971
- },
2972
- "TapeARN":{
2973
- "type":"string",
2974
- "max":500,
2975
- "min":50,
2976
- "pattern":"^arn:(aws|aws-cn|aws-us-gov):storagegateway:[a-z\\-0-9]+:[0-9]+:tape\\/[0-9A-Z]{7,16}$"
2977
- },
2978
- "TapeARNs":{
2979
- "type":"list",
2980
- "member":{"shape":"TapeARN"}
2981
- },
2982
- "TapeArchive":{
2983
- "type":"structure",
2984
- "members":{
2985
- "TapeARN":{"shape":"TapeARN"},
2986
- "TapeBarcode":{"shape":"TapeBarcode"},
2987
- "TapeCreatedDate":{"shape":"Time"},
2988
- "TapeSizeInBytes":{"shape":"TapeSize"},
2989
- "CompletionTime":{"shape":"Time"},
2990
- "RetrievedTo":{"shape":"GatewayARN"},
2991
- "TapeStatus":{"shape":"TapeArchiveStatus"},
2992
- "TapeUsedInBytes":{"shape":"TapeUsage"},
2993
- "KMSKey":{"shape":"KMSKey"},
2994
- "PoolId":{"shape":"PoolId"}
2995
- }
2996
- },
2997
- "TapeArchiveStatus":{"type":"string"},
2998
- "TapeArchives":{
2999
- "type":"list",
3000
- "member":{"shape":"TapeArchive"}
3001
- },
3002
- "TapeBarcode":{
3003
- "type":"string",
3004
- "max":16,
3005
- "min":7,
3006
- "pattern":"^[A-Z0-9]*$"
3007
- },
3008
- "TapeBarcodePrefix":{
3009
- "type":"string",
3010
- "max":4,
3011
- "min":1,
3012
- "pattern":"^[A-Z]*$"
3013
- },
3014
- "TapeDriveType":{
3015
- "type":"string",
3016
- "max":50,
3017
- "min":2
3018
- },
3019
- "TapeInfo":{
3020
- "type":"structure",
3021
- "members":{
3022
- "TapeARN":{"shape":"TapeARN"},
3023
- "TapeBarcode":{"shape":"TapeBarcode"},
3024
- "TapeSizeInBytes":{"shape":"TapeSize"},
3025
- "TapeStatus":{"shape":"TapeStatus"},
3026
- "GatewayARN":{"shape":"GatewayARN"},
3027
- "PoolId":{"shape":"PoolId"}
3028
- }
3029
- },
3030
- "TapeInfos":{
3031
- "type":"list",
3032
- "member":{"shape":"TapeInfo"}
3033
- },
3034
- "TapeRecoveryPointInfo":{
3035
- "type":"structure",
3036
- "members":{
3037
- "TapeARN":{"shape":"TapeARN"},
3038
- "TapeRecoveryPointTime":{"shape":"Time"},
3039
- "TapeSizeInBytes":{"shape":"TapeSize"},
3040
- "TapeStatus":{"shape":"TapeRecoveryPointStatus"}
3041
- }
3042
- },
3043
- "TapeRecoveryPointInfos":{
3044
- "type":"list",
3045
- "member":{"shape":"TapeRecoveryPointInfo"}
3046
- },
3047
- "TapeRecoveryPointStatus":{"type":"string"},
3048
- "TapeSize":{"type":"long"},
3049
- "TapeStatus":{"type":"string"},
3050
- "TapeUsage":{"type":"long"},
3051
- "Tapes":{
3052
- "type":"list",
3053
- "member":{"shape":"Tape"}
3054
- },
3055
- "TargetARN":{
3056
- "type":"string",
3057
- "max":800,
3058
- "min":50
3059
- },
3060
- "TargetName":{
3061
- "type":"string",
3062
- "max":200,
3063
- "min":1,
3064
- "pattern":"^[-\\.;a-z0-9]+$"
3065
- },
3066
- "Time":{"type":"timestamp"},
3067
- "TimeoutInSeconds":{
3068
- "type":"integer",
3069
- "max":3600,
3070
- "min":0
3071
- },
3072
- "UpdateAutomaticTapeCreationPolicyInput":{
3073
- "type":"structure",
3074
- "required":[
3075
- "AutomaticTapeCreationRules",
3076
- "GatewayARN"
3077
- ],
3078
- "members":{
3079
- "AutomaticTapeCreationRules":{"shape":"AutomaticTapeCreationRules"},
3080
- "GatewayARN":{"shape":"GatewayARN"}
3081
- }
3082
- },
3083
- "UpdateAutomaticTapeCreationPolicyOutput":{
3084
- "type":"structure",
3085
- "members":{
3086
- "GatewayARN":{"shape":"GatewayARN"}
3087
- }
3088
- },
3089
- "UpdateBandwidthRateLimitInput":{
3090
- "type":"structure",
3091
- "required":["GatewayARN"],
3092
- "members":{
3093
- "GatewayARN":{"shape":"GatewayARN"},
3094
- "AverageUploadRateLimitInBitsPerSec":{"shape":"BandwidthUploadRateLimit"},
3095
- "AverageDownloadRateLimitInBitsPerSec":{"shape":"BandwidthDownloadRateLimit"}
3096
- }
3097
- },
3098
- "UpdateBandwidthRateLimitOutput":{
3099
- "type":"structure",
3100
- "members":{
3101
- "GatewayARN":{"shape":"GatewayARN"}
3102
- }
3103
- },
3104
- "UpdateChapCredentialsInput":{
3105
- "type":"structure",
3106
- "required":[
3107
- "TargetARN",
3108
- "SecretToAuthenticateInitiator",
3109
- "InitiatorName"
3110
- ],
3111
- "members":{
3112
- "TargetARN":{"shape":"TargetARN"},
3113
- "SecretToAuthenticateInitiator":{"shape":"ChapSecret"},
3114
- "InitiatorName":{"shape":"IqnName"},
3115
- "SecretToAuthenticateTarget":{"shape":"ChapSecret"}
3116
- }
3117
- },
3118
- "UpdateChapCredentialsOutput":{
3119
- "type":"structure",
3120
- "members":{
3121
- "TargetARN":{"shape":"TargetARN"},
3122
- "InitiatorName":{"shape":"IqnName"}
3123
- }
3124
- },
3125
- "UpdateGatewayInformationInput":{
3126
- "type":"structure",
3127
- "required":["GatewayARN"],
3128
- "members":{
3129
- "GatewayARN":{"shape":"GatewayARN"},
3130
- "GatewayName":{"shape":"GatewayName"},
3131
- "GatewayTimezone":{"shape":"GatewayTimezone"},
3132
- "CloudWatchLogGroupARN":{"shape":"CloudWatchLogGroupARN"}
3133
- }
3134
- },
3135
- "UpdateGatewayInformationOutput":{
3136
- "type":"structure",
3137
- "members":{
3138
- "GatewayARN":{"shape":"GatewayARN"},
3139
- "GatewayName":{"shape":"string"}
3140
- }
3141
- },
3142
- "UpdateGatewaySoftwareNowInput":{
3143
- "type":"structure",
3144
- "required":["GatewayARN"],
3145
- "members":{
3146
- "GatewayARN":{"shape":"GatewayARN"}
3147
- }
3148
- },
3149
- "UpdateGatewaySoftwareNowOutput":{
3150
- "type":"structure",
3151
- "members":{
3152
- "GatewayARN":{"shape":"GatewayARN"}
3153
- }
3154
- },
3155
- "UpdateMaintenanceStartTimeInput":{
3156
- "type":"structure",
3157
- "required":[
3158
- "GatewayARN",
3159
- "HourOfDay",
3160
- "MinuteOfHour"
3161
- ],
3162
- "members":{
3163
- "GatewayARN":{"shape":"GatewayARN"},
3164
- "HourOfDay":{"shape":"HourOfDay"},
3165
- "MinuteOfHour":{"shape":"MinuteOfHour"},
3166
- "DayOfWeek":{"shape":"DayOfWeek"},
3167
- "DayOfMonth":{"shape":"DayOfMonth"}
3168
- }
3169
- },
3170
- "UpdateMaintenanceStartTimeOutput":{
3171
- "type":"structure",
3172
- "members":{
3173
- "GatewayARN":{"shape":"GatewayARN"}
3174
- }
3175
- },
3176
- "UpdateNFSFileShareInput":{
3177
- "type":"structure",
3178
- "required":["FileShareARN"],
3179
- "members":{
3180
- "FileShareARN":{"shape":"FileShareARN"},
3181
- "KMSEncrypted":{"shape":"Boolean"},
3182
- "KMSKey":{"shape":"KMSKey"},
3183
- "NFSFileShareDefaults":{"shape":"NFSFileShareDefaults"},
3184
- "DefaultStorageClass":{"shape":"StorageClass"},
3185
- "ObjectACL":{"shape":"ObjectACL"},
3186
- "ClientList":{"shape":"FileShareClientList"},
3187
- "Squash":{"shape":"Squash"},
3188
- "ReadOnly":{"shape":"Boolean"},
3189
- "GuessMIMETypeEnabled":{"shape":"Boolean"},
3190
- "RequesterPays":{"shape":"Boolean"}
3191
- }
3192
- },
3193
- "UpdateNFSFileShareOutput":{
3194
- "type":"structure",
3195
- "members":{
3196
- "FileShareARN":{"shape":"FileShareARN"}
3197
- }
3198
- },
3199
- "UpdateSMBFileShareInput":{
3200
- "type":"structure",
3201
- "required":["FileShareARN"],
3202
- "members":{
3203
- "FileShareARN":{"shape":"FileShareARN"},
3204
- "KMSEncrypted":{"shape":"Boolean"},
3205
- "KMSKey":{"shape":"KMSKey"},
3206
- "DefaultStorageClass":{"shape":"StorageClass"},
3207
- "ObjectACL":{"shape":"ObjectACL"},
3208
- "ReadOnly":{"shape":"Boolean"},
3209
- "GuessMIMETypeEnabled":{"shape":"Boolean"},
3210
- "RequesterPays":{"shape":"Boolean"},
3211
- "SMBACLEnabled":{"shape":"Boolean"},
3212
- "AdminUserList":{"shape":"FileShareUserList"},
3213
- "ValidUserList":{"shape":"FileShareUserList"},
3214
- "InvalidUserList":{"shape":"FileShareUserList"},
3215
- "AuditDestinationARN":{"shape":"AuditDestinationARN"}
3216
- }
3217
- },
3218
- "UpdateSMBFileShareOutput":{
3219
- "type":"structure",
3220
- "members":{
3221
- "FileShareARN":{"shape":"FileShareARN"}
3222
- }
3223
- },
3224
- "UpdateSMBSecurityStrategyInput":{
3225
- "type":"structure",
3226
- "required":[
3227
- "GatewayARN",
3228
- "SMBSecurityStrategy"
3229
- ],
3230
- "members":{
3231
- "GatewayARN":{"shape":"GatewayARN"},
3232
- "SMBSecurityStrategy":{"shape":"SMBSecurityStrategy"}
3233
- }
3234
- },
3235
- "UpdateSMBSecurityStrategyOutput":{
3236
- "type":"structure",
3237
- "members":{
3238
- "GatewayARN":{"shape":"GatewayARN"}
3239
- }
3240
- },
3241
- "UpdateSnapshotScheduleInput":{
3242
- "type":"structure",
3243
- "required":[
3244
- "VolumeARN",
3245
- "StartAt",
3246
- "RecurrenceInHours"
3247
- ],
3248
- "members":{
3249
- "VolumeARN":{"shape":"VolumeARN"},
3250
- "StartAt":{"shape":"HourOfDay"},
3251
- "RecurrenceInHours":{"shape":"RecurrenceInHours"},
3252
- "Description":{"shape":"Description"},
3253
- "Tags":{"shape":"Tags"}
3254
- }
3255
- },
3256
- "UpdateSnapshotScheduleOutput":{
3257
- "type":"structure",
3258
- "members":{
3259
- "VolumeARN":{"shape":"VolumeARN"}
3260
- }
3261
- },
3262
- "UpdateVTLDeviceTypeInput":{
3263
- "type":"structure",
3264
- "required":[
3265
- "VTLDeviceARN",
3266
- "DeviceType"
3267
- ],
3268
- "members":{
3269
- "VTLDeviceARN":{"shape":"VTLDeviceARN"},
3270
- "DeviceType":{"shape":"DeviceType"}
3271
- }
3272
- },
3273
- "UpdateVTLDeviceTypeOutput":{
3274
- "type":"structure",
3275
- "members":{
3276
- "VTLDeviceARN":{"shape":"VTLDeviceARN"}
3277
- }
3278
- },
3279
- "VTLDevice":{
3280
- "type":"structure",
3281
- "members":{
3282
- "VTLDeviceARN":{"shape":"VTLDeviceARN"},
3283
- "VTLDeviceType":{"shape":"VTLDeviceType"},
3284
- "VTLDeviceVendor":{"shape":"VTLDeviceVendor"},
3285
- "VTLDeviceProductIdentifier":{"shape":"VTLDeviceProductIdentifier"},
3286
- "DeviceiSCSIAttributes":{"shape":"DeviceiSCSIAttributes"}
3287
- }
3288
- },
3289
- "VTLDeviceARN":{
3290
- "type":"string",
3291
- "max":500,
3292
- "min":50
3293
- },
3294
- "VTLDeviceARNs":{
3295
- "type":"list",
3296
- "member":{"shape":"VTLDeviceARN"}
3297
- },
3298
- "VTLDeviceProductIdentifier":{"type":"string"},
3299
- "VTLDeviceType":{"type":"string"},
3300
- "VTLDeviceVendor":{"type":"string"},
3301
- "VTLDevices":{
3302
- "type":"list",
3303
- "member":{"shape":"VTLDevice"}
3304
- },
3305
- "VolumeARN":{
3306
- "type":"string",
3307
- "max":500,
3308
- "min":50
3309
- },
3310
- "VolumeARNs":{
3311
- "type":"list",
3312
- "member":{"shape":"VolumeARN"}
3313
- },
3314
- "VolumeAttachmentStatus":{
3315
- "type":"string",
3316
- "max":50,
3317
- "min":3
3318
- },
3319
- "VolumeId":{
3320
- "type":"string",
3321
- "max":30,
3322
- "min":12
3323
- },
3324
- "VolumeInfo":{
3325
- "type":"structure",
3326
- "members":{
3327
- "VolumeARN":{"shape":"VolumeARN"},
3328
- "VolumeId":{"shape":"VolumeId"},
3329
- "GatewayARN":{"shape":"GatewayARN"},
3330
- "GatewayId":{"shape":"GatewayId"},
3331
- "VolumeType":{"shape":"VolumeType"},
3332
- "VolumeSizeInBytes":{"shape":"long"},
3333
- "VolumeAttachmentStatus":{"shape":"VolumeAttachmentStatus"}
3334
- }
3335
- },
3336
- "VolumeInfos":{
3337
- "type":"list",
3338
- "member":{"shape":"VolumeInfo"}
3339
- },
3340
- "VolumeRecoveryPointInfo":{
3341
- "type":"structure",
3342
- "members":{
3343
- "VolumeARN":{"shape":"VolumeARN"},
3344
- "VolumeSizeInBytes":{"shape":"long"},
3345
- "VolumeUsageInBytes":{"shape":"long"},
3346
- "VolumeRecoveryPointTime":{"shape":"string"}
3347
- }
3348
- },
3349
- "VolumeRecoveryPointInfos":{
3350
- "type":"list",
3351
- "member":{"shape":"VolumeRecoveryPointInfo"}
3352
- },
3353
- "VolumeStatus":{
3354
- "type":"string",
3355
- "max":50,
3356
- "min":3
3357
- },
3358
- "VolumeType":{
3359
- "type":"string",
3360
- "max":100,
3361
- "min":3
3362
- },
3363
- "VolumeUsedInBytes":{"type":"long"},
3364
- "VolumeiSCSIAttributes":{
3365
- "type":"structure",
3366
- "members":{
3367
- "TargetARN":{"shape":"TargetARN"},
3368
- "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
3369
- "NetworkInterfacePort":{"shape":"integer"},
3370
- "LunNumber":{"shape":"PositiveIntObject"},
3371
- "ChapEnabled":{"shape":"boolean"}
3372
- }
3373
- },
3374
- "boolean":{"type":"boolean"},
3375
- "double":{"type":"double"},
3376
- "errorDetails":{
3377
- "type":"map",
3378
- "key":{"shape":"string"},
3379
- "value":{"shape":"string"}
3380
- },
3381
- "integer":{"type":"integer"},
3382
- "long":{"type":"long"},
3383
- "string":{"type":"string"}
3384
- }
3385
- }