aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,33 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListHealthChecks": {
4
- "input_token": "Marker",
5
- "output_token": "NextMarker",
6
- "more_results": "IsTruncated",
7
- "limit_key": "MaxItems",
8
- "result_key": "HealthChecks"
9
- },
10
- "ListHostedZones": {
11
- "input_token": "Marker",
12
- "output_token": "NextMarker",
13
- "more_results": "IsTruncated",
14
- "limit_key": "MaxItems",
15
- "result_key": "HostedZones"
16
- },
17
- "ListResourceRecordSets": {
18
- "more_results": "IsTruncated",
19
- "limit_key": "MaxItems",
20
- "result_key": "ResourceRecordSets",
21
- "input_token": [
22
- "StartRecordName",
23
- "StartRecordType",
24
- "StartRecordIdentifier"
25
- ],
26
- "output_token": [
27
- "NextRecordName",
28
- "NextRecordType",
29
- "NextRecordIdentifier"
30
- ]
31
- }
32
- }
33
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "ResourceRecordSetsChanged": {
5
- "delay": 30,
6
- "maxAttempts": 60,
7
- "operation": "GetChange",
8
- "acceptors": [
9
- {
10
- "matcher": "path",
11
- "expected": "INSYNC",
12
- "argument": "ChangeInfo.Status",
13
- "state": "success"
14
- }
15
- ]
16
- }
17
- }
18
- }
@@ -1,1197 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-05-15",
5
- "endpointPrefix":"route53domains",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceFullName":"Amazon Route 53 Domains",
9
- "signatureVersion":"v4",
10
- "targetPrefix":"Route53Domains_v20140515"
11
- },
12
- "operations":{
13
- "CheckDomainAvailability":{
14
- "name":"CheckDomainAvailability",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"CheckDomainAvailabilityRequest"},
20
- "output":{"shape":"CheckDomainAvailabilityResponse"},
21
- "errors":[
22
- {"shape":"InvalidInput"},
23
- {"shape":"UnsupportedTLD"}
24
- ]
25
- },
26
- "DeleteTagsForDomain":{
27
- "name":"DeleteTagsForDomain",
28
- "http":{
29
- "method":"POST",
30
- "requestUri":"/"
31
- },
32
- "input":{"shape":"DeleteTagsForDomainRequest"},
33
- "output":{"shape":"DeleteTagsForDomainResponse"},
34
- "errors":[
35
- {"shape":"InvalidInput"},
36
- {"shape":"OperationLimitExceeded"},
37
- {"shape":"UnsupportedTLD"}
38
- ]
39
- },
40
- "DisableDomainAutoRenew":{
41
- "name":"DisableDomainAutoRenew",
42
- "http":{
43
- "method":"POST",
44
- "requestUri":"/"
45
- },
46
- "input":{"shape":"DisableDomainAutoRenewRequest"},
47
- "output":{"shape":"DisableDomainAutoRenewResponse"},
48
- "errors":[
49
- {"shape":"InvalidInput"},
50
- {"shape":"UnsupportedTLD"}
51
- ]
52
- },
53
- "DisableDomainTransferLock":{
54
- "name":"DisableDomainTransferLock",
55
- "http":{
56
- "method":"POST",
57
- "requestUri":"/"
58
- },
59
- "input":{"shape":"DisableDomainTransferLockRequest"},
60
- "output":{"shape":"DisableDomainTransferLockResponse"},
61
- "errors":[
62
- {"shape":"InvalidInput"},
63
- {"shape":"DuplicateRequest"},
64
- {"shape":"TLDRulesViolation"},
65
- {"shape":"OperationLimitExceeded"},
66
- {"shape":"UnsupportedTLD"}
67
- ]
68
- },
69
- "EnableDomainAutoRenew":{
70
- "name":"EnableDomainAutoRenew",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"EnableDomainAutoRenewRequest"},
76
- "output":{"shape":"EnableDomainAutoRenewResponse"},
77
- "errors":[
78
- {"shape":"InvalidInput"},
79
- {"shape":"UnsupportedTLD"},
80
- {"shape":"TLDRulesViolation"}
81
- ]
82
- },
83
- "EnableDomainTransferLock":{
84
- "name":"EnableDomainTransferLock",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/"
88
- },
89
- "input":{"shape":"EnableDomainTransferLockRequest"},
90
- "output":{"shape":"EnableDomainTransferLockResponse"},
91
- "errors":[
92
- {"shape":"InvalidInput"},
93
- {"shape":"DuplicateRequest"},
94
- {"shape":"TLDRulesViolation"},
95
- {"shape":"OperationLimitExceeded"},
96
- {"shape":"UnsupportedTLD"}
97
- ]
98
- },
99
- "GetContactReachabilityStatus":{
100
- "name":"GetContactReachabilityStatus",
101
- "http":{
102
- "method":"POST",
103
- "requestUri":"/"
104
- },
105
- "input":{"shape":"GetContactReachabilityStatusRequest"},
106
- "output":{"shape":"GetContactReachabilityStatusResponse"},
107
- "errors":[
108
- {"shape":"InvalidInput"},
109
- {"shape":"OperationLimitExceeded"},
110
- {"shape":"UnsupportedTLD"}
111
- ]
112
- },
113
- "GetDomainDetail":{
114
- "name":"GetDomainDetail",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/"
118
- },
119
- "input":{"shape":"GetDomainDetailRequest"},
120
- "output":{"shape":"GetDomainDetailResponse"},
121
- "errors":[
122
- {"shape":"InvalidInput"},
123
- {"shape":"UnsupportedTLD"}
124
- ]
125
- },
126
- "GetOperationDetail":{
127
- "name":"GetOperationDetail",
128
- "http":{
129
- "method":"POST",
130
- "requestUri":"/"
131
- },
132
- "input":{"shape":"GetOperationDetailRequest"},
133
- "output":{"shape":"GetOperationDetailResponse"},
134
- "errors":[
135
- {"shape":"InvalidInput"}
136
- ]
137
- },
138
- "ListDomains":{
139
- "name":"ListDomains",
140
- "http":{
141
- "method":"POST",
142
- "requestUri":"/"
143
- },
144
- "input":{"shape":"ListDomainsRequest"},
145
- "output":{"shape":"ListDomainsResponse"},
146
- "errors":[
147
- {"shape":"InvalidInput"}
148
- ]
149
- },
150
- "ListOperations":{
151
- "name":"ListOperations",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"ListOperationsRequest"},
157
- "output":{"shape":"ListOperationsResponse"},
158
- "errors":[
159
- {"shape":"InvalidInput"}
160
- ]
161
- },
162
- "ListTagsForDomain":{
163
- "name":"ListTagsForDomain",
164
- "http":{
165
- "method":"POST",
166
- "requestUri":"/"
167
- },
168
- "input":{"shape":"ListTagsForDomainRequest"},
169
- "output":{"shape":"ListTagsForDomainResponse"},
170
- "errors":[
171
- {"shape":"InvalidInput"},
172
- {"shape":"OperationLimitExceeded"},
173
- {"shape":"UnsupportedTLD"}
174
- ]
175
- },
176
- "RegisterDomain":{
177
- "name":"RegisterDomain",
178
- "http":{
179
- "method":"POST",
180
- "requestUri":"/"
181
- },
182
- "input":{"shape":"RegisterDomainRequest"},
183
- "output":{"shape":"RegisterDomainResponse"},
184
- "errors":[
185
- {"shape":"InvalidInput"},
186
- {"shape":"UnsupportedTLD"},
187
- {"shape":"DuplicateRequest"},
188
- {"shape":"TLDRulesViolation"},
189
- {"shape":"DomainLimitExceeded"},
190
- {"shape":"OperationLimitExceeded"}
191
- ]
192
- },
193
- "ResendContactReachabilityEmail":{
194
- "name":"ResendContactReachabilityEmail",
195
- "http":{
196
- "method":"POST",
197
- "requestUri":"/"
198
- },
199
- "input":{"shape":"ResendContactReachabilityEmailRequest"},
200
- "output":{"shape":"ResendContactReachabilityEmailResponse"},
201
- "errors":[
202
- {"shape":"InvalidInput"},
203
- {"shape":"OperationLimitExceeded"},
204
- {"shape":"UnsupportedTLD"}
205
- ]
206
- },
207
- "RetrieveDomainAuthCode":{
208
- "name":"RetrieveDomainAuthCode",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/"
212
- },
213
- "input":{"shape":"RetrieveDomainAuthCodeRequest"},
214
- "output":{"shape":"RetrieveDomainAuthCodeResponse"},
215
- "errors":[
216
- {"shape":"InvalidInput"},
217
- {"shape":"UnsupportedTLD"}
218
- ]
219
- },
220
- "TransferDomain":{
221
- "name":"TransferDomain",
222
- "http":{
223
- "method":"POST",
224
- "requestUri":"/"
225
- },
226
- "input":{"shape":"TransferDomainRequest"},
227
- "output":{"shape":"TransferDomainResponse"},
228
- "errors":[
229
- {"shape":"InvalidInput"},
230
- {"shape":"UnsupportedTLD"},
231
- {"shape":"DuplicateRequest"},
232
- {"shape":"TLDRulesViolation"},
233
- {"shape":"DomainLimitExceeded"},
234
- {"shape":"OperationLimitExceeded"}
235
- ]
236
- },
237
- "UpdateDomainContact":{
238
- "name":"UpdateDomainContact",
239
- "http":{
240
- "method":"POST",
241
- "requestUri":"/"
242
- },
243
- "input":{"shape":"UpdateDomainContactRequest"},
244
- "output":{"shape":"UpdateDomainContactResponse"},
245
- "errors":[
246
- {"shape":"InvalidInput"},
247
- {"shape":"DuplicateRequest"},
248
- {"shape":"TLDRulesViolation"},
249
- {"shape":"OperationLimitExceeded"},
250
- {"shape":"UnsupportedTLD"}
251
- ]
252
- },
253
- "UpdateDomainContactPrivacy":{
254
- "name":"UpdateDomainContactPrivacy",
255
- "http":{
256
- "method":"POST",
257
- "requestUri":"/"
258
- },
259
- "input":{"shape":"UpdateDomainContactPrivacyRequest"},
260
- "output":{"shape":"UpdateDomainContactPrivacyResponse"},
261
- "errors":[
262
- {"shape":"InvalidInput"},
263
- {"shape":"DuplicateRequest"},
264
- {"shape":"TLDRulesViolation"},
265
- {"shape":"OperationLimitExceeded"},
266
- {"shape":"UnsupportedTLD"}
267
- ]
268
- },
269
- "UpdateDomainNameservers":{
270
- "name":"UpdateDomainNameservers",
271
- "http":{
272
- "method":"POST",
273
- "requestUri":"/"
274
- },
275
- "input":{"shape":"UpdateDomainNameserversRequest"},
276
- "output":{"shape":"UpdateDomainNameserversResponse"},
277
- "errors":[
278
- {"shape":"InvalidInput"},
279
- {"shape":"DuplicateRequest"},
280
- {"shape":"TLDRulesViolation"},
281
- {"shape":"OperationLimitExceeded"},
282
- {"shape":"UnsupportedTLD"}
283
- ]
284
- },
285
- "UpdateTagsForDomain":{
286
- "name":"UpdateTagsForDomain",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/"
290
- },
291
- "input":{"shape":"UpdateTagsForDomainRequest"},
292
- "output":{"shape":"UpdateTagsForDomainResponse"},
293
- "errors":[
294
- {"shape":"InvalidInput"},
295
- {"shape":"OperationLimitExceeded"},
296
- {"shape":"UnsupportedTLD"}
297
- ]
298
- }
299
- },
300
- "shapes":{
301
- "AddressLine":{
302
- "type":"string",
303
- "max":255
304
- },
305
- "Boolean":{"type":"boolean"},
306
- "CheckDomainAvailabilityRequest":{
307
- "type":"structure",
308
- "required":["DomainName"],
309
- "members":{
310
- "DomainName":{"shape":"DomainName"},
311
- "IdnLangCode":{"shape":"LangCode"}
312
- }
313
- },
314
- "CheckDomainAvailabilityResponse":{
315
- "type":"structure",
316
- "required":["Availability"],
317
- "members":{
318
- "Availability":{"shape":"DomainAvailability"}
319
- }
320
- },
321
- "City":{
322
- "type":"string",
323
- "max":255
324
- },
325
- "ContactDetail":{
326
- "type":"structure",
327
- "members":{
328
- "FirstName":{"shape":"ContactName"},
329
- "LastName":{"shape":"ContactName"},
330
- "ContactType":{"shape":"ContactType"},
331
- "OrganizationName":{"shape":"ContactName"},
332
- "AddressLine1":{"shape":"AddressLine"},
333
- "AddressLine2":{"shape":"AddressLine"},
334
- "City":{"shape":"City"},
335
- "State":{"shape":"State"},
336
- "CountryCode":{"shape":"CountryCode"},
337
- "ZipCode":{"shape":"ZipCode"},
338
- "PhoneNumber":{"shape":"ContactNumber"},
339
- "Email":{"shape":"Email"},
340
- "Fax":{"shape":"ContactNumber"},
341
- "ExtraParams":{"shape":"ExtraParamList"}
342
- },
343
- "sensitive":true
344
- },
345
- "ContactName":{
346
- "type":"string",
347
- "max":255
348
- },
349
- "ContactNumber":{
350
- "type":"string",
351
- "max":30
352
- },
353
- "ContactType":{
354
- "type":"string",
355
- "enum":[
356
- "PERSON",
357
- "COMPANY",
358
- "ASSOCIATION",
359
- "PUBLIC_BODY",
360
- "RESELLER"
361
- ]
362
- },
363
- "CountryCode":{
364
- "type":"string",
365
- "enum":[
366
- "AD",
367
- "AE",
368
- "AF",
369
- "AG",
370
- "AI",
371
- "AL",
372
- "AM",
373
- "AN",
374
- "AO",
375
- "AQ",
376
- "AR",
377
- "AS",
378
- "AT",
379
- "AU",
380
- "AW",
381
- "AZ",
382
- "BA",
383
- "BB",
384
- "BD",
385
- "BE",
386
- "BF",
387
- "BG",
388
- "BH",
389
- "BI",
390
- "BJ",
391
- "BL",
392
- "BM",
393
- "BN",
394
- "BO",
395
- "BR",
396
- "BS",
397
- "BT",
398
- "BW",
399
- "BY",
400
- "BZ",
401
- "CA",
402
- "CC",
403
- "CD",
404
- "CF",
405
- "CG",
406
- "CH",
407
- "CI",
408
- "CK",
409
- "CL",
410
- "CM",
411
- "CN",
412
- "CO",
413
- "CR",
414
- "CU",
415
- "CV",
416
- "CX",
417
- "CY",
418
- "CZ",
419
- "DE",
420
- "DJ",
421
- "DK",
422
- "DM",
423
- "DO",
424
- "DZ",
425
- "EC",
426
- "EE",
427
- "EG",
428
- "ER",
429
- "ES",
430
- "ET",
431
- "FI",
432
- "FJ",
433
- "FK",
434
- "FM",
435
- "FO",
436
- "FR",
437
- "GA",
438
- "GB",
439
- "GD",
440
- "GE",
441
- "GH",
442
- "GI",
443
- "GL",
444
- "GM",
445
- "GN",
446
- "GQ",
447
- "GR",
448
- "GT",
449
- "GU",
450
- "GW",
451
- "GY",
452
- "HK",
453
- "HN",
454
- "HR",
455
- "HT",
456
- "HU",
457
- "ID",
458
- "IE",
459
- "IL",
460
- "IM",
461
- "IN",
462
- "IQ",
463
- "IR",
464
- "IS",
465
- "IT",
466
- "JM",
467
- "JO",
468
- "JP",
469
- "KE",
470
- "KG",
471
- "KH",
472
- "KI",
473
- "KM",
474
- "KN",
475
- "KP",
476
- "KR",
477
- "KW",
478
- "KY",
479
- "KZ",
480
- "LA",
481
- "LB",
482
- "LC",
483
- "LI",
484
- "LK",
485
- "LR",
486
- "LS",
487
- "LT",
488
- "LU",
489
- "LV",
490
- "LY",
491
- "MA",
492
- "MC",
493
- "MD",
494
- "ME",
495
- "MF",
496
- "MG",
497
- "MH",
498
- "MK",
499
- "ML",
500
- "MM",
501
- "MN",
502
- "MO",
503
- "MP",
504
- "MR",
505
- "MS",
506
- "MT",
507
- "MU",
508
- "MV",
509
- "MW",
510
- "MX",
511
- "MY",
512
- "MZ",
513
- "NA",
514
- "NC",
515
- "NE",
516
- "NG",
517
- "NI",
518
- "NL",
519
- "NO",
520
- "NP",
521
- "NR",
522
- "NU",
523
- "NZ",
524
- "OM",
525
- "PA",
526
- "PE",
527
- "PF",
528
- "PG",
529
- "PH",
530
- "PK",
531
- "PL",
532
- "PM",
533
- "PN",
534
- "PR",
535
- "PT",
536
- "PW",
537
- "PY",
538
- "QA",
539
- "RO",
540
- "RS",
541
- "RU",
542
- "RW",
543
- "SA",
544
- "SB",
545
- "SC",
546
- "SD",
547
- "SE",
548
- "SG",
549
- "SH",
550
- "SI",
551
- "SK",
552
- "SL",
553
- "SM",
554
- "SN",
555
- "SO",
556
- "SR",
557
- "ST",
558
- "SV",
559
- "SY",
560
- "SZ",
561
- "TC",
562
- "TD",
563
- "TG",
564
- "TH",
565
- "TJ",
566
- "TK",
567
- "TL",
568
- "TM",
569
- "TN",
570
- "TO",
571
- "TR",
572
- "TT",
573
- "TV",
574
- "TW",
575
- "TZ",
576
- "UA",
577
- "UG",
578
- "US",
579
- "UY",
580
- "UZ",
581
- "VA",
582
- "VC",
583
- "VE",
584
- "VG",
585
- "VI",
586
- "VN",
587
- "VU",
588
- "WF",
589
- "WS",
590
- "YE",
591
- "YT",
592
- "ZA",
593
- "ZM",
594
- "ZW"
595
- ]
596
- },
597
- "DNSSec":{"type":"string"},
598
- "DeleteTagsForDomainRequest":{
599
- "type":"structure",
600
- "required":[
601
- "DomainName",
602
- "TagsToDelete"
603
- ],
604
- "members":{
605
- "DomainName":{"shape":"DomainName"},
606
- "TagsToDelete":{"shape":"TagKeyList"}
607
- }
608
- },
609
- "DeleteTagsForDomainResponse":{
610
- "type":"structure",
611
- "members":{
612
- }
613
- },
614
- "DisableDomainAutoRenewRequest":{
615
- "type":"structure",
616
- "required":["DomainName"],
617
- "members":{
618
- "DomainName":{"shape":"DomainName"}
619
- }
620
- },
621
- "DisableDomainAutoRenewResponse":{
622
- "type":"structure",
623
- "members":{
624
- }
625
- },
626
- "DisableDomainTransferLockRequest":{
627
- "type":"structure",
628
- "required":["DomainName"],
629
- "members":{
630
- "DomainName":{"shape":"DomainName"}
631
- }
632
- },
633
- "DisableDomainTransferLockResponse":{
634
- "type":"structure",
635
- "required":["OperationId"],
636
- "members":{
637
- "OperationId":{"shape":"OperationId"}
638
- }
639
- },
640
- "DomainAuthCode":{
641
- "type":"string",
642
- "max":1024,
643
- "sensitive":true
644
- },
645
- "DomainAvailability":{
646
- "type":"string",
647
- "enum":[
648
- "AVAILABLE",
649
- "AVAILABLE_RESERVED",
650
- "AVAILABLE_PREORDER",
651
- "UNAVAILABLE",
652
- "UNAVAILABLE_PREMIUM",
653
- "UNAVAILABLE_RESTRICTED",
654
- "RESERVED",
655
- "DONT_KNOW"
656
- ]
657
- },
658
- "DomainLimitExceeded":{
659
- "type":"structure",
660
- "members":{
661
- "message":{"shape":"ErrorMessage"}
662
- },
663
- "exception":true
664
- },
665
- "DomainName":{
666
- "type":"string",
667
- "max":255,
668
- "pattern":"[a-zA-Z0-9_\\-.]*"
669
- },
670
- "DomainStatus":{"type":"string"},
671
- "DomainStatusList":{
672
- "type":"list",
673
- "member":{"shape":"DomainStatus"}
674
- },
675
- "DomainSummary":{
676
- "type":"structure",
677
- "required":["DomainName"],
678
- "members":{
679
- "DomainName":{"shape":"DomainName"},
680
- "AutoRenew":{"shape":"Boolean"},
681
- "TransferLock":{"shape":"Boolean"},
682
- "Expiry":{"shape":"Timestamp"}
683
- }
684
- },
685
- "DomainSummaryList":{
686
- "type":"list",
687
- "member":{"shape":"DomainSummary"}
688
- },
689
- "DuplicateRequest":{
690
- "type":"structure",
691
- "members":{
692
- "message":{"shape":"ErrorMessage"}
693
- },
694
- "exception":true
695
- },
696
- "DurationInYears":{
697
- "type":"integer",
698
- "max":10,
699
- "min":1
700
- },
701
- "Email":{
702
- "type":"string",
703
- "max":254
704
- },
705
- "EnableDomainAutoRenewRequest":{
706
- "type":"structure",
707
- "required":["DomainName"],
708
- "members":{
709
- "DomainName":{"shape":"DomainName"}
710
- }
711
- },
712
- "EnableDomainAutoRenewResponse":{
713
- "type":"structure",
714
- "members":{
715
- }
716
- },
717
- "EnableDomainTransferLockRequest":{
718
- "type":"structure",
719
- "required":["DomainName"],
720
- "members":{
721
- "DomainName":{"shape":"DomainName"}
722
- }
723
- },
724
- "EnableDomainTransferLockResponse":{
725
- "type":"structure",
726
- "required":["OperationId"],
727
- "members":{
728
- "OperationId":{"shape":"OperationId"}
729
- }
730
- },
731
- "ErrorMessage":{"type":"string"},
732
- "ExtraParam":{
733
- "type":"structure",
734
- "required":[
735
- "Name",
736
- "Value"
737
- ],
738
- "members":{
739
- "Name":{"shape":"ExtraParamName"},
740
- "Value":{"shape":"ExtraParamValue"}
741
- }
742
- },
743
- "ExtraParamList":{
744
- "type":"list",
745
- "member":{"shape":"ExtraParam"}
746
- },
747
- "ExtraParamName":{
748
- "type":"string",
749
- "enum":[
750
- "DUNS_NUMBER",
751
- "BRAND_NUMBER",
752
- "BIRTH_DEPARTMENT",
753
- "BIRTH_DATE_IN_YYYY_MM_DD",
754
- "BIRTH_COUNTRY",
755
- "BIRTH_CITY",
756
- "DOCUMENT_NUMBER",
757
- "AU_ID_NUMBER",
758
- "AU_ID_TYPE",
759
- "CA_LEGAL_TYPE",
760
- "CA_BUSINESS_ENTITY_TYPE",
761
- "ES_IDENTIFICATION",
762
- "ES_IDENTIFICATION_TYPE",
763
- "ES_LEGAL_FORM",
764
- "FI_BUSINESS_NUMBER",
765
- "FI_ID_NUMBER",
766
- "IT_PIN",
767
- "RU_PASSPORT_DATA",
768
- "SE_ID_NUMBER",
769
- "SG_ID_NUMBER",
770
- "VAT_NUMBER"
771
- ]
772
- },
773
- "ExtraParamValue":{
774
- "type":"string",
775
- "max":2048
776
- },
777
- "FIAuthKey":{"type":"string"},
778
- "GetContactReachabilityStatusRequest":{
779
- "type":"structure",
780
- "members":{
781
- "domainName":{"shape":"DomainName"}
782
- }
783
- },
784
- "GetContactReachabilityStatusResponse":{
785
- "type":"structure",
786
- "members":{
787
- "domainName":{"shape":"DomainName"},
788
- "status":{"shape":"ReachabilityStatus"}
789
- }
790
- },
791
- "GetDomainDetailRequest":{
792
- "type":"structure",
793
- "required":["DomainName"],
794
- "members":{
795
- "DomainName":{"shape":"DomainName"}
796
- }
797
- },
798
- "GetDomainDetailResponse":{
799
- "type":"structure",
800
- "required":[
801
- "DomainName",
802
- "Nameservers",
803
- "AdminContact",
804
- "RegistrantContact",
805
- "TechContact"
806
- ],
807
- "members":{
808
- "DomainName":{"shape":"DomainName"},
809
- "Nameservers":{"shape":"NameserverList"},
810
- "AutoRenew":{"shape":"Boolean"},
811
- "AdminContact":{"shape":"ContactDetail"},
812
- "RegistrantContact":{"shape":"ContactDetail"},
813
- "TechContact":{"shape":"ContactDetail"},
814
- "AdminPrivacy":{"shape":"Boolean"},
815
- "RegistrantPrivacy":{"shape":"Boolean"},
816
- "TechPrivacy":{"shape":"Boolean"},
817
- "RegistrarName":{"shape":"RegistrarName"},
818
- "WhoIsServer":{"shape":"RegistrarWhoIsServer"},
819
- "RegistrarUrl":{"shape":"RegistrarUrl"},
820
- "AbuseContactEmail":{"shape":"Email"},
821
- "AbuseContactPhone":{"shape":"ContactNumber"},
822
- "RegistryDomainId":{"shape":"RegistryDomainId"},
823
- "CreationDate":{"shape":"Timestamp"},
824
- "UpdatedDate":{"shape":"Timestamp"},
825
- "ExpirationDate":{"shape":"Timestamp"},
826
- "Reseller":{"shape":"Reseller"},
827
- "DnsSec":{"shape":"DNSSec"},
828
- "StatusList":{"shape":"DomainStatusList"}
829
- }
830
- },
831
- "GetOperationDetailRequest":{
832
- "type":"structure",
833
- "required":["OperationId"],
834
- "members":{
835
- "OperationId":{"shape":"OperationId"}
836
- }
837
- },
838
- "GetOperationDetailResponse":{
839
- "type":"structure",
840
- "members":{
841
- "OperationId":{"shape":"OperationId"},
842
- "Status":{"shape":"OperationStatus"},
843
- "Message":{"shape":"ErrorMessage"},
844
- "DomainName":{"shape":"DomainName"},
845
- "Type":{"shape":"OperationType"},
846
- "SubmittedDate":{"shape":"Timestamp"}
847
- }
848
- },
849
- "GlueIp":{
850
- "type":"string",
851
- "max":45
852
- },
853
- "GlueIpList":{
854
- "type":"list",
855
- "member":{"shape":"GlueIp"}
856
- },
857
- "HostName":{
858
- "type":"string",
859
- "max":255,
860
- "pattern":"[a-zA-Z0-9_\\-.]*"
861
- },
862
- "InvalidInput":{
863
- "type":"structure",
864
- "members":{
865
- "message":{"shape":"ErrorMessage"}
866
- },
867
- "exception":true
868
- },
869
- "LangCode":{
870
- "type":"string",
871
- "max":3
872
- },
873
- "ListDomainsRequest":{
874
- "type":"structure",
875
- "members":{
876
- "Marker":{"shape":"PageMarker"},
877
- "MaxItems":{"shape":"PageMaxItems"}
878
- }
879
- },
880
- "ListDomainsResponse":{
881
- "type":"structure",
882
- "required":["Domains"],
883
- "members":{
884
- "Domains":{"shape":"DomainSummaryList"},
885
- "NextPageMarker":{"shape":"PageMarker"}
886
- }
887
- },
888
- "ListOperationsRequest":{
889
- "type":"structure",
890
- "members":{
891
- "Marker":{"shape":"PageMarker"},
892
- "MaxItems":{"shape":"PageMaxItems"}
893
- }
894
- },
895
- "ListOperationsResponse":{
896
- "type":"structure",
897
- "required":["Operations"],
898
- "members":{
899
- "Operations":{"shape":"OperationSummaryList"},
900
- "NextPageMarker":{"shape":"PageMarker"}
901
- }
902
- },
903
- "ListTagsForDomainRequest":{
904
- "type":"structure",
905
- "required":["DomainName"],
906
- "members":{
907
- "DomainName":{"shape":"DomainName"}
908
- }
909
- },
910
- "ListTagsForDomainResponse":{
911
- "type":"structure",
912
- "required":["TagList"],
913
- "members":{
914
- "TagList":{"shape":"TagList"}
915
- }
916
- },
917
- "Nameserver":{
918
- "type":"structure",
919
- "required":["Name"],
920
- "members":{
921
- "Name":{"shape":"HostName"},
922
- "GlueIps":{"shape":"GlueIpList"}
923
- }
924
- },
925
- "NameserverList":{
926
- "type":"list",
927
- "member":{"shape":"Nameserver"}
928
- },
929
- "OperationId":{
930
- "type":"string",
931
- "max":255
932
- },
933
- "OperationLimitExceeded":{
934
- "type":"structure",
935
- "members":{
936
- "message":{"shape":"ErrorMessage"}
937
- },
938
- "exception":true
939
- },
940
- "OperationStatus":{
941
- "type":"string",
942
- "enum":[
943
- "SUBMITTED",
944
- "IN_PROGRESS",
945
- "ERROR",
946
- "SUCCESSFUL",
947
- "FAILED"
948
- ]
949
- },
950
- "OperationSummary":{
951
- "type":"structure",
952
- "required":[
953
- "OperationId",
954
- "Status",
955
- "Type",
956
- "SubmittedDate"
957
- ],
958
- "members":{
959
- "OperationId":{"shape":"OperationId"},
960
- "Status":{"shape":"OperationStatus"},
961
- "Type":{"shape":"OperationType"},
962
- "SubmittedDate":{"shape":"Timestamp"}
963
- }
964
- },
965
- "OperationSummaryList":{
966
- "type":"list",
967
- "member":{"shape":"OperationSummary"}
968
- },
969
- "OperationType":{
970
- "type":"string",
971
- "enum":[
972
- "REGISTER_DOMAIN",
973
- "DELETE_DOMAIN",
974
- "TRANSFER_IN_DOMAIN",
975
- "UPDATE_DOMAIN_CONTACT",
976
- "UPDATE_NAMESERVER",
977
- "CHANGE_PRIVACY_PROTECTION",
978
- "DOMAIN_LOCK"
979
- ]
980
- },
981
- "PageMarker":{
982
- "type":"string",
983
- "max":4096
984
- },
985
- "PageMaxItems":{
986
- "type":"integer",
987
- "max":100
988
- },
989
- "ReachabilityStatus":{
990
- "type":"string",
991
- "enum":[
992
- "PENDING",
993
- "DONE",
994
- "EXPIRED"
995
- ]
996
- },
997
- "RegisterDomainRequest":{
998
- "type":"structure",
999
- "required":[
1000
- "DomainName",
1001
- "DurationInYears",
1002
- "AdminContact",
1003
- "RegistrantContact",
1004
- "TechContact"
1005
- ],
1006
- "members":{
1007
- "DomainName":{"shape":"DomainName"},
1008
- "IdnLangCode":{"shape":"LangCode"},
1009
- "DurationInYears":{"shape":"DurationInYears"},
1010
- "AutoRenew":{"shape":"Boolean"},
1011
- "AdminContact":{"shape":"ContactDetail"},
1012
- "RegistrantContact":{"shape":"ContactDetail"},
1013
- "TechContact":{"shape":"ContactDetail"},
1014
- "PrivacyProtectAdminContact":{"shape":"Boolean"},
1015
- "PrivacyProtectRegistrantContact":{"shape":"Boolean"},
1016
- "PrivacyProtectTechContact":{"shape":"Boolean"}
1017
- }
1018
- },
1019
- "RegisterDomainResponse":{
1020
- "type":"structure",
1021
- "required":["OperationId"],
1022
- "members":{
1023
- "OperationId":{"shape":"OperationId"}
1024
- }
1025
- },
1026
- "RegistrarName":{"type":"string"},
1027
- "RegistrarUrl":{"type":"string"},
1028
- "RegistrarWhoIsServer":{"type":"string"},
1029
- "RegistryDomainId":{"type":"string"},
1030
- "Reseller":{"type":"string"},
1031
- "ResendContactReachabilityEmailRequest":{
1032
- "type":"structure",
1033
- "members":{
1034
- "domainName":{"shape":"DomainName"}
1035
- }
1036
- },
1037
- "ResendContactReachabilityEmailResponse":{
1038
- "type":"structure",
1039
- "members":{
1040
- "domainName":{"shape":"DomainName"},
1041
- "emailAddress":{"shape":"Email"},
1042
- "isAlreadyVerified":{"shape":"Boolean"}
1043
- }
1044
- },
1045
- "RetrieveDomainAuthCodeRequest":{
1046
- "type":"structure",
1047
- "required":["DomainName"],
1048
- "members":{
1049
- "DomainName":{"shape":"DomainName"}
1050
- }
1051
- },
1052
- "RetrieveDomainAuthCodeResponse":{
1053
- "type":"structure",
1054
- "required":["AuthCode"],
1055
- "members":{
1056
- "AuthCode":{"shape":"DomainAuthCode"}
1057
- }
1058
- },
1059
- "State":{
1060
- "type":"string",
1061
- "max":255
1062
- },
1063
- "TLDRulesViolation":{
1064
- "type":"structure",
1065
- "members":{
1066
- "message":{"shape":"ErrorMessage"}
1067
- },
1068
- "exception":true
1069
- },
1070
- "Tag":{
1071
- "type":"structure",
1072
- "members":{
1073
- "Key":{"shape":"TagKey"},
1074
- "Value":{"shape":"TagValue"}
1075
- }
1076
- },
1077
- "TagKey":{"type":"string"},
1078
- "TagKeyList":{
1079
- "type":"list",
1080
- "member":{"shape":"TagKey"}
1081
- },
1082
- "TagList":{
1083
- "type":"list",
1084
- "member":{"shape":"Tag"}
1085
- },
1086
- "TagValue":{"type":"string"},
1087
- "Timestamp":{"type":"timestamp"},
1088
- "TransferDomainRequest":{
1089
- "type":"structure",
1090
- "required":[
1091
- "DomainName",
1092
- "DurationInYears",
1093
- "AdminContact",
1094
- "RegistrantContact",
1095
- "TechContact"
1096
- ],
1097
- "members":{
1098
- "DomainName":{"shape":"DomainName"},
1099
- "IdnLangCode":{"shape":"LangCode"},
1100
- "DurationInYears":{"shape":"DurationInYears"},
1101
- "Nameservers":{"shape":"NameserverList"},
1102
- "AuthCode":{"shape":"DomainAuthCode"},
1103
- "AutoRenew":{"shape":"Boolean"},
1104
- "AdminContact":{"shape":"ContactDetail"},
1105
- "RegistrantContact":{"shape":"ContactDetail"},
1106
- "TechContact":{"shape":"ContactDetail"},
1107
- "PrivacyProtectAdminContact":{"shape":"Boolean"},
1108
- "PrivacyProtectRegistrantContact":{"shape":"Boolean"},
1109
- "PrivacyProtectTechContact":{"shape":"Boolean"}
1110
- }
1111
- },
1112
- "TransferDomainResponse":{
1113
- "type":"structure",
1114
- "required":["OperationId"],
1115
- "members":{
1116
- "OperationId":{"shape":"OperationId"}
1117
- }
1118
- },
1119
- "UnsupportedTLD":{
1120
- "type":"structure",
1121
- "members":{
1122
- "message":{"shape":"ErrorMessage"}
1123
- },
1124
- "exception":true
1125
- },
1126
- "UpdateDomainContactPrivacyRequest":{
1127
- "type":"structure",
1128
- "required":["DomainName"],
1129
- "members":{
1130
- "DomainName":{"shape":"DomainName"},
1131
- "AdminPrivacy":{"shape":"Boolean"},
1132
- "RegistrantPrivacy":{"shape":"Boolean"},
1133
- "TechPrivacy":{"shape":"Boolean"}
1134
- }
1135
- },
1136
- "UpdateDomainContactPrivacyResponse":{
1137
- "type":"structure",
1138
- "required":["OperationId"],
1139
- "members":{
1140
- "OperationId":{"shape":"OperationId"}
1141
- }
1142
- },
1143
- "UpdateDomainContactRequest":{
1144
- "type":"structure",
1145
- "required":["DomainName"],
1146
- "members":{
1147
- "DomainName":{"shape":"DomainName"},
1148
- "AdminContact":{"shape":"ContactDetail"},
1149
- "RegistrantContact":{"shape":"ContactDetail"},
1150
- "TechContact":{"shape":"ContactDetail"}
1151
- }
1152
- },
1153
- "UpdateDomainContactResponse":{
1154
- "type":"structure",
1155
- "required":["OperationId"],
1156
- "members":{
1157
- "OperationId":{"shape":"OperationId"}
1158
- }
1159
- },
1160
- "UpdateDomainNameserversRequest":{
1161
- "type":"structure",
1162
- "required":[
1163
- "DomainName",
1164
- "Nameservers"
1165
- ],
1166
- "members":{
1167
- "DomainName":{"shape":"DomainName"},
1168
- "FIAuthKey":{"shape":"FIAuthKey"},
1169
- "Nameservers":{"shape":"NameserverList"}
1170
- }
1171
- },
1172
- "UpdateDomainNameserversResponse":{
1173
- "type":"structure",
1174
- "required":["OperationId"],
1175
- "members":{
1176
- "OperationId":{"shape":"OperationId"}
1177
- }
1178
- },
1179
- "UpdateTagsForDomainRequest":{
1180
- "type":"structure",
1181
- "required":["DomainName"],
1182
- "members":{
1183
- "DomainName":{"shape":"DomainName"},
1184
- "TagsToUpdate":{"shape":"TagList"}
1185
- }
1186
- },
1187
- "UpdateTagsForDomainResponse":{
1188
- "type":"structure",
1189
- "members":{
1190
- }
1191
- },
1192
- "ZipCode":{
1193
- "type":"string",
1194
- "max":255
1195
- }
1196
- }
1197
- }