aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,1674 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-04-16",
5
- "endpointPrefix":"ds",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"Directory Service",
9
- "serviceFullName":"AWS Directory Service",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"DirectoryService_20150416"
12
- },
13
- "operations":{
14
- "AddTagsToResource":{
15
- "name":"AddTagsToResource",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AddTagsToResourceRequest"},
21
- "output":{"shape":"AddTagsToResourceResult"},
22
- "errors":[
23
- {"shape":"EntityDoesNotExistException"},
24
- {"shape":"InvalidParameterException"},
25
- {"shape":"TagLimitExceededException"},
26
- {"shape":"ClientException"},
27
- {"shape":"ServiceException"}
28
- ]
29
- },
30
- "ConnectDirectory":{
31
- "name":"ConnectDirectory",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"ConnectDirectoryRequest"},
37
- "output":{"shape":"ConnectDirectoryResult"},
38
- "errors":[
39
- {"shape":"DirectoryLimitExceededException"},
40
- {"shape":"InvalidParameterException"},
41
- {"shape":"ClientException"},
42
- {"shape":"ServiceException"}
43
- ]
44
- },
45
- "CreateAlias":{
46
- "name":"CreateAlias",
47
- "http":{
48
- "method":"POST",
49
- "requestUri":"/"
50
- },
51
- "input":{"shape":"CreateAliasRequest"},
52
- "output":{"shape":"CreateAliasResult"},
53
- "errors":[
54
- {"shape":"EntityAlreadyExistsException"},
55
- {"shape":"EntityDoesNotExistException"},
56
- {"shape":"InvalidParameterException"},
57
- {"shape":"ClientException"},
58
- {"shape":"ServiceException"}
59
- ]
60
- },
61
- "CreateComputer":{
62
- "name":"CreateComputer",
63
- "http":{
64
- "method":"POST",
65
- "requestUri":"/"
66
- },
67
- "input":{"shape":"CreateComputerRequest"},
68
- "output":{"shape":"CreateComputerResult"},
69
- "errors":[
70
- {"shape":"AuthenticationFailedException"},
71
- {"shape":"DirectoryUnavailableException"},
72
- {"shape":"EntityAlreadyExistsException"},
73
- {"shape":"EntityDoesNotExistException"},
74
- {"shape":"InvalidParameterException"},
75
- {"shape":"UnsupportedOperationException"},
76
- {"shape":"ClientException"},
77
- {"shape":"ServiceException"}
78
- ]
79
- },
80
- "CreateConditionalForwarder":{
81
- "name":"CreateConditionalForwarder",
82
- "http":{
83
- "method":"POST",
84
- "requestUri":"/"
85
- },
86
- "input":{"shape":"CreateConditionalForwarderRequest"},
87
- "output":{"shape":"CreateConditionalForwarderResult"},
88
- "errors":[
89
- {"shape":"EntityAlreadyExistsException"},
90
- {"shape":"EntityDoesNotExistException"},
91
- {"shape":"DirectoryUnavailableException"},
92
- {"shape":"InvalidParameterException"},
93
- {"shape":"UnsupportedOperationException"},
94
- {"shape":"ClientException"},
95
- {"shape":"ServiceException"}
96
- ]
97
- },
98
- "CreateDirectory":{
99
- "name":"CreateDirectory",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"CreateDirectoryRequest"},
105
- "output":{"shape":"CreateDirectoryResult"},
106
- "errors":[
107
- {"shape":"DirectoryLimitExceededException"},
108
- {"shape":"InvalidParameterException"},
109
- {"shape":"ClientException"},
110
- {"shape":"ServiceException"}
111
- ]
112
- },
113
- "CreateMicrosoftAD":{
114
- "name":"CreateMicrosoftAD",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/"
118
- },
119
- "input":{"shape":"CreateMicrosoftADRequest"},
120
- "output":{"shape":"CreateMicrosoftADResult"},
121
- "errors":[
122
- {"shape":"DirectoryLimitExceededException"},
123
- {"shape":"InvalidParameterException"},
124
- {"shape":"ClientException"},
125
- {"shape":"ServiceException"},
126
- {"shape":"UnsupportedOperationException"}
127
- ]
128
- },
129
- "CreateSnapshot":{
130
- "name":"CreateSnapshot",
131
- "http":{
132
- "method":"POST",
133
- "requestUri":"/"
134
- },
135
- "input":{"shape":"CreateSnapshotRequest"},
136
- "output":{"shape":"CreateSnapshotResult"},
137
- "errors":[
138
- {"shape":"EntityDoesNotExistException"},
139
- {"shape":"InvalidParameterException"},
140
- {"shape":"SnapshotLimitExceededException"},
141
- {"shape":"ClientException"},
142
- {"shape":"ServiceException"}
143
- ]
144
- },
145
- "CreateTrust":{
146
- "name":"CreateTrust",
147
- "http":{
148
- "method":"POST",
149
- "requestUri":"/"
150
- },
151
- "input":{"shape":"CreateTrustRequest"},
152
- "output":{"shape":"CreateTrustResult"},
153
- "errors":[
154
- {"shape":"EntityAlreadyExistsException"},
155
- {"shape":"EntityDoesNotExistException"},
156
- {"shape":"InvalidParameterException"},
157
- {"shape":"ClientException"},
158
- {"shape":"ServiceException"},
159
- {"shape":"UnsupportedOperationException"}
160
- ]
161
- },
162
- "DeleteConditionalForwarder":{
163
- "name":"DeleteConditionalForwarder",
164
- "http":{
165
- "method":"POST",
166
- "requestUri":"/"
167
- },
168
- "input":{"shape":"DeleteConditionalForwarderRequest"},
169
- "output":{"shape":"DeleteConditionalForwarderResult"},
170
- "errors":[
171
- {"shape":"EntityDoesNotExistException"},
172
- {"shape":"DirectoryUnavailableException"},
173
- {"shape":"InvalidParameterException"},
174
- {"shape":"UnsupportedOperationException"},
175
- {"shape":"ClientException"},
176
- {"shape":"ServiceException"}
177
- ]
178
- },
179
- "DeleteDirectory":{
180
- "name":"DeleteDirectory",
181
- "http":{
182
- "method":"POST",
183
- "requestUri":"/"
184
- },
185
- "input":{"shape":"DeleteDirectoryRequest"},
186
- "output":{"shape":"DeleteDirectoryResult"},
187
- "errors":[
188
- {"shape":"EntityDoesNotExistException"},
189
- {"shape":"ClientException"},
190
- {"shape":"ServiceException"}
191
- ]
192
- },
193
- "DeleteSnapshot":{
194
- "name":"DeleteSnapshot",
195
- "http":{
196
- "method":"POST",
197
- "requestUri":"/"
198
- },
199
- "input":{"shape":"DeleteSnapshotRequest"},
200
- "output":{"shape":"DeleteSnapshotResult"},
201
- "errors":[
202
- {"shape":"EntityDoesNotExistException"},
203
- {"shape":"InvalidParameterException"},
204
- {"shape":"ClientException"},
205
- {"shape":"ServiceException"}
206
- ]
207
- },
208
- "DeleteTrust":{
209
- "name":"DeleteTrust",
210
- "http":{
211
- "method":"POST",
212
- "requestUri":"/"
213
- },
214
- "input":{"shape":"DeleteTrustRequest"},
215
- "output":{"shape":"DeleteTrustResult"},
216
- "errors":[
217
- {"shape":"EntityDoesNotExistException"},
218
- {"shape":"InvalidParameterException"},
219
- {"shape":"ClientException"},
220
- {"shape":"ServiceException"},
221
- {"shape":"UnsupportedOperationException"}
222
- ]
223
- },
224
- "DeregisterEventTopic":{
225
- "name":"DeregisterEventTopic",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"DeregisterEventTopicRequest"},
231
- "output":{"shape":"DeregisterEventTopicResult"},
232
- "errors":[
233
- {"shape":"EntityDoesNotExistException"},
234
- {"shape":"InvalidParameterException"},
235
- {"shape":"ClientException"},
236
- {"shape":"ServiceException"}
237
- ]
238
- },
239
- "DescribeConditionalForwarders":{
240
- "name":"DescribeConditionalForwarders",
241
- "http":{
242
- "method":"POST",
243
- "requestUri":"/"
244
- },
245
- "input":{"shape":"DescribeConditionalForwardersRequest"},
246
- "output":{"shape":"DescribeConditionalForwardersResult"},
247
- "errors":[
248
- {"shape":"EntityDoesNotExistException"},
249
- {"shape":"DirectoryUnavailableException"},
250
- {"shape":"InvalidParameterException"},
251
- {"shape":"UnsupportedOperationException"},
252
- {"shape":"ClientException"},
253
- {"shape":"ServiceException"}
254
- ]
255
- },
256
- "DescribeDirectories":{
257
- "name":"DescribeDirectories",
258
- "http":{
259
- "method":"POST",
260
- "requestUri":"/"
261
- },
262
- "input":{"shape":"DescribeDirectoriesRequest"},
263
- "output":{"shape":"DescribeDirectoriesResult"},
264
- "errors":[
265
- {"shape":"EntityDoesNotExistException"},
266
- {"shape":"InvalidParameterException"},
267
- {"shape":"InvalidNextTokenException"},
268
- {"shape":"ClientException"},
269
- {"shape":"ServiceException"}
270
- ]
271
- },
272
- "DescribeEventTopics":{
273
- "name":"DescribeEventTopics",
274
- "http":{
275
- "method":"POST",
276
- "requestUri":"/"
277
- },
278
- "input":{"shape":"DescribeEventTopicsRequest"},
279
- "output":{"shape":"DescribeEventTopicsResult"},
280
- "errors":[
281
- {"shape":"EntityDoesNotExistException"},
282
- {"shape":"InvalidParameterException"},
283
- {"shape":"ClientException"},
284
- {"shape":"ServiceException"}
285
- ]
286
- },
287
- "DescribeSnapshots":{
288
- "name":"DescribeSnapshots",
289
- "http":{
290
- "method":"POST",
291
- "requestUri":"/"
292
- },
293
- "input":{"shape":"DescribeSnapshotsRequest"},
294
- "output":{"shape":"DescribeSnapshotsResult"},
295
- "errors":[
296
- {"shape":"EntityDoesNotExistException"},
297
- {"shape":"InvalidParameterException"},
298
- {"shape":"InvalidNextTokenException"},
299
- {"shape":"ClientException"},
300
- {"shape":"ServiceException"}
301
- ]
302
- },
303
- "DescribeTrusts":{
304
- "name":"DescribeTrusts",
305
- "http":{
306
- "method":"POST",
307
- "requestUri":"/"
308
- },
309
- "input":{"shape":"DescribeTrustsRequest"},
310
- "output":{"shape":"DescribeTrustsResult"},
311
- "errors":[
312
- {"shape":"EntityDoesNotExistException"},
313
- {"shape":"InvalidNextTokenException"},
314
- {"shape":"InvalidParameterException"},
315
- {"shape":"ClientException"},
316
- {"shape":"ServiceException"},
317
- {"shape":"UnsupportedOperationException"}
318
- ]
319
- },
320
- "DisableRadius":{
321
- "name":"DisableRadius",
322
- "http":{
323
- "method":"POST",
324
- "requestUri":"/"
325
- },
326
- "input":{"shape":"DisableRadiusRequest"},
327
- "output":{"shape":"DisableRadiusResult"},
328
- "errors":[
329
- {"shape":"EntityDoesNotExistException"},
330
- {"shape":"ClientException"},
331
- {"shape":"ServiceException"}
332
- ]
333
- },
334
- "DisableSso":{
335
- "name":"DisableSso",
336
- "http":{
337
- "method":"POST",
338
- "requestUri":"/"
339
- },
340
- "input":{"shape":"DisableSsoRequest"},
341
- "output":{"shape":"DisableSsoResult"},
342
- "errors":[
343
- {"shape":"EntityDoesNotExistException"},
344
- {"shape":"InsufficientPermissionsException"},
345
- {"shape":"AuthenticationFailedException"},
346
- {"shape":"ClientException"},
347
- {"shape":"ServiceException"}
348
- ]
349
- },
350
- "EnableRadius":{
351
- "name":"EnableRadius",
352
- "http":{
353
- "method":"POST",
354
- "requestUri":"/"
355
- },
356
- "input":{"shape":"EnableRadiusRequest"},
357
- "output":{"shape":"EnableRadiusResult"},
358
- "errors":[
359
- {"shape":"InvalidParameterException"},
360
- {"shape":"EntityAlreadyExistsException"},
361
- {"shape":"EntityDoesNotExistException"},
362
- {"shape":"ClientException"},
363
- {"shape":"ServiceException"}
364
- ]
365
- },
366
- "EnableSso":{
367
- "name":"EnableSso",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"EnableSsoRequest"},
373
- "output":{"shape":"EnableSsoResult"},
374
- "errors":[
375
- {"shape":"EntityDoesNotExistException"},
376
- {"shape":"InsufficientPermissionsException"},
377
- {"shape":"AuthenticationFailedException"},
378
- {"shape":"ClientException"},
379
- {"shape":"ServiceException"}
380
- ]
381
- },
382
- "GetDirectoryLimits":{
383
- "name":"GetDirectoryLimits",
384
- "http":{
385
- "method":"POST",
386
- "requestUri":"/"
387
- },
388
- "input":{"shape":"GetDirectoryLimitsRequest"},
389
- "output":{"shape":"GetDirectoryLimitsResult"},
390
- "errors":[
391
- {"shape":"EntityDoesNotExistException"},
392
- {"shape":"ClientException"},
393
- {"shape":"ServiceException"}
394
- ]
395
- },
396
- "GetSnapshotLimits":{
397
- "name":"GetSnapshotLimits",
398
- "http":{
399
- "method":"POST",
400
- "requestUri":"/"
401
- },
402
- "input":{"shape":"GetSnapshotLimitsRequest"},
403
- "output":{"shape":"GetSnapshotLimitsResult"},
404
- "errors":[
405
- {"shape":"EntityDoesNotExistException"},
406
- {"shape":"ClientException"},
407
- {"shape":"ServiceException"}
408
- ]
409
- },
410
- "ListTagsForResource":{
411
- "name":"ListTagsForResource",
412
- "http":{
413
- "method":"POST",
414
- "requestUri":"/"
415
- },
416
- "input":{"shape":"ListTagsForResourceRequest"},
417
- "output":{"shape":"ListTagsForResourceResult"},
418
- "errors":[
419
- {"shape":"EntityDoesNotExistException"},
420
- {"shape":"InvalidNextTokenException"},
421
- {"shape":"InvalidParameterException"},
422
- {"shape":"ClientException"},
423
- {"shape":"ServiceException"}
424
- ]
425
- },
426
- "RegisterEventTopic":{
427
- "name":"RegisterEventTopic",
428
- "http":{
429
- "method":"POST",
430
- "requestUri":"/"
431
- },
432
- "input":{"shape":"RegisterEventTopicRequest"},
433
- "output":{"shape":"RegisterEventTopicResult"},
434
- "errors":[
435
- {"shape":"EntityDoesNotExistException"},
436
- {"shape":"InvalidParameterException"},
437
- {"shape":"ClientException"},
438
- {"shape":"ServiceException"}
439
- ]
440
- },
441
- "RemoveTagsFromResource":{
442
- "name":"RemoveTagsFromResource",
443
- "http":{
444
- "method":"POST",
445
- "requestUri":"/"
446
- },
447
- "input":{"shape":"RemoveTagsFromResourceRequest"},
448
- "output":{"shape":"RemoveTagsFromResourceResult"},
449
- "errors":[
450
- {"shape":"EntityDoesNotExistException"},
451
- {"shape":"InvalidParameterException"},
452
- {"shape":"ClientException"},
453
- {"shape":"ServiceException"}
454
- ]
455
- },
456
- "RestoreFromSnapshot":{
457
- "name":"RestoreFromSnapshot",
458
- "http":{
459
- "method":"POST",
460
- "requestUri":"/"
461
- },
462
- "input":{"shape":"RestoreFromSnapshotRequest"},
463
- "output":{"shape":"RestoreFromSnapshotResult"},
464
- "errors":[
465
- {"shape":"EntityDoesNotExistException"},
466
- {"shape":"InvalidParameterException"},
467
- {"shape":"ClientException"},
468
- {"shape":"ServiceException"}
469
- ]
470
- },
471
- "UpdateConditionalForwarder":{
472
- "name":"UpdateConditionalForwarder",
473
- "http":{
474
- "method":"POST",
475
- "requestUri":"/"
476
- },
477
- "input":{"shape":"UpdateConditionalForwarderRequest"},
478
- "output":{"shape":"UpdateConditionalForwarderResult"},
479
- "errors":[
480
- {"shape":"EntityDoesNotExistException"},
481
- {"shape":"DirectoryUnavailableException"},
482
- {"shape":"InvalidParameterException"},
483
- {"shape":"UnsupportedOperationException"},
484
- {"shape":"ClientException"},
485
- {"shape":"ServiceException"}
486
- ]
487
- },
488
- "UpdateRadius":{
489
- "name":"UpdateRadius",
490
- "http":{
491
- "method":"POST",
492
- "requestUri":"/"
493
- },
494
- "input":{"shape":"UpdateRadiusRequest"},
495
- "output":{"shape":"UpdateRadiusResult"},
496
- "errors":[
497
- {"shape":"InvalidParameterException"},
498
- {"shape":"EntityDoesNotExistException"},
499
- {"shape":"ClientException"},
500
- {"shape":"ServiceException"}
501
- ]
502
- },
503
- "VerifyTrust":{
504
- "name":"VerifyTrust",
505
- "http":{
506
- "method":"POST",
507
- "requestUri":"/"
508
- },
509
- "input":{"shape":"VerifyTrustRequest"},
510
- "output":{"shape":"VerifyTrustResult"},
511
- "errors":[
512
- {"shape":"EntityDoesNotExistException"},
513
- {"shape":"InvalidParameterException"},
514
- {"shape":"ClientException"},
515
- {"shape":"ServiceException"},
516
- {"shape":"UnsupportedOperationException"}
517
- ]
518
- }
519
- },
520
- "shapes":{
521
- "AccessUrl":{
522
- "type":"string",
523
- "max":128,
524
- "min":1
525
- },
526
- "AddTagsToResourceRequest":{
527
- "type":"structure",
528
- "required":[
529
- "ResourceId",
530
- "Tags"
531
- ],
532
- "members":{
533
- "ResourceId":{"shape":"ResourceId"},
534
- "Tags":{"shape":"Tags"}
535
- }
536
- },
537
- "AddTagsToResourceResult":{
538
- "type":"structure",
539
- "members":{
540
- }
541
- },
542
- "AliasName":{
543
- "type":"string",
544
- "max":62,
545
- "min":1,
546
- "pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*"
547
- },
548
- "Attribute":{
549
- "type":"structure",
550
- "members":{
551
- "Name":{"shape":"AttributeName"},
552
- "Value":{"shape":"AttributeValue"}
553
- }
554
- },
555
- "AttributeName":{
556
- "type":"string",
557
- "min":1
558
- },
559
- "AttributeValue":{"type":"string"},
560
- "Attributes":{
561
- "type":"list",
562
- "member":{"shape":"Attribute"}
563
- },
564
- "AuthenticationFailedException":{
565
- "type":"structure",
566
- "members":{
567
- "Message":{"shape":"ExceptionMessage"},
568
- "RequestId":{"shape":"RequestId"}
569
- },
570
- "exception":true
571
- },
572
- "AvailabilityZone":{"type":"string"},
573
- "AvailabilityZones":{
574
- "type":"list",
575
- "member":{"shape":"AvailabilityZone"}
576
- },
577
- "ClientException":{
578
- "type":"structure",
579
- "members":{
580
- "Message":{"shape":"ExceptionMessage"},
581
- "RequestId":{"shape":"RequestId"}
582
- },
583
- "exception":true
584
- },
585
- "CloudOnlyDirectoriesLimitReached":{"type":"boolean"},
586
- "Computer":{
587
- "type":"structure",
588
- "members":{
589
- "ComputerId":{"shape":"SID"},
590
- "ComputerName":{"shape":"ComputerName"},
591
- "ComputerAttributes":{"shape":"Attributes"}
592
- }
593
- },
594
- "ComputerName":{
595
- "type":"string",
596
- "max":15,
597
- "min":1
598
- },
599
- "ComputerPassword":{
600
- "type":"string",
601
- "max":64,
602
- "min":8,
603
- "pattern":"[\\u0020-\\u00FF]+",
604
- "sensitive":true
605
- },
606
- "ConditionalForwarder":{
607
- "type":"structure",
608
- "members":{
609
- "RemoteDomainName":{"shape":"RemoteDomainName"},
610
- "DnsIpAddrs":{"shape":"DnsIpAddrs"},
611
- "ReplicationScope":{"shape":"ReplicationScope"}
612
- }
613
- },
614
- "ConditionalForwarders":{
615
- "type":"list",
616
- "member":{"shape":"ConditionalForwarder"}
617
- },
618
- "ConnectDirectoryRequest":{
619
- "type":"structure",
620
- "required":[
621
- "Name",
622
- "Password",
623
- "Size",
624
- "ConnectSettings"
625
- ],
626
- "members":{
627
- "Name":{"shape":"DirectoryName"},
628
- "ShortName":{"shape":"DirectoryShortName"},
629
- "Password":{"shape":"ConnectPassword"},
630
- "Description":{"shape":"Description"},
631
- "Size":{"shape":"DirectorySize"},
632
- "ConnectSettings":{"shape":"DirectoryConnectSettings"}
633
- }
634
- },
635
- "ConnectDirectoryResult":{
636
- "type":"structure",
637
- "members":{
638
- "DirectoryId":{"shape":"DirectoryId"}
639
- }
640
- },
641
- "ConnectPassword":{
642
- "type":"string",
643
- "max":128,
644
- "min":1,
645
- "sensitive":true
646
- },
647
- "ConnectedDirectoriesLimitReached":{"type":"boolean"},
648
- "CreateAliasRequest":{
649
- "type":"structure",
650
- "required":[
651
- "DirectoryId",
652
- "Alias"
653
- ],
654
- "members":{
655
- "DirectoryId":{"shape":"DirectoryId"},
656
- "Alias":{"shape":"AliasName"}
657
- }
658
- },
659
- "CreateAliasResult":{
660
- "type":"structure",
661
- "members":{
662
- "DirectoryId":{"shape":"DirectoryId"},
663
- "Alias":{"shape":"AliasName"}
664
- }
665
- },
666
- "CreateComputerRequest":{
667
- "type":"structure",
668
- "required":[
669
- "DirectoryId",
670
- "ComputerName",
671
- "Password"
672
- ],
673
- "members":{
674
- "DirectoryId":{"shape":"DirectoryId"},
675
- "ComputerName":{"shape":"ComputerName"},
676
- "Password":{"shape":"ComputerPassword"},
677
- "OrganizationalUnitDistinguishedName":{"shape":"OrganizationalUnitDN"},
678
- "ComputerAttributes":{"shape":"Attributes"}
679
- }
680
- },
681
- "CreateComputerResult":{
682
- "type":"structure",
683
- "members":{
684
- "Computer":{"shape":"Computer"}
685
- }
686
- },
687
- "CreateConditionalForwarderRequest":{
688
- "type":"structure",
689
- "required":[
690
- "DirectoryId",
691
- "RemoteDomainName",
692
- "DnsIpAddrs"
693
- ],
694
- "members":{
695
- "DirectoryId":{"shape":"DirectoryId"},
696
- "RemoteDomainName":{"shape":"RemoteDomainName"},
697
- "DnsIpAddrs":{"shape":"DnsIpAddrs"}
698
- }
699
- },
700
- "CreateConditionalForwarderResult":{
701
- "type":"structure",
702
- "members":{
703
- }
704
- },
705
- "CreateDirectoryRequest":{
706
- "type":"structure",
707
- "required":[
708
- "Name",
709
- "Password",
710
- "Size"
711
- ],
712
- "members":{
713
- "Name":{"shape":"DirectoryName"},
714
- "ShortName":{"shape":"DirectoryShortName"},
715
- "Password":{"shape":"Password"},
716
- "Description":{"shape":"Description"},
717
- "Size":{"shape":"DirectorySize"},
718
- "VpcSettings":{"shape":"DirectoryVpcSettings"}
719
- }
720
- },
721
- "CreateDirectoryResult":{
722
- "type":"structure",
723
- "members":{
724
- "DirectoryId":{"shape":"DirectoryId"}
725
- }
726
- },
727
- "CreateMicrosoftADRequest":{
728
- "type":"structure",
729
- "required":[
730
- "Name",
731
- "Password",
732
- "VpcSettings"
733
- ],
734
- "members":{
735
- "Name":{"shape":"DirectoryName"},
736
- "ShortName":{"shape":"DirectoryShortName"},
737
- "Password":{"shape":"Password"},
738
- "Description":{"shape":"Description"},
739
- "VpcSettings":{"shape":"DirectoryVpcSettings"}
740
- }
741
- },
742
- "CreateMicrosoftADResult":{
743
- "type":"structure",
744
- "members":{
745
- "DirectoryId":{"shape":"DirectoryId"}
746
- }
747
- },
748
- "CreateSnapshotRequest":{
749
- "type":"structure",
750
- "required":["DirectoryId"],
751
- "members":{
752
- "DirectoryId":{"shape":"DirectoryId"},
753
- "Name":{"shape":"SnapshotName"}
754
- }
755
- },
756
- "CreateSnapshotResult":{
757
- "type":"structure",
758
- "members":{
759
- "SnapshotId":{"shape":"SnapshotId"}
760
- }
761
- },
762
- "CreateTrustRequest":{
763
- "type":"structure",
764
- "required":[
765
- "DirectoryId",
766
- "RemoteDomainName",
767
- "TrustPassword",
768
- "TrustDirection"
769
- ],
770
- "members":{
771
- "DirectoryId":{"shape":"DirectoryId"},
772
- "RemoteDomainName":{"shape":"RemoteDomainName"},
773
- "TrustPassword":{"shape":"TrustPassword"},
774
- "TrustDirection":{"shape":"TrustDirection"},
775
- "TrustType":{"shape":"TrustType"},
776
- "ConditionalForwarderIpAddrs":{"shape":"DnsIpAddrs"}
777
- }
778
- },
779
- "CreateTrustResult":{
780
- "type":"structure",
781
- "members":{
782
- "TrustId":{"shape":"TrustId"}
783
- }
784
- },
785
- "CreatedDateTime":{"type":"timestamp"},
786
- "DeleteAssociatedConditionalForwarder":{"type":"boolean"},
787
- "DeleteConditionalForwarderRequest":{
788
- "type":"structure",
789
- "required":[
790
- "DirectoryId",
791
- "RemoteDomainName"
792
- ],
793
- "members":{
794
- "DirectoryId":{"shape":"DirectoryId"},
795
- "RemoteDomainName":{"shape":"RemoteDomainName"}
796
- }
797
- },
798
- "DeleteConditionalForwarderResult":{
799
- "type":"structure",
800
- "members":{
801
- }
802
- },
803
- "DeleteDirectoryRequest":{
804
- "type":"structure",
805
- "required":["DirectoryId"],
806
- "members":{
807
- "DirectoryId":{"shape":"DirectoryId"}
808
- }
809
- },
810
- "DeleteDirectoryResult":{
811
- "type":"structure",
812
- "members":{
813
- "DirectoryId":{"shape":"DirectoryId"}
814
- }
815
- },
816
- "DeleteSnapshotRequest":{
817
- "type":"structure",
818
- "required":["SnapshotId"],
819
- "members":{
820
- "SnapshotId":{"shape":"SnapshotId"}
821
- }
822
- },
823
- "DeleteSnapshotResult":{
824
- "type":"structure",
825
- "members":{
826
- "SnapshotId":{"shape":"SnapshotId"}
827
- }
828
- },
829
- "DeleteTrustRequest":{
830
- "type":"structure",
831
- "required":["TrustId"],
832
- "members":{
833
- "TrustId":{"shape":"TrustId"},
834
- "DeleteAssociatedConditionalForwarder":{"shape":"DeleteAssociatedConditionalForwarder"}
835
- }
836
- },
837
- "DeleteTrustResult":{
838
- "type":"structure",
839
- "members":{
840
- "TrustId":{"shape":"TrustId"}
841
- }
842
- },
843
- "DeregisterEventTopicRequest":{
844
- "type":"structure",
845
- "required":[
846
- "DirectoryId",
847
- "TopicName"
848
- ],
849
- "members":{
850
- "DirectoryId":{"shape":"DirectoryId"},
851
- "TopicName":{"shape":"TopicName"}
852
- }
853
- },
854
- "DeregisterEventTopicResult":{
855
- "type":"structure",
856
- "members":{
857
- }
858
- },
859
- "DescribeConditionalForwardersRequest":{
860
- "type":"structure",
861
- "required":["DirectoryId"],
862
- "members":{
863
- "DirectoryId":{"shape":"DirectoryId"},
864
- "RemoteDomainNames":{"shape":"RemoteDomainNames"}
865
- }
866
- },
867
- "DescribeConditionalForwardersResult":{
868
- "type":"structure",
869
- "members":{
870
- "ConditionalForwarders":{"shape":"ConditionalForwarders"}
871
- }
872
- },
873
- "DescribeDirectoriesRequest":{
874
- "type":"structure",
875
- "members":{
876
- "DirectoryIds":{"shape":"DirectoryIds"},
877
- "NextToken":{"shape":"NextToken"},
878
- "Limit":{"shape":"Limit"}
879
- }
880
- },
881
- "DescribeDirectoriesResult":{
882
- "type":"structure",
883
- "members":{
884
- "DirectoryDescriptions":{"shape":"DirectoryDescriptions"},
885
- "NextToken":{"shape":"NextToken"}
886
- }
887
- },
888
- "DescribeEventTopicsRequest":{
889
- "type":"structure",
890
- "members":{
891
- "DirectoryId":{"shape":"DirectoryId"},
892
- "TopicNames":{"shape":"TopicNames"}
893
- }
894
- },
895
- "DescribeEventTopicsResult":{
896
- "type":"structure",
897
- "members":{
898
- "EventTopics":{"shape":"EventTopics"}
899
- }
900
- },
901
- "DescribeSnapshotsRequest":{
902
- "type":"structure",
903
- "members":{
904
- "DirectoryId":{"shape":"DirectoryId"},
905
- "SnapshotIds":{"shape":"SnapshotIds"},
906
- "NextToken":{"shape":"NextToken"},
907
- "Limit":{"shape":"Limit"}
908
- }
909
- },
910
- "DescribeSnapshotsResult":{
911
- "type":"structure",
912
- "members":{
913
- "Snapshots":{"shape":"Snapshots"},
914
- "NextToken":{"shape":"NextToken"}
915
- }
916
- },
917
- "DescribeTrustsRequest":{
918
- "type":"structure",
919
- "members":{
920
- "DirectoryId":{"shape":"DirectoryId"},
921
- "TrustIds":{"shape":"TrustIds"},
922
- "NextToken":{"shape":"NextToken"},
923
- "Limit":{"shape":"Limit"}
924
- }
925
- },
926
- "DescribeTrustsResult":{
927
- "type":"structure",
928
- "members":{
929
- "Trusts":{"shape":"Trusts"},
930
- "NextToken":{"shape":"NextToken"}
931
- }
932
- },
933
- "Description":{
934
- "type":"string",
935
- "max":128,
936
- "min":0,
937
- "pattern":"^([a-zA-Z0-9_])[\\\\a-zA-Z0-9_@#%*+=:?./!\\s-]*$"
938
- },
939
- "DirectoryConnectSettings":{
940
- "type":"structure",
941
- "required":[
942
- "VpcId",
943
- "SubnetIds",
944
- "CustomerDnsIps",
945
- "CustomerUserName"
946
- ],
947
- "members":{
948
- "VpcId":{"shape":"VpcId"},
949
- "SubnetIds":{"shape":"SubnetIds"},
950
- "CustomerDnsIps":{"shape":"DnsIpAddrs"},
951
- "CustomerUserName":{"shape":"UserName"}
952
- }
953
- },
954
- "DirectoryConnectSettingsDescription":{
955
- "type":"structure",
956
- "members":{
957
- "VpcId":{"shape":"VpcId"},
958
- "SubnetIds":{"shape":"SubnetIds"},
959
- "CustomerUserName":{"shape":"UserName"},
960
- "SecurityGroupId":{"shape":"SecurityGroupId"},
961
- "AvailabilityZones":{"shape":"AvailabilityZones"},
962
- "ConnectIps":{"shape":"IpAddrs"}
963
- }
964
- },
965
- "DirectoryDescription":{
966
- "type":"structure",
967
- "members":{
968
- "DirectoryId":{"shape":"DirectoryId"},
969
- "Name":{"shape":"DirectoryName"},
970
- "ShortName":{"shape":"DirectoryShortName"},
971
- "Size":{"shape":"DirectorySize"},
972
- "Alias":{"shape":"AliasName"},
973
- "AccessUrl":{"shape":"AccessUrl"},
974
- "Description":{"shape":"Description"},
975
- "DnsIpAddrs":{"shape":"DnsIpAddrs"},
976
- "Stage":{"shape":"DirectoryStage"},
977
- "LaunchTime":{"shape":"LaunchTime"},
978
- "StageLastUpdatedDateTime":{"shape":"LastUpdatedDateTime"},
979
- "Type":{"shape":"DirectoryType"},
980
- "VpcSettings":{"shape":"DirectoryVpcSettingsDescription"},
981
- "ConnectSettings":{"shape":"DirectoryConnectSettingsDescription"},
982
- "RadiusSettings":{"shape":"RadiusSettings"},
983
- "RadiusStatus":{"shape":"RadiusStatus"},
984
- "StageReason":{"shape":"StageReason"},
985
- "SsoEnabled":{"shape":"SsoEnabled"}
986
- }
987
- },
988
- "DirectoryDescriptions":{
989
- "type":"list",
990
- "member":{"shape":"DirectoryDescription"}
991
- },
992
- "DirectoryId":{
993
- "type":"string",
994
- "pattern":"^d-[0-9a-f]{10}$"
995
- },
996
- "DirectoryIds":{
997
- "type":"list",
998
- "member":{"shape":"DirectoryId"}
999
- },
1000
- "DirectoryLimitExceededException":{
1001
- "type":"structure",
1002
- "members":{
1003
- "Message":{"shape":"ExceptionMessage"},
1004
- "RequestId":{"shape":"RequestId"}
1005
- },
1006
- "exception":true
1007
- },
1008
- "DirectoryLimits":{
1009
- "type":"structure",
1010
- "members":{
1011
- "CloudOnlyDirectoriesLimit":{"shape":"Limit"},
1012
- "CloudOnlyDirectoriesCurrentCount":{"shape":"Limit"},
1013
- "CloudOnlyDirectoriesLimitReached":{"shape":"CloudOnlyDirectoriesLimitReached"},
1014
- "CloudOnlyMicrosoftADLimit":{"shape":"Limit"},
1015
- "CloudOnlyMicrosoftADCurrentCount":{"shape":"Limit"},
1016
- "CloudOnlyMicrosoftADLimitReached":{"shape":"CloudOnlyDirectoriesLimitReached"},
1017
- "ConnectedDirectoriesLimit":{"shape":"Limit"},
1018
- "ConnectedDirectoriesCurrentCount":{"shape":"Limit"},
1019
- "ConnectedDirectoriesLimitReached":{"shape":"ConnectedDirectoriesLimitReached"}
1020
- }
1021
- },
1022
- "DirectoryName":{
1023
- "type":"string",
1024
- "pattern":"^([a-zA-Z0-9]+[\\\\.-])+([a-zA-Z0-9])+$"
1025
- },
1026
- "DirectoryShortName":{
1027
- "type":"string",
1028
- "pattern":"^[^\\\\/:*?\\\"\\<\\>|.]+[^\\\\/:*?\\\"<>|]*$"
1029
- },
1030
- "DirectorySize":{
1031
- "type":"string",
1032
- "enum":[
1033
- "Small",
1034
- "Large"
1035
- ]
1036
- },
1037
- "DirectoryStage":{
1038
- "type":"string",
1039
- "enum":[
1040
- "Requested",
1041
- "Creating",
1042
- "Created",
1043
- "Active",
1044
- "Inoperable",
1045
- "Impaired",
1046
- "Restoring",
1047
- "RestoreFailed",
1048
- "Deleting",
1049
- "Deleted",
1050
- "Failed"
1051
- ]
1052
- },
1053
- "DirectoryType":{
1054
- "type":"string",
1055
- "enum":[
1056
- "SimpleAD",
1057
- "ADConnector",
1058
- "MicrosoftAD"
1059
- ]
1060
- },
1061
- "DirectoryUnavailableException":{
1062
- "type":"structure",
1063
- "members":{
1064
- "Message":{"shape":"ExceptionMessage"},
1065
- "RequestId":{"shape":"RequestId"}
1066
- },
1067
- "exception":true
1068
- },
1069
- "DirectoryVpcSettings":{
1070
- "type":"structure",
1071
- "required":[
1072
- "VpcId",
1073
- "SubnetIds"
1074
- ],
1075
- "members":{
1076
- "VpcId":{"shape":"VpcId"},
1077
- "SubnetIds":{"shape":"SubnetIds"}
1078
- }
1079
- },
1080
- "DirectoryVpcSettingsDescription":{
1081
- "type":"structure",
1082
- "members":{
1083
- "VpcId":{"shape":"VpcId"},
1084
- "SubnetIds":{"shape":"SubnetIds"},
1085
- "SecurityGroupId":{"shape":"SecurityGroupId"},
1086
- "AvailabilityZones":{"shape":"AvailabilityZones"}
1087
- }
1088
- },
1089
- "DisableRadiusRequest":{
1090
- "type":"structure",
1091
- "required":["DirectoryId"],
1092
- "members":{
1093
- "DirectoryId":{"shape":"DirectoryId"}
1094
- }
1095
- },
1096
- "DisableRadiusResult":{
1097
- "type":"structure",
1098
- "members":{
1099
- }
1100
- },
1101
- "DisableSsoRequest":{
1102
- "type":"structure",
1103
- "required":["DirectoryId"],
1104
- "members":{
1105
- "DirectoryId":{"shape":"DirectoryId"},
1106
- "UserName":{"shape":"UserName"},
1107
- "Password":{"shape":"ConnectPassword"}
1108
- }
1109
- },
1110
- "DisableSsoResult":{
1111
- "type":"structure",
1112
- "members":{
1113
- }
1114
- },
1115
- "DnsIpAddrs":{
1116
- "type":"list",
1117
- "member":{"shape":"IpAddr"}
1118
- },
1119
- "EnableRadiusRequest":{
1120
- "type":"structure",
1121
- "required":[
1122
- "DirectoryId",
1123
- "RadiusSettings"
1124
- ],
1125
- "members":{
1126
- "DirectoryId":{"shape":"DirectoryId"},
1127
- "RadiusSettings":{"shape":"RadiusSettings"}
1128
- }
1129
- },
1130
- "EnableRadiusResult":{
1131
- "type":"structure",
1132
- "members":{
1133
- }
1134
- },
1135
- "EnableSsoRequest":{
1136
- "type":"structure",
1137
- "required":["DirectoryId"],
1138
- "members":{
1139
- "DirectoryId":{"shape":"DirectoryId"},
1140
- "UserName":{"shape":"UserName"},
1141
- "Password":{"shape":"ConnectPassword"}
1142
- }
1143
- },
1144
- "EnableSsoResult":{
1145
- "type":"structure",
1146
- "members":{
1147
- }
1148
- },
1149
- "EntityAlreadyExistsException":{
1150
- "type":"structure",
1151
- "members":{
1152
- "Message":{"shape":"ExceptionMessage"},
1153
- "RequestId":{"shape":"RequestId"}
1154
- },
1155
- "exception":true
1156
- },
1157
- "EntityDoesNotExistException":{
1158
- "type":"structure",
1159
- "members":{
1160
- "Message":{"shape":"ExceptionMessage"},
1161
- "RequestId":{"shape":"RequestId"}
1162
- },
1163
- "exception":true
1164
- },
1165
- "EventTopic":{
1166
- "type":"structure",
1167
- "members":{
1168
- "DirectoryId":{"shape":"DirectoryId"},
1169
- "TopicName":{"shape":"TopicName"},
1170
- "TopicArn":{"shape":"TopicArn"},
1171
- "CreatedDateTime":{"shape":"CreatedDateTime"},
1172
- "Status":{"shape":"TopicStatus"}
1173
- }
1174
- },
1175
- "EventTopics":{
1176
- "type":"list",
1177
- "member":{"shape":"EventTopic"}
1178
- },
1179
- "ExceptionMessage":{"type":"string"},
1180
- "GetDirectoryLimitsRequest":{
1181
- "type":"structure",
1182
- "members":{
1183
- }
1184
- },
1185
- "GetDirectoryLimitsResult":{
1186
- "type":"structure",
1187
- "members":{
1188
- "DirectoryLimits":{"shape":"DirectoryLimits"}
1189
- }
1190
- },
1191
- "GetSnapshotLimitsRequest":{
1192
- "type":"structure",
1193
- "required":["DirectoryId"],
1194
- "members":{
1195
- "DirectoryId":{"shape":"DirectoryId"}
1196
- }
1197
- },
1198
- "GetSnapshotLimitsResult":{
1199
- "type":"structure",
1200
- "members":{
1201
- "SnapshotLimits":{"shape":"SnapshotLimits"}
1202
- }
1203
- },
1204
- "InsufficientPermissionsException":{
1205
- "type":"structure",
1206
- "members":{
1207
- "Message":{"shape":"ExceptionMessage"},
1208
- "RequestId":{"shape":"RequestId"}
1209
- },
1210
- "exception":true
1211
- },
1212
- "InvalidNextTokenException":{
1213
- "type":"structure",
1214
- "members":{
1215
- "Message":{"shape":"ExceptionMessage"},
1216
- "RequestId":{"shape":"RequestId"}
1217
- },
1218
- "exception":true
1219
- },
1220
- "InvalidParameterException":{
1221
- "type":"structure",
1222
- "members":{
1223
- "Message":{"shape":"ExceptionMessage"},
1224
- "RequestId":{"shape":"RequestId"}
1225
- },
1226
- "exception":true
1227
- },
1228
- "IpAddr":{
1229
- "type":"string",
1230
- "pattern":"^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"
1231
- },
1232
- "IpAddrs":{
1233
- "type":"list",
1234
- "member":{"shape":"IpAddr"}
1235
- },
1236
- "LastUpdatedDateTime":{"type":"timestamp"},
1237
- "LaunchTime":{"type":"timestamp"},
1238
- "Limit":{
1239
- "type":"integer",
1240
- "min":0
1241
- },
1242
- "ListTagsForResourceRequest":{
1243
- "type":"structure",
1244
- "required":["ResourceId"],
1245
- "members":{
1246
- "ResourceId":{"shape":"ResourceId"},
1247
- "NextToken":{"shape":"NextToken"},
1248
- "Limit":{"shape":"Limit"}
1249
- }
1250
- },
1251
- "ListTagsForResourceResult":{
1252
- "type":"structure",
1253
- "members":{
1254
- "Tags":{"shape":"Tags"},
1255
- "NextToken":{"shape":"NextToken"}
1256
- }
1257
- },
1258
- "ManualSnapshotsLimitReached":{"type":"boolean"},
1259
- "NextToken":{"type":"string"},
1260
- "OrganizationalUnitDN":{
1261
- "type":"string",
1262
- "max":2000,
1263
- "min":1
1264
- },
1265
- "Password":{
1266
- "type":"string",
1267
- "pattern":"(?=^.{8,64}$)((?=.*\\d)(?=.*[A-Z])(?=.*[a-z])|(?=.*\\d)(?=.*[^A-Za-z0-9\\s])(?=.*[a-z])|(?=.*[^A-Za-z0-9\\s])(?=.*[A-Z])(?=.*[a-z])|(?=.*\\d)(?=.*[A-Z])(?=.*[^A-Za-z0-9\\s]))^.*",
1268
- "sensitive":true
1269
- },
1270
- "PortNumber":{
1271
- "type":"integer",
1272
- "max":65535,
1273
- "min":1025
1274
- },
1275
- "RadiusAuthenticationProtocol":{
1276
- "type":"string",
1277
- "enum":[
1278
- "PAP",
1279
- "CHAP",
1280
- "MS-CHAPv1",
1281
- "MS-CHAPv2"
1282
- ]
1283
- },
1284
- "RadiusDisplayLabel":{
1285
- "type":"string",
1286
- "max":64,
1287
- "min":1
1288
- },
1289
- "RadiusRetries":{
1290
- "type":"integer",
1291
- "max":10,
1292
- "min":0
1293
- },
1294
- "RadiusSettings":{
1295
- "type":"structure",
1296
- "members":{
1297
- "RadiusServers":{"shape":"Servers"},
1298
- "RadiusPort":{"shape":"PortNumber"},
1299
- "RadiusTimeout":{"shape":"RadiusTimeout"},
1300
- "RadiusRetries":{"shape":"RadiusRetries"},
1301
- "SharedSecret":{"shape":"RadiusSharedSecret"},
1302
- "AuthenticationProtocol":{"shape":"RadiusAuthenticationProtocol"},
1303
- "DisplayLabel":{"shape":"RadiusDisplayLabel"},
1304
- "UseSameUsername":{"shape":"UseSameUsername"}
1305
- }
1306
- },
1307
- "RadiusSharedSecret":{
1308
- "type":"string",
1309
- "max":512,
1310
- "min":8,
1311
- "sensitive":true
1312
- },
1313
- "RadiusStatus":{
1314
- "type":"string",
1315
- "enum":[
1316
- "Creating",
1317
- "Completed",
1318
- "Failed"
1319
- ]
1320
- },
1321
- "RadiusTimeout":{
1322
- "type":"integer",
1323
- "max":20,
1324
- "min":1
1325
- },
1326
- "RegisterEventTopicRequest":{
1327
- "type":"structure",
1328
- "required":[
1329
- "DirectoryId",
1330
- "TopicName"
1331
- ],
1332
- "members":{
1333
- "DirectoryId":{"shape":"DirectoryId"},
1334
- "TopicName":{"shape":"TopicName"}
1335
- }
1336
- },
1337
- "RegisterEventTopicResult":{
1338
- "type":"structure",
1339
- "members":{
1340
- }
1341
- },
1342
- "RemoteDomainName":{
1343
- "type":"string",
1344
- "pattern":"^([a-zA-Z0-9]+[\\\\.-])+([a-zA-Z0-9])+[.]?$"
1345
- },
1346
- "RemoteDomainNames":{
1347
- "type":"list",
1348
- "member":{"shape":"RemoteDomainName"}
1349
- },
1350
- "RemoveTagsFromResourceRequest":{
1351
- "type":"structure",
1352
- "required":[
1353
- "ResourceId",
1354
- "TagKeys"
1355
- ],
1356
- "members":{
1357
- "ResourceId":{"shape":"ResourceId"},
1358
- "TagKeys":{"shape":"TagKeys"}
1359
- }
1360
- },
1361
- "RemoveTagsFromResourceResult":{
1362
- "type":"structure",
1363
- "members":{
1364
- }
1365
- },
1366
- "ReplicationScope":{
1367
- "type":"string",
1368
- "enum":["Domain"]
1369
- },
1370
- "RequestId":{
1371
- "type":"string",
1372
- "pattern":"^([A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12})$"
1373
- },
1374
- "ResourceId":{
1375
- "type":"string",
1376
- "pattern":"^[d]-[0-9a-f]{10}$"
1377
- },
1378
- "RestoreFromSnapshotRequest":{
1379
- "type":"structure",
1380
- "required":["SnapshotId"],
1381
- "members":{
1382
- "SnapshotId":{"shape":"SnapshotId"}
1383
- }
1384
- },
1385
- "RestoreFromSnapshotResult":{
1386
- "type":"structure",
1387
- "members":{
1388
- }
1389
- },
1390
- "SID":{
1391
- "type":"string",
1392
- "max":256,
1393
- "min":1,
1394
- "pattern":"[&\\w+-.@]+"
1395
- },
1396
- "SecurityGroupId":{
1397
- "type":"string",
1398
- "pattern":"^(sg-[0-9a-f]{8})$"
1399
- },
1400
- "Server":{
1401
- "type":"string",
1402
- "max":256,
1403
- "min":1
1404
- },
1405
- "Servers":{
1406
- "type":"list",
1407
- "member":{"shape":"Server"}
1408
- },
1409
- "ServiceException":{
1410
- "type":"structure",
1411
- "members":{
1412
- "Message":{"shape":"ExceptionMessage"},
1413
- "RequestId":{"shape":"RequestId"}
1414
- },
1415
- "exception":true,
1416
- "fault":true
1417
- },
1418
- "Snapshot":{
1419
- "type":"structure",
1420
- "members":{
1421
- "DirectoryId":{"shape":"DirectoryId"},
1422
- "SnapshotId":{"shape":"SnapshotId"},
1423
- "Type":{"shape":"SnapshotType"},
1424
- "Name":{"shape":"SnapshotName"},
1425
- "Status":{"shape":"SnapshotStatus"},
1426
- "StartTime":{"shape":"StartTime"}
1427
- }
1428
- },
1429
- "SnapshotId":{
1430
- "type":"string",
1431
- "pattern":"^s-[0-9a-f]{10}$"
1432
- },
1433
- "SnapshotIds":{
1434
- "type":"list",
1435
- "member":{"shape":"SnapshotId"}
1436
- },
1437
- "SnapshotLimitExceededException":{
1438
- "type":"structure",
1439
- "members":{
1440
- "Message":{"shape":"ExceptionMessage"},
1441
- "RequestId":{"shape":"RequestId"}
1442
- },
1443
- "exception":true
1444
- },
1445
- "SnapshotLimits":{
1446
- "type":"structure",
1447
- "members":{
1448
- "ManualSnapshotsLimit":{"shape":"Limit"},
1449
- "ManualSnapshotsCurrentCount":{"shape":"Limit"},
1450
- "ManualSnapshotsLimitReached":{"shape":"ManualSnapshotsLimitReached"}
1451
- }
1452
- },
1453
- "SnapshotName":{
1454
- "type":"string",
1455
- "max":128,
1456
- "min":0,
1457
- "pattern":"^([a-zA-Z0-9_])[\\\\a-zA-Z0-9_@#%*+=:?./!\\s-]*$"
1458
- },
1459
- "SnapshotStatus":{
1460
- "type":"string",
1461
- "enum":[
1462
- "Creating",
1463
- "Completed",
1464
- "Failed"
1465
- ]
1466
- },
1467
- "SnapshotType":{
1468
- "type":"string",
1469
- "enum":[
1470
- "Auto",
1471
- "Manual"
1472
- ]
1473
- },
1474
- "Snapshots":{
1475
- "type":"list",
1476
- "member":{"shape":"Snapshot"}
1477
- },
1478
- "SsoEnabled":{"type":"boolean"},
1479
- "StageReason":{"type":"string"},
1480
- "StartTime":{"type":"timestamp"},
1481
- "StateLastUpdatedDateTime":{"type":"timestamp"},
1482
- "SubnetId":{
1483
- "type":"string",
1484
- "pattern":"^(subnet-[0-9a-f]{8})$"
1485
- },
1486
- "SubnetIds":{
1487
- "type":"list",
1488
- "member":{"shape":"SubnetId"}
1489
- },
1490
- "Tag":{
1491
- "type":"structure",
1492
- "required":[
1493
- "Key",
1494
- "Value"
1495
- ],
1496
- "members":{
1497
- "Key":{"shape":"TagKey"},
1498
- "Value":{"shape":"TagValue"}
1499
- }
1500
- },
1501
- "TagKey":{
1502
- "type":"string",
1503
- "max":128,
1504
- "min":1,
1505
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1506
- },
1507
- "TagKeys":{
1508
- "type":"list",
1509
- "member":{"shape":"TagKey"}
1510
- },
1511
- "TagLimitExceededException":{
1512
- "type":"structure",
1513
- "members":{
1514
- "Message":{"shape":"ExceptionMessage"},
1515
- "RequestId":{"shape":"RequestId"}
1516
- },
1517
- "exception":true
1518
- },
1519
- "TagValue":{
1520
- "type":"string",
1521
- "max":256,
1522
- "min":0,
1523
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1524
- },
1525
- "Tags":{
1526
- "type":"list",
1527
- "member":{"shape":"Tag"}
1528
- },
1529
- "TopicArn":{"type":"string"},
1530
- "TopicName":{
1531
- "type":"string",
1532
- "max":256,
1533
- "min":1,
1534
- "pattern":"[a-zA-Z0-9_-]+"
1535
- },
1536
- "TopicNames":{
1537
- "type":"list",
1538
- "member":{"shape":"TopicName"}
1539
- },
1540
- "TopicStatus":{
1541
- "type":"string",
1542
- "enum":[
1543
- "Registered",
1544
- "Topic not found",
1545
- "Failed",
1546
- "Deleted"
1547
- ]
1548
- },
1549
- "Trust":{
1550
- "type":"structure",
1551
- "members":{
1552
- "DirectoryId":{"shape":"DirectoryId"},
1553
- "TrustId":{"shape":"TrustId"},
1554
- "RemoteDomainName":{"shape":"RemoteDomainName"},
1555
- "TrustType":{"shape":"TrustType"},
1556
- "TrustDirection":{"shape":"TrustDirection"},
1557
- "TrustState":{"shape":"TrustState"},
1558
- "CreatedDateTime":{"shape":"CreatedDateTime"},
1559
- "LastUpdatedDateTime":{"shape":"LastUpdatedDateTime"},
1560
- "StateLastUpdatedDateTime":{"shape":"StateLastUpdatedDateTime"},
1561
- "TrustStateReason":{"shape":"TrustStateReason"}
1562
- }
1563
- },
1564
- "TrustDirection":{
1565
- "type":"string",
1566
- "enum":[
1567
- "One-Way: Outgoing",
1568
- "One-Way: Incoming",
1569
- "Two-Way"
1570
- ]
1571
- },
1572
- "TrustId":{
1573
- "type":"string",
1574
- "pattern":"^t-[0-9a-f]{10}$"
1575
- },
1576
- "TrustIds":{
1577
- "type":"list",
1578
- "member":{"shape":"TrustId"}
1579
- },
1580
- "TrustPassword":{
1581
- "type":"string",
1582
- "max":128,
1583
- "min":1,
1584
- "sensitive":true
1585
- },
1586
- "TrustState":{
1587
- "type":"string",
1588
- "enum":[
1589
- "Creating",
1590
- "Created",
1591
- "Verifying",
1592
- "VerifyFailed",
1593
- "Verified",
1594
- "Deleting",
1595
- "Deleted",
1596
- "Failed"
1597
- ]
1598
- },
1599
- "TrustStateReason":{"type":"string"},
1600
- "TrustType":{
1601
- "type":"string",
1602
- "enum":["Forest"]
1603
- },
1604
- "Trusts":{
1605
- "type":"list",
1606
- "member":{"shape":"Trust"}
1607
- },
1608
- "UnsupportedOperationException":{
1609
- "type":"structure",
1610
- "members":{
1611
- "Message":{"shape":"ExceptionMessage"},
1612
- "RequestId":{"shape":"RequestId"}
1613
- },
1614
- "exception":true
1615
- },
1616
- "UpdateConditionalForwarderRequest":{
1617
- "type":"structure",
1618
- "required":[
1619
- "DirectoryId",
1620
- "RemoteDomainName",
1621
- "DnsIpAddrs"
1622
- ],
1623
- "members":{
1624
- "DirectoryId":{"shape":"DirectoryId"},
1625
- "RemoteDomainName":{"shape":"RemoteDomainName"},
1626
- "DnsIpAddrs":{"shape":"DnsIpAddrs"}
1627
- }
1628
- },
1629
- "UpdateConditionalForwarderResult":{
1630
- "type":"structure",
1631
- "members":{
1632
- }
1633
- },
1634
- "UpdateRadiusRequest":{
1635
- "type":"structure",
1636
- "required":[
1637
- "DirectoryId",
1638
- "RadiusSettings"
1639
- ],
1640
- "members":{
1641
- "DirectoryId":{"shape":"DirectoryId"},
1642
- "RadiusSettings":{"shape":"RadiusSettings"}
1643
- }
1644
- },
1645
- "UpdateRadiusResult":{
1646
- "type":"structure",
1647
- "members":{
1648
- }
1649
- },
1650
- "UseSameUsername":{"type":"boolean"},
1651
- "UserName":{
1652
- "type":"string",
1653
- "min":1,
1654
- "pattern":"[a-zA-Z0-9._-]+"
1655
- },
1656
- "VerifyTrustRequest":{
1657
- "type":"structure",
1658
- "required":["TrustId"],
1659
- "members":{
1660
- "TrustId":{"shape":"TrustId"}
1661
- }
1662
- },
1663
- "VerifyTrustResult":{
1664
- "type":"structure",
1665
- "members":{
1666
- "TrustId":{"shape":"TrustId"}
1667
- }
1668
- },
1669
- "VpcId":{
1670
- "type":"string",
1671
- "pattern":"^(vpc-[0-9a-f]{8})$"
1672
- }
1673
- }
1674
- }