aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,2631 +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
- "serviceId":"Directory Service",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"DirectoryService_20150416",
13
- "uid":"ds-2015-04-16"
14
- },
15
- "operations":{
16
- "AcceptSharedDirectory":{
17
- "name":"AcceptSharedDirectory",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"AcceptSharedDirectoryRequest"},
23
- "output":{"shape":"AcceptSharedDirectoryResult"},
24
- "errors":[
25
- {"shape":"InvalidParameterException"},
26
- {"shape":"EntityDoesNotExistException"},
27
- {"shape":"DirectoryAlreadySharedException"},
28
- {"shape":"ClientException"},
29
- {"shape":"ServiceException"}
30
- ]
31
- },
32
- "AddIpRoutes":{
33
- "name":"AddIpRoutes",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"AddIpRoutesRequest"},
39
- "output":{"shape":"AddIpRoutesResult"},
40
- "errors":[
41
- {"shape":"EntityDoesNotExistException"},
42
- {"shape":"EntityAlreadyExistsException"},
43
- {"shape":"InvalidParameterException"},
44
- {"shape":"DirectoryUnavailableException"},
45
- {"shape":"IpRouteLimitExceededException"},
46
- {"shape":"ClientException"},
47
- {"shape":"ServiceException"}
48
- ]
49
- },
50
- "AddTagsToResource":{
51
- "name":"AddTagsToResource",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"AddTagsToResourceRequest"},
57
- "output":{"shape":"AddTagsToResourceResult"},
58
- "errors":[
59
- {"shape":"EntityDoesNotExistException"},
60
- {"shape":"InvalidParameterException"},
61
- {"shape":"TagLimitExceededException"},
62
- {"shape":"ClientException"},
63
- {"shape":"ServiceException"}
64
- ]
65
- },
66
- "CancelSchemaExtension":{
67
- "name":"CancelSchemaExtension",
68
- "http":{
69
- "method":"POST",
70
- "requestUri":"/"
71
- },
72
- "input":{"shape":"CancelSchemaExtensionRequest"},
73
- "output":{"shape":"CancelSchemaExtensionResult"},
74
- "errors":[
75
- {"shape":"EntityDoesNotExistException"},
76
- {"shape":"ClientException"},
77
- {"shape":"ServiceException"}
78
- ]
79
- },
80
- "ConnectDirectory":{
81
- "name":"ConnectDirectory",
82
- "http":{
83
- "method":"POST",
84
- "requestUri":"/"
85
- },
86
- "input":{"shape":"ConnectDirectoryRequest"},
87
- "output":{"shape":"ConnectDirectoryResult"},
88
- "errors":[
89
- {"shape":"DirectoryLimitExceededException"},
90
- {"shape":"InvalidParameterException"},
91
- {"shape":"ClientException"},
92
- {"shape":"ServiceException"}
93
- ]
94
- },
95
- "CreateAlias":{
96
- "name":"CreateAlias",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"CreateAliasRequest"},
102
- "output":{"shape":"CreateAliasResult"},
103
- "errors":[
104
- {"shape":"EntityAlreadyExistsException"},
105
- {"shape":"EntityDoesNotExistException"},
106
- {"shape":"InvalidParameterException"},
107
- {"shape":"ClientException"},
108
- {"shape":"ServiceException"}
109
- ]
110
- },
111
- "CreateComputer":{
112
- "name":"CreateComputer",
113
- "http":{
114
- "method":"POST",
115
- "requestUri":"/"
116
- },
117
- "input":{"shape":"CreateComputerRequest"},
118
- "output":{"shape":"CreateComputerResult"},
119
- "errors":[
120
- {"shape":"AuthenticationFailedException"},
121
- {"shape":"DirectoryUnavailableException"},
122
- {"shape":"EntityAlreadyExistsException"},
123
- {"shape":"EntityDoesNotExistException"},
124
- {"shape":"InvalidParameterException"},
125
- {"shape":"UnsupportedOperationException"},
126
- {"shape":"ClientException"},
127
- {"shape":"ServiceException"}
128
- ]
129
- },
130
- "CreateConditionalForwarder":{
131
- "name":"CreateConditionalForwarder",
132
- "http":{
133
- "method":"POST",
134
- "requestUri":"/"
135
- },
136
- "input":{"shape":"CreateConditionalForwarderRequest"},
137
- "output":{"shape":"CreateConditionalForwarderResult"},
138
- "errors":[
139
- {"shape":"EntityAlreadyExistsException"},
140
- {"shape":"EntityDoesNotExistException"},
141
- {"shape":"DirectoryUnavailableException"},
142
- {"shape":"InvalidParameterException"},
143
- {"shape":"UnsupportedOperationException"},
144
- {"shape":"ClientException"},
145
- {"shape":"ServiceException"}
146
- ]
147
- },
148
- "CreateDirectory":{
149
- "name":"CreateDirectory",
150
- "http":{
151
- "method":"POST",
152
- "requestUri":"/"
153
- },
154
- "input":{"shape":"CreateDirectoryRequest"},
155
- "output":{"shape":"CreateDirectoryResult"},
156
- "errors":[
157
- {"shape":"DirectoryLimitExceededException"},
158
- {"shape":"InvalidParameterException"},
159
- {"shape":"ClientException"},
160
- {"shape":"ServiceException"}
161
- ]
162
- },
163
- "CreateLogSubscription":{
164
- "name":"CreateLogSubscription",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/"
168
- },
169
- "input":{"shape":"CreateLogSubscriptionRequest"},
170
- "output":{"shape":"CreateLogSubscriptionResult"},
171
- "errors":[
172
- {"shape":"EntityAlreadyExistsException"},
173
- {"shape":"EntityDoesNotExistException"},
174
- {"shape":"UnsupportedOperationException"},
175
- {"shape":"InsufficientPermissionsException"},
176
- {"shape":"ClientException"},
177
- {"shape":"ServiceException"}
178
- ]
179
- },
180
- "CreateMicrosoftAD":{
181
- "name":"CreateMicrosoftAD",
182
- "http":{
183
- "method":"POST",
184
- "requestUri":"/"
185
- },
186
- "input":{"shape":"CreateMicrosoftADRequest"},
187
- "output":{"shape":"CreateMicrosoftADResult"},
188
- "errors":[
189
- {"shape":"DirectoryLimitExceededException"},
190
- {"shape":"InvalidParameterException"},
191
- {"shape":"ClientException"},
192
- {"shape":"ServiceException"},
193
- {"shape":"UnsupportedOperationException"}
194
- ]
195
- },
196
- "CreateSnapshot":{
197
- "name":"CreateSnapshot",
198
- "http":{
199
- "method":"POST",
200
- "requestUri":"/"
201
- },
202
- "input":{"shape":"CreateSnapshotRequest"},
203
- "output":{"shape":"CreateSnapshotResult"},
204
- "errors":[
205
- {"shape":"EntityDoesNotExistException"},
206
- {"shape":"InvalidParameterException"},
207
- {"shape":"SnapshotLimitExceededException"},
208
- {"shape":"ClientException"},
209
- {"shape":"ServiceException"}
210
- ]
211
- },
212
- "CreateTrust":{
213
- "name":"CreateTrust",
214
- "http":{
215
- "method":"POST",
216
- "requestUri":"/"
217
- },
218
- "input":{"shape":"CreateTrustRequest"},
219
- "output":{"shape":"CreateTrustResult"},
220
- "errors":[
221
- {"shape":"EntityAlreadyExistsException"},
222
- {"shape":"EntityDoesNotExistException"},
223
- {"shape":"InvalidParameterException"},
224
- {"shape":"ClientException"},
225
- {"shape":"ServiceException"},
226
- {"shape":"UnsupportedOperationException"}
227
- ]
228
- },
229
- "DeleteConditionalForwarder":{
230
- "name":"DeleteConditionalForwarder",
231
- "http":{
232
- "method":"POST",
233
- "requestUri":"/"
234
- },
235
- "input":{"shape":"DeleteConditionalForwarderRequest"},
236
- "output":{"shape":"DeleteConditionalForwarderResult"},
237
- "errors":[
238
- {"shape":"EntityDoesNotExistException"},
239
- {"shape":"DirectoryUnavailableException"},
240
- {"shape":"InvalidParameterException"},
241
- {"shape":"UnsupportedOperationException"},
242
- {"shape":"ClientException"},
243
- {"shape":"ServiceException"}
244
- ]
245
- },
246
- "DeleteDirectory":{
247
- "name":"DeleteDirectory",
248
- "http":{
249
- "method":"POST",
250
- "requestUri":"/"
251
- },
252
- "input":{"shape":"DeleteDirectoryRequest"},
253
- "output":{"shape":"DeleteDirectoryResult"},
254
- "errors":[
255
- {"shape":"EntityDoesNotExistException"},
256
- {"shape":"ClientException"},
257
- {"shape":"ServiceException"}
258
- ]
259
- },
260
- "DeleteLogSubscription":{
261
- "name":"DeleteLogSubscription",
262
- "http":{
263
- "method":"POST",
264
- "requestUri":"/"
265
- },
266
- "input":{"shape":"DeleteLogSubscriptionRequest"},
267
- "output":{"shape":"DeleteLogSubscriptionResult"},
268
- "errors":[
269
- {"shape":"EntityDoesNotExistException"},
270
- {"shape":"UnsupportedOperationException"},
271
- {"shape":"ClientException"},
272
- {"shape":"ServiceException"}
273
- ]
274
- },
275
- "DeleteSnapshot":{
276
- "name":"DeleteSnapshot",
277
- "http":{
278
- "method":"POST",
279
- "requestUri":"/"
280
- },
281
- "input":{"shape":"DeleteSnapshotRequest"},
282
- "output":{"shape":"DeleteSnapshotResult"},
283
- "errors":[
284
- {"shape":"EntityDoesNotExistException"},
285
- {"shape":"InvalidParameterException"},
286
- {"shape":"ClientException"},
287
- {"shape":"ServiceException"}
288
- ]
289
- },
290
- "DeleteTrust":{
291
- "name":"DeleteTrust",
292
- "http":{
293
- "method":"POST",
294
- "requestUri":"/"
295
- },
296
- "input":{"shape":"DeleteTrustRequest"},
297
- "output":{"shape":"DeleteTrustResult"},
298
- "errors":[
299
- {"shape":"EntityDoesNotExistException"},
300
- {"shape":"InvalidParameterException"},
301
- {"shape":"ClientException"},
302
- {"shape":"ServiceException"},
303
- {"shape":"UnsupportedOperationException"}
304
- ]
305
- },
306
- "DeregisterEventTopic":{
307
- "name":"DeregisterEventTopic",
308
- "http":{
309
- "method":"POST",
310
- "requestUri":"/"
311
- },
312
- "input":{"shape":"DeregisterEventTopicRequest"},
313
- "output":{"shape":"DeregisterEventTopicResult"},
314
- "errors":[
315
- {"shape":"EntityDoesNotExistException"},
316
- {"shape":"InvalidParameterException"},
317
- {"shape":"ClientException"},
318
- {"shape":"ServiceException"}
319
- ]
320
- },
321
- "DescribeConditionalForwarders":{
322
- "name":"DescribeConditionalForwarders",
323
- "http":{
324
- "method":"POST",
325
- "requestUri":"/"
326
- },
327
- "input":{"shape":"DescribeConditionalForwardersRequest"},
328
- "output":{"shape":"DescribeConditionalForwardersResult"},
329
- "errors":[
330
- {"shape":"EntityDoesNotExistException"},
331
- {"shape":"DirectoryUnavailableException"},
332
- {"shape":"InvalidParameterException"},
333
- {"shape":"UnsupportedOperationException"},
334
- {"shape":"ClientException"},
335
- {"shape":"ServiceException"}
336
- ]
337
- },
338
- "DescribeDirectories":{
339
- "name":"DescribeDirectories",
340
- "http":{
341
- "method":"POST",
342
- "requestUri":"/"
343
- },
344
- "input":{"shape":"DescribeDirectoriesRequest"},
345
- "output":{"shape":"DescribeDirectoriesResult"},
346
- "errors":[
347
- {"shape":"EntityDoesNotExistException"},
348
- {"shape":"InvalidParameterException"},
349
- {"shape":"InvalidNextTokenException"},
350
- {"shape":"ClientException"},
351
- {"shape":"ServiceException"}
352
- ]
353
- },
354
- "DescribeDomainControllers":{
355
- "name":"DescribeDomainControllers",
356
- "http":{
357
- "method":"POST",
358
- "requestUri":"/"
359
- },
360
- "input":{"shape":"DescribeDomainControllersRequest"},
361
- "output":{"shape":"DescribeDomainControllersResult"},
362
- "errors":[
363
- {"shape":"EntityDoesNotExistException"},
364
- {"shape":"InvalidNextTokenException"},
365
- {"shape":"InvalidParameterException"},
366
- {"shape":"ClientException"},
367
- {"shape":"ServiceException"},
368
- {"shape":"UnsupportedOperationException"}
369
- ]
370
- },
371
- "DescribeEventTopics":{
372
- "name":"DescribeEventTopics",
373
- "http":{
374
- "method":"POST",
375
- "requestUri":"/"
376
- },
377
- "input":{"shape":"DescribeEventTopicsRequest"},
378
- "output":{"shape":"DescribeEventTopicsResult"},
379
- "errors":[
380
- {"shape":"EntityDoesNotExistException"},
381
- {"shape":"InvalidParameterException"},
382
- {"shape":"ClientException"},
383
- {"shape":"ServiceException"}
384
- ]
385
- },
386
- "DescribeSharedDirectories":{
387
- "name":"DescribeSharedDirectories",
388
- "http":{
389
- "method":"POST",
390
- "requestUri":"/"
391
- },
392
- "input":{"shape":"DescribeSharedDirectoriesRequest"},
393
- "output":{"shape":"DescribeSharedDirectoriesResult"},
394
- "errors":[
395
- {"shape":"EntityDoesNotExistException"},
396
- {"shape":"InvalidNextTokenException"},
397
- {"shape":"InvalidParameterException"},
398
- {"shape":"UnsupportedOperationException"},
399
- {"shape":"ClientException"},
400
- {"shape":"ServiceException"}
401
- ]
402
- },
403
- "DescribeSnapshots":{
404
- "name":"DescribeSnapshots",
405
- "http":{
406
- "method":"POST",
407
- "requestUri":"/"
408
- },
409
- "input":{"shape":"DescribeSnapshotsRequest"},
410
- "output":{"shape":"DescribeSnapshotsResult"},
411
- "errors":[
412
- {"shape":"EntityDoesNotExistException"},
413
- {"shape":"InvalidParameterException"},
414
- {"shape":"InvalidNextTokenException"},
415
- {"shape":"ClientException"},
416
- {"shape":"ServiceException"}
417
- ]
418
- },
419
- "DescribeTrusts":{
420
- "name":"DescribeTrusts",
421
- "http":{
422
- "method":"POST",
423
- "requestUri":"/"
424
- },
425
- "input":{"shape":"DescribeTrustsRequest"},
426
- "output":{"shape":"DescribeTrustsResult"},
427
- "errors":[
428
- {"shape":"EntityDoesNotExistException"},
429
- {"shape":"InvalidNextTokenException"},
430
- {"shape":"InvalidParameterException"},
431
- {"shape":"ClientException"},
432
- {"shape":"ServiceException"},
433
- {"shape":"UnsupportedOperationException"}
434
- ]
435
- },
436
- "DisableRadius":{
437
- "name":"DisableRadius",
438
- "http":{
439
- "method":"POST",
440
- "requestUri":"/"
441
- },
442
- "input":{"shape":"DisableRadiusRequest"},
443
- "output":{"shape":"DisableRadiusResult"},
444
- "errors":[
445
- {"shape":"EntityDoesNotExistException"},
446
- {"shape":"ClientException"},
447
- {"shape":"ServiceException"}
448
- ]
449
- },
450
- "DisableSso":{
451
- "name":"DisableSso",
452
- "http":{
453
- "method":"POST",
454
- "requestUri":"/"
455
- },
456
- "input":{"shape":"DisableSsoRequest"},
457
- "output":{"shape":"DisableSsoResult"},
458
- "errors":[
459
- {"shape":"EntityDoesNotExistException"},
460
- {"shape":"InsufficientPermissionsException"},
461
- {"shape":"AuthenticationFailedException"},
462
- {"shape":"ClientException"},
463
- {"shape":"ServiceException"}
464
- ]
465
- },
466
- "EnableRadius":{
467
- "name":"EnableRadius",
468
- "http":{
469
- "method":"POST",
470
- "requestUri":"/"
471
- },
472
- "input":{"shape":"EnableRadiusRequest"},
473
- "output":{"shape":"EnableRadiusResult"},
474
- "errors":[
475
- {"shape":"InvalidParameterException"},
476
- {"shape":"EntityAlreadyExistsException"},
477
- {"shape":"EntityDoesNotExistException"},
478
- {"shape":"ClientException"},
479
- {"shape":"ServiceException"}
480
- ]
481
- },
482
- "EnableSso":{
483
- "name":"EnableSso",
484
- "http":{
485
- "method":"POST",
486
- "requestUri":"/"
487
- },
488
- "input":{"shape":"EnableSsoRequest"},
489
- "output":{"shape":"EnableSsoResult"},
490
- "errors":[
491
- {"shape":"EntityDoesNotExistException"},
492
- {"shape":"InsufficientPermissionsException"},
493
- {"shape":"AuthenticationFailedException"},
494
- {"shape":"ClientException"},
495
- {"shape":"ServiceException"}
496
- ]
497
- },
498
- "GetDirectoryLimits":{
499
- "name":"GetDirectoryLimits",
500
- "http":{
501
- "method":"POST",
502
- "requestUri":"/"
503
- },
504
- "input":{"shape":"GetDirectoryLimitsRequest"},
505
- "output":{"shape":"GetDirectoryLimitsResult"},
506
- "errors":[
507
- {"shape":"EntityDoesNotExistException"},
508
- {"shape":"ClientException"},
509
- {"shape":"ServiceException"}
510
- ]
511
- },
512
- "GetSnapshotLimits":{
513
- "name":"GetSnapshotLimits",
514
- "http":{
515
- "method":"POST",
516
- "requestUri":"/"
517
- },
518
- "input":{"shape":"GetSnapshotLimitsRequest"},
519
- "output":{"shape":"GetSnapshotLimitsResult"},
520
- "errors":[
521
- {"shape":"EntityDoesNotExistException"},
522
- {"shape":"ClientException"},
523
- {"shape":"ServiceException"}
524
- ]
525
- },
526
- "ListIpRoutes":{
527
- "name":"ListIpRoutes",
528
- "http":{
529
- "method":"POST",
530
- "requestUri":"/"
531
- },
532
- "input":{"shape":"ListIpRoutesRequest"},
533
- "output":{"shape":"ListIpRoutesResult"},
534
- "errors":[
535
- {"shape":"EntityDoesNotExistException"},
536
- {"shape":"InvalidNextTokenException"},
537
- {"shape":"InvalidParameterException"},
538
- {"shape":"ClientException"},
539
- {"shape":"ServiceException"}
540
- ]
541
- },
542
- "ListLogSubscriptions":{
543
- "name":"ListLogSubscriptions",
544
- "http":{
545
- "method":"POST",
546
- "requestUri":"/"
547
- },
548
- "input":{"shape":"ListLogSubscriptionsRequest"},
549
- "output":{"shape":"ListLogSubscriptionsResult"},
550
- "errors":[
551
- {"shape":"EntityDoesNotExistException"},
552
- {"shape":"InvalidNextTokenException"},
553
- {"shape":"ClientException"},
554
- {"shape":"ServiceException"}
555
- ]
556
- },
557
- "ListSchemaExtensions":{
558
- "name":"ListSchemaExtensions",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"ListSchemaExtensionsRequest"},
564
- "output":{"shape":"ListSchemaExtensionsResult"},
565
- "errors":[
566
- {"shape":"InvalidNextTokenException"},
567
- {"shape":"EntityDoesNotExistException"},
568
- {"shape":"ClientException"},
569
- {"shape":"ServiceException"}
570
- ]
571
- },
572
- "ListTagsForResource":{
573
- "name":"ListTagsForResource",
574
- "http":{
575
- "method":"POST",
576
- "requestUri":"/"
577
- },
578
- "input":{"shape":"ListTagsForResourceRequest"},
579
- "output":{"shape":"ListTagsForResourceResult"},
580
- "errors":[
581
- {"shape":"EntityDoesNotExistException"},
582
- {"shape":"InvalidNextTokenException"},
583
- {"shape":"InvalidParameterException"},
584
- {"shape":"ClientException"},
585
- {"shape":"ServiceException"}
586
- ]
587
- },
588
- "RegisterEventTopic":{
589
- "name":"RegisterEventTopic",
590
- "http":{
591
- "method":"POST",
592
- "requestUri":"/"
593
- },
594
- "input":{"shape":"RegisterEventTopicRequest"},
595
- "output":{"shape":"RegisterEventTopicResult"},
596
- "errors":[
597
- {"shape":"EntityDoesNotExistException"},
598
- {"shape":"InvalidParameterException"},
599
- {"shape":"ClientException"},
600
- {"shape":"ServiceException"}
601
- ]
602
- },
603
- "RejectSharedDirectory":{
604
- "name":"RejectSharedDirectory",
605
- "http":{
606
- "method":"POST",
607
- "requestUri":"/"
608
- },
609
- "input":{"shape":"RejectSharedDirectoryRequest"},
610
- "output":{"shape":"RejectSharedDirectoryResult"},
611
- "errors":[
612
- {"shape":"InvalidParameterException"},
613
- {"shape":"EntityDoesNotExistException"},
614
- {"shape":"DirectoryAlreadySharedException"},
615
- {"shape":"ClientException"},
616
- {"shape":"ServiceException"}
617
- ]
618
- },
619
- "RemoveIpRoutes":{
620
- "name":"RemoveIpRoutes",
621
- "http":{
622
- "method":"POST",
623
- "requestUri":"/"
624
- },
625
- "input":{"shape":"RemoveIpRoutesRequest"},
626
- "output":{"shape":"RemoveIpRoutesResult"},
627
- "errors":[
628
- {"shape":"EntityDoesNotExistException"},
629
- {"shape":"InvalidParameterException"},
630
- {"shape":"DirectoryUnavailableException"},
631
- {"shape":"ClientException"},
632
- {"shape":"ServiceException"}
633
- ]
634
- },
635
- "RemoveTagsFromResource":{
636
- "name":"RemoveTagsFromResource",
637
- "http":{
638
- "method":"POST",
639
- "requestUri":"/"
640
- },
641
- "input":{"shape":"RemoveTagsFromResourceRequest"},
642
- "output":{"shape":"RemoveTagsFromResourceResult"},
643
- "errors":[
644
- {"shape":"EntityDoesNotExistException"},
645
- {"shape":"InvalidParameterException"},
646
- {"shape":"ClientException"},
647
- {"shape":"ServiceException"}
648
- ]
649
- },
650
- "ResetUserPassword":{
651
- "name":"ResetUserPassword",
652
- "http":{
653
- "method":"POST",
654
- "requestUri":"/"
655
- },
656
- "input":{"shape":"ResetUserPasswordRequest"},
657
- "output":{"shape":"ResetUserPasswordResult"},
658
- "errors":[
659
- {"shape":"DirectoryUnavailableException"},
660
- {"shape":"UserDoesNotExistException"},
661
- {"shape":"InvalidPasswordException"},
662
- {"shape":"UnsupportedOperationException"},
663
- {"shape":"EntityDoesNotExistException"},
664
- {"shape":"ClientException"},
665
- {"shape":"ServiceException"}
666
- ]
667
- },
668
- "RestoreFromSnapshot":{
669
- "name":"RestoreFromSnapshot",
670
- "http":{
671
- "method":"POST",
672
- "requestUri":"/"
673
- },
674
- "input":{"shape":"RestoreFromSnapshotRequest"},
675
- "output":{"shape":"RestoreFromSnapshotResult"},
676
- "errors":[
677
- {"shape":"EntityDoesNotExistException"},
678
- {"shape":"InvalidParameterException"},
679
- {"shape":"ClientException"},
680
- {"shape":"ServiceException"}
681
- ]
682
- },
683
- "ShareDirectory":{
684
- "name":"ShareDirectory",
685
- "http":{
686
- "method":"POST",
687
- "requestUri":"/"
688
- },
689
- "input":{"shape":"ShareDirectoryRequest"},
690
- "output":{"shape":"ShareDirectoryResult"},
691
- "errors":[
692
- {"shape":"DirectoryAlreadySharedException"},
693
- {"shape":"EntityDoesNotExistException"},
694
- {"shape":"InvalidTargetException"},
695
- {"shape":"InvalidParameterException"},
696
- {"shape":"ClientException"},
697
- {"shape":"ShareLimitExceededException"},
698
- {"shape":"OrganizationsException"},
699
- {"shape":"AccessDeniedException"},
700
- {"shape":"UnsupportedOperationException"},
701
- {"shape":"ServiceException"}
702
- ]
703
- },
704
- "StartSchemaExtension":{
705
- "name":"StartSchemaExtension",
706
- "http":{
707
- "method":"POST",
708
- "requestUri":"/"
709
- },
710
- "input":{"shape":"StartSchemaExtensionRequest"},
711
- "output":{"shape":"StartSchemaExtensionResult"},
712
- "errors":[
713
- {"shape":"DirectoryUnavailableException"},
714
- {"shape":"EntityDoesNotExistException"},
715
- {"shape":"InvalidParameterException"},
716
- {"shape":"SnapshotLimitExceededException"},
717
- {"shape":"ClientException"},
718
- {"shape":"ServiceException"}
719
- ]
720
- },
721
- "UnshareDirectory":{
722
- "name":"UnshareDirectory",
723
- "http":{
724
- "method":"POST",
725
- "requestUri":"/"
726
- },
727
- "input":{"shape":"UnshareDirectoryRequest"},
728
- "output":{"shape":"UnshareDirectoryResult"},
729
- "errors":[
730
- {"shape":"EntityDoesNotExistException"},
731
- {"shape":"InvalidTargetException"},
732
- {"shape":"DirectoryNotSharedException"},
733
- {"shape":"ClientException"},
734
- {"shape":"ServiceException"}
735
- ]
736
- },
737
- "UpdateConditionalForwarder":{
738
- "name":"UpdateConditionalForwarder",
739
- "http":{
740
- "method":"POST",
741
- "requestUri":"/"
742
- },
743
- "input":{"shape":"UpdateConditionalForwarderRequest"},
744
- "output":{"shape":"UpdateConditionalForwarderResult"},
745
- "errors":[
746
- {"shape":"EntityDoesNotExistException"},
747
- {"shape":"DirectoryUnavailableException"},
748
- {"shape":"InvalidParameterException"},
749
- {"shape":"UnsupportedOperationException"},
750
- {"shape":"ClientException"},
751
- {"shape":"ServiceException"}
752
- ]
753
- },
754
- "UpdateNumberOfDomainControllers":{
755
- "name":"UpdateNumberOfDomainControllers",
756
- "http":{
757
- "method":"POST",
758
- "requestUri":"/"
759
- },
760
- "input":{"shape":"UpdateNumberOfDomainControllersRequest"},
761
- "output":{"shape":"UpdateNumberOfDomainControllersResult"},
762
- "errors":[
763
- {"shape":"EntityDoesNotExistException"},
764
- {"shape":"DirectoryUnavailableException"},
765
- {"shape":"DomainControllerLimitExceededException"},
766
- {"shape":"InvalidParameterException"},
767
- {"shape":"UnsupportedOperationException"},
768
- {"shape":"ClientException"},
769
- {"shape":"ServiceException"}
770
- ]
771
- },
772
- "UpdateRadius":{
773
- "name":"UpdateRadius",
774
- "http":{
775
- "method":"POST",
776
- "requestUri":"/"
777
- },
778
- "input":{"shape":"UpdateRadiusRequest"},
779
- "output":{"shape":"UpdateRadiusResult"},
780
- "errors":[
781
- {"shape":"InvalidParameterException"},
782
- {"shape":"EntityDoesNotExistException"},
783
- {"shape":"ClientException"},
784
- {"shape":"ServiceException"}
785
- ]
786
- },
787
- "UpdateTrust":{
788
- "name":"UpdateTrust",
789
- "http":{
790
- "method":"POST",
791
- "requestUri":"/"
792
- },
793
- "input":{"shape":"UpdateTrustRequest"},
794
- "output":{"shape":"UpdateTrustResult"},
795
- "errors":[
796
- {"shape":"EntityDoesNotExistException"},
797
- {"shape":"InvalidParameterException"},
798
- {"shape":"ClientException"},
799
- {"shape":"ServiceException"}
800
- ]
801
- },
802
- "VerifyTrust":{
803
- "name":"VerifyTrust",
804
- "http":{
805
- "method":"POST",
806
- "requestUri":"/"
807
- },
808
- "input":{"shape":"VerifyTrustRequest"},
809
- "output":{"shape":"VerifyTrustResult"},
810
- "errors":[
811
- {"shape":"EntityDoesNotExistException"},
812
- {"shape":"InvalidParameterException"},
813
- {"shape":"ClientException"},
814
- {"shape":"ServiceException"},
815
- {"shape":"UnsupportedOperationException"}
816
- ]
817
- }
818
- },
819
- "shapes":{
820
- "AcceptSharedDirectoryRequest":{
821
- "type":"structure",
822
- "required":["SharedDirectoryId"],
823
- "members":{
824
- "SharedDirectoryId":{"shape":"DirectoryId"}
825
- }
826
- },
827
- "AcceptSharedDirectoryResult":{
828
- "type":"structure",
829
- "members":{
830
- "SharedDirectory":{"shape":"SharedDirectory"}
831
- }
832
- },
833
- "AccessDeniedException":{
834
- "type":"structure",
835
- "members":{
836
- "Message":{"shape":"ExceptionMessage"},
837
- "RequestId":{"shape":"RequestId"}
838
- },
839
- "exception":true
840
- },
841
- "AccessUrl":{
842
- "type":"string",
843
- "max":128,
844
- "min":1
845
- },
846
- "AddIpRoutesRequest":{
847
- "type":"structure",
848
- "required":[
849
- "DirectoryId",
850
- "IpRoutes"
851
- ],
852
- "members":{
853
- "DirectoryId":{"shape":"DirectoryId"},
854
- "IpRoutes":{"shape":"IpRoutes"},
855
- "UpdateSecurityGroupForDirectoryControllers":{"shape":"UpdateSecurityGroupForDirectoryControllers"}
856
- }
857
- },
858
- "AddIpRoutesResult":{
859
- "type":"structure",
860
- "members":{
861
- }
862
- },
863
- "AddTagsToResourceRequest":{
864
- "type":"structure",
865
- "required":[
866
- "ResourceId",
867
- "Tags"
868
- ],
869
- "members":{
870
- "ResourceId":{"shape":"ResourceId"},
871
- "Tags":{"shape":"Tags"}
872
- }
873
- },
874
- "AddTagsToResourceResult":{
875
- "type":"structure",
876
- "members":{
877
- }
878
- },
879
- "AddedDateTime":{"type":"timestamp"},
880
- "AliasName":{
881
- "type":"string",
882
- "max":62,
883
- "min":1,
884
- "pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*"
885
- },
886
- "Attribute":{
887
- "type":"structure",
888
- "members":{
889
- "Name":{"shape":"AttributeName"},
890
- "Value":{"shape":"AttributeValue"}
891
- }
892
- },
893
- "AttributeName":{
894
- "type":"string",
895
- "min":1
896
- },
897
- "AttributeValue":{"type":"string"},
898
- "Attributes":{
899
- "type":"list",
900
- "member":{"shape":"Attribute"}
901
- },
902
- "AuthenticationFailedException":{
903
- "type":"structure",
904
- "members":{
905
- "Message":{"shape":"ExceptionMessage"},
906
- "RequestId":{"shape":"RequestId"}
907
- },
908
- "exception":true
909
- },
910
- "AvailabilityZone":{"type":"string"},
911
- "AvailabilityZones":{
912
- "type":"list",
913
- "member":{"shape":"AvailabilityZone"}
914
- },
915
- "CancelSchemaExtensionRequest":{
916
- "type":"structure",
917
- "required":[
918
- "DirectoryId",
919
- "SchemaExtensionId"
920
- ],
921
- "members":{
922
- "DirectoryId":{"shape":"DirectoryId"},
923
- "SchemaExtensionId":{"shape":"SchemaExtensionId"}
924
- }
925
- },
926
- "CancelSchemaExtensionResult":{
927
- "type":"structure",
928
- "members":{
929
- }
930
- },
931
- "CidrIp":{
932
- "type":"string",
933
- "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])(\\/([1-9]|[1-2][0-9]|3[0-2]))$"
934
- },
935
- "CidrIps":{
936
- "type":"list",
937
- "member":{"shape":"CidrIp"}
938
- },
939
- "ClientException":{
940
- "type":"structure",
941
- "members":{
942
- "Message":{"shape":"ExceptionMessage"},
943
- "RequestId":{"shape":"RequestId"}
944
- },
945
- "exception":true
946
- },
947
- "CloudOnlyDirectoriesLimitReached":{"type":"boolean"},
948
- "Computer":{
949
- "type":"structure",
950
- "members":{
951
- "ComputerId":{"shape":"SID"},
952
- "ComputerName":{"shape":"ComputerName"},
953
- "ComputerAttributes":{"shape":"Attributes"}
954
- }
955
- },
956
- "ComputerName":{
957
- "type":"string",
958
- "max":15,
959
- "min":1
960
- },
961
- "ComputerPassword":{
962
- "type":"string",
963
- "max":64,
964
- "min":8,
965
- "pattern":"[\\u0020-\\u00FF]+",
966
- "sensitive":true
967
- },
968
- "ConditionalForwarder":{
969
- "type":"structure",
970
- "members":{
971
- "RemoteDomainName":{"shape":"RemoteDomainName"},
972
- "DnsIpAddrs":{"shape":"DnsIpAddrs"},
973
- "ReplicationScope":{"shape":"ReplicationScope"}
974
- }
975
- },
976
- "ConditionalForwarders":{
977
- "type":"list",
978
- "member":{"shape":"ConditionalForwarder"}
979
- },
980
- "ConnectDirectoryRequest":{
981
- "type":"structure",
982
- "required":[
983
- "Name",
984
- "Password",
985
- "Size",
986
- "ConnectSettings"
987
- ],
988
- "members":{
989
- "Name":{"shape":"DirectoryName"},
990
- "ShortName":{"shape":"DirectoryShortName"},
991
- "Password":{"shape":"ConnectPassword"},
992
- "Description":{"shape":"Description"},
993
- "Size":{"shape":"DirectorySize"},
994
- "ConnectSettings":{"shape":"DirectoryConnectSettings"}
995
- }
996
- },
997
- "ConnectDirectoryResult":{
998
- "type":"structure",
999
- "members":{
1000
- "DirectoryId":{"shape":"DirectoryId"}
1001
- }
1002
- },
1003
- "ConnectPassword":{
1004
- "type":"string",
1005
- "max":128,
1006
- "min":1,
1007
- "sensitive":true
1008
- },
1009
- "ConnectedDirectoriesLimitReached":{"type":"boolean"},
1010
- "CreateAliasRequest":{
1011
- "type":"structure",
1012
- "required":[
1013
- "DirectoryId",
1014
- "Alias"
1015
- ],
1016
- "members":{
1017
- "DirectoryId":{"shape":"DirectoryId"},
1018
- "Alias":{"shape":"AliasName"}
1019
- }
1020
- },
1021
- "CreateAliasResult":{
1022
- "type":"structure",
1023
- "members":{
1024
- "DirectoryId":{"shape":"DirectoryId"},
1025
- "Alias":{"shape":"AliasName"}
1026
- }
1027
- },
1028
- "CreateComputerRequest":{
1029
- "type":"structure",
1030
- "required":[
1031
- "DirectoryId",
1032
- "ComputerName",
1033
- "Password"
1034
- ],
1035
- "members":{
1036
- "DirectoryId":{"shape":"DirectoryId"},
1037
- "ComputerName":{"shape":"ComputerName"},
1038
- "Password":{"shape":"ComputerPassword"},
1039
- "OrganizationalUnitDistinguishedName":{"shape":"OrganizationalUnitDN"},
1040
- "ComputerAttributes":{"shape":"Attributes"}
1041
- }
1042
- },
1043
- "CreateComputerResult":{
1044
- "type":"structure",
1045
- "members":{
1046
- "Computer":{"shape":"Computer"}
1047
- }
1048
- },
1049
- "CreateConditionalForwarderRequest":{
1050
- "type":"structure",
1051
- "required":[
1052
- "DirectoryId",
1053
- "RemoteDomainName",
1054
- "DnsIpAddrs"
1055
- ],
1056
- "members":{
1057
- "DirectoryId":{"shape":"DirectoryId"},
1058
- "RemoteDomainName":{"shape":"RemoteDomainName"},
1059
- "DnsIpAddrs":{"shape":"DnsIpAddrs"}
1060
- }
1061
- },
1062
- "CreateConditionalForwarderResult":{
1063
- "type":"structure",
1064
- "members":{
1065
- }
1066
- },
1067
- "CreateDirectoryRequest":{
1068
- "type":"structure",
1069
- "required":[
1070
- "Name",
1071
- "Password",
1072
- "Size"
1073
- ],
1074
- "members":{
1075
- "Name":{"shape":"DirectoryName"},
1076
- "ShortName":{"shape":"DirectoryShortName"},
1077
- "Password":{"shape":"Password"},
1078
- "Description":{"shape":"Description"},
1079
- "Size":{"shape":"DirectorySize"},
1080
- "VpcSettings":{"shape":"DirectoryVpcSettings"}
1081
- }
1082
- },
1083
- "CreateDirectoryResult":{
1084
- "type":"structure",
1085
- "members":{
1086
- "DirectoryId":{"shape":"DirectoryId"}
1087
- }
1088
- },
1089
- "CreateLogSubscriptionRequest":{
1090
- "type":"structure",
1091
- "required":[
1092
- "DirectoryId",
1093
- "LogGroupName"
1094
- ],
1095
- "members":{
1096
- "DirectoryId":{"shape":"DirectoryId"},
1097
- "LogGroupName":{"shape":"LogGroupName"}
1098
- }
1099
- },
1100
- "CreateLogSubscriptionResult":{
1101
- "type":"structure",
1102
- "members":{
1103
- }
1104
- },
1105
- "CreateMicrosoftADRequest":{
1106
- "type":"structure",
1107
- "required":[
1108
- "Name",
1109
- "Password",
1110
- "VpcSettings"
1111
- ],
1112
- "members":{
1113
- "Name":{"shape":"DirectoryName"},
1114
- "ShortName":{"shape":"DirectoryShortName"},
1115
- "Password":{"shape":"Password"},
1116
- "Description":{"shape":"Description"},
1117
- "VpcSettings":{"shape":"DirectoryVpcSettings"},
1118
- "Edition":{"shape":"DirectoryEdition"}
1119
- }
1120
- },
1121
- "CreateMicrosoftADResult":{
1122
- "type":"structure",
1123
- "members":{
1124
- "DirectoryId":{"shape":"DirectoryId"}
1125
- }
1126
- },
1127
- "CreateSnapshotBeforeSchemaExtension":{"type":"boolean"},
1128
- "CreateSnapshotRequest":{
1129
- "type":"structure",
1130
- "required":["DirectoryId"],
1131
- "members":{
1132
- "DirectoryId":{"shape":"DirectoryId"},
1133
- "Name":{"shape":"SnapshotName"}
1134
- }
1135
- },
1136
- "CreateSnapshotResult":{
1137
- "type":"structure",
1138
- "members":{
1139
- "SnapshotId":{"shape":"SnapshotId"}
1140
- }
1141
- },
1142
- "CreateTrustRequest":{
1143
- "type":"structure",
1144
- "required":[
1145
- "DirectoryId",
1146
- "RemoteDomainName",
1147
- "TrustPassword",
1148
- "TrustDirection"
1149
- ],
1150
- "members":{
1151
- "DirectoryId":{"shape":"DirectoryId"},
1152
- "RemoteDomainName":{"shape":"RemoteDomainName"},
1153
- "TrustPassword":{"shape":"TrustPassword"},
1154
- "TrustDirection":{"shape":"TrustDirection"},
1155
- "TrustType":{"shape":"TrustType"},
1156
- "ConditionalForwarderIpAddrs":{"shape":"DnsIpAddrs"},
1157
- "SelectiveAuth":{"shape":"SelectiveAuth"}
1158
- }
1159
- },
1160
- "CreateTrustResult":{
1161
- "type":"structure",
1162
- "members":{
1163
- "TrustId":{"shape":"TrustId"}
1164
- }
1165
- },
1166
- "CreatedDateTime":{"type":"timestamp"},
1167
- "CustomerId":{
1168
- "type":"string",
1169
- "pattern":"^(\\d{12})$"
1170
- },
1171
- "CustomerUserName":{
1172
- "type":"string",
1173
- "max":64,
1174
- "min":1,
1175
- "pattern":"^(?!.*\\\\|.*\"|.*\\/|.*\\[|.*\\]|.*:|.*;|.*\\||.*=|.*,|.*\\+|.*\\*|.*\\?|.*<|.*>|.*@).*$"
1176
- },
1177
- "DeleteAssociatedConditionalForwarder":{"type":"boolean"},
1178
- "DeleteConditionalForwarderRequest":{
1179
- "type":"structure",
1180
- "required":[
1181
- "DirectoryId",
1182
- "RemoteDomainName"
1183
- ],
1184
- "members":{
1185
- "DirectoryId":{"shape":"DirectoryId"},
1186
- "RemoteDomainName":{"shape":"RemoteDomainName"}
1187
- }
1188
- },
1189
- "DeleteConditionalForwarderResult":{
1190
- "type":"structure",
1191
- "members":{
1192
- }
1193
- },
1194
- "DeleteDirectoryRequest":{
1195
- "type":"structure",
1196
- "required":["DirectoryId"],
1197
- "members":{
1198
- "DirectoryId":{"shape":"DirectoryId"}
1199
- }
1200
- },
1201
- "DeleteDirectoryResult":{
1202
- "type":"structure",
1203
- "members":{
1204
- "DirectoryId":{"shape":"DirectoryId"}
1205
- }
1206
- },
1207
- "DeleteLogSubscriptionRequest":{
1208
- "type":"structure",
1209
- "required":["DirectoryId"],
1210
- "members":{
1211
- "DirectoryId":{"shape":"DirectoryId"}
1212
- }
1213
- },
1214
- "DeleteLogSubscriptionResult":{
1215
- "type":"structure",
1216
- "members":{
1217
- }
1218
- },
1219
- "DeleteSnapshotRequest":{
1220
- "type":"structure",
1221
- "required":["SnapshotId"],
1222
- "members":{
1223
- "SnapshotId":{"shape":"SnapshotId"}
1224
- }
1225
- },
1226
- "DeleteSnapshotResult":{
1227
- "type":"structure",
1228
- "members":{
1229
- "SnapshotId":{"shape":"SnapshotId"}
1230
- }
1231
- },
1232
- "DeleteTrustRequest":{
1233
- "type":"structure",
1234
- "required":["TrustId"],
1235
- "members":{
1236
- "TrustId":{"shape":"TrustId"},
1237
- "DeleteAssociatedConditionalForwarder":{"shape":"DeleteAssociatedConditionalForwarder"}
1238
- }
1239
- },
1240
- "DeleteTrustResult":{
1241
- "type":"structure",
1242
- "members":{
1243
- "TrustId":{"shape":"TrustId"}
1244
- }
1245
- },
1246
- "DeregisterEventTopicRequest":{
1247
- "type":"structure",
1248
- "required":[
1249
- "DirectoryId",
1250
- "TopicName"
1251
- ],
1252
- "members":{
1253
- "DirectoryId":{"shape":"DirectoryId"},
1254
- "TopicName":{"shape":"TopicName"}
1255
- }
1256
- },
1257
- "DeregisterEventTopicResult":{
1258
- "type":"structure",
1259
- "members":{
1260
- }
1261
- },
1262
- "DescribeConditionalForwardersRequest":{
1263
- "type":"structure",
1264
- "required":["DirectoryId"],
1265
- "members":{
1266
- "DirectoryId":{"shape":"DirectoryId"},
1267
- "RemoteDomainNames":{"shape":"RemoteDomainNames"}
1268
- }
1269
- },
1270
- "DescribeConditionalForwardersResult":{
1271
- "type":"structure",
1272
- "members":{
1273
- "ConditionalForwarders":{"shape":"ConditionalForwarders"}
1274
- }
1275
- },
1276
- "DescribeDirectoriesRequest":{
1277
- "type":"structure",
1278
- "members":{
1279
- "DirectoryIds":{"shape":"DirectoryIds"},
1280
- "NextToken":{"shape":"NextToken"},
1281
- "Limit":{"shape":"Limit"}
1282
- }
1283
- },
1284
- "DescribeDirectoriesResult":{
1285
- "type":"structure",
1286
- "members":{
1287
- "DirectoryDescriptions":{"shape":"DirectoryDescriptions"},
1288
- "NextToken":{"shape":"NextToken"}
1289
- }
1290
- },
1291
- "DescribeDomainControllersRequest":{
1292
- "type":"structure",
1293
- "required":["DirectoryId"],
1294
- "members":{
1295
- "DirectoryId":{"shape":"DirectoryId"},
1296
- "DomainControllerIds":{"shape":"DomainControllerIds"},
1297
- "NextToken":{"shape":"NextToken"},
1298
- "Limit":{"shape":"Limit"}
1299
- }
1300
- },
1301
- "DescribeDomainControllersResult":{
1302
- "type":"structure",
1303
- "members":{
1304
- "DomainControllers":{"shape":"DomainControllers"},
1305
- "NextToken":{"shape":"NextToken"}
1306
- }
1307
- },
1308
- "DescribeEventTopicsRequest":{
1309
- "type":"structure",
1310
- "members":{
1311
- "DirectoryId":{"shape":"DirectoryId"},
1312
- "TopicNames":{"shape":"TopicNames"}
1313
- }
1314
- },
1315
- "DescribeEventTopicsResult":{
1316
- "type":"structure",
1317
- "members":{
1318
- "EventTopics":{"shape":"EventTopics"}
1319
- }
1320
- },
1321
- "DescribeSharedDirectoriesRequest":{
1322
- "type":"structure",
1323
- "required":["OwnerDirectoryId"],
1324
- "members":{
1325
- "OwnerDirectoryId":{"shape":"DirectoryId"},
1326
- "SharedDirectoryIds":{"shape":"DirectoryIds"},
1327
- "NextToken":{"shape":"NextToken"},
1328
- "Limit":{"shape":"Limit"}
1329
- }
1330
- },
1331
- "DescribeSharedDirectoriesResult":{
1332
- "type":"structure",
1333
- "members":{
1334
- "SharedDirectories":{"shape":"SharedDirectories"},
1335
- "NextToken":{"shape":"NextToken"}
1336
- }
1337
- },
1338
- "DescribeSnapshotsRequest":{
1339
- "type":"structure",
1340
- "members":{
1341
- "DirectoryId":{"shape":"DirectoryId"},
1342
- "SnapshotIds":{"shape":"SnapshotIds"},
1343
- "NextToken":{"shape":"NextToken"},
1344
- "Limit":{"shape":"Limit"}
1345
- }
1346
- },
1347
- "DescribeSnapshotsResult":{
1348
- "type":"structure",
1349
- "members":{
1350
- "Snapshots":{"shape":"Snapshots"},
1351
- "NextToken":{"shape":"NextToken"}
1352
- }
1353
- },
1354
- "DescribeTrustsRequest":{
1355
- "type":"structure",
1356
- "members":{
1357
- "DirectoryId":{"shape":"DirectoryId"},
1358
- "TrustIds":{"shape":"TrustIds"},
1359
- "NextToken":{"shape":"NextToken"},
1360
- "Limit":{"shape":"Limit"}
1361
- }
1362
- },
1363
- "DescribeTrustsResult":{
1364
- "type":"structure",
1365
- "members":{
1366
- "Trusts":{"shape":"Trusts"},
1367
- "NextToken":{"shape":"NextToken"}
1368
- }
1369
- },
1370
- "Description":{
1371
- "type":"string",
1372
- "max":128,
1373
- "min":0,
1374
- "pattern":"^([a-zA-Z0-9_])[\\\\a-zA-Z0-9_@#%*+=:?./!\\s-]*$"
1375
- },
1376
- "DesiredNumberOfDomainControllers":{
1377
- "type":"integer",
1378
- "min":2
1379
- },
1380
- "DirectoryAlreadySharedException":{
1381
- "type":"structure",
1382
- "members":{
1383
- "Message":{"shape":"ExceptionMessage"},
1384
- "RequestId":{"shape":"RequestId"}
1385
- },
1386
- "exception":true
1387
- },
1388
- "DirectoryConnectSettings":{
1389
- "type":"structure",
1390
- "required":[
1391
- "VpcId",
1392
- "SubnetIds",
1393
- "CustomerDnsIps",
1394
- "CustomerUserName"
1395
- ],
1396
- "members":{
1397
- "VpcId":{"shape":"VpcId"},
1398
- "SubnetIds":{"shape":"SubnetIds"},
1399
- "CustomerDnsIps":{"shape":"DnsIpAddrs"},
1400
- "CustomerUserName":{"shape":"UserName"}
1401
- }
1402
- },
1403
- "DirectoryConnectSettingsDescription":{
1404
- "type":"structure",
1405
- "members":{
1406
- "VpcId":{"shape":"VpcId"},
1407
- "SubnetIds":{"shape":"SubnetIds"},
1408
- "CustomerUserName":{"shape":"UserName"},
1409
- "SecurityGroupId":{"shape":"SecurityGroupId"},
1410
- "AvailabilityZones":{"shape":"AvailabilityZones"},
1411
- "ConnectIps":{"shape":"IpAddrs"}
1412
- }
1413
- },
1414
- "DirectoryDescription":{
1415
- "type":"structure",
1416
- "members":{
1417
- "DirectoryId":{"shape":"DirectoryId"},
1418
- "Name":{"shape":"DirectoryName"},
1419
- "ShortName":{"shape":"DirectoryShortName"},
1420
- "Size":{"shape":"DirectorySize"},
1421
- "Edition":{"shape":"DirectoryEdition"},
1422
- "Alias":{"shape":"AliasName"},
1423
- "AccessUrl":{"shape":"AccessUrl"},
1424
- "Description":{"shape":"Description"},
1425
- "DnsIpAddrs":{"shape":"DnsIpAddrs"},
1426
- "Stage":{"shape":"DirectoryStage"},
1427
- "ShareStatus":{"shape":"ShareStatus"},
1428
- "ShareMethod":{"shape":"ShareMethod"},
1429
- "ShareNotes":{"shape":"Notes"},
1430
- "LaunchTime":{"shape":"LaunchTime"},
1431
- "StageLastUpdatedDateTime":{"shape":"LastUpdatedDateTime"},
1432
- "Type":{"shape":"DirectoryType"},
1433
- "VpcSettings":{"shape":"DirectoryVpcSettingsDescription"},
1434
- "ConnectSettings":{"shape":"DirectoryConnectSettingsDescription"},
1435
- "RadiusSettings":{"shape":"RadiusSettings"},
1436
- "RadiusStatus":{"shape":"RadiusStatus"},
1437
- "StageReason":{"shape":"StageReason"},
1438
- "SsoEnabled":{"shape":"SsoEnabled"},
1439
- "DesiredNumberOfDomainControllers":{"shape":"DesiredNumberOfDomainControllers"},
1440
- "OwnerDirectoryDescription":{"shape":"OwnerDirectoryDescription"}
1441
- }
1442
- },
1443
- "DirectoryDescriptions":{
1444
- "type":"list",
1445
- "member":{"shape":"DirectoryDescription"}
1446
- },
1447
- "DirectoryEdition":{
1448
- "type":"string",
1449
- "enum":[
1450
- "Enterprise",
1451
- "Standard"
1452
- ]
1453
- },
1454
- "DirectoryId":{
1455
- "type":"string",
1456
- "pattern":"^d-[0-9a-f]{10}$"
1457
- },
1458
- "DirectoryIds":{
1459
- "type":"list",
1460
- "member":{"shape":"DirectoryId"}
1461
- },
1462
- "DirectoryLimitExceededException":{
1463
- "type":"structure",
1464
- "members":{
1465
- "Message":{"shape":"ExceptionMessage"},
1466
- "RequestId":{"shape":"RequestId"}
1467
- },
1468
- "exception":true
1469
- },
1470
- "DirectoryLimits":{
1471
- "type":"structure",
1472
- "members":{
1473
- "CloudOnlyDirectoriesLimit":{"shape":"Limit"},
1474
- "CloudOnlyDirectoriesCurrentCount":{"shape":"Limit"},
1475
- "CloudOnlyDirectoriesLimitReached":{"shape":"CloudOnlyDirectoriesLimitReached"},
1476
- "CloudOnlyMicrosoftADLimit":{"shape":"Limit"},
1477
- "CloudOnlyMicrosoftADCurrentCount":{"shape":"Limit"},
1478
- "CloudOnlyMicrosoftADLimitReached":{"shape":"CloudOnlyDirectoriesLimitReached"},
1479
- "ConnectedDirectoriesLimit":{"shape":"Limit"},
1480
- "ConnectedDirectoriesCurrentCount":{"shape":"Limit"},
1481
- "ConnectedDirectoriesLimitReached":{"shape":"ConnectedDirectoriesLimitReached"}
1482
- }
1483
- },
1484
- "DirectoryName":{
1485
- "type":"string",
1486
- "pattern":"^([a-zA-Z0-9]+[\\\\.-])+([a-zA-Z0-9])+$"
1487
- },
1488
- "DirectoryNotSharedException":{
1489
- "type":"structure",
1490
- "members":{
1491
- "Message":{"shape":"ExceptionMessage"},
1492
- "RequestId":{"shape":"RequestId"}
1493
- },
1494
- "exception":true
1495
- },
1496
- "DirectoryShortName":{
1497
- "type":"string",
1498
- "pattern":"^[^\\\\/:*?\\\"\\<\\>|.]+[^\\\\/:*?\\\"<>|]*$"
1499
- },
1500
- "DirectorySize":{
1501
- "type":"string",
1502
- "enum":[
1503
- "Small",
1504
- "Large"
1505
- ]
1506
- },
1507
- "DirectoryStage":{
1508
- "type":"string",
1509
- "enum":[
1510
- "Requested",
1511
- "Creating",
1512
- "Created",
1513
- "Active",
1514
- "Inoperable",
1515
- "Impaired",
1516
- "Restoring",
1517
- "RestoreFailed",
1518
- "Deleting",
1519
- "Deleted",
1520
- "Failed"
1521
- ]
1522
- },
1523
- "DirectoryType":{
1524
- "type":"string",
1525
- "enum":[
1526
- "SimpleAD",
1527
- "ADConnector",
1528
- "MicrosoftAD",
1529
- "SharedMicrosoftAD"
1530
- ]
1531
- },
1532
- "DirectoryUnavailableException":{
1533
- "type":"structure",
1534
- "members":{
1535
- "Message":{"shape":"ExceptionMessage"},
1536
- "RequestId":{"shape":"RequestId"}
1537
- },
1538
- "exception":true
1539
- },
1540
- "DirectoryVpcSettings":{
1541
- "type":"structure",
1542
- "required":[
1543
- "VpcId",
1544
- "SubnetIds"
1545
- ],
1546
- "members":{
1547
- "VpcId":{"shape":"VpcId"},
1548
- "SubnetIds":{"shape":"SubnetIds"}
1549
- }
1550
- },
1551
- "DirectoryVpcSettingsDescription":{
1552
- "type":"structure",
1553
- "members":{
1554
- "VpcId":{"shape":"VpcId"},
1555
- "SubnetIds":{"shape":"SubnetIds"},
1556
- "SecurityGroupId":{"shape":"SecurityGroupId"},
1557
- "AvailabilityZones":{"shape":"AvailabilityZones"}
1558
- }
1559
- },
1560
- "DisableRadiusRequest":{
1561
- "type":"structure",
1562
- "required":["DirectoryId"],
1563
- "members":{
1564
- "DirectoryId":{"shape":"DirectoryId"}
1565
- }
1566
- },
1567
- "DisableRadiusResult":{
1568
- "type":"structure",
1569
- "members":{
1570
- }
1571
- },
1572
- "DisableSsoRequest":{
1573
- "type":"structure",
1574
- "required":["DirectoryId"],
1575
- "members":{
1576
- "DirectoryId":{"shape":"DirectoryId"},
1577
- "UserName":{"shape":"UserName"},
1578
- "Password":{"shape":"ConnectPassword"}
1579
- }
1580
- },
1581
- "DisableSsoResult":{
1582
- "type":"structure",
1583
- "members":{
1584
- }
1585
- },
1586
- "DnsIpAddrs":{
1587
- "type":"list",
1588
- "member":{"shape":"IpAddr"}
1589
- },
1590
- "DomainController":{
1591
- "type":"structure",
1592
- "members":{
1593
- "DirectoryId":{"shape":"DirectoryId"},
1594
- "DomainControllerId":{"shape":"DomainControllerId"},
1595
- "DnsIpAddr":{"shape":"IpAddr"},
1596
- "VpcId":{"shape":"VpcId"},
1597
- "SubnetId":{"shape":"SubnetId"},
1598
- "AvailabilityZone":{"shape":"AvailabilityZone"},
1599
- "Status":{"shape":"DomainControllerStatus"},
1600
- "StatusReason":{"shape":"DomainControllerStatusReason"},
1601
- "LaunchTime":{"shape":"LaunchTime"},
1602
- "StatusLastUpdatedDateTime":{"shape":"LastUpdatedDateTime"}
1603
- }
1604
- },
1605
- "DomainControllerId":{
1606
- "type":"string",
1607
- "pattern":"^dc-[0-9a-f]{10}$"
1608
- },
1609
- "DomainControllerIds":{
1610
- "type":"list",
1611
- "member":{"shape":"DomainControllerId"}
1612
- },
1613
- "DomainControllerLimitExceededException":{
1614
- "type":"structure",
1615
- "members":{
1616
- "Message":{"shape":"ExceptionMessage"},
1617
- "RequestId":{"shape":"RequestId"}
1618
- },
1619
- "exception":true
1620
- },
1621
- "DomainControllerStatus":{
1622
- "type":"string",
1623
- "enum":[
1624
- "Creating",
1625
- "Active",
1626
- "Impaired",
1627
- "Restoring",
1628
- "Deleting",
1629
- "Deleted",
1630
- "Failed"
1631
- ]
1632
- },
1633
- "DomainControllerStatusReason":{"type":"string"},
1634
- "DomainControllers":{
1635
- "type":"list",
1636
- "member":{"shape":"DomainController"}
1637
- },
1638
- "EnableRadiusRequest":{
1639
- "type":"structure",
1640
- "required":[
1641
- "DirectoryId",
1642
- "RadiusSettings"
1643
- ],
1644
- "members":{
1645
- "DirectoryId":{"shape":"DirectoryId"},
1646
- "RadiusSettings":{"shape":"RadiusSettings"}
1647
- }
1648
- },
1649
- "EnableRadiusResult":{
1650
- "type":"structure",
1651
- "members":{
1652
- }
1653
- },
1654
- "EnableSsoRequest":{
1655
- "type":"structure",
1656
- "required":["DirectoryId"],
1657
- "members":{
1658
- "DirectoryId":{"shape":"DirectoryId"},
1659
- "UserName":{"shape":"UserName"},
1660
- "Password":{"shape":"ConnectPassword"}
1661
- }
1662
- },
1663
- "EnableSsoResult":{
1664
- "type":"structure",
1665
- "members":{
1666
- }
1667
- },
1668
- "EndDateTime":{"type":"timestamp"},
1669
- "EntityAlreadyExistsException":{
1670
- "type":"structure",
1671
- "members":{
1672
- "Message":{"shape":"ExceptionMessage"},
1673
- "RequestId":{"shape":"RequestId"}
1674
- },
1675
- "exception":true
1676
- },
1677
- "EntityDoesNotExistException":{
1678
- "type":"structure",
1679
- "members":{
1680
- "Message":{"shape":"ExceptionMessage"},
1681
- "RequestId":{"shape":"RequestId"}
1682
- },
1683
- "exception":true
1684
- },
1685
- "EventTopic":{
1686
- "type":"structure",
1687
- "members":{
1688
- "DirectoryId":{"shape":"DirectoryId"},
1689
- "TopicName":{"shape":"TopicName"},
1690
- "TopicArn":{"shape":"TopicArn"},
1691
- "CreatedDateTime":{"shape":"CreatedDateTime"},
1692
- "Status":{"shape":"TopicStatus"}
1693
- }
1694
- },
1695
- "EventTopics":{
1696
- "type":"list",
1697
- "member":{"shape":"EventTopic"}
1698
- },
1699
- "ExceptionMessage":{"type":"string"},
1700
- "GetDirectoryLimitsRequest":{
1701
- "type":"structure",
1702
- "members":{
1703
- }
1704
- },
1705
- "GetDirectoryLimitsResult":{
1706
- "type":"structure",
1707
- "members":{
1708
- "DirectoryLimits":{"shape":"DirectoryLimits"}
1709
- }
1710
- },
1711
- "GetSnapshotLimitsRequest":{
1712
- "type":"structure",
1713
- "required":["DirectoryId"],
1714
- "members":{
1715
- "DirectoryId":{"shape":"DirectoryId"}
1716
- }
1717
- },
1718
- "GetSnapshotLimitsResult":{
1719
- "type":"structure",
1720
- "members":{
1721
- "SnapshotLimits":{"shape":"SnapshotLimits"}
1722
- }
1723
- },
1724
- "InsufficientPermissionsException":{
1725
- "type":"structure",
1726
- "members":{
1727
- "Message":{"shape":"ExceptionMessage"},
1728
- "RequestId":{"shape":"RequestId"}
1729
- },
1730
- "exception":true
1731
- },
1732
- "InvalidNextTokenException":{
1733
- "type":"structure",
1734
- "members":{
1735
- "Message":{"shape":"ExceptionMessage"},
1736
- "RequestId":{"shape":"RequestId"}
1737
- },
1738
- "exception":true
1739
- },
1740
- "InvalidParameterException":{
1741
- "type":"structure",
1742
- "members":{
1743
- "Message":{"shape":"ExceptionMessage"},
1744
- "RequestId":{"shape":"RequestId"}
1745
- },
1746
- "exception":true
1747
- },
1748
- "InvalidPasswordException":{
1749
- "type":"structure",
1750
- "members":{
1751
- "Message":{"shape":"ExceptionMessage"},
1752
- "RequestId":{"shape":"RequestId"}
1753
- },
1754
- "exception":true
1755
- },
1756
- "InvalidTargetException":{
1757
- "type":"structure",
1758
- "members":{
1759
- "Message":{"shape":"ExceptionMessage"},
1760
- "RequestId":{"shape":"RequestId"}
1761
- },
1762
- "exception":true
1763
- },
1764
- "IpAddr":{
1765
- "type":"string",
1766
- "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]?)$"
1767
- },
1768
- "IpAddrs":{
1769
- "type":"list",
1770
- "member":{"shape":"IpAddr"}
1771
- },
1772
- "IpRoute":{
1773
- "type":"structure",
1774
- "members":{
1775
- "CidrIp":{"shape":"CidrIp"},
1776
- "Description":{"shape":"Description"}
1777
- }
1778
- },
1779
- "IpRouteInfo":{
1780
- "type":"structure",
1781
- "members":{
1782
- "DirectoryId":{"shape":"DirectoryId"},
1783
- "CidrIp":{"shape":"CidrIp"},
1784
- "IpRouteStatusMsg":{"shape":"IpRouteStatusMsg"},
1785
- "AddedDateTime":{"shape":"AddedDateTime"},
1786
- "IpRouteStatusReason":{"shape":"IpRouteStatusReason"},
1787
- "Description":{"shape":"Description"}
1788
- }
1789
- },
1790
- "IpRouteLimitExceededException":{
1791
- "type":"structure",
1792
- "members":{
1793
- "Message":{"shape":"ExceptionMessage"},
1794
- "RequestId":{"shape":"RequestId"}
1795
- },
1796
- "exception":true
1797
- },
1798
- "IpRouteStatusMsg":{
1799
- "type":"string",
1800
- "enum":[
1801
- "Adding",
1802
- "Added",
1803
- "Removing",
1804
- "Removed",
1805
- "AddFailed",
1806
- "RemoveFailed"
1807
- ]
1808
- },
1809
- "IpRouteStatusReason":{"type":"string"},
1810
- "IpRoutes":{
1811
- "type":"list",
1812
- "member":{"shape":"IpRoute"}
1813
- },
1814
- "IpRoutesInfo":{
1815
- "type":"list",
1816
- "member":{"shape":"IpRouteInfo"}
1817
- },
1818
- "LastUpdatedDateTime":{"type":"timestamp"},
1819
- "LaunchTime":{"type":"timestamp"},
1820
- "LdifContent":{
1821
- "type":"string",
1822
- "max":500000,
1823
- "min":1
1824
- },
1825
- "Limit":{
1826
- "type":"integer",
1827
- "min":0
1828
- },
1829
- "ListIpRoutesRequest":{
1830
- "type":"structure",
1831
- "required":["DirectoryId"],
1832
- "members":{
1833
- "DirectoryId":{"shape":"DirectoryId"},
1834
- "NextToken":{"shape":"NextToken"},
1835
- "Limit":{"shape":"Limit"}
1836
- }
1837
- },
1838
- "ListIpRoutesResult":{
1839
- "type":"structure",
1840
- "members":{
1841
- "IpRoutesInfo":{"shape":"IpRoutesInfo"},
1842
- "NextToken":{"shape":"NextToken"}
1843
- }
1844
- },
1845
- "ListLogSubscriptionsRequest":{
1846
- "type":"structure",
1847
- "members":{
1848
- "DirectoryId":{"shape":"DirectoryId"},
1849
- "NextToken":{"shape":"NextToken"},
1850
- "Limit":{"shape":"Limit"}
1851
- }
1852
- },
1853
- "ListLogSubscriptionsResult":{
1854
- "type":"structure",
1855
- "members":{
1856
- "LogSubscriptions":{"shape":"LogSubscriptions"},
1857
- "NextToken":{"shape":"NextToken"}
1858
- }
1859
- },
1860
- "ListSchemaExtensionsRequest":{
1861
- "type":"structure",
1862
- "required":["DirectoryId"],
1863
- "members":{
1864
- "DirectoryId":{"shape":"DirectoryId"},
1865
- "NextToken":{"shape":"NextToken"},
1866
- "Limit":{"shape":"Limit"}
1867
- }
1868
- },
1869
- "ListSchemaExtensionsResult":{
1870
- "type":"structure",
1871
- "members":{
1872
- "SchemaExtensionsInfo":{"shape":"SchemaExtensionsInfo"},
1873
- "NextToken":{"shape":"NextToken"}
1874
- }
1875
- },
1876
- "ListTagsForResourceRequest":{
1877
- "type":"structure",
1878
- "required":["ResourceId"],
1879
- "members":{
1880
- "ResourceId":{"shape":"ResourceId"},
1881
- "NextToken":{"shape":"NextToken"},
1882
- "Limit":{"shape":"Limit"}
1883
- }
1884
- },
1885
- "ListTagsForResourceResult":{
1886
- "type":"structure",
1887
- "members":{
1888
- "Tags":{"shape":"Tags"},
1889
- "NextToken":{"shape":"NextToken"}
1890
- }
1891
- },
1892
- "LogGroupName":{
1893
- "type":"string",
1894
- "max":512,
1895
- "min":1,
1896
- "pattern":"[-._/#A-Za-z0-9]+"
1897
- },
1898
- "LogSubscription":{
1899
- "type":"structure",
1900
- "members":{
1901
- "DirectoryId":{"shape":"DirectoryId"},
1902
- "LogGroupName":{"shape":"LogGroupName"},
1903
- "SubscriptionCreatedDateTime":{"shape":"SubscriptionCreatedDateTime"}
1904
- }
1905
- },
1906
- "LogSubscriptions":{
1907
- "type":"list",
1908
- "member":{"shape":"LogSubscription"}
1909
- },
1910
- "ManualSnapshotsLimitReached":{"type":"boolean"},
1911
- "NextToken":{"type":"string"},
1912
- "Notes":{
1913
- "type":"string",
1914
- "max":1024,
1915
- "sensitive":true
1916
- },
1917
- "OrganizationalUnitDN":{
1918
- "type":"string",
1919
- "max":2000,
1920
- "min":1
1921
- },
1922
- "OrganizationsException":{
1923
- "type":"structure",
1924
- "members":{
1925
- "Message":{"shape":"ExceptionMessage"},
1926
- "RequestId":{"shape":"RequestId"}
1927
- },
1928
- "exception":true
1929
- },
1930
- "OwnerDirectoryDescription":{
1931
- "type":"structure",
1932
- "members":{
1933
- "DirectoryId":{"shape":"DirectoryId"},
1934
- "AccountId":{"shape":"CustomerId"},
1935
- "DnsIpAddrs":{"shape":"DnsIpAddrs"},
1936
- "VpcSettings":{"shape":"DirectoryVpcSettingsDescription"},
1937
- "RadiusSettings":{"shape":"RadiusSettings"},
1938
- "RadiusStatus":{"shape":"RadiusStatus"}
1939
- }
1940
- },
1941
- "Password":{
1942
- "type":"string",
1943
- "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]))^.*",
1944
- "sensitive":true
1945
- },
1946
- "PortNumber":{
1947
- "type":"integer",
1948
- "max":65535,
1949
- "min":1025
1950
- },
1951
- "RadiusAuthenticationProtocol":{
1952
- "type":"string",
1953
- "enum":[
1954
- "PAP",
1955
- "CHAP",
1956
- "MS-CHAPv1",
1957
- "MS-CHAPv2"
1958
- ]
1959
- },
1960
- "RadiusDisplayLabel":{
1961
- "type":"string",
1962
- "max":64,
1963
- "min":1
1964
- },
1965
- "RadiusRetries":{
1966
- "type":"integer",
1967
- "max":10,
1968
- "min":0
1969
- },
1970
- "RadiusSettings":{
1971
- "type":"structure",
1972
- "members":{
1973
- "RadiusServers":{"shape":"Servers"},
1974
- "RadiusPort":{"shape":"PortNumber"},
1975
- "RadiusTimeout":{"shape":"RadiusTimeout"},
1976
- "RadiusRetries":{"shape":"RadiusRetries"},
1977
- "SharedSecret":{"shape":"RadiusSharedSecret"},
1978
- "AuthenticationProtocol":{"shape":"RadiusAuthenticationProtocol"},
1979
- "DisplayLabel":{"shape":"RadiusDisplayLabel"},
1980
- "UseSameUsername":{"shape":"UseSameUsername"}
1981
- }
1982
- },
1983
- "RadiusSharedSecret":{
1984
- "type":"string",
1985
- "max":512,
1986
- "min":8,
1987
- "sensitive":true
1988
- },
1989
- "RadiusStatus":{
1990
- "type":"string",
1991
- "enum":[
1992
- "Creating",
1993
- "Completed",
1994
- "Failed"
1995
- ]
1996
- },
1997
- "RadiusTimeout":{
1998
- "type":"integer",
1999
- "max":20,
2000
- "min":1
2001
- },
2002
- "RegisterEventTopicRequest":{
2003
- "type":"structure",
2004
- "required":[
2005
- "DirectoryId",
2006
- "TopicName"
2007
- ],
2008
- "members":{
2009
- "DirectoryId":{"shape":"DirectoryId"},
2010
- "TopicName":{"shape":"TopicName"}
2011
- }
2012
- },
2013
- "RegisterEventTopicResult":{
2014
- "type":"structure",
2015
- "members":{
2016
- }
2017
- },
2018
- "RejectSharedDirectoryRequest":{
2019
- "type":"structure",
2020
- "required":["SharedDirectoryId"],
2021
- "members":{
2022
- "SharedDirectoryId":{"shape":"DirectoryId"}
2023
- }
2024
- },
2025
- "RejectSharedDirectoryResult":{
2026
- "type":"structure",
2027
- "members":{
2028
- "SharedDirectoryId":{"shape":"DirectoryId"}
2029
- }
2030
- },
2031
- "RemoteDomainName":{
2032
- "type":"string",
2033
- "pattern":"^([a-zA-Z0-9]+[\\\\.-])+([a-zA-Z0-9])+[.]?$"
2034
- },
2035
- "RemoteDomainNames":{
2036
- "type":"list",
2037
- "member":{"shape":"RemoteDomainName"}
2038
- },
2039
- "RemoveIpRoutesRequest":{
2040
- "type":"structure",
2041
- "required":[
2042
- "DirectoryId",
2043
- "CidrIps"
2044
- ],
2045
- "members":{
2046
- "DirectoryId":{"shape":"DirectoryId"},
2047
- "CidrIps":{"shape":"CidrIps"}
2048
- }
2049
- },
2050
- "RemoveIpRoutesResult":{
2051
- "type":"structure",
2052
- "members":{
2053
- }
2054
- },
2055
- "RemoveTagsFromResourceRequest":{
2056
- "type":"structure",
2057
- "required":[
2058
- "ResourceId",
2059
- "TagKeys"
2060
- ],
2061
- "members":{
2062
- "ResourceId":{"shape":"ResourceId"},
2063
- "TagKeys":{"shape":"TagKeys"}
2064
- }
2065
- },
2066
- "RemoveTagsFromResourceResult":{
2067
- "type":"structure",
2068
- "members":{
2069
- }
2070
- },
2071
- "ReplicationScope":{
2072
- "type":"string",
2073
- "enum":["Domain"]
2074
- },
2075
- "RequestId":{
2076
- "type":"string",
2077
- "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})$"
2078
- },
2079
- "ResetUserPasswordRequest":{
2080
- "type":"structure",
2081
- "required":[
2082
- "DirectoryId",
2083
- "UserName",
2084
- "NewPassword"
2085
- ],
2086
- "members":{
2087
- "DirectoryId":{"shape":"DirectoryId"},
2088
- "UserName":{"shape":"CustomerUserName"},
2089
- "NewPassword":{"shape":"UserPassword"}
2090
- }
2091
- },
2092
- "ResetUserPasswordResult":{
2093
- "type":"structure",
2094
- "members":{
2095
- }
2096
- },
2097
- "ResourceId":{
2098
- "type":"string",
2099
- "pattern":"^[d]-[0-9a-f]{10}$"
2100
- },
2101
- "RestoreFromSnapshotRequest":{
2102
- "type":"structure",
2103
- "required":["SnapshotId"],
2104
- "members":{
2105
- "SnapshotId":{"shape":"SnapshotId"}
2106
- }
2107
- },
2108
- "RestoreFromSnapshotResult":{
2109
- "type":"structure",
2110
- "members":{
2111
- }
2112
- },
2113
- "SID":{
2114
- "type":"string",
2115
- "max":256,
2116
- "min":1,
2117
- "pattern":"[&\\w+-.@]+"
2118
- },
2119
- "SchemaExtensionId":{
2120
- "type":"string",
2121
- "pattern":"^e-[0-9a-f]{10}$"
2122
- },
2123
- "SchemaExtensionInfo":{
2124
- "type":"structure",
2125
- "members":{
2126
- "DirectoryId":{"shape":"DirectoryId"},
2127
- "SchemaExtensionId":{"shape":"SchemaExtensionId"},
2128
- "Description":{"shape":"Description"},
2129
- "SchemaExtensionStatus":{"shape":"SchemaExtensionStatus"},
2130
- "SchemaExtensionStatusReason":{"shape":"SchemaExtensionStatusReason"},
2131
- "StartDateTime":{"shape":"StartDateTime"},
2132
- "EndDateTime":{"shape":"EndDateTime"}
2133
- }
2134
- },
2135
- "SchemaExtensionStatus":{
2136
- "type":"string",
2137
- "enum":[
2138
- "Initializing",
2139
- "CreatingSnapshot",
2140
- "UpdatingSchema",
2141
- "Replicating",
2142
- "CancelInProgress",
2143
- "RollbackInProgress",
2144
- "Cancelled",
2145
- "Failed",
2146
- "Completed"
2147
- ]
2148
- },
2149
- "SchemaExtensionStatusReason":{"type":"string"},
2150
- "SchemaExtensionsInfo":{
2151
- "type":"list",
2152
- "member":{"shape":"SchemaExtensionInfo"}
2153
- },
2154
- "SecurityGroupId":{
2155
- "type":"string",
2156
- "pattern":"^(sg-[0-9a-f]{8}|sg-[0-9a-f]{17})$"
2157
- },
2158
- "SelectiveAuth":{
2159
- "type":"string",
2160
- "enum":[
2161
- "Enabled",
2162
- "Disabled"
2163
- ]
2164
- },
2165
- "Server":{
2166
- "type":"string",
2167
- "max":256,
2168
- "min":1
2169
- },
2170
- "Servers":{
2171
- "type":"list",
2172
- "member":{"shape":"Server"}
2173
- },
2174
- "ServiceException":{
2175
- "type":"structure",
2176
- "members":{
2177
- "Message":{"shape":"ExceptionMessage"},
2178
- "RequestId":{"shape":"RequestId"}
2179
- },
2180
- "exception":true,
2181
- "fault":true
2182
- },
2183
- "ShareDirectoryRequest":{
2184
- "type":"structure",
2185
- "required":[
2186
- "DirectoryId",
2187
- "ShareTarget",
2188
- "ShareMethod"
2189
- ],
2190
- "members":{
2191
- "DirectoryId":{"shape":"DirectoryId"},
2192
- "ShareNotes":{"shape":"Notes"},
2193
- "ShareTarget":{"shape":"ShareTarget"},
2194
- "ShareMethod":{"shape":"ShareMethod"}
2195
- }
2196
- },
2197
- "ShareDirectoryResult":{
2198
- "type":"structure",
2199
- "members":{
2200
- "SharedDirectoryId":{"shape":"DirectoryId"}
2201
- }
2202
- },
2203
- "ShareLimitExceededException":{
2204
- "type":"structure",
2205
- "members":{
2206
- "Message":{"shape":"ExceptionMessage"},
2207
- "RequestId":{"shape":"RequestId"}
2208
- },
2209
- "exception":true
2210
- },
2211
- "ShareMethod":{
2212
- "type":"string",
2213
- "enum":[
2214
- "ORGANIZATIONS",
2215
- "HANDSHAKE"
2216
- ]
2217
- },
2218
- "ShareStatus":{
2219
- "type":"string",
2220
- "enum":[
2221
- "Shared",
2222
- "PendingAcceptance",
2223
- "Rejected",
2224
- "Rejecting",
2225
- "RejectFailed",
2226
- "Sharing",
2227
- "ShareFailed",
2228
- "Deleted",
2229
- "Deleting"
2230
- ]
2231
- },
2232
- "ShareTarget":{
2233
- "type":"structure",
2234
- "required":[
2235
- "Id",
2236
- "Type"
2237
- ],
2238
- "members":{
2239
- "Id":{"shape":"TargetId"},
2240
- "Type":{"shape":"TargetType"}
2241
- }
2242
- },
2243
- "SharedDirectories":{
2244
- "type":"list",
2245
- "member":{"shape":"SharedDirectory"}
2246
- },
2247
- "SharedDirectory":{
2248
- "type":"structure",
2249
- "members":{
2250
- "OwnerAccountId":{"shape":"CustomerId"},
2251
- "OwnerDirectoryId":{"shape":"DirectoryId"},
2252
- "ShareMethod":{"shape":"ShareMethod"},
2253
- "SharedAccountId":{"shape":"CustomerId"},
2254
- "SharedDirectoryId":{"shape":"DirectoryId"},
2255
- "ShareStatus":{"shape":"ShareStatus"},
2256
- "ShareNotes":{"shape":"Notes"},
2257
- "CreatedDateTime":{"shape":"CreatedDateTime"},
2258
- "LastUpdatedDateTime":{"shape":"LastUpdatedDateTime"}
2259
- }
2260
- },
2261
- "Snapshot":{
2262
- "type":"structure",
2263
- "members":{
2264
- "DirectoryId":{"shape":"DirectoryId"},
2265
- "SnapshotId":{"shape":"SnapshotId"},
2266
- "Type":{"shape":"SnapshotType"},
2267
- "Name":{"shape":"SnapshotName"},
2268
- "Status":{"shape":"SnapshotStatus"},
2269
- "StartTime":{"shape":"StartTime"}
2270
- }
2271
- },
2272
- "SnapshotId":{
2273
- "type":"string",
2274
- "pattern":"^s-[0-9a-f]{10}$"
2275
- },
2276
- "SnapshotIds":{
2277
- "type":"list",
2278
- "member":{"shape":"SnapshotId"}
2279
- },
2280
- "SnapshotLimitExceededException":{
2281
- "type":"structure",
2282
- "members":{
2283
- "Message":{"shape":"ExceptionMessage"},
2284
- "RequestId":{"shape":"RequestId"}
2285
- },
2286
- "exception":true
2287
- },
2288
- "SnapshotLimits":{
2289
- "type":"structure",
2290
- "members":{
2291
- "ManualSnapshotsLimit":{"shape":"Limit"},
2292
- "ManualSnapshotsCurrentCount":{"shape":"Limit"},
2293
- "ManualSnapshotsLimitReached":{"shape":"ManualSnapshotsLimitReached"}
2294
- }
2295
- },
2296
- "SnapshotName":{
2297
- "type":"string",
2298
- "max":128,
2299
- "min":0,
2300
- "pattern":"^([a-zA-Z0-9_])[\\\\a-zA-Z0-9_@#%*+=:?./!\\s-]*$"
2301
- },
2302
- "SnapshotStatus":{
2303
- "type":"string",
2304
- "enum":[
2305
- "Creating",
2306
- "Completed",
2307
- "Failed"
2308
- ]
2309
- },
2310
- "SnapshotType":{
2311
- "type":"string",
2312
- "enum":[
2313
- "Auto",
2314
- "Manual"
2315
- ]
2316
- },
2317
- "Snapshots":{
2318
- "type":"list",
2319
- "member":{"shape":"Snapshot"}
2320
- },
2321
- "SsoEnabled":{"type":"boolean"},
2322
- "StageReason":{"type":"string"},
2323
- "StartDateTime":{"type":"timestamp"},
2324
- "StartSchemaExtensionRequest":{
2325
- "type":"structure",
2326
- "required":[
2327
- "DirectoryId",
2328
- "CreateSnapshotBeforeSchemaExtension",
2329
- "LdifContent",
2330
- "Description"
2331
- ],
2332
- "members":{
2333
- "DirectoryId":{"shape":"DirectoryId"},
2334
- "CreateSnapshotBeforeSchemaExtension":{"shape":"CreateSnapshotBeforeSchemaExtension"},
2335
- "LdifContent":{"shape":"LdifContent"},
2336
- "Description":{"shape":"Description"}
2337
- }
2338
- },
2339
- "StartSchemaExtensionResult":{
2340
- "type":"structure",
2341
- "members":{
2342
- "SchemaExtensionId":{"shape":"SchemaExtensionId"}
2343
- }
2344
- },
2345
- "StartTime":{"type":"timestamp"},
2346
- "StateLastUpdatedDateTime":{"type":"timestamp"},
2347
- "SubnetId":{
2348
- "type":"string",
2349
- "pattern":"^(subnet-[0-9a-f]{8}|subnet-[0-9a-f]{17})$"
2350
- },
2351
- "SubnetIds":{
2352
- "type":"list",
2353
- "member":{"shape":"SubnetId"}
2354
- },
2355
- "SubscriptionCreatedDateTime":{"type":"timestamp"},
2356
- "Tag":{
2357
- "type":"structure",
2358
- "required":[
2359
- "Key",
2360
- "Value"
2361
- ],
2362
- "members":{
2363
- "Key":{"shape":"TagKey"},
2364
- "Value":{"shape":"TagValue"}
2365
- }
2366
- },
2367
- "TagKey":{
2368
- "type":"string",
2369
- "max":128,
2370
- "min":1,
2371
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2372
- },
2373
- "TagKeys":{
2374
- "type":"list",
2375
- "member":{"shape":"TagKey"}
2376
- },
2377
- "TagLimitExceededException":{
2378
- "type":"structure",
2379
- "members":{
2380
- "Message":{"shape":"ExceptionMessage"},
2381
- "RequestId":{"shape":"RequestId"}
2382
- },
2383
- "exception":true
2384
- },
2385
- "TagValue":{
2386
- "type":"string",
2387
- "max":256,
2388
- "min":0,
2389
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2390
- },
2391
- "Tags":{
2392
- "type":"list",
2393
- "member":{"shape":"Tag"}
2394
- },
2395
- "TargetId":{
2396
- "type":"string",
2397
- "max":64,
2398
- "min":1
2399
- },
2400
- "TargetType":{
2401
- "type":"string",
2402
- "enum":["ACCOUNT"]
2403
- },
2404
- "TopicArn":{"type":"string"},
2405
- "TopicName":{
2406
- "type":"string",
2407
- "max":256,
2408
- "min":1,
2409
- "pattern":"[a-zA-Z0-9_-]+"
2410
- },
2411
- "TopicNames":{
2412
- "type":"list",
2413
- "member":{"shape":"TopicName"}
2414
- },
2415
- "TopicStatus":{
2416
- "type":"string",
2417
- "enum":[
2418
- "Registered",
2419
- "Topic not found",
2420
- "Failed",
2421
- "Deleted"
2422
- ]
2423
- },
2424
- "Trust":{
2425
- "type":"structure",
2426
- "members":{
2427
- "DirectoryId":{"shape":"DirectoryId"},
2428
- "TrustId":{"shape":"TrustId"},
2429
- "RemoteDomainName":{"shape":"RemoteDomainName"},
2430
- "TrustType":{"shape":"TrustType"},
2431
- "TrustDirection":{"shape":"TrustDirection"},
2432
- "TrustState":{"shape":"TrustState"},
2433
- "CreatedDateTime":{"shape":"CreatedDateTime"},
2434
- "LastUpdatedDateTime":{"shape":"LastUpdatedDateTime"},
2435
- "StateLastUpdatedDateTime":{"shape":"StateLastUpdatedDateTime"},
2436
- "TrustStateReason":{"shape":"TrustStateReason"},
2437
- "SelectiveAuth":{"shape":"SelectiveAuth"}
2438
- }
2439
- },
2440
- "TrustDirection":{
2441
- "type":"string",
2442
- "enum":[
2443
- "One-Way: Outgoing",
2444
- "One-Way: Incoming",
2445
- "Two-Way"
2446
- ]
2447
- },
2448
- "TrustId":{
2449
- "type":"string",
2450
- "pattern":"^t-[0-9a-f]{10}$"
2451
- },
2452
- "TrustIds":{
2453
- "type":"list",
2454
- "member":{"shape":"TrustId"}
2455
- },
2456
- "TrustPassword":{
2457
- "type":"string",
2458
- "max":128,
2459
- "min":1,
2460
- "pattern":"(.|\\s)*\\S(.|\\s)*",
2461
- "sensitive":true
2462
- },
2463
- "TrustState":{
2464
- "type":"string",
2465
- "enum":[
2466
- "Creating",
2467
- "Created",
2468
- "Verifying",
2469
- "VerifyFailed",
2470
- "Verified",
2471
- "Updating",
2472
- "UpdateFailed",
2473
- "Updated",
2474
- "Deleting",
2475
- "Deleted",
2476
- "Failed"
2477
- ]
2478
- },
2479
- "TrustStateReason":{"type":"string"},
2480
- "TrustType":{
2481
- "type":"string",
2482
- "enum":[
2483
- "Forest",
2484
- "External"
2485
- ]
2486
- },
2487
- "Trusts":{
2488
- "type":"list",
2489
- "member":{"shape":"Trust"}
2490
- },
2491
- "UnshareDirectoryRequest":{
2492
- "type":"structure",
2493
- "required":[
2494
- "DirectoryId",
2495
- "UnshareTarget"
2496
- ],
2497
- "members":{
2498
- "DirectoryId":{"shape":"DirectoryId"},
2499
- "UnshareTarget":{"shape":"UnshareTarget"}
2500
- }
2501
- },
2502
- "UnshareDirectoryResult":{
2503
- "type":"structure",
2504
- "members":{
2505
- "SharedDirectoryId":{"shape":"DirectoryId"}
2506
- }
2507
- },
2508
- "UnshareTarget":{
2509
- "type":"structure",
2510
- "required":[
2511
- "Id",
2512
- "Type"
2513
- ],
2514
- "members":{
2515
- "Id":{"shape":"TargetId"},
2516
- "Type":{"shape":"TargetType"}
2517
- }
2518
- },
2519
- "UnsupportedOperationException":{
2520
- "type":"structure",
2521
- "members":{
2522
- "Message":{"shape":"ExceptionMessage"},
2523
- "RequestId":{"shape":"RequestId"}
2524
- },
2525
- "exception":true
2526
- },
2527
- "UpdateConditionalForwarderRequest":{
2528
- "type":"structure",
2529
- "required":[
2530
- "DirectoryId",
2531
- "RemoteDomainName",
2532
- "DnsIpAddrs"
2533
- ],
2534
- "members":{
2535
- "DirectoryId":{"shape":"DirectoryId"},
2536
- "RemoteDomainName":{"shape":"RemoteDomainName"},
2537
- "DnsIpAddrs":{"shape":"DnsIpAddrs"}
2538
- }
2539
- },
2540
- "UpdateConditionalForwarderResult":{
2541
- "type":"structure",
2542
- "members":{
2543
- }
2544
- },
2545
- "UpdateNumberOfDomainControllersRequest":{
2546
- "type":"structure",
2547
- "required":[
2548
- "DirectoryId",
2549
- "DesiredNumber"
2550
- ],
2551
- "members":{
2552
- "DirectoryId":{"shape":"DirectoryId"},
2553
- "DesiredNumber":{"shape":"DesiredNumberOfDomainControllers"}
2554
- }
2555
- },
2556
- "UpdateNumberOfDomainControllersResult":{
2557
- "type":"structure",
2558
- "members":{
2559
- }
2560
- },
2561
- "UpdateRadiusRequest":{
2562
- "type":"structure",
2563
- "required":[
2564
- "DirectoryId",
2565
- "RadiusSettings"
2566
- ],
2567
- "members":{
2568
- "DirectoryId":{"shape":"DirectoryId"},
2569
- "RadiusSettings":{"shape":"RadiusSettings"}
2570
- }
2571
- },
2572
- "UpdateRadiusResult":{
2573
- "type":"structure",
2574
- "members":{
2575
- }
2576
- },
2577
- "UpdateSecurityGroupForDirectoryControllers":{"type":"boolean"},
2578
- "UpdateTrustRequest":{
2579
- "type":"structure",
2580
- "required":["TrustId"],
2581
- "members":{
2582
- "TrustId":{"shape":"TrustId"},
2583
- "SelectiveAuth":{"shape":"SelectiveAuth"}
2584
- }
2585
- },
2586
- "UpdateTrustResult":{
2587
- "type":"structure",
2588
- "members":{
2589
- "RequestId":{"shape":"RequestId"},
2590
- "TrustId":{"shape":"TrustId"}
2591
- }
2592
- },
2593
- "UseSameUsername":{"type":"boolean"},
2594
- "UserDoesNotExistException":{
2595
- "type":"structure",
2596
- "members":{
2597
- "Message":{"shape":"ExceptionMessage"},
2598
- "RequestId":{"shape":"RequestId"}
2599
- },
2600
- "exception":true
2601
- },
2602
- "UserName":{
2603
- "type":"string",
2604
- "min":1,
2605
- "pattern":"[a-zA-Z0-9._-]+"
2606
- },
2607
- "UserPassword":{
2608
- "type":"string",
2609
- "max":127,
2610
- "min":1,
2611
- "sensitive":true
2612
- },
2613
- "VerifyTrustRequest":{
2614
- "type":"structure",
2615
- "required":["TrustId"],
2616
- "members":{
2617
- "TrustId":{"shape":"TrustId"}
2618
- }
2619
- },
2620
- "VerifyTrustResult":{
2621
- "type":"structure",
2622
- "members":{
2623
- "TrustId":{"shape":"TrustId"}
2624
- }
2625
- },
2626
- "VpcId":{
2627
- "type":"string",
2628
- "pattern":"^(vpc-[0-9a-f]{8}|vpc-[0-9a-f]{17})$"
2629
- }
2630
- }
2631
- }