aws-sdk-route53domains 1.19.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-route53domains.rb +4 -2
- data/lib/aws-sdk-route53domains/client.rb +475 -110
- data/lib/aws-sdk-route53domains/client_api.rb +81 -0
- data/lib/aws-sdk-route53domains/customizations.rb +1 -0
- data/lib/aws-sdk-route53domains/errors.rb +2 -0
- data/lib/aws-sdk-route53domains/resource.rb +3 -7
- data/lib/aws-sdk-route53domains/types.rb +859 -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: ce8df47b9937e632563e14c91f8e210b1f130dbfa117850422cbb4764748e002
|
4
|
+
data.tar.gz: 7841e6176092e605ef0b3f4a01eaa2c7bb89d38dfe3d69ef623733645f777e2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 640c1ed8f3fb5c5118e9de904138c14ff6c1d363f7f9f6cb9cfb7f1ec60afea11c68f4ff5022e3f1c6098ddac8405144dba1c970427e685d28576783807dd2ca
|
7
|
+
data.tar.gz: '068173b691d6e1acdecb5344a29cf8705216ebb4a58dab8facf521ce94f0d6543818389f03db2ac9fb008661cc3f047232705f098eb9b1dffccbb1d64dd0ef51'
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -25,7 +27,7 @@ require_relative 'aws-sdk-route53domains/customizations'
|
|
25
27
|
# structure.
|
26
28
|
#
|
27
29
|
# route_53_domains = Aws::Route53Domains::Client.new
|
28
|
-
# resp = route_53_domains.
|
30
|
+
# resp = route_53_domains.accept_domain_transfer_from_another_aws_account(params)
|
29
31
|
#
|
30
32
|
# See {Client} for more information.
|
31
33
|
#
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-route53domains/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Route53Domains
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.24.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:route53domains)
|
|
32
35
|
module Aws::Route53Domains
|
33
36
|
# An API client for Route53Domains. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::Route53Domains::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::Route53Domains
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::Route53Domains
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::Route53Domains
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Route53Domains
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::Route53Domains
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::Route53Domains
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::Route53Domains
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -315,16 +322,140 @@ module Aws::Route53Domains
|
|
315
322
|
|
316
323
|
# @!group API Operations
|
317
324
|
|
325
|
+
# Accepts the transfer of a domain from another AWS account to the
|
326
|
+
# current AWS account. You initiate a transfer between AWS accounts
|
327
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
328
|
+
#
|
329
|
+
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
330
|
+
# whether the operation succeeded. [GetOperationDetail][3] provides
|
331
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
332
|
+
# 111122223333 has been cancelled`.
|
333
|
+
#
|
334
|
+
#
|
335
|
+
#
|
336
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
337
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
338
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
339
|
+
#
|
340
|
+
# @option params [required, String] :domain_name
|
341
|
+
# The name of the domain that was specified when another AWS account
|
342
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
343
|
+
#
|
344
|
+
#
|
345
|
+
#
|
346
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
347
|
+
#
|
348
|
+
# @option params [required, String] :password
|
349
|
+
# The password that was returned by the
|
350
|
+
# [TransferDomainToAnotherAwsAccount][1] request.
|
351
|
+
#
|
352
|
+
#
|
353
|
+
#
|
354
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
355
|
+
#
|
356
|
+
# @return [Types::AcceptDomainTransferFromAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
357
|
+
#
|
358
|
+
# * {Types::AcceptDomainTransferFromAnotherAwsAccountResponse#operation_id #operation_id} => String
|
359
|
+
#
|
360
|
+
# @example Request syntax with placeholder values
|
361
|
+
#
|
362
|
+
# resp = client.accept_domain_transfer_from_another_aws_account({
|
363
|
+
# domain_name: "DomainName", # required
|
364
|
+
# password: "String", # required
|
365
|
+
# })
|
366
|
+
#
|
367
|
+
# @example Response structure
|
368
|
+
#
|
369
|
+
# resp.operation_id #=> String
|
370
|
+
#
|
371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccount AWS API Documentation
|
372
|
+
#
|
373
|
+
# @overload accept_domain_transfer_from_another_aws_account(params = {})
|
374
|
+
# @param [Hash] params ({})
|
375
|
+
def accept_domain_transfer_from_another_aws_account(params = {}, options = {})
|
376
|
+
req = build_request(:accept_domain_transfer_from_another_aws_account, params)
|
377
|
+
req.send_request(options)
|
378
|
+
end
|
379
|
+
|
380
|
+
# Cancels the transfer of a domain from the current AWS account to
|
381
|
+
# another AWS account. You initiate a transfer between AWS accounts
|
382
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
383
|
+
#
|
384
|
+
# You must cancel the transfer before the other AWS account accepts the
|
385
|
+
# transfer using [AcceptDomainTransferFromAnotherAwsAccount][2].
|
386
|
+
#
|
387
|
+
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
388
|
+
# whether the operation succeeded. [GetOperationDetail][4] provides
|
389
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
390
|
+
# 111122223333 has been cancelled`.
|
391
|
+
#
|
392
|
+
#
|
393
|
+
#
|
394
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
395
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
396
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
397
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
398
|
+
#
|
399
|
+
# @option params [required, String] :domain_name
|
400
|
+
# The name of the domain for which you want to cancel the transfer to
|
401
|
+
# another AWS account.
|
402
|
+
#
|
403
|
+
# @return [Types::CancelDomainTransferToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
404
|
+
#
|
405
|
+
# * {Types::CancelDomainTransferToAnotherAwsAccountResponse#operation_id #operation_id} => String
|
406
|
+
#
|
407
|
+
# @example Request syntax with placeholder values
|
408
|
+
#
|
409
|
+
# resp = client.cancel_domain_transfer_to_another_aws_account({
|
410
|
+
# domain_name: "DomainName", # required
|
411
|
+
# })
|
412
|
+
#
|
413
|
+
# @example Response structure
|
414
|
+
#
|
415
|
+
# resp.operation_id #=> String
|
416
|
+
#
|
417
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccount AWS API Documentation
|
418
|
+
#
|
419
|
+
# @overload cancel_domain_transfer_to_another_aws_account(params = {})
|
420
|
+
# @param [Hash] params ({})
|
421
|
+
def cancel_domain_transfer_to_another_aws_account(params = {}, options = {})
|
422
|
+
req = build_request(:cancel_domain_transfer_to_another_aws_account, params)
|
423
|
+
req.send_request(options)
|
424
|
+
end
|
425
|
+
|
318
426
|
# This operation checks the availability of one domain name. Note that
|
319
427
|
# if the availability status of a domain is pending, you must submit
|
320
428
|
# another request to determine the availability of the domain name.
|
321
429
|
#
|
322
430
|
# @option params [required, String] :domain_name
|
323
|
-
# The name of the domain that you want to get availability for.
|
431
|
+
# The name of the domain that you want to get availability for. The
|
432
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
433
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
434
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
435
|
+
# Guide*.
|
436
|
+
#
|
437
|
+
# The domain name can contain only the following characters:
|
438
|
+
#
|
439
|
+
# * Letters a through z. Domain names are not case sensitive.
|
440
|
+
#
|
441
|
+
# * Numbers 0 through 9.
|
442
|
+
#
|
443
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
444
|
+
# label.
|
445
|
+
#
|
446
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
447
|
+
# `example.com`.
|
448
|
+
#
|
449
|
+
# Internationalized domain names are not supported for some top-level
|
450
|
+
# domains. To determine whether the TLD that you want to use supports
|
451
|
+
# internationalized domain names, see [Domains that You Can Register
|
452
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
453
|
+
# Internationalized Domain Names][2].
|
324
454
|
#
|
325
|
-
#
|
326
|
-
#
|
327
|
-
#
|
455
|
+
#
|
456
|
+
#
|
457
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
458
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
328
459
|
#
|
329
460
|
# @option params [String] :idn_lang_code
|
330
461
|
# Reserved for future use.
|
@@ -356,11 +487,27 @@ module Aws::Route53Domains
|
|
356
487
|
# Checks whether a domain name can be transferred to Amazon Route 53.
|
357
488
|
#
|
358
489
|
# @option params [required, String] :domain_name
|
359
|
-
# The name of the domain that you want to transfer to
|
490
|
+
# The name of the domain that you want to transfer to Route 53. The
|
491
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
492
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
493
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
494
|
+
# Guide*.
|
495
|
+
#
|
496
|
+
# The domain name can contain only the following characters:
|
497
|
+
#
|
498
|
+
# * Letters a through z. Domain names are not case sensitive.
|
499
|
+
#
|
500
|
+
# * Numbers 0 through 9.
|
501
|
+
#
|
502
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
503
|
+
# label.
|
360
504
|
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
505
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
506
|
+
# `example.com`.
|
507
|
+
#
|
508
|
+
#
|
509
|
+
#
|
510
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
364
511
|
#
|
365
512
|
# @option params [String] :auth_code
|
366
513
|
# If the registrar for the top-level domain (TLD) requires an
|
@@ -482,15 +629,14 @@ module Aws::Route53Domains
|
|
482
629
|
# renewing your domain registration is billed to your AWS account.
|
483
630
|
#
|
484
631
|
# The period during which you can renew a domain name varies by TLD. For
|
485
|
-
# a list of TLDs and their renewal policies, see [
|
486
|
-
#
|
487
|
-
#
|
488
|
-
#
|
489
|
-
# can complete processing before the deadline.
|
632
|
+
# a list of TLDs and their renewal policies, see [Domains That You Can
|
633
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
634
|
+
# Guide*. Route 53 requires that you renew before the end of the renewal
|
635
|
+
# period so we can complete processing before the deadline.
|
490
636
|
#
|
491
637
|
#
|
492
638
|
#
|
493
|
-
# [1]:
|
639
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
494
640
|
#
|
495
641
|
# @option params [required, String] :domain_name
|
496
642
|
# The name of the domain that you want to enable automatic renewal for.
|
@@ -642,7 +788,7 @@ module Aws::Route53Domains
|
|
642
788
|
# resp.admin_contact.email #=> String
|
643
789
|
# resp.admin_contact.fax #=> String
|
644
790
|
# resp.admin_contact.extra_params #=> Array
|
645
|
-
# 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"
|
791
|
+
# 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"
|
646
792
|
# resp.admin_contact.extra_params[0].value #=> String
|
647
793
|
# resp.registrant_contact.first_name #=> String
|
648
794
|
# resp.registrant_contact.last_name #=> String
|
@@ -658,7 +804,7 @@ module Aws::Route53Domains
|
|
658
804
|
# resp.registrant_contact.email #=> String
|
659
805
|
# resp.registrant_contact.fax #=> String
|
660
806
|
# resp.registrant_contact.extra_params #=> Array
|
661
|
-
# 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"
|
807
|
+
# 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"
|
662
808
|
# resp.registrant_contact.extra_params[0].value #=> String
|
663
809
|
# resp.tech_contact.first_name #=> String
|
664
810
|
# resp.tech_contact.last_name #=> String
|
@@ -674,7 +820,7 @@ module Aws::Route53Domains
|
|
674
820
|
# resp.tech_contact.email #=> String
|
675
821
|
# resp.tech_contact.fax #=> String
|
676
822
|
# resp.tech_contact.extra_params #=> Array
|
677
|
-
# 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"
|
823
|
+
# 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"
|
678
824
|
# resp.tech_contact.extra_params[0].value #=> String
|
679
825
|
# resp.admin_privacy #=> Boolean
|
680
826
|
# resp.registrant_privacy #=> Boolean
|
@@ -703,30 +849,46 @@ module Aws::Route53Domains
|
|
703
849
|
end
|
704
850
|
|
705
851
|
# The GetDomainSuggestions operation returns a list of suggested domain
|
706
|
-
# names
|
707
|
-
# word or phrase (without spaces).
|
852
|
+
# names.
|
708
853
|
#
|
709
854
|
# @option params [required, String] :domain_name
|
710
855
|
# A domain name that you want to use as the basis for a list of possible
|
711
|
-
# domain names. The
|
712
|
-
#
|
713
|
-
#
|
714
|
-
#
|
856
|
+
# domain names. The top-level domain (TLD), such as .com, must be a TLD
|
857
|
+
# that Route 53 supports. For a list of supported TLDs, see [Domains
|
858
|
+
# that You Can Register with Amazon Route 53][1] in the *Amazon Route 53
|
859
|
+
# Developer Guide*.
|
860
|
+
#
|
861
|
+
# The domain name can contain only the following characters:
|
862
|
+
#
|
863
|
+
# * Letters a through z. Domain names are not case sensitive.
|
715
864
|
#
|
865
|
+
# * Numbers 0 through 9.
|
716
866
|
#
|
867
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
868
|
+
# label.
|
717
869
|
#
|
718
|
-
#
|
870
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
871
|
+
# `example.com`.
|
872
|
+
#
|
873
|
+
# Internationalized domain names are not supported for some top-level
|
874
|
+
# domains. To determine whether the TLD that you want to use supports
|
875
|
+
# internationalized domain names, see [Domains that You Can Register
|
876
|
+
# with Amazon Route 53][1].
|
877
|
+
#
|
878
|
+
#
|
879
|
+
#
|
880
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
719
881
|
#
|
720
882
|
# @option params [required, Integer] :suggestion_count
|
721
|
-
# The number of suggested domain names that you want
|
722
|
-
#
|
883
|
+
# The number of suggested domain names that you want Route 53 to return.
|
884
|
+
# Specify a value between 1 and 50.
|
723
885
|
#
|
724
886
|
# @option params [required, Boolean] :only_available
|
725
|
-
# If `OnlyAvailable` is `true`,
|
726
|
-
#
|
727
|
-
#
|
728
|
-
#
|
729
|
-
#
|
887
|
+
# If `OnlyAvailable` is `true`, Route 53 returns only domain names that
|
888
|
+
# are available. If `OnlyAvailable` is `false`, Route 53 returns domain
|
889
|
+
# names without checking whether they're available to be registered. To
|
890
|
+
# determine whether the domain is available, you can call
|
891
|
+
# `checkDomainAvailability` for each suggestion.
|
730
892
|
#
|
731
893
|
# @return [Types::GetDomainSuggestionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
732
894
|
#
|
@@ -760,8 +922,8 @@ module Aws::Route53Domains
|
|
760
922
|
#
|
761
923
|
# @option params [required, String] :operation_id
|
762
924
|
# The identifier for the operation for which you want to get the status.
|
763
|
-
#
|
764
|
-
#
|
925
|
+
# Route 53 returned the identifier in the response to the original
|
926
|
+
# request.
|
765
927
|
#
|
766
928
|
# @return [Types::GetOperationDetailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
767
929
|
#
|
@@ -784,7 +946,7 @@ module Aws::Route53Domains
|
|
784
946
|
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
785
947
|
# resp.message #=> String
|
786
948
|
# resp.domain_name #=> String
|
787
|
-
# 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"
|
949
|
+
# 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"
|
788
950
|
# resp.submitted_date #=> Time
|
789
951
|
#
|
790
952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetail AWS API Documentation
|
@@ -821,6 +983,8 @@ module Aws::Route53Domains
|
|
821
983
|
# * {Types::ListDomainsResponse#domains #domains} => Array<Types::DomainSummary>
|
822
984
|
# * {Types::ListDomainsResponse#next_page_marker #next_page_marker} => String
|
823
985
|
#
|
986
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
987
|
+
#
|
824
988
|
# @example Request syntax with placeholder values
|
825
989
|
#
|
826
990
|
# resp = client.list_domains({
|
@@ -846,13 +1010,15 @@ module Aws::Route53Domains
|
|
846
1010
|
req.send_request(options)
|
847
1011
|
end
|
848
1012
|
|
849
|
-
#
|
850
|
-
#
|
1013
|
+
# Returns information about all of the operations that return an
|
1014
|
+
# operation ID and that have ever been performed on domains that were
|
1015
|
+
# registered by the current account.
|
851
1016
|
#
|
852
1017
|
# @option params [Time,DateTime,Date,Integer,String] :submitted_since
|
853
1018
|
# An optional parameter that lets you get information about all the
|
854
1019
|
# operations that you submitted after a specified date and time. Specify
|
855
|
-
# the date and time in Coordinated Universal time
|
1020
|
+
# the date and time in Unix time format and Coordinated Universal time
|
1021
|
+
# (UTC).
|
856
1022
|
#
|
857
1023
|
# @option params [String] :marker
|
858
1024
|
# For an initial request for a list of operations, omit this element. If
|
@@ -872,6 +1038,8 @@ module Aws::Route53Domains
|
|
872
1038
|
# * {Types::ListOperationsResponse#operations #operations} => Array<Types::OperationSummary>
|
873
1039
|
# * {Types::ListOperationsResponse#next_page_marker #next_page_marker} => String
|
874
1040
|
#
|
1041
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1042
|
+
#
|
875
1043
|
# @example Request syntax with placeholder values
|
876
1044
|
#
|
877
1045
|
# resp = client.list_operations({
|
@@ -885,7 +1053,7 @@ module Aws::Route53Domains
|
|
885
1053
|
# resp.operations #=> Array
|
886
1054
|
# resp.operations[0].operation_id #=> String
|
887
1055
|
# resp.operations[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
888
|
-
# 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"
|
1056
|
+
# 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"
|
889
1057
|
# resp.operations[0].submitted_date #=> Time
|
890
1058
|
# resp.next_page_marker #=> String
|
891
1059
|
#
|
@@ -939,10 +1107,10 @@ module Aws::Route53Domains
|
|
939
1107
|
#
|
940
1108
|
# When you register a domain, Amazon Route 53 does the following:
|
941
1109
|
#
|
942
|
-
# * Creates a
|
943
|
-
#
|
944
|
-
#
|
945
|
-
#
|
1110
|
+
# * Creates a Route 53 hosted zone that has the same name as the domain.
|
1111
|
+
# Route 53 assigns four name servers to your hosted zone and
|
1112
|
+
# automatically updates your domain registration with the names of
|
1113
|
+
# these name servers.
|
946
1114
|
#
|
947
1115
|
# * Enables autorenew, so your domain registration will renew
|
948
1116
|
# automatically each year. We'll notify you in advance of the renewal
|
@@ -968,11 +1136,33 @@ module Aws::Route53Domains
|
|
968
1136
|
# [1]: http://aws.amazon.com/route53/pricing/
|
969
1137
|
#
|
970
1138
|
# @option params [required, String] :domain_name
|
971
|
-
# The domain name that you want to register.
|
1139
|
+
# The domain name that you want to register. The top-level domain (TLD),
|
1140
|
+
# such as .com, must be a TLD that Route 53 supports. For a list of
|
1141
|
+
# supported TLDs, see [Domains that You Can Register with Amazon Route
|
1142
|
+
# 53][1] in the *Amazon Route 53 Developer Guide*.
|
1143
|
+
#
|
1144
|
+
# The domain name can contain only the following characters:
|
1145
|
+
#
|
1146
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1147
|
+
#
|
1148
|
+
# * Numbers 0 through 9.
|
972
1149
|
#
|
973
|
-
#
|
974
|
-
#
|
975
|
-
#
|
1150
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
1151
|
+
# label.
|
1152
|
+
#
|
1153
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1154
|
+
# `example.com`.
|
1155
|
+
#
|
1156
|
+
# Internationalized domain names are not supported for some top-level
|
1157
|
+
# domains. To determine whether the TLD that you want to use supports
|
1158
|
+
# internationalized domain names, see [Domains that You Can Register
|
1159
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
1160
|
+
# Internationalized Domain Names][2].
|
1161
|
+
#
|
1162
|
+
#
|
1163
|
+
#
|
1164
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1165
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
976
1166
|
#
|
977
1167
|
# @option params [String] :idn_lang_code
|
978
1168
|
# Reserved for future use.
|
@@ -988,7 +1178,7 @@ module Aws::Route53Domains
|
|
988
1178
|
#
|
989
1179
|
#
|
990
1180
|
#
|
991
|
-
# [1]:
|
1181
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
992
1182
|
#
|
993
1183
|
# @option params [Boolean] :auto_renew
|
994
1184
|
# Indicates whether the domain will be automatically renewed (`true`) or
|
@@ -998,13 +1188,28 @@ module Aws::Route53Domains
|
|
998
1188
|
# Default: `true`
|
999
1189
|
#
|
1000
1190
|
# @option params [required, Types::ContactDetail] :admin_contact
|
1001
|
-
# Provides detailed contact information.
|
1191
|
+
# Provides detailed contact information. For information about the
|
1192
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1193
|
+
#
|
1194
|
+
#
|
1195
|
+
#
|
1196
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1002
1197
|
#
|
1003
1198
|
# @option params [required, Types::ContactDetail] :registrant_contact
|
1004
|
-
# Provides detailed contact information.
|
1199
|
+
# Provides detailed contact information. For information about the
|
1200
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1201
|
+
#
|
1202
|
+
#
|
1203
|
+
#
|
1204
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1005
1205
|
#
|
1006
1206
|
# @option params [required, Types::ContactDetail] :tech_contact
|
1007
|
-
# Provides detailed contact information.
|
1207
|
+
# Provides detailed contact information. For information about the
|
1208
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1209
|
+
#
|
1210
|
+
#
|
1211
|
+
#
|
1212
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1008
1213
|
#
|
1009
1214
|
# @option params [Boolean] :privacy_protect_admin_contact
|
1010
1215
|
# Whether you want to conceal contact information from WHOIS queries. If
|
@@ -1063,7 +1268,7 @@ module Aws::Route53Domains
|
|
1063
1268
|
# fax: "ContactNumber",
|
1064
1269
|
# extra_params: [
|
1065
1270
|
# {
|
1066
|
-
# 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
|
1271
|
+
# 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
|
1067
1272
|
# value: "ExtraParamValue", # required
|
1068
1273
|
# },
|
1069
1274
|
# ],
|
@@ -1084,7 +1289,7 @@ module Aws::Route53Domains
|
|
1084
1289
|
# fax: "ContactNumber",
|
1085
1290
|
# extra_params: [
|
1086
1291
|
# {
|
1087
|
-
# 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
|
1292
|
+
# 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
|
1088
1293
|
# value: "ExtraParamValue", # required
|
1089
1294
|
# },
|
1090
1295
|
# ],
|
@@ -1105,7 +1310,7 @@ module Aws::Route53Domains
|
|
1105
1310
|
# fax: "ContactNumber",
|
1106
1311
|
# extra_params: [
|
1107
1312
|
# {
|
1108
|
-
# 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
|
1313
|
+
# 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
|
1109
1314
|
# value: "ExtraParamValue", # required
|
1110
1315
|
# },
|
1111
1316
|
# ],
|
@@ -1128,6 +1333,52 @@ module Aws::Route53Domains
|
|
1128
1333
|
req.send_request(options)
|
1129
1334
|
end
|
1130
1335
|
|
1336
|
+
# Rejects the transfer of a domain from another AWS account to the
|
1337
|
+
# current AWS account. You initiate a transfer between AWS accounts
|
1338
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
1339
|
+
#
|
1340
|
+
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
1341
|
+
# whether the operation succeeded. [GetOperationDetail][3] provides
|
1342
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
1343
|
+
# 111122223333 has been cancelled`.
|
1344
|
+
#
|
1345
|
+
#
|
1346
|
+
#
|
1347
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1348
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
1349
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1350
|
+
#
|
1351
|
+
# @option params [required, String] :domain_name
|
1352
|
+
# The name of the domain that was specified when another AWS account
|
1353
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
1354
|
+
#
|
1355
|
+
#
|
1356
|
+
#
|
1357
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1358
|
+
#
|
1359
|
+
# @return [Types::RejectDomainTransferFromAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1360
|
+
#
|
1361
|
+
# * {Types::RejectDomainTransferFromAnotherAwsAccountResponse#operation_id #operation_id} => String
|
1362
|
+
#
|
1363
|
+
# @example Request syntax with placeholder values
|
1364
|
+
#
|
1365
|
+
# resp = client.reject_domain_transfer_from_another_aws_account({
|
1366
|
+
# domain_name: "DomainName", # required
|
1367
|
+
# })
|
1368
|
+
#
|
1369
|
+
# @example Response structure
|
1370
|
+
#
|
1371
|
+
# resp.operation_id #=> String
|
1372
|
+
#
|
1373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccount AWS API Documentation
|
1374
|
+
#
|
1375
|
+
# @overload reject_domain_transfer_from_another_aws_account(params = {})
|
1376
|
+
# @param [Hash] params ({})
|
1377
|
+
def reject_domain_transfer_from_another_aws_account(params = {}, options = {})
|
1378
|
+
req = build_request(:reject_domain_transfer_from_another_aws_account, params)
|
1379
|
+
req.send_request(options)
|
1380
|
+
end
|
1381
|
+
|
1131
1382
|
# This operation renews a domain for the specified number of years. The
|
1132
1383
|
# cost of renewing your domain is billed to your AWS account.
|
1133
1384
|
#
|
@@ -1135,11 +1386,12 @@ module Aws::Route53Domains
|
|
1135
1386
|
# expiration date. Some TLD registries delete domains before the
|
1136
1387
|
# expiration date if you haven't renewed far enough in advance. For
|
1137
1388
|
# more information about renewing domain registration, see [Renewing
|
1138
|
-
# Registration for a Domain][1] in the Amazon Route 53 Developer
|
1389
|
+
# Registration for a Domain][1] in the *Amazon Route 53 Developer
|
1390
|
+
# Guide*.
|
1139
1391
|
#
|
1140
1392
|
#
|
1141
1393
|
#
|
1142
|
-
# [1]:
|
1394
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-renew.html
|
1143
1395
|
#
|
1144
1396
|
# @option params [required, String] :domain_name
|
1145
1397
|
# The name of the domain that you want to renew.
|
@@ -1154,7 +1406,7 @@ module Aws::Route53Domains
|
|
1154
1406
|
#
|
1155
1407
|
#
|
1156
1408
|
#
|
1157
|
-
# [1]:
|
1409
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1158
1410
|
#
|
1159
1411
|
# @option params [required, Integer] :current_expiry_year
|
1160
1412
|
# The year when the registration for the domain is set to expire. This
|
@@ -1191,7 +1443,7 @@ module Aws::Route53Domains
|
|
1191
1443
|
# address for the registrant contact.
|
1192
1444
|
#
|
1193
1445
|
# @option params [String] :domain_name
|
1194
|
-
# The name of the domain for which you want
|
1446
|
+
# The name of the domain for which you want Route 53 to resend a
|
1195
1447
|
# confirmation email to the registrant contact.
|
1196
1448
|
#
|
1197
1449
|
# @return [Types::ResendContactReachabilityEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1251,23 +1503,33 @@ module Aws::Route53Domains
|
|
1251
1503
|
req.send_request(options)
|
1252
1504
|
end
|
1253
1505
|
|
1254
|
-
#
|
1255
|
-
#
|
1256
|
-
#
|
1257
|
-
#
|
1506
|
+
# Transfers a domain from another registrar to Amazon Route 53. When the
|
1507
|
+
# transfer is complete, the domain is registered either with Amazon
|
1508
|
+
# Registrar (for .com, .net, and .org domains) or with our registrar
|
1509
|
+
# associate, Gandi (for all other TLDs).
|
1258
1510
|
#
|
1259
|
-
# For
|
1260
|
-
#
|
1261
|
-
#
|
1262
|
-
#
|
1511
|
+
# For more information about transferring domains, see the following
|
1512
|
+
# topics:
|
1513
|
+
#
|
1514
|
+
# * For transfer requirements, a detailed procedure, and information
|
1515
|
+
# about viewing the status of a domain that you're transferring to
|
1516
|
+
# Route 53, see [Transferring Registration for a Domain to Amazon
|
1517
|
+
# Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1518
|
+
#
|
1519
|
+
# * For information about how to transfer a domain from one AWS account
|
1520
|
+
# to another, see [TransferDomainToAnotherAwsAccount][2].
|
1521
|
+
#
|
1522
|
+
# * For information about how to transfer a domain to another domain
|
1523
|
+
# registrar, see [Transferring a Domain from Amazon Route 53 to
|
1524
|
+
# Another Registrar][3] in the *Amazon Route 53 Developer Guide*.
|
1263
1525
|
#
|
1264
1526
|
# If the registrar for your domain is also the DNS service provider for
|
1265
|
-
# the domain, we highly recommend that you
|
1266
|
-
#
|
1267
|
-
#
|
1268
|
-
#
|
1269
|
-
# the
|
1270
|
-
#
|
1527
|
+
# the domain, we highly recommend that you transfer your DNS service to
|
1528
|
+
# Route 53 or to another DNS service provider before you transfer your
|
1529
|
+
# registration. Some registrars provide free DNS service when you
|
1530
|
+
# purchase a domain registration. When you transfer the registration,
|
1531
|
+
# the previous registrar will not renew your domain registration and
|
1532
|
+
# could end your DNS service at any time.
|
1271
1533
|
#
|
1272
1534
|
# If the registrar for your domain is also the DNS service provider for
|
1273
1535
|
# the domain and you don't transfer DNS service to another provider,
|
@@ -1281,14 +1543,32 @@ module Aws::Route53Domains
|
|
1281
1543
|
#
|
1282
1544
|
#
|
1283
1545
|
#
|
1284
|
-
# [1]:
|
1546
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html
|
1547
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1548
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-from-route-53.html
|
1285
1549
|
#
|
1286
1550
|
# @option params [required, String] :domain_name
|
1287
|
-
# The name of the domain that you want to transfer to
|
1551
|
+
# The name of the domain that you want to transfer to Route 53. The
|
1552
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
1553
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
1554
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
1555
|
+
# Guide*.
|
1556
|
+
#
|
1557
|
+
# The domain name can contain only the following characters:
|
1558
|
+
#
|
1559
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1560
|
+
#
|
1561
|
+
# * Numbers 0 through 9.
|
1288
1562
|
#
|
1289
|
-
#
|
1290
|
-
#
|
1291
|
-
#
|
1563
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
1564
|
+
# label.
|
1565
|
+
#
|
1566
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1567
|
+
# `example.com`.
|
1568
|
+
#
|
1569
|
+
#
|
1570
|
+
#
|
1571
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1292
1572
|
#
|
1293
1573
|
# @option params [String] :idn_lang_code
|
1294
1574
|
# Reserved for future use.
|
@@ -1387,7 +1667,7 @@ module Aws::Route53Domains
|
|
1387
1667
|
# fax: "ContactNumber",
|
1388
1668
|
# extra_params: [
|
1389
1669
|
# {
|
1390
|
-
# 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
|
1670
|
+
# 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
|
1391
1671
|
# value: "ExtraParamValue", # required
|
1392
1672
|
# },
|
1393
1673
|
# ],
|
@@ -1408,7 +1688,7 @@ module Aws::Route53Domains
|
|
1408
1688
|
# fax: "ContactNumber",
|
1409
1689
|
# extra_params: [
|
1410
1690
|
# {
|
1411
|
-
# 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
|
1691
|
+
# 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
|
1412
1692
|
# value: "ExtraParamValue", # required
|
1413
1693
|
# },
|
1414
1694
|
# ],
|
@@ -1429,7 +1709,7 @@ module Aws::Route53Domains
|
|
1429
1709
|
# fax: "ContactNumber",
|
1430
1710
|
# extra_params: [
|
1431
1711
|
# {
|
1432
|
-
# 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
|
1712
|
+
# 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
|
1433
1713
|
# value: "ExtraParamValue", # required
|
1434
1714
|
# },
|
1435
1715
|
# ],
|
@@ -1452,6 +1732,76 @@ module Aws::Route53Domains
|
|
1452
1732
|
req.send_request(options)
|
1453
1733
|
end
|
1454
1734
|
|
1735
|
+
# Transfers a domain from the current AWS account to another AWS
|
1736
|
+
# account. Note the following:
|
1737
|
+
#
|
1738
|
+
# * The AWS account that you're transferring the domain to must accept
|
1739
|
+
# the transfer. If the other account doesn't accept the transfer
|
1740
|
+
# within 3 days, we cancel the transfer. See
|
1741
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][1].
|
1742
|
+
#
|
1743
|
+
# * You can cancel the transfer before the other account accepts it. See
|
1744
|
+
# [CancelDomainTransferToAnotherAwsAccount][2].
|
1745
|
+
#
|
1746
|
+
# * The other account can reject the transfer. See
|
1747
|
+
# [RejectDomainTransferFromAnotherAwsAccount][3].
|
1748
|
+
#
|
1749
|
+
# When you transfer a domain from one AWS account to another, Route 53
|
1750
|
+
# doesn't transfer the hosted zone that is associated with the domain.
|
1751
|
+
# DNS resolution isn't affected if the domain and the hosted zone are
|
1752
|
+
# owned by separate accounts, so transferring the hosted zone is
|
1753
|
+
# optional. For information about transferring the hosted zone to
|
1754
|
+
# another AWS account, see [Migrating a Hosted Zone to a Different AWS
|
1755
|
+
# Account][4] in the *Amazon Route 53 Developer Guide*.
|
1756
|
+
#
|
1757
|
+
# Use either [ListOperations][5] or [GetOperationDetail][6] to determine
|
1758
|
+
# whether the operation succeeded. [GetOperationDetail][6] provides
|
1759
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
1760
|
+
# 111122223333 has been cancelled`.
|
1761
|
+
#
|
1762
|
+
#
|
1763
|
+
#
|
1764
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
1765
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_CancelDomainTransferToAnotherAwsAccount.html
|
1766
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_RejectDomainTransferFromAnotherAwsAccount.html
|
1767
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-migrating.html
|
1768
|
+
# [5]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
1769
|
+
# [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1770
|
+
#
|
1771
|
+
# @option params [required, String] :domain_name
|
1772
|
+
# The name of the domain that you want to transfer from the current AWS
|
1773
|
+
# account to another account.
|
1774
|
+
#
|
1775
|
+
# @option params [required, String] :account_id
|
1776
|
+
# The account ID of the AWS account that you want to transfer the domain
|
1777
|
+
# to, for example, `111122223333`.
|
1778
|
+
#
|
1779
|
+
# @return [Types::TransferDomainToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1780
|
+
#
|
1781
|
+
# * {Types::TransferDomainToAnotherAwsAccountResponse#operation_id #operation_id} => String
|
1782
|
+
# * {Types::TransferDomainToAnotherAwsAccountResponse#password #password} => String
|
1783
|
+
#
|
1784
|
+
# @example Request syntax with placeholder values
|
1785
|
+
#
|
1786
|
+
# resp = client.transfer_domain_to_another_aws_account({
|
1787
|
+
# domain_name: "DomainName", # required
|
1788
|
+
# account_id: "AccountId", # required
|
1789
|
+
# })
|
1790
|
+
#
|
1791
|
+
# @example Response structure
|
1792
|
+
#
|
1793
|
+
# resp.operation_id #=> String
|
1794
|
+
# resp.password #=> String
|
1795
|
+
#
|
1796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccount AWS API Documentation
|
1797
|
+
#
|
1798
|
+
# @overload transfer_domain_to_another_aws_account(params = {})
|
1799
|
+
# @param [Hash] params ({})
|
1800
|
+
def transfer_domain_to_another_aws_account(params = {}, options = {})
|
1801
|
+
req = build_request(:transfer_domain_to_another_aws_account, params)
|
1802
|
+
req.send_request(options)
|
1803
|
+
end
|
1804
|
+
|
1455
1805
|
# This operation updates the contact information for a particular
|
1456
1806
|
# domain. You must specify information for at least one contact:
|
1457
1807
|
# registrant, administrator, or technical.
|
@@ -1498,7 +1848,7 @@ module Aws::Route53Domains
|
|
1498
1848
|
# fax: "ContactNumber",
|
1499
1849
|
# extra_params: [
|
1500
1850
|
# {
|
1501
|
-
# 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
|
1851
|
+
# 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
|
1502
1852
|
# value: "ExtraParamValue", # required
|
1503
1853
|
# },
|
1504
1854
|
# ],
|
@@ -1519,7 +1869,7 @@ module Aws::Route53Domains
|
|
1519
1869
|
# fax: "ContactNumber",
|
1520
1870
|
# extra_params: [
|
1521
1871
|
# {
|
1522
|
-
# 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
|
1872
|
+
# 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
|
1523
1873
|
# value: "ExtraParamValue", # required
|
1524
1874
|
# },
|
1525
1875
|
# ],
|
@@ -1540,7 +1890,7 @@ module Aws::Route53Domains
|
|
1540
1890
|
# fax: "ContactNumber",
|
1541
1891
|
# extra_params: [
|
1542
1892
|
# {
|
1543
|
-
# 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
|
1893
|
+
# 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
|
1544
1894
|
# value: "ExtraParamValue", # required
|
1545
1895
|
# },
|
1546
1896
|
# ],
|
@@ -1569,10 +1919,25 @@ module Aws::Route53Domains
|
|
1569
1919
|
# This operation affects only the contact information for the specified
|
1570
1920
|
# contact type (registrant, administrator, or tech). If the request
|
1571
1921
|
# succeeds, Amazon Route 53 returns an operation ID that you can use
|
1572
|
-
# with GetOperationDetail to track the progress and completion of
|
1573
|
-
# action. If the request doesn't complete successfully, the domain
|
1922
|
+
# with [GetOperationDetail][1] to track the progress and completion of
|
1923
|
+
# the action. If the request doesn't complete successfully, the domain
|
1574
1924
|
# registrant will be notified by email.
|
1575
1925
|
#
|
1926
|
+
# By disabling the privacy service via API, you consent to the
|
1927
|
+
# publication of the contact information provided for this domain via
|
1928
|
+
# the public WHOIS database. You certify that you are the registrant of
|
1929
|
+
# this domain name and have the authority to make this decision. You may
|
1930
|
+
# withdraw your consent at any time by enabling privacy protection using
|
1931
|
+
# either `UpdateDomainContactPrivacy` or the Route 53 console. Enabling
|
1932
|
+
# privacy protection removes the contact information provided for this
|
1933
|
+
# domain from the WHOIS database. For more information on our privacy
|
1934
|
+
# practices, see [https://aws.amazon.com/privacy/][2].
|
1935
|
+
#
|
1936
|
+
#
|
1937
|
+
#
|
1938
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1939
|
+
# [2]: https://aws.amazon.com/privacy/
|
1940
|
+
#
|
1576
1941
|
# @option params [required, String] :domain_name
|
1577
1942
|
# The name of the domain that you want to update the privacy setting
|
1578
1943
|
# for.
|
@@ -1717,13 +2082,13 @@ module Aws::Route53Domains
|
|
1717
2082
|
#
|
1718
2083
|
# @option params [Time,DateTime,Date,Integer,String] :start
|
1719
2084
|
# The beginning date and time for the time period for which you want a
|
1720
|
-
# list of billing records. Specify the date and time in
|
1721
|
-
# Universal time (UTC).
|
2085
|
+
# list of billing records. Specify the date and time in Unix time format
|
2086
|
+
# and Coordinated Universal time (UTC).
|
1722
2087
|
#
|
1723
2088
|
# @option params [Time,DateTime,Date,Integer,String] :end
|
1724
2089
|
# The end date and time for the time period for which you want a list of
|
1725
|
-
# billing records. Specify the date and time in
|
1726
|
-
# time (UTC).
|
2090
|
+
# billing records. Specify the date and time in Unix time format and
|
2091
|
+
# Coordinated Universal time (UTC).
|
1727
2092
|
#
|
1728
2093
|
# @option params [String] :marker
|
1729
2094
|
# For an initial request for a list of billing records, omit this
|
@@ -1761,7 +2126,7 @@ module Aws::Route53Domains
|
|
1761
2126
|
# resp.next_page_marker #=> String
|
1762
2127
|
# resp.billing_records #=> Array
|
1763
2128
|
# resp.billing_records[0].domain_name #=> String
|
1764
|
-
# 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"
|
2129
|
+
# 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"
|
1765
2130
|
# resp.billing_records[0].invoice_id #=> String
|
1766
2131
|
# resp.billing_records[0].bill_date #=> Time
|
1767
2132
|
# resp.billing_records[0].price #=> Float
|
@@ -1788,7 +2153,7 @@ module Aws::Route53Domains
|
|
1788
2153
|
params: params,
|
1789
2154
|
config: config)
|
1790
2155
|
context[:gem_name] = 'aws-sdk-route53domains'
|
1791
|
-
context[:gem_version] = '1.
|
2156
|
+
context[:gem_version] = '1.24.0'
|
1792
2157
|
Seahorse::Client::Request.new(handlers, context)
|
1793
2158
|
end
|
1794
2159
|
|