aws-sdk-route53domains 1.18.0 → 1.23.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/aws-sdk-route53domains.rb +7 -4
- data/lib/aws-sdk-route53domains/client.rb +517 -103
- data/lib/aws-sdk-route53domains/client_api.rb +79 -0
- data/lib/aws-sdk-route53domains/errors.rb +28 -6
- data/lib/aws-sdk-route53domains/resource.rb +1 -0
- data/lib/aws-sdk-route53domains/types.rb +790 -117
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0e4628b471c86df567a6b7c20c394914dafe8a1b4944618cb7a7e00c3ef6e025
|
4
|
+
data.tar.gz: 49e630c74363ca8a6b8cd69e5f8dc233b387e6bac553d4105bacc36650f0c138
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e775c238892759d8d03034bb0cc57770fef34860b5e3aca389e2f717bbc92613e582395fd720d428ebd51e43d3f6f7651fbc73cf6294442f3c1a51dd90e2c42
|
7
|
+
data.tar.gz: 0f7cb17bb15af89591a32c196627f030922cd82043b22632560b8425be91a94ffef1bdd3ff166674fcd64a5c64b0cfbeeb1b61575e11def8c1d2e41608f1aa33
|
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-route53domains/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# route_53_domains = Aws::Route53Domains::Client.new
|
28
|
+
# resp = route_53_domains.accept_domain_transfer_from_another_aws_account(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon Route 53 Domains
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon Route 53 Domains are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::Route53Domains::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon Route 53 Domains API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-route53domains/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::Route53Domains
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.23.1'
|
46
49
|
|
47
50
|
end
|
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
30
|
|
30
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:route53domains)
|
31
32
|
|
32
33
|
module Aws::Route53Domains
|
34
|
+
# An API client for Route53Domains. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::Route53Domains::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
46
|
class Client < Seahorse::Client::Base
|
34
47
|
|
35
48
|
include Aws::ClientStubs
|
@@ -57,6 +70,7 @@ module Aws::Route53Domains
|
|
57
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
75
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
76
|
|
@@ -93,7 +107,7 @@ module Aws::Route53Domains
|
|
93
107
|
# @option options [required, String] :region
|
94
108
|
# The AWS region to connect to. The configured `:region` is
|
95
109
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
97
111
|
#
|
98
112
|
# * `Aws.config[:region]`
|
99
113
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +122,12 @@ module Aws::Route53Domains
|
|
108
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
123
|
# the background every 60 secs (default). Defaults to `false`.
|
110
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
111
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
133
|
# this client.
|
@@ -132,6 +152,10 @@ module Aws::Route53Domains
|
|
132
152
|
# When `true`, an attempt is made to coerce request parameters into
|
133
153
|
# the required types.
|
134
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
135
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
160
|
# Set to true to disable SDK automatically adding host prefix
|
137
161
|
# to default service endpoint when available.
|
@@ -139,7 +163,7 @@ module Aws::Route53Domains
|
|
139
163
|
# @option options [String] :endpoint
|
140
164
|
# The client endpoint is normally constructed from the `:region`
|
141
165
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
167
|
#
|
144
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +178,7 @@ module Aws::Route53Domains
|
|
154
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
179
|
#
|
156
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
182
|
#
|
159
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
184
|
# The log formatter.
|
@@ -166,15 +190,29 @@ module Aws::Route53Domains
|
|
166
190
|
# The Logger instance to send log messages to. If this option
|
167
191
|
# is not set, logging will be disabled.
|
168
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
169
199
|
# @option options [String] :profile ("default")
|
170
200
|
# Used when loading credentials from the shared credentials file
|
171
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
173
207
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
175
210
|
#
|
176
211
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
178
216
|
#
|
179
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
218
|
#
|
@@ -182,11 +220,30 @@ module Aws::Route53Domains
|
|
182
220
|
# The maximum number of times to retry failed requests. Only
|
183
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
222
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
187
226
|
#
|
188
227
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
190
247
|
#
|
191
248
|
# @option options [String] :secret_access_key
|
192
249
|
#
|
@@ -219,16 +276,15 @@ module Aws::Route53Domains
|
|
219
276
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
277
|
#
|
221
278
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
279
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
280
|
# `Timeout::Error`.
|
224
281
|
#
|
225
282
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
283
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
284
|
+
# safely be set per-request on the session.
|
229
285
|
#
|
230
286
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
287
|
+
# seconds a connection is allowed to sit idle before it is
|
232
288
|
# considered stale. Stale connections are closed and removed
|
233
289
|
# from the pool before making a request.
|
234
290
|
#
|
@@ -237,7 +293,7 @@ module Aws::Route53Domains
|
|
237
293
|
# request body. This option has no effect unless the request has
|
238
294
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
295
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
296
|
+
# request on the session.
|
241
297
|
#
|
242
298
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
299
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -264,16 +320,140 @@ module Aws::Route53Domains
|
|
264
320
|
|
265
321
|
# @!group API Operations
|
266
322
|
|
323
|
+
# Accepts the transfer of a domain from another AWS account to the
|
324
|
+
# current AWS account. You initiate a transfer between AWS accounts
|
325
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
326
|
+
#
|
327
|
+
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
328
|
+
# whether the operation succeeded. [GetOperationDetail][3] provides
|
329
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
330
|
+
# 111122223333 has been cancelled`.
|
331
|
+
#
|
332
|
+
#
|
333
|
+
#
|
334
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
335
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
336
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
337
|
+
#
|
338
|
+
# @option params [required, String] :domain_name
|
339
|
+
# The name of the domain that was specified when another AWS account
|
340
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
341
|
+
#
|
342
|
+
#
|
343
|
+
#
|
344
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
345
|
+
#
|
346
|
+
# @option params [required, String] :password
|
347
|
+
# The password that was returned by the
|
348
|
+
# [TransferDomainToAnotherAwsAccount][1] request.
|
349
|
+
#
|
350
|
+
#
|
351
|
+
#
|
352
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
353
|
+
#
|
354
|
+
# @return [Types::AcceptDomainTransferFromAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
355
|
+
#
|
356
|
+
# * {Types::AcceptDomainTransferFromAnotherAwsAccountResponse#operation_id #operation_id} => String
|
357
|
+
#
|
358
|
+
# @example Request syntax with placeholder values
|
359
|
+
#
|
360
|
+
# resp = client.accept_domain_transfer_from_another_aws_account({
|
361
|
+
# domain_name: "DomainName", # required
|
362
|
+
# password: "String", # required
|
363
|
+
# })
|
364
|
+
#
|
365
|
+
# @example Response structure
|
366
|
+
#
|
367
|
+
# resp.operation_id #=> String
|
368
|
+
#
|
369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccount AWS API Documentation
|
370
|
+
#
|
371
|
+
# @overload accept_domain_transfer_from_another_aws_account(params = {})
|
372
|
+
# @param [Hash] params ({})
|
373
|
+
def accept_domain_transfer_from_another_aws_account(params = {}, options = {})
|
374
|
+
req = build_request(:accept_domain_transfer_from_another_aws_account, params)
|
375
|
+
req.send_request(options)
|
376
|
+
end
|
377
|
+
|
378
|
+
# Cancels the transfer of a domain from the current AWS account to
|
379
|
+
# another AWS account. You initiate a transfer between AWS accounts
|
380
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
381
|
+
#
|
382
|
+
# You must cancel the transfer before the other AWS account accepts the
|
383
|
+
# transfer using [AcceptDomainTransferFromAnotherAwsAccount][2].
|
384
|
+
#
|
385
|
+
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
386
|
+
# whether the operation succeeded. [GetOperationDetail][4] provides
|
387
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
388
|
+
# 111122223333 has been cancelled`.
|
389
|
+
#
|
390
|
+
#
|
391
|
+
#
|
392
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
393
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
394
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
395
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
396
|
+
#
|
397
|
+
# @option params [required, String] :domain_name
|
398
|
+
# The name of the domain for which you want to cancel the transfer to
|
399
|
+
# another AWS account.
|
400
|
+
#
|
401
|
+
# @return [Types::CancelDomainTransferToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
402
|
+
#
|
403
|
+
# * {Types::CancelDomainTransferToAnotherAwsAccountResponse#operation_id #operation_id} => String
|
404
|
+
#
|
405
|
+
# @example Request syntax with placeholder values
|
406
|
+
#
|
407
|
+
# resp = client.cancel_domain_transfer_to_another_aws_account({
|
408
|
+
# domain_name: "DomainName", # required
|
409
|
+
# })
|
410
|
+
#
|
411
|
+
# @example Response structure
|
412
|
+
#
|
413
|
+
# resp.operation_id #=> String
|
414
|
+
#
|
415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccount AWS API Documentation
|
416
|
+
#
|
417
|
+
# @overload cancel_domain_transfer_to_another_aws_account(params = {})
|
418
|
+
# @param [Hash] params ({})
|
419
|
+
def cancel_domain_transfer_to_another_aws_account(params = {}, options = {})
|
420
|
+
req = build_request(:cancel_domain_transfer_to_another_aws_account, params)
|
421
|
+
req.send_request(options)
|
422
|
+
end
|
423
|
+
|
267
424
|
# This operation checks the availability of one domain name. Note that
|
268
425
|
# if the availability status of a domain is pending, you must submit
|
269
426
|
# another request to determine the availability of the domain name.
|
270
427
|
#
|
271
428
|
# @option params [required, String] :domain_name
|
272
|
-
# The name of the domain that you want to get availability for.
|
429
|
+
# The name of the domain that you want to get availability for. The
|
430
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
431
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
432
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
433
|
+
# Guide*.
|
434
|
+
#
|
435
|
+
# The domain name can contain only the following characters:
|
436
|
+
#
|
437
|
+
# * Letters a through z. Domain names are not case sensitive.
|
438
|
+
#
|
439
|
+
# * Numbers 0 through 9.
|
273
440
|
#
|
274
|
-
#
|
275
|
-
#
|
276
|
-
#
|
441
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
442
|
+
# label.
|
443
|
+
#
|
444
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
445
|
+
# `example.com`.
|
446
|
+
#
|
447
|
+
# Internationalized domain names are not supported for some top-level
|
448
|
+
# domains. To determine whether the TLD that you want to use supports
|
449
|
+
# internationalized domain names, see [Domains that You Can Register
|
450
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
451
|
+
# Internationalized Domain Names][2].
|
452
|
+
#
|
453
|
+
#
|
454
|
+
#
|
455
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
456
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
277
457
|
#
|
278
458
|
# @option params [String] :idn_lang_code
|
279
459
|
# Reserved for future use.
|
@@ -305,11 +485,27 @@ module Aws::Route53Domains
|
|
305
485
|
# Checks whether a domain name can be transferred to Amazon Route 53.
|
306
486
|
#
|
307
487
|
# @option params [required, String] :domain_name
|
308
|
-
# The name of the domain that you want to transfer to
|
488
|
+
# The name of the domain that you want to transfer to Route 53. The
|
489
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
490
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
491
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
492
|
+
# Guide*.
|
493
|
+
#
|
494
|
+
# The domain name can contain only the following characters:
|
495
|
+
#
|
496
|
+
# * Letters a through z. Domain names are not case sensitive.
|
497
|
+
#
|
498
|
+
# * Numbers 0 through 9.
|
499
|
+
#
|
500
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
501
|
+
# label.
|
502
|
+
#
|
503
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
504
|
+
# `example.com`.
|
505
|
+
#
|
309
506
|
#
|
310
|
-
#
|
311
|
-
#
|
312
|
-
# Names are not supported.
|
507
|
+
#
|
508
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
313
509
|
#
|
314
510
|
# @option params [String] :auth_code
|
315
511
|
# If the registrar for the top-level domain (TLD) requires an
|
@@ -431,15 +627,14 @@ module Aws::Route53Domains
|
|
431
627
|
# renewing your domain registration is billed to your AWS account.
|
432
628
|
#
|
433
629
|
# The period during which you can renew a domain name varies by TLD. For
|
434
|
-
# a list of TLDs and their renewal policies, see [
|
435
|
-
#
|
436
|
-
#
|
437
|
-
#
|
438
|
-
# can complete processing before the deadline.
|
630
|
+
# a list of TLDs and their renewal policies, see [Domains That You Can
|
631
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
632
|
+
# Guide*. Route 53 requires that you renew before the end of the renewal
|
633
|
+
# period so we can complete processing before the deadline.
|
439
634
|
#
|
440
635
|
#
|
441
636
|
#
|
442
|
-
# [1]:
|
637
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
443
638
|
#
|
444
639
|
# @option params [required, String] :domain_name
|
445
640
|
# The name of the domain that you want to enable automatic renewal for.
|
@@ -591,7 +786,7 @@ module Aws::Route53Domains
|
|
591
786
|
# resp.admin_contact.email #=> String
|
592
787
|
# resp.admin_contact.fax #=> String
|
593
788
|
# resp.admin_contact.extra_params #=> Array
|
594
|
-
# resp.admin_contact.extra_params[0].name #=> String, one of "DUNS_NUMBER", "BRAND_NUMBER", "BIRTH_DEPARTMENT", "BIRTH_DATE_IN_YYYY_MM_DD", "BIRTH_COUNTRY", "BIRTH_CITY", "DOCUMENT_NUMBER", "AU_ID_NUMBER", "AU_ID_TYPE", "CA_LEGAL_TYPE", "CA_BUSINESS_ENTITY_TYPE", "ES_IDENTIFICATION", "ES_IDENTIFICATION_TYPE", "ES_LEGAL_FORM", "FI_BUSINESS_NUMBER", "FI_ID_NUMBER", "FI_NATIONALITY", "FI_ORGANIZATION_TYPE", "IT_PIN", "IT_REGISTRANT_ENTITY_TYPE", "RU_PASSPORT_DATA", "SE_ID_NUMBER", "SG_ID_NUMBER", "VAT_NUMBER", "UK_CONTACT_TYPE", "UK_COMPANY_NUMBER"
|
789
|
+
# resp.admin_contact.extra_params[0].name #=> String, one of "DUNS_NUMBER", "BRAND_NUMBER", "BIRTH_DEPARTMENT", "BIRTH_DATE_IN_YYYY_MM_DD", "BIRTH_COUNTRY", "BIRTH_CITY", "DOCUMENT_NUMBER", "AU_ID_NUMBER", "AU_ID_TYPE", "CA_LEGAL_TYPE", "CA_BUSINESS_ENTITY_TYPE", "CA_LEGAL_REPRESENTATIVE", "CA_LEGAL_REPRESENTATIVE_CAPACITY", "ES_IDENTIFICATION", "ES_IDENTIFICATION_TYPE", "ES_LEGAL_FORM", "FI_BUSINESS_NUMBER", "FI_ID_NUMBER", "FI_NATIONALITY", "FI_ORGANIZATION_TYPE", "IT_NATIONALITY", "IT_PIN", "IT_REGISTRANT_ENTITY_TYPE", "RU_PASSPORT_DATA", "SE_ID_NUMBER", "SG_ID_NUMBER", "VAT_NUMBER", "UK_CONTACT_TYPE", "UK_COMPANY_NUMBER"
|
595
790
|
# resp.admin_contact.extra_params[0].value #=> String
|
596
791
|
# resp.registrant_contact.first_name #=> String
|
597
792
|
# resp.registrant_contact.last_name #=> String
|
@@ -607,7 +802,7 @@ module Aws::Route53Domains
|
|
607
802
|
# resp.registrant_contact.email #=> String
|
608
803
|
# resp.registrant_contact.fax #=> String
|
609
804
|
# resp.registrant_contact.extra_params #=> Array
|
610
|
-
# resp.registrant_contact.extra_params[0].name #=> String, one of "DUNS_NUMBER", "BRAND_NUMBER", "BIRTH_DEPARTMENT", "BIRTH_DATE_IN_YYYY_MM_DD", "BIRTH_COUNTRY", "BIRTH_CITY", "DOCUMENT_NUMBER", "AU_ID_NUMBER", "AU_ID_TYPE", "CA_LEGAL_TYPE", "CA_BUSINESS_ENTITY_TYPE", "ES_IDENTIFICATION", "ES_IDENTIFICATION_TYPE", "ES_LEGAL_FORM", "FI_BUSINESS_NUMBER", "FI_ID_NUMBER", "FI_NATIONALITY", "FI_ORGANIZATION_TYPE", "IT_PIN", "IT_REGISTRANT_ENTITY_TYPE", "RU_PASSPORT_DATA", "SE_ID_NUMBER", "SG_ID_NUMBER", "VAT_NUMBER", "UK_CONTACT_TYPE", "UK_COMPANY_NUMBER"
|
805
|
+
# resp.registrant_contact.extra_params[0].name #=> String, one of "DUNS_NUMBER", "BRAND_NUMBER", "BIRTH_DEPARTMENT", "BIRTH_DATE_IN_YYYY_MM_DD", "BIRTH_COUNTRY", "BIRTH_CITY", "DOCUMENT_NUMBER", "AU_ID_NUMBER", "AU_ID_TYPE", "CA_LEGAL_TYPE", "CA_BUSINESS_ENTITY_TYPE", "CA_LEGAL_REPRESENTATIVE", "CA_LEGAL_REPRESENTATIVE_CAPACITY", "ES_IDENTIFICATION", "ES_IDENTIFICATION_TYPE", "ES_LEGAL_FORM", "FI_BUSINESS_NUMBER", "FI_ID_NUMBER", "FI_NATIONALITY", "FI_ORGANIZATION_TYPE", "IT_NATIONALITY", "IT_PIN", "IT_REGISTRANT_ENTITY_TYPE", "RU_PASSPORT_DATA", "SE_ID_NUMBER", "SG_ID_NUMBER", "VAT_NUMBER", "UK_CONTACT_TYPE", "UK_COMPANY_NUMBER"
|
611
806
|
# resp.registrant_contact.extra_params[0].value #=> String
|
612
807
|
# resp.tech_contact.first_name #=> String
|
613
808
|
# resp.tech_contact.last_name #=> String
|
@@ -623,7 +818,7 @@ module Aws::Route53Domains
|
|
623
818
|
# resp.tech_contact.email #=> String
|
624
819
|
# resp.tech_contact.fax #=> String
|
625
820
|
# resp.tech_contact.extra_params #=> Array
|
626
|
-
# resp.tech_contact.extra_params[0].name #=> String, one of "DUNS_NUMBER", "BRAND_NUMBER", "BIRTH_DEPARTMENT", "BIRTH_DATE_IN_YYYY_MM_DD", "BIRTH_COUNTRY", "BIRTH_CITY", "DOCUMENT_NUMBER", "AU_ID_NUMBER", "AU_ID_TYPE", "CA_LEGAL_TYPE", "CA_BUSINESS_ENTITY_TYPE", "ES_IDENTIFICATION", "ES_IDENTIFICATION_TYPE", "ES_LEGAL_FORM", "FI_BUSINESS_NUMBER", "FI_ID_NUMBER", "FI_NATIONALITY", "FI_ORGANIZATION_TYPE", "IT_PIN", "IT_REGISTRANT_ENTITY_TYPE", "RU_PASSPORT_DATA", "SE_ID_NUMBER", "SG_ID_NUMBER", "VAT_NUMBER", "UK_CONTACT_TYPE", "UK_COMPANY_NUMBER"
|
821
|
+
# resp.tech_contact.extra_params[0].name #=> String, one of "DUNS_NUMBER", "BRAND_NUMBER", "BIRTH_DEPARTMENT", "BIRTH_DATE_IN_YYYY_MM_DD", "BIRTH_COUNTRY", "BIRTH_CITY", "DOCUMENT_NUMBER", "AU_ID_NUMBER", "AU_ID_TYPE", "CA_LEGAL_TYPE", "CA_BUSINESS_ENTITY_TYPE", "CA_LEGAL_REPRESENTATIVE", "CA_LEGAL_REPRESENTATIVE_CAPACITY", "ES_IDENTIFICATION", "ES_IDENTIFICATION_TYPE", "ES_LEGAL_FORM", "FI_BUSINESS_NUMBER", "FI_ID_NUMBER", "FI_NATIONALITY", "FI_ORGANIZATION_TYPE", "IT_NATIONALITY", "IT_PIN", "IT_REGISTRANT_ENTITY_TYPE", "RU_PASSPORT_DATA", "SE_ID_NUMBER", "SG_ID_NUMBER", "VAT_NUMBER", "UK_CONTACT_TYPE", "UK_COMPANY_NUMBER"
|
627
822
|
# resp.tech_contact.extra_params[0].value #=> String
|
628
823
|
# resp.admin_privacy #=> Boolean
|
629
824
|
# resp.registrant_privacy #=> Boolean
|
@@ -652,30 +847,46 @@ module Aws::Route53Domains
|
|
652
847
|
end
|
653
848
|
|
654
849
|
# The GetDomainSuggestions operation returns a list of suggested domain
|
655
|
-
# names
|
656
|
-
# word or phrase (without spaces).
|
850
|
+
# names.
|
657
851
|
#
|
658
852
|
# @option params [required, String] :domain_name
|
659
853
|
# A domain name that you want to use as the basis for a list of possible
|
660
|
-
# domain names. The
|
661
|
-
#
|
662
|
-
#
|
663
|
-
#
|
854
|
+
# domain names. The top-level domain (TLD), such as .com, must be a TLD
|
855
|
+
# that Route 53 supports. For a list of supported TLDs, see [Domains
|
856
|
+
# that You Can Register with Amazon Route 53][1] in the *Amazon Route 53
|
857
|
+
# Developer Guide*.
|
858
|
+
#
|
859
|
+
# The domain name can contain only the following characters:
|
860
|
+
#
|
861
|
+
# * Letters a through z. Domain names are not case sensitive.
|
862
|
+
#
|
863
|
+
# * Numbers 0 through 9.
|
864
|
+
#
|
865
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
866
|
+
# label.
|
867
|
+
#
|
868
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
869
|
+
# `example.com`.
|
664
870
|
#
|
871
|
+
# Internationalized domain names are not supported for some top-level
|
872
|
+
# domains. To determine whether the TLD that you want to use supports
|
873
|
+
# internationalized domain names, see [Domains that You Can Register
|
874
|
+
# with Amazon Route 53][1].
|
665
875
|
#
|
666
876
|
#
|
667
|
-
#
|
877
|
+
#
|
878
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
668
879
|
#
|
669
880
|
# @option params [required, Integer] :suggestion_count
|
670
|
-
# The number of suggested domain names that you want
|
671
|
-
#
|
881
|
+
# The number of suggested domain names that you want Route 53 to return.
|
882
|
+
# Specify a value between 1 and 50.
|
672
883
|
#
|
673
884
|
# @option params [required, Boolean] :only_available
|
674
|
-
# If `OnlyAvailable` is `true`,
|
675
|
-
#
|
676
|
-
#
|
677
|
-
#
|
678
|
-
#
|
885
|
+
# If `OnlyAvailable` is `true`, Route 53 returns only domain names that
|
886
|
+
# are available. If `OnlyAvailable` is `false`, Route 53 returns domain
|
887
|
+
# names without checking whether they're available to be registered. To
|
888
|
+
# determine whether the domain is available, you can call
|
889
|
+
# `checkDomainAvailability` for each suggestion.
|
679
890
|
#
|
680
891
|
# @return [Types::GetDomainSuggestionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
681
892
|
#
|
@@ -709,8 +920,8 @@ module Aws::Route53Domains
|
|
709
920
|
#
|
710
921
|
# @option params [required, String] :operation_id
|
711
922
|
# The identifier for the operation for which you want to get the status.
|
712
|
-
#
|
713
|
-
#
|
923
|
+
# Route 53 returned the identifier in the response to the original
|
924
|
+
# request.
|
714
925
|
#
|
715
926
|
# @return [Types::GetOperationDetailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
716
927
|
#
|
@@ -733,7 +944,7 @@ module Aws::Route53Domains
|
|
733
944
|
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
734
945
|
# resp.message #=> String
|
735
946
|
# resp.domain_name #=> String
|
736
|
-
# resp.type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN"
|
947
|
+
# resp.type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN"
|
737
948
|
# resp.submitted_date #=> Time
|
738
949
|
#
|
739
950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetail AWS API Documentation
|
@@ -770,6 +981,8 @@ module Aws::Route53Domains
|
|
770
981
|
# * {Types::ListDomainsResponse#domains #domains} => Array<Types::DomainSummary>
|
771
982
|
# * {Types::ListDomainsResponse#next_page_marker #next_page_marker} => String
|
772
983
|
#
|
984
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
985
|
+
#
|
773
986
|
# @example Request syntax with placeholder values
|
774
987
|
#
|
775
988
|
# resp = client.list_domains({
|
@@ -795,13 +1008,15 @@ module Aws::Route53Domains
|
|
795
1008
|
req.send_request(options)
|
796
1009
|
end
|
797
1010
|
|
798
|
-
#
|
799
|
-
#
|
1011
|
+
# Returns information about all of the operations that return an
|
1012
|
+
# operation ID and that have ever been performed on domains that were
|
1013
|
+
# registered by the current account.
|
800
1014
|
#
|
801
1015
|
# @option params [Time,DateTime,Date,Integer,String] :submitted_since
|
802
1016
|
# An optional parameter that lets you get information about all the
|
803
1017
|
# operations that you submitted after a specified date and time. Specify
|
804
|
-
# the date and time in Coordinated Universal time
|
1018
|
+
# the date and time in Unix time format and Coordinated Universal time
|
1019
|
+
# (UTC).
|
805
1020
|
#
|
806
1021
|
# @option params [String] :marker
|
807
1022
|
# For an initial request for a list of operations, omit this element. If
|
@@ -821,6 +1036,8 @@ module Aws::Route53Domains
|
|
821
1036
|
# * {Types::ListOperationsResponse#operations #operations} => Array<Types::OperationSummary>
|
822
1037
|
# * {Types::ListOperationsResponse#next_page_marker #next_page_marker} => String
|
823
1038
|
#
|
1039
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1040
|
+
#
|
824
1041
|
# @example Request syntax with placeholder values
|
825
1042
|
#
|
826
1043
|
# resp = client.list_operations({
|
@@ -834,7 +1051,7 @@ module Aws::Route53Domains
|
|
834
1051
|
# resp.operations #=> Array
|
835
1052
|
# resp.operations[0].operation_id #=> String
|
836
1053
|
# resp.operations[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
837
|
-
# resp.operations[0].type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN"
|
1054
|
+
# resp.operations[0].type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN"
|
838
1055
|
# resp.operations[0].submitted_date #=> Time
|
839
1056
|
# resp.next_page_marker #=> String
|
840
1057
|
#
|
@@ -888,10 +1105,10 @@ module Aws::Route53Domains
|
|
888
1105
|
#
|
889
1106
|
# When you register a domain, Amazon Route 53 does the following:
|
890
1107
|
#
|
891
|
-
# * Creates a
|
892
|
-
#
|
893
|
-
#
|
894
|
-
#
|
1108
|
+
# * Creates a Route 53 hosted zone that has the same name as the domain.
|
1109
|
+
# Route 53 assigns four name servers to your hosted zone and
|
1110
|
+
# automatically updates your domain registration with the names of
|
1111
|
+
# these name servers.
|
895
1112
|
#
|
896
1113
|
# * Enables autorenew, so your domain registration will renew
|
897
1114
|
# automatically each year. We'll notify you in advance of the renewal
|
@@ -917,11 +1134,33 @@ module Aws::Route53Domains
|
|
917
1134
|
# [1]: http://aws.amazon.com/route53/pricing/
|
918
1135
|
#
|
919
1136
|
# @option params [required, String] :domain_name
|
920
|
-
# The domain name that you want to register.
|
1137
|
+
# The domain name that you want to register. The top-level domain (TLD),
|
1138
|
+
# such as .com, must be a TLD that Route 53 supports. For a list of
|
1139
|
+
# supported TLDs, see [Domains that You Can Register with Amazon Route
|
1140
|
+
# 53][1] in the *Amazon Route 53 Developer Guide*.
|
1141
|
+
#
|
1142
|
+
# The domain name can contain only the following characters:
|
921
1143
|
#
|
922
|
-
#
|
923
|
-
#
|
924
|
-
#
|
1144
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1145
|
+
#
|
1146
|
+
# * Numbers 0 through 9.
|
1147
|
+
#
|
1148
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
1149
|
+
# label.
|
1150
|
+
#
|
1151
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1152
|
+
# `example.com`.
|
1153
|
+
#
|
1154
|
+
# Internationalized domain names are not supported for some top-level
|
1155
|
+
# domains. To determine whether the TLD that you want to use supports
|
1156
|
+
# internationalized domain names, see [Domains that You Can Register
|
1157
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
1158
|
+
# Internationalized Domain Names][2].
|
1159
|
+
#
|
1160
|
+
#
|
1161
|
+
#
|
1162
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1163
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
925
1164
|
#
|
926
1165
|
# @option params [String] :idn_lang_code
|
927
1166
|
# Reserved for future use.
|
@@ -937,7 +1176,7 @@ module Aws::Route53Domains
|
|
937
1176
|
#
|
938
1177
|
#
|
939
1178
|
#
|
940
|
-
# [1]:
|
1179
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
941
1180
|
#
|
942
1181
|
# @option params [Boolean] :auto_renew
|
943
1182
|
# Indicates whether the domain will be automatically renewed (`true`) or
|
@@ -947,13 +1186,28 @@ module Aws::Route53Domains
|
|
947
1186
|
# Default: `true`
|
948
1187
|
#
|
949
1188
|
# @option params [required, Types::ContactDetail] :admin_contact
|
950
|
-
# Provides detailed contact information.
|
1189
|
+
# Provides detailed contact information. For information about the
|
1190
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1191
|
+
#
|
1192
|
+
#
|
1193
|
+
#
|
1194
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
951
1195
|
#
|
952
1196
|
# @option params [required, Types::ContactDetail] :registrant_contact
|
953
|
-
# Provides detailed contact information.
|
1197
|
+
# Provides detailed contact information. For information about the
|
1198
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1199
|
+
#
|
1200
|
+
#
|
1201
|
+
#
|
1202
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
954
1203
|
#
|
955
1204
|
# @option params [required, Types::ContactDetail] :tech_contact
|
956
|
-
# Provides detailed contact information.
|
1205
|
+
# Provides detailed contact information. For information about the
|
1206
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1207
|
+
#
|
1208
|
+
#
|
1209
|
+
#
|
1210
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
957
1211
|
#
|
958
1212
|
# @option params [Boolean] :privacy_protect_admin_contact
|
959
1213
|
# Whether you want to conceal contact information from WHOIS queries. If
|
@@ -1012,7 +1266,7 @@ module Aws::Route53Domains
|
|
1012
1266
|
# fax: "ContactNumber",
|
1013
1267
|
# extra_params: [
|
1014
1268
|
# {
|
1015
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1269
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1016
1270
|
# value: "ExtraParamValue", # required
|
1017
1271
|
# },
|
1018
1272
|
# ],
|
@@ -1033,7 +1287,7 @@ module Aws::Route53Domains
|
|
1033
1287
|
# fax: "ContactNumber",
|
1034
1288
|
# extra_params: [
|
1035
1289
|
# {
|
1036
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1290
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1037
1291
|
# value: "ExtraParamValue", # required
|
1038
1292
|
# },
|
1039
1293
|
# ],
|
@@ -1054,7 +1308,7 @@ module Aws::Route53Domains
|
|
1054
1308
|
# fax: "ContactNumber",
|
1055
1309
|
# extra_params: [
|
1056
1310
|
# {
|
1057
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1311
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1058
1312
|
# value: "ExtraParamValue", # required
|
1059
1313
|
# },
|
1060
1314
|
# ],
|
@@ -1077,6 +1331,52 @@ module Aws::Route53Domains
|
|
1077
1331
|
req.send_request(options)
|
1078
1332
|
end
|
1079
1333
|
|
1334
|
+
# Rejects the transfer of a domain from another AWS account to the
|
1335
|
+
# current AWS account. You initiate a transfer between AWS accounts
|
1336
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
1337
|
+
#
|
1338
|
+
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
1339
|
+
# whether the operation succeeded. [GetOperationDetail][3] provides
|
1340
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
1341
|
+
# 111122223333 has been cancelled`.
|
1342
|
+
#
|
1343
|
+
#
|
1344
|
+
#
|
1345
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1346
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
1347
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1348
|
+
#
|
1349
|
+
# @option params [required, String] :domain_name
|
1350
|
+
# The name of the domain that was specified when another AWS account
|
1351
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
1352
|
+
#
|
1353
|
+
#
|
1354
|
+
#
|
1355
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1356
|
+
#
|
1357
|
+
# @return [Types::RejectDomainTransferFromAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1358
|
+
#
|
1359
|
+
# * {Types::RejectDomainTransferFromAnotherAwsAccountResponse#operation_id #operation_id} => String
|
1360
|
+
#
|
1361
|
+
# @example Request syntax with placeholder values
|
1362
|
+
#
|
1363
|
+
# resp = client.reject_domain_transfer_from_another_aws_account({
|
1364
|
+
# domain_name: "DomainName", # required
|
1365
|
+
# })
|
1366
|
+
#
|
1367
|
+
# @example Response structure
|
1368
|
+
#
|
1369
|
+
# resp.operation_id #=> String
|
1370
|
+
#
|
1371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccount AWS API Documentation
|
1372
|
+
#
|
1373
|
+
# @overload reject_domain_transfer_from_another_aws_account(params = {})
|
1374
|
+
# @param [Hash] params ({})
|
1375
|
+
def reject_domain_transfer_from_another_aws_account(params = {}, options = {})
|
1376
|
+
req = build_request(:reject_domain_transfer_from_another_aws_account, params)
|
1377
|
+
req.send_request(options)
|
1378
|
+
end
|
1379
|
+
|
1080
1380
|
# This operation renews a domain for the specified number of years. The
|
1081
1381
|
# cost of renewing your domain is billed to your AWS account.
|
1082
1382
|
#
|
@@ -1084,11 +1384,12 @@ module Aws::Route53Domains
|
|
1084
1384
|
# expiration date. Some TLD registries delete domains before the
|
1085
1385
|
# expiration date if you haven't renewed far enough in advance. For
|
1086
1386
|
# more information about renewing domain registration, see [Renewing
|
1087
|
-
# Registration for a Domain][1] in the Amazon Route 53 Developer
|
1387
|
+
# Registration for a Domain][1] in the *Amazon Route 53 Developer
|
1388
|
+
# Guide*.
|
1088
1389
|
#
|
1089
1390
|
#
|
1090
1391
|
#
|
1091
|
-
# [1]:
|
1392
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-renew.html
|
1092
1393
|
#
|
1093
1394
|
# @option params [required, String] :domain_name
|
1094
1395
|
# The name of the domain that you want to renew.
|
@@ -1103,7 +1404,7 @@ module Aws::Route53Domains
|
|
1103
1404
|
#
|
1104
1405
|
#
|
1105
1406
|
#
|
1106
|
-
# [1]:
|
1407
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1107
1408
|
#
|
1108
1409
|
# @option params [required, Integer] :current_expiry_year
|
1109
1410
|
# The year when the registration for the domain is set to expire. This
|
@@ -1140,7 +1441,7 @@ module Aws::Route53Domains
|
|
1140
1441
|
# address for the registrant contact.
|
1141
1442
|
#
|
1142
1443
|
# @option params [String] :domain_name
|
1143
|
-
# The name of the domain for which you want
|
1444
|
+
# The name of the domain for which you want Route 53 to resend a
|
1144
1445
|
# confirmation email to the registrant contact.
|
1145
1446
|
#
|
1146
1447
|
# @return [Types::ResendContactReachabilityEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1200,23 +1501,33 @@ module Aws::Route53Domains
|
|
1200
1501
|
req.send_request(options)
|
1201
1502
|
end
|
1202
1503
|
|
1203
|
-
#
|
1204
|
-
#
|
1205
|
-
#
|
1206
|
-
#
|
1504
|
+
# Transfers a domain from another registrar to Amazon Route 53. When the
|
1505
|
+
# transfer is complete, the domain is registered either with Amazon
|
1506
|
+
# Registrar (for .com, .net, and .org domains) or with our registrar
|
1507
|
+
# associate, Gandi (for all other TLDs).
|
1508
|
+
#
|
1509
|
+
# For more information about transferring domains, see the following
|
1510
|
+
# topics:
|
1511
|
+
#
|
1512
|
+
# * For transfer requirements, a detailed procedure, and information
|
1513
|
+
# about viewing the status of a domain that you're transferring to
|
1514
|
+
# Route 53, see [Transferring Registration for a Domain to Amazon
|
1515
|
+
# Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1207
1516
|
#
|
1208
|
-
# For transfer
|
1209
|
-
#
|
1210
|
-
#
|
1211
|
-
#
|
1517
|
+
# * For information about how to transfer a domain from one AWS account
|
1518
|
+
# to another, see [TransferDomainToAnotherAwsAccount][2].
|
1519
|
+
#
|
1520
|
+
# * For information about how to transfer a domain to another domain
|
1521
|
+
# registrar, see [Transferring a Domain from Amazon Route 53 to
|
1522
|
+
# Another Registrar][3] in the *Amazon Route 53 Developer Guide*.
|
1212
1523
|
#
|
1213
1524
|
# If the registrar for your domain is also the DNS service provider for
|
1214
|
-
# the domain, we highly recommend that you
|
1215
|
-
#
|
1216
|
-
#
|
1217
|
-
#
|
1218
|
-
# the
|
1219
|
-
#
|
1525
|
+
# the domain, we highly recommend that you transfer your DNS service to
|
1526
|
+
# Route 53 or to another DNS service provider before you transfer your
|
1527
|
+
# registration. Some registrars provide free DNS service when you
|
1528
|
+
# purchase a domain registration. When you transfer the registration,
|
1529
|
+
# the previous registrar will not renew your domain registration and
|
1530
|
+
# could end your DNS service at any time.
|
1220
1531
|
#
|
1221
1532
|
# If the registrar for your domain is also the DNS service provider for
|
1222
1533
|
# the domain and you don't transfer DNS service to another provider,
|
@@ -1230,14 +1541,32 @@ module Aws::Route53Domains
|
|
1230
1541
|
#
|
1231
1542
|
#
|
1232
1543
|
#
|
1233
|
-
# [1]:
|
1544
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html
|
1545
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1546
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-from-route-53.html
|
1234
1547
|
#
|
1235
1548
|
# @option params [required, String] :domain_name
|
1236
|
-
# The name of the domain that you want to transfer to
|
1549
|
+
# The name of the domain that you want to transfer to Route 53. The
|
1550
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
1551
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
1552
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
1553
|
+
# Guide*.
|
1554
|
+
#
|
1555
|
+
# The domain name can contain only the following characters:
|
1556
|
+
#
|
1557
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1558
|
+
#
|
1559
|
+
# * Numbers 0 through 9.
|
1560
|
+
#
|
1561
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
1562
|
+
# label.
|
1563
|
+
#
|
1564
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1565
|
+
# `example.com`.
|
1566
|
+
#
|
1567
|
+
#
|
1237
1568
|
#
|
1238
|
-
#
|
1239
|
-
# the numbers 0 through 9, and hyphen (-). Internationalized Domain
|
1240
|
-
# Names are not supported.
|
1569
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1241
1570
|
#
|
1242
1571
|
# @option params [String] :idn_lang_code
|
1243
1572
|
# Reserved for future use.
|
@@ -1336,7 +1665,7 @@ module Aws::Route53Domains
|
|
1336
1665
|
# fax: "ContactNumber",
|
1337
1666
|
# extra_params: [
|
1338
1667
|
# {
|
1339
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1668
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1340
1669
|
# value: "ExtraParamValue", # required
|
1341
1670
|
# },
|
1342
1671
|
# ],
|
@@ -1357,7 +1686,7 @@ module Aws::Route53Domains
|
|
1357
1686
|
# fax: "ContactNumber",
|
1358
1687
|
# extra_params: [
|
1359
1688
|
# {
|
1360
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1689
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1361
1690
|
# value: "ExtraParamValue", # required
|
1362
1691
|
# },
|
1363
1692
|
# ],
|
@@ -1378,7 +1707,7 @@ module Aws::Route53Domains
|
|
1378
1707
|
# fax: "ContactNumber",
|
1379
1708
|
# extra_params: [
|
1380
1709
|
# {
|
1381
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1710
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1382
1711
|
# value: "ExtraParamValue", # required
|
1383
1712
|
# },
|
1384
1713
|
# ],
|
@@ -1401,6 +1730,76 @@ module Aws::Route53Domains
|
|
1401
1730
|
req.send_request(options)
|
1402
1731
|
end
|
1403
1732
|
|
1733
|
+
# Transfers a domain from the current AWS account to another AWS
|
1734
|
+
# account. Note the following:
|
1735
|
+
#
|
1736
|
+
# * The AWS account that you're transferring the domain to must accept
|
1737
|
+
# the transfer. If the other account doesn't accept the transfer
|
1738
|
+
# within 3 days, we cancel the transfer. See
|
1739
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][1].
|
1740
|
+
#
|
1741
|
+
# * You can cancel the transfer before the other account accepts it. See
|
1742
|
+
# [CancelDomainTransferToAnotherAwsAccount][2].
|
1743
|
+
#
|
1744
|
+
# * The other account can reject the transfer. See
|
1745
|
+
# [RejectDomainTransferFromAnotherAwsAccount][3].
|
1746
|
+
#
|
1747
|
+
# When you transfer a domain from one AWS account to another, Route 53
|
1748
|
+
# doesn't transfer the hosted zone that is associated with the domain.
|
1749
|
+
# DNS resolution isn't affected if the domain and the hosted zone are
|
1750
|
+
# owned by separate accounts, so transferring the hosted zone is
|
1751
|
+
# optional. For information about transferring the hosted zone to
|
1752
|
+
# another AWS account, see [Migrating a Hosted Zone to a Different AWS
|
1753
|
+
# Account][4] in the *Amazon Route 53 Developer Guide*.
|
1754
|
+
#
|
1755
|
+
# Use either [ListOperations][5] or [GetOperationDetail][6] to determine
|
1756
|
+
# whether the operation succeeded. [GetOperationDetail][6] provides
|
1757
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
1758
|
+
# 111122223333 has been cancelled`.
|
1759
|
+
#
|
1760
|
+
#
|
1761
|
+
#
|
1762
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
1763
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_CancelDomainTransferToAnotherAwsAccount.html
|
1764
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_RejectDomainTransferFromAnotherAwsAccount.html
|
1765
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-migrating.html
|
1766
|
+
# [5]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
1767
|
+
# [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1768
|
+
#
|
1769
|
+
# @option params [required, String] :domain_name
|
1770
|
+
# The name of the domain that you want to transfer from the current AWS
|
1771
|
+
# account to another account.
|
1772
|
+
#
|
1773
|
+
# @option params [required, String] :account_id
|
1774
|
+
# The account ID of the AWS account that you want to transfer the domain
|
1775
|
+
# to, for example, `111122223333`.
|
1776
|
+
#
|
1777
|
+
# @return [Types::TransferDomainToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1778
|
+
#
|
1779
|
+
# * {Types::TransferDomainToAnotherAwsAccountResponse#operation_id #operation_id} => String
|
1780
|
+
# * {Types::TransferDomainToAnotherAwsAccountResponse#password #password} => String
|
1781
|
+
#
|
1782
|
+
# @example Request syntax with placeholder values
|
1783
|
+
#
|
1784
|
+
# resp = client.transfer_domain_to_another_aws_account({
|
1785
|
+
# domain_name: "DomainName", # required
|
1786
|
+
# account_id: "AccountId", # required
|
1787
|
+
# })
|
1788
|
+
#
|
1789
|
+
# @example Response structure
|
1790
|
+
#
|
1791
|
+
# resp.operation_id #=> String
|
1792
|
+
# resp.password #=> String
|
1793
|
+
#
|
1794
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccount AWS API Documentation
|
1795
|
+
#
|
1796
|
+
# @overload transfer_domain_to_another_aws_account(params = {})
|
1797
|
+
# @param [Hash] params ({})
|
1798
|
+
def transfer_domain_to_another_aws_account(params = {}, options = {})
|
1799
|
+
req = build_request(:transfer_domain_to_another_aws_account, params)
|
1800
|
+
req.send_request(options)
|
1801
|
+
end
|
1802
|
+
|
1404
1803
|
# This operation updates the contact information for a particular
|
1405
1804
|
# domain. You must specify information for at least one contact:
|
1406
1805
|
# registrant, administrator, or technical.
|
@@ -1447,7 +1846,7 @@ module Aws::Route53Domains
|
|
1447
1846
|
# fax: "ContactNumber",
|
1448
1847
|
# extra_params: [
|
1449
1848
|
# {
|
1450
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1849
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1451
1850
|
# value: "ExtraParamValue", # required
|
1452
1851
|
# },
|
1453
1852
|
# ],
|
@@ -1468,7 +1867,7 @@ module Aws::Route53Domains
|
|
1468
1867
|
# fax: "ContactNumber",
|
1469
1868
|
# extra_params: [
|
1470
1869
|
# {
|
1471
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1870
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1472
1871
|
# value: "ExtraParamValue", # required
|
1473
1872
|
# },
|
1474
1873
|
# ],
|
@@ -1489,7 +1888,7 @@ module Aws::Route53Domains
|
|
1489
1888
|
# fax: "ContactNumber",
|
1490
1889
|
# extra_params: [
|
1491
1890
|
# {
|
1492
|
-
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1891
|
+
# name: "DUNS_NUMBER", # required, accepts DUNS_NUMBER, BRAND_NUMBER, BIRTH_DEPARTMENT, BIRTH_DATE_IN_YYYY_MM_DD, BIRTH_COUNTRY, BIRTH_CITY, DOCUMENT_NUMBER, AU_ID_NUMBER, AU_ID_TYPE, CA_LEGAL_TYPE, CA_BUSINESS_ENTITY_TYPE, CA_LEGAL_REPRESENTATIVE, CA_LEGAL_REPRESENTATIVE_CAPACITY, ES_IDENTIFICATION, ES_IDENTIFICATION_TYPE, ES_LEGAL_FORM, FI_BUSINESS_NUMBER, FI_ID_NUMBER, FI_NATIONALITY, FI_ORGANIZATION_TYPE, IT_NATIONALITY, IT_PIN, IT_REGISTRANT_ENTITY_TYPE, RU_PASSPORT_DATA, SE_ID_NUMBER, SG_ID_NUMBER, VAT_NUMBER, UK_CONTACT_TYPE, UK_COMPANY_NUMBER
|
1493
1892
|
# value: "ExtraParamValue", # required
|
1494
1893
|
# },
|
1495
1894
|
# ],
|
@@ -1518,10 +1917,25 @@ module Aws::Route53Domains
|
|
1518
1917
|
# This operation affects only the contact information for the specified
|
1519
1918
|
# contact type (registrant, administrator, or tech). If the request
|
1520
1919
|
# succeeds, Amazon Route 53 returns an operation ID that you can use
|
1521
|
-
# with GetOperationDetail to track the progress and completion of
|
1522
|
-
# action. If the request doesn't complete successfully, the domain
|
1920
|
+
# with [GetOperationDetail][1] to track the progress and completion of
|
1921
|
+
# the action. If the request doesn't complete successfully, the domain
|
1523
1922
|
# registrant will be notified by email.
|
1524
1923
|
#
|
1924
|
+
# By disabling the privacy service via API, you consent to the
|
1925
|
+
# publication of the contact information provided for this domain via
|
1926
|
+
# the public WHOIS database. You certify that you are the registrant of
|
1927
|
+
# this domain name and have the authority to make this decision. You may
|
1928
|
+
# withdraw your consent at any time by enabling privacy protection using
|
1929
|
+
# either `UpdateDomainContactPrivacy` or the Route 53 console. Enabling
|
1930
|
+
# privacy protection removes the contact information provided for this
|
1931
|
+
# domain from the WHOIS database. For more information on our privacy
|
1932
|
+
# practices, see [https://aws.amazon.com/privacy/][2].
|
1933
|
+
#
|
1934
|
+
#
|
1935
|
+
#
|
1936
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1937
|
+
# [2]: https://aws.amazon.com/privacy/
|
1938
|
+
#
|
1525
1939
|
# @option params [required, String] :domain_name
|
1526
1940
|
# The name of the domain that you want to update the privacy setting
|
1527
1941
|
# for.
|
@@ -1666,13 +2080,13 @@ module Aws::Route53Domains
|
|
1666
2080
|
#
|
1667
2081
|
# @option params [Time,DateTime,Date,Integer,String] :start
|
1668
2082
|
# The beginning date and time for the time period for which you want a
|
1669
|
-
# list of billing records. Specify the date and time in
|
1670
|
-
# Universal time (UTC).
|
2083
|
+
# list of billing records. Specify the date and time in Unix time format
|
2084
|
+
# and Coordinated Universal time (UTC).
|
1671
2085
|
#
|
1672
2086
|
# @option params [Time,DateTime,Date,Integer,String] :end
|
1673
2087
|
# The end date and time for the time period for which you want a list of
|
1674
|
-
# billing records. Specify the date and time in
|
1675
|
-
# time (UTC).
|
2088
|
+
# billing records. Specify the date and time in Unix time format and
|
2089
|
+
# Coordinated Universal time (UTC).
|
1676
2090
|
#
|
1677
2091
|
# @option params [String] :marker
|
1678
2092
|
# For an initial request for a list of billing records, omit this
|
@@ -1710,7 +2124,7 @@ module Aws::Route53Domains
|
|
1710
2124
|
# resp.next_page_marker #=> String
|
1711
2125
|
# resp.billing_records #=> Array
|
1712
2126
|
# resp.billing_records[0].domain_name #=> String
|
1713
|
-
# resp.billing_records[0].operation #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN"
|
2127
|
+
# resp.billing_records[0].operation #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN"
|
1714
2128
|
# resp.billing_records[0].invoice_id #=> String
|
1715
2129
|
# resp.billing_records[0].bill_date #=> Time
|
1716
2130
|
# resp.billing_records[0].price #=> Float
|
@@ -1737,7 +2151,7 @@ module Aws::Route53Domains
|
|
1737
2151
|
params: params,
|
1738
2152
|
config: config)
|
1739
2153
|
context[:gem_name] = 'aws-sdk-route53domains'
|
1740
|
-
context[:gem_version] = '1.
|
2154
|
+
context[:gem_version] = '1.23.1'
|
1741
2155
|
Seahorse::Client::Request.new(handlers, context)
|
1742
2156
|
end
|
1743
2157
|
|