aws-sdk-core 2.11.408 → 3.77.0

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