aws-sdk-route53domains 1.19.0 → 1.20.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 +2 -2
- data/lib/aws-sdk-route53domains/client.rb +468 -107
- data/lib/aws-sdk-route53domains/client_api.rb +79 -0
- data/lib/aws-sdk-route53domains/resource.rb +1 -7
- data/lib/aws-sdk-route53domains/types.rb +790 -117
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5492c56fca5bdf86e871bfe9202de85cb0eb508653ec92648fd2b05c4810f323
|
4
|
+
data.tar.gz: 066300ec148f1c0ebe42dc26b11aa7e73f98292c37cc2d16effbc535cd7f7ffe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c724c73ff1f9de8a47731ef7f71e51a4f6938983f4c90dac0b3715ec4524b251638919cb97861889341558fc621e4b98114cb6a202c910387e11a662ea3fa2f5
|
7
|
+
data.tar.gz: 061ca53d952f3d916a8469df26fb4893db54672d9e44e69b7b231b218b2cc4d7b784edafa59458e361c77008107e8a979a7f2c2402a3618a9b864a10c1f1051b
|
@@ -25,7 +25,7 @@ require_relative 'aws-sdk-route53domains/customizations'
|
|
25
25
|
# structure.
|
26
26
|
#
|
27
27
|
# route_53_domains = Aws::Route53Domains::Client.new
|
28
|
-
# resp = route_53_domains.
|
28
|
+
# resp = route_53_domains.accept_domain_transfer_from_another_aws_account(params)
|
29
29
|
#
|
30
30
|
# See {Client} for more information.
|
31
31
|
#
|
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-route53domains/customizations'
|
|
45
45
|
# @service
|
46
46
|
module Aws::Route53Domains
|
47
47
|
|
48
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.20.0'
|
49
49
|
|
50
50
|
end
|
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:route53domains)
|
|
32
32
|
module Aws::Route53Domains
|
33
33
|
# An API client for Route53Domains. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::Route53Domains::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::Route53Domains
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -275,8 +279,7 @@ module Aws::Route53Domains
|
|
275
279
|
#
|
276
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
281
|
# 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}.
|
282
|
+
# safely be set per-request on the session.
|
280
283
|
#
|
281
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +291,7 @@ module Aws::Route53Domains
|
|
288
291
|
# request body. This option has no effect unless the request has
|
289
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
293
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
294
|
+
# request on the session.
|
292
295
|
#
|
293
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -315,16 +318,140 @@ module Aws::Route53Domains
|
|
315
318
|
|
316
319
|
# @!group API Operations
|
317
320
|
|
321
|
+
# Accepts the transfer of a domain from another AWS account to the
|
322
|
+
# current AWS account. You initiate a transfer between AWS accounts
|
323
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
324
|
+
#
|
325
|
+
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
326
|
+
# whether the operation succeeded. [GetOperationDetail][3] provides
|
327
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
328
|
+
# 111122223333 has been cancelled`.
|
329
|
+
#
|
330
|
+
#
|
331
|
+
#
|
332
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
333
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
334
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
335
|
+
#
|
336
|
+
# @option params [required, String] :domain_name
|
337
|
+
# The name of the domain that was specified when another AWS account
|
338
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
339
|
+
#
|
340
|
+
#
|
341
|
+
#
|
342
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
343
|
+
#
|
344
|
+
# @option params [required, String] :password
|
345
|
+
# The password that was returned by the
|
346
|
+
# [TransferDomainToAnotherAwsAccount][1] request.
|
347
|
+
#
|
348
|
+
#
|
349
|
+
#
|
350
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
351
|
+
#
|
352
|
+
# @return [Types::AcceptDomainTransferFromAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
353
|
+
#
|
354
|
+
# * {Types::AcceptDomainTransferFromAnotherAwsAccountResponse#operation_id #operation_id} => String
|
355
|
+
#
|
356
|
+
# @example Request syntax with placeholder values
|
357
|
+
#
|
358
|
+
# resp = client.accept_domain_transfer_from_another_aws_account({
|
359
|
+
# domain_name: "DomainName", # required
|
360
|
+
# password: "String", # required
|
361
|
+
# })
|
362
|
+
#
|
363
|
+
# @example Response structure
|
364
|
+
#
|
365
|
+
# resp.operation_id #=> String
|
366
|
+
#
|
367
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/AcceptDomainTransferFromAnotherAwsAccount AWS API Documentation
|
368
|
+
#
|
369
|
+
# @overload accept_domain_transfer_from_another_aws_account(params = {})
|
370
|
+
# @param [Hash] params ({})
|
371
|
+
def accept_domain_transfer_from_another_aws_account(params = {}, options = {})
|
372
|
+
req = build_request(:accept_domain_transfer_from_another_aws_account, params)
|
373
|
+
req.send_request(options)
|
374
|
+
end
|
375
|
+
|
376
|
+
# Cancels the transfer of a domain from the current AWS account to
|
377
|
+
# another AWS account. You initiate a transfer between AWS accounts
|
378
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
379
|
+
#
|
380
|
+
# You must cancel the transfer before the other AWS account accepts the
|
381
|
+
# transfer using [AcceptDomainTransferFromAnotherAwsAccount][2].
|
382
|
+
#
|
383
|
+
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
384
|
+
# whether the operation succeeded. [GetOperationDetail][4] provides
|
385
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
386
|
+
# 111122223333 has been cancelled`.
|
387
|
+
#
|
388
|
+
#
|
389
|
+
#
|
390
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
391
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
392
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
393
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
394
|
+
#
|
395
|
+
# @option params [required, String] :domain_name
|
396
|
+
# The name of the domain for which you want to cancel the transfer to
|
397
|
+
# another AWS account.
|
398
|
+
#
|
399
|
+
# @return [Types::CancelDomainTransferToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
400
|
+
#
|
401
|
+
# * {Types::CancelDomainTransferToAnotherAwsAccountResponse#operation_id #operation_id} => String
|
402
|
+
#
|
403
|
+
# @example Request syntax with placeholder values
|
404
|
+
#
|
405
|
+
# resp = client.cancel_domain_transfer_to_another_aws_account({
|
406
|
+
# domain_name: "DomainName", # required
|
407
|
+
# })
|
408
|
+
#
|
409
|
+
# @example Response structure
|
410
|
+
#
|
411
|
+
# resp.operation_id #=> String
|
412
|
+
#
|
413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccount AWS API Documentation
|
414
|
+
#
|
415
|
+
# @overload cancel_domain_transfer_to_another_aws_account(params = {})
|
416
|
+
# @param [Hash] params ({})
|
417
|
+
def cancel_domain_transfer_to_another_aws_account(params = {}, options = {})
|
418
|
+
req = build_request(:cancel_domain_transfer_to_another_aws_account, params)
|
419
|
+
req.send_request(options)
|
420
|
+
end
|
421
|
+
|
318
422
|
# This operation checks the availability of one domain name. Note that
|
319
423
|
# if the availability status of a domain is pending, you must submit
|
320
424
|
# another request to determine the availability of the domain name.
|
321
425
|
#
|
322
426
|
# @option params [required, String] :domain_name
|
323
|
-
# The name of the domain that you want to get availability for.
|
427
|
+
# The name of the domain that you want to get availability for. The
|
428
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
429
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
430
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
431
|
+
# Guide*.
|
432
|
+
#
|
433
|
+
# The domain name can contain only the following characters:
|
434
|
+
#
|
435
|
+
# * Letters a through z. Domain names are not case sensitive.
|
436
|
+
#
|
437
|
+
# * Numbers 0 through 9.
|
438
|
+
#
|
439
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
440
|
+
# label.
|
441
|
+
#
|
442
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
443
|
+
# `example.com`.
|
444
|
+
#
|
445
|
+
# Internationalized domain names are not supported for some top-level
|
446
|
+
# domains. To determine whether the TLD that you want to use supports
|
447
|
+
# internationalized domain names, see [Domains that You Can Register
|
448
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
449
|
+
# Internationalized Domain Names][2].
|
324
450
|
#
|
325
|
-
#
|
326
|
-
#
|
327
|
-
#
|
451
|
+
#
|
452
|
+
#
|
453
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
454
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
328
455
|
#
|
329
456
|
# @option params [String] :idn_lang_code
|
330
457
|
# Reserved for future use.
|
@@ -356,11 +483,27 @@ module Aws::Route53Domains
|
|
356
483
|
# Checks whether a domain name can be transferred to Amazon Route 53.
|
357
484
|
#
|
358
485
|
# @option params [required, String] :domain_name
|
359
|
-
# The name of the domain that you want to transfer to
|
486
|
+
# The name of the domain that you want to transfer to Route 53. The
|
487
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
488
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
489
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
490
|
+
# Guide*.
|
491
|
+
#
|
492
|
+
# The domain name can contain only the following characters:
|
493
|
+
#
|
494
|
+
# * Letters a through z. Domain names are not case sensitive.
|
495
|
+
#
|
496
|
+
# * Numbers 0 through 9.
|
497
|
+
#
|
498
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
499
|
+
# label.
|
360
500
|
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
501
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
502
|
+
# `example.com`.
|
503
|
+
#
|
504
|
+
#
|
505
|
+
#
|
506
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
364
507
|
#
|
365
508
|
# @option params [String] :auth_code
|
366
509
|
# If the registrar for the top-level domain (TLD) requires an
|
@@ -482,15 +625,14 @@ module Aws::Route53Domains
|
|
482
625
|
# renewing your domain registration is billed to your AWS account.
|
483
626
|
#
|
484
627
|
# 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.
|
628
|
+
# a list of TLDs and their renewal policies, see [Domains That You Can
|
629
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
630
|
+
# Guide*. Route 53 requires that you renew before the end of the renewal
|
631
|
+
# period so we can complete processing before the deadline.
|
490
632
|
#
|
491
633
|
#
|
492
634
|
#
|
493
|
-
# [1]:
|
635
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
494
636
|
#
|
495
637
|
# @option params [required, String] :domain_name
|
496
638
|
# The name of the domain that you want to enable automatic renewal for.
|
@@ -642,7 +784,7 @@ module Aws::Route53Domains
|
|
642
784
|
# resp.admin_contact.email #=> String
|
643
785
|
# resp.admin_contact.fax #=> String
|
644
786
|
# 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"
|
787
|
+
# 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
788
|
# resp.admin_contact.extra_params[0].value #=> String
|
647
789
|
# resp.registrant_contact.first_name #=> String
|
648
790
|
# resp.registrant_contact.last_name #=> String
|
@@ -658,7 +800,7 @@ module Aws::Route53Domains
|
|
658
800
|
# resp.registrant_contact.email #=> String
|
659
801
|
# resp.registrant_contact.fax #=> String
|
660
802
|
# 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"
|
803
|
+
# 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
804
|
# resp.registrant_contact.extra_params[0].value #=> String
|
663
805
|
# resp.tech_contact.first_name #=> String
|
664
806
|
# resp.tech_contact.last_name #=> String
|
@@ -674,7 +816,7 @@ module Aws::Route53Domains
|
|
674
816
|
# resp.tech_contact.email #=> String
|
675
817
|
# resp.tech_contact.fax #=> String
|
676
818
|
# 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"
|
819
|
+
# 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
820
|
# resp.tech_contact.extra_params[0].value #=> String
|
679
821
|
# resp.admin_privacy #=> Boolean
|
680
822
|
# resp.registrant_privacy #=> Boolean
|
@@ -703,30 +845,46 @@ module Aws::Route53Domains
|
|
703
845
|
end
|
704
846
|
|
705
847
|
# The GetDomainSuggestions operation returns a list of suggested domain
|
706
|
-
# names
|
707
|
-
# word or phrase (without spaces).
|
848
|
+
# names.
|
708
849
|
#
|
709
850
|
# @option params [required, String] :domain_name
|
710
851
|
# A domain name that you want to use as the basis for a list of possible
|
711
|
-
# domain names. The
|
712
|
-
#
|
713
|
-
#
|
714
|
-
#
|
852
|
+
# domain names. The top-level domain (TLD), such as .com, must be a TLD
|
853
|
+
# that Route 53 supports. For a list of supported TLDs, see [Domains
|
854
|
+
# that You Can Register with Amazon Route 53][1] in the *Amazon Route 53
|
855
|
+
# Developer Guide*.
|
856
|
+
#
|
857
|
+
# The domain name can contain only the following characters:
|
858
|
+
#
|
859
|
+
# * Letters a through z. Domain names are not case sensitive.
|
715
860
|
#
|
861
|
+
# * Numbers 0 through 9.
|
716
862
|
#
|
863
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
864
|
+
# label.
|
717
865
|
#
|
718
|
-
#
|
866
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
867
|
+
# `example.com`.
|
868
|
+
#
|
869
|
+
# Internationalized domain names are not supported for some top-level
|
870
|
+
# domains. To determine whether the TLD that you want to use supports
|
871
|
+
# internationalized domain names, see [Domains that You Can Register
|
872
|
+
# with Amazon Route 53][1].
|
873
|
+
#
|
874
|
+
#
|
875
|
+
#
|
876
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
719
877
|
#
|
720
878
|
# @option params [required, Integer] :suggestion_count
|
721
|
-
# The number of suggested domain names that you want
|
722
|
-
#
|
879
|
+
# The number of suggested domain names that you want Route 53 to return.
|
880
|
+
# Specify a value between 1 and 50.
|
723
881
|
#
|
724
882
|
# @option params [required, Boolean] :only_available
|
725
|
-
# If `OnlyAvailable` is `true`,
|
726
|
-
#
|
727
|
-
#
|
728
|
-
#
|
729
|
-
#
|
883
|
+
# If `OnlyAvailable` is `true`, Route 53 returns only domain names that
|
884
|
+
# are available. If `OnlyAvailable` is `false`, Route 53 returns domain
|
885
|
+
# names without checking whether they're available to be registered. To
|
886
|
+
# determine whether the domain is available, you can call
|
887
|
+
# `checkDomainAvailability` for each suggestion.
|
730
888
|
#
|
731
889
|
# @return [Types::GetDomainSuggestionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
732
890
|
#
|
@@ -760,8 +918,8 @@ module Aws::Route53Domains
|
|
760
918
|
#
|
761
919
|
# @option params [required, String] :operation_id
|
762
920
|
# The identifier for the operation for which you want to get the status.
|
763
|
-
#
|
764
|
-
#
|
921
|
+
# Route 53 returned the identifier in the response to the original
|
922
|
+
# request.
|
765
923
|
#
|
766
924
|
# @return [Types::GetOperationDetailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
767
925
|
#
|
@@ -784,7 +942,7 @@ module Aws::Route53Domains
|
|
784
942
|
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
785
943
|
# resp.message #=> String
|
786
944
|
# 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"
|
945
|
+
# 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
946
|
# resp.submitted_date #=> Time
|
789
947
|
#
|
790
948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetOperationDetail AWS API Documentation
|
@@ -821,6 +979,8 @@ module Aws::Route53Domains
|
|
821
979
|
# * {Types::ListDomainsResponse#domains #domains} => Array<Types::DomainSummary>
|
822
980
|
# * {Types::ListDomainsResponse#next_page_marker #next_page_marker} => String
|
823
981
|
#
|
982
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
983
|
+
#
|
824
984
|
# @example Request syntax with placeholder values
|
825
985
|
#
|
826
986
|
# resp = client.list_domains({
|
@@ -846,13 +1006,15 @@ module Aws::Route53Domains
|
|
846
1006
|
req.send_request(options)
|
847
1007
|
end
|
848
1008
|
|
849
|
-
#
|
850
|
-
#
|
1009
|
+
# Returns information about all of the operations that return an
|
1010
|
+
# operation ID and that have ever been performed on domains that were
|
1011
|
+
# registered by the current account.
|
851
1012
|
#
|
852
1013
|
# @option params [Time,DateTime,Date,Integer,String] :submitted_since
|
853
1014
|
# An optional parameter that lets you get information about all the
|
854
1015
|
# operations that you submitted after a specified date and time. Specify
|
855
|
-
# the date and time in Coordinated Universal time
|
1016
|
+
# the date and time in Unix time format and Coordinated Universal time
|
1017
|
+
# (UTC).
|
856
1018
|
#
|
857
1019
|
# @option params [String] :marker
|
858
1020
|
# For an initial request for a list of operations, omit this element. If
|
@@ -872,6 +1034,8 @@ module Aws::Route53Domains
|
|
872
1034
|
# * {Types::ListOperationsResponse#operations #operations} => Array<Types::OperationSummary>
|
873
1035
|
# * {Types::ListOperationsResponse#next_page_marker #next_page_marker} => String
|
874
1036
|
#
|
1037
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1038
|
+
#
|
875
1039
|
# @example Request syntax with placeholder values
|
876
1040
|
#
|
877
1041
|
# resp = client.list_operations({
|
@@ -885,7 +1049,7 @@ module Aws::Route53Domains
|
|
885
1049
|
# resp.operations #=> Array
|
886
1050
|
# resp.operations[0].operation_id #=> String
|
887
1051
|
# 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"
|
1052
|
+
# 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
1053
|
# resp.operations[0].submitted_date #=> Time
|
890
1054
|
# resp.next_page_marker #=> String
|
891
1055
|
#
|
@@ -939,10 +1103,10 @@ module Aws::Route53Domains
|
|
939
1103
|
#
|
940
1104
|
# When you register a domain, Amazon Route 53 does the following:
|
941
1105
|
#
|
942
|
-
# * Creates a
|
943
|
-
#
|
944
|
-
#
|
945
|
-
#
|
1106
|
+
# * Creates a Route 53 hosted zone that has the same name as the domain.
|
1107
|
+
# Route 53 assigns four name servers to your hosted zone and
|
1108
|
+
# automatically updates your domain registration with the names of
|
1109
|
+
# these name servers.
|
946
1110
|
#
|
947
1111
|
# * Enables autorenew, so your domain registration will renew
|
948
1112
|
# automatically each year. We'll notify you in advance of the renewal
|
@@ -968,11 +1132,33 @@ module Aws::Route53Domains
|
|
968
1132
|
# [1]: http://aws.amazon.com/route53/pricing/
|
969
1133
|
#
|
970
1134
|
# @option params [required, String] :domain_name
|
971
|
-
# The domain name that you want to register.
|
1135
|
+
# The domain name that you want to register. The top-level domain (TLD),
|
1136
|
+
# such as .com, must be a TLD that Route 53 supports. For a list of
|
1137
|
+
# supported TLDs, see [Domains that You Can Register with Amazon Route
|
1138
|
+
# 53][1] in the *Amazon Route 53 Developer Guide*.
|
1139
|
+
#
|
1140
|
+
# The domain name can contain only the following characters:
|
1141
|
+
#
|
1142
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1143
|
+
#
|
1144
|
+
# * Numbers 0 through 9.
|
972
1145
|
#
|
973
|
-
#
|
974
|
-
#
|
975
|
-
#
|
1146
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
1147
|
+
# label.
|
1148
|
+
#
|
1149
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1150
|
+
# `example.com`.
|
1151
|
+
#
|
1152
|
+
# Internationalized domain names are not supported for some top-level
|
1153
|
+
# domains. To determine whether the TLD that you want to use supports
|
1154
|
+
# internationalized domain names, see [Domains that You Can Register
|
1155
|
+
# with Amazon Route 53][1]. For more information, see [Formatting
|
1156
|
+
# Internationalized Domain Names][2].
|
1157
|
+
#
|
1158
|
+
#
|
1159
|
+
#
|
1160
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1161
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html#domain-name-format-idns
|
976
1162
|
#
|
977
1163
|
# @option params [String] :idn_lang_code
|
978
1164
|
# Reserved for future use.
|
@@ -988,7 +1174,7 @@ module Aws::Route53Domains
|
|
988
1174
|
#
|
989
1175
|
#
|
990
1176
|
#
|
991
|
-
# [1]:
|
1177
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
992
1178
|
#
|
993
1179
|
# @option params [Boolean] :auto_renew
|
994
1180
|
# Indicates whether the domain will be automatically renewed (`true`) or
|
@@ -998,13 +1184,28 @@ module Aws::Route53Domains
|
|
998
1184
|
# Default: `true`
|
999
1185
|
#
|
1000
1186
|
# @option params [required, Types::ContactDetail] :admin_contact
|
1001
|
-
# Provides detailed contact information.
|
1187
|
+
# Provides detailed contact information. For information about the
|
1188
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1189
|
+
#
|
1190
|
+
#
|
1191
|
+
#
|
1192
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1002
1193
|
#
|
1003
1194
|
# @option params [required, Types::ContactDetail] :registrant_contact
|
1004
|
-
# Provides detailed contact information.
|
1195
|
+
# Provides detailed contact information. For information about the
|
1196
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1197
|
+
#
|
1198
|
+
#
|
1199
|
+
#
|
1200
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1005
1201
|
#
|
1006
1202
|
# @option params [required, Types::ContactDetail] :tech_contact
|
1007
|
-
# Provides detailed contact information.
|
1203
|
+
# Provides detailed contact information. For information about the
|
1204
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1205
|
+
#
|
1206
|
+
#
|
1207
|
+
#
|
1208
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1008
1209
|
#
|
1009
1210
|
# @option params [Boolean] :privacy_protect_admin_contact
|
1010
1211
|
# Whether you want to conceal contact information from WHOIS queries. If
|
@@ -1063,7 +1264,7 @@ module Aws::Route53Domains
|
|
1063
1264
|
# fax: "ContactNumber",
|
1064
1265
|
# extra_params: [
|
1065
1266
|
# {
|
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
|
1267
|
+
# 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
1268
|
# value: "ExtraParamValue", # required
|
1068
1269
|
# },
|
1069
1270
|
# ],
|
@@ -1084,7 +1285,7 @@ module Aws::Route53Domains
|
|
1084
1285
|
# fax: "ContactNumber",
|
1085
1286
|
# extra_params: [
|
1086
1287
|
# {
|
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
|
1288
|
+
# 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
1289
|
# value: "ExtraParamValue", # required
|
1089
1290
|
# },
|
1090
1291
|
# ],
|
@@ -1105,7 +1306,7 @@ module Aws::Route53Domains
|
|
1105
1306
|
# fax: "ContactNumber",
|
1106
1307
|
# extra_params: [
|
1107
1308
|
# {
|
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
|
1309
|
+
# 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
1310
|
# value: "ExtraParamValue", # required
|
1110
1311
|
# },
|
1111
1312
|
# ],
|
@@ -1128,6 +1329,52 @@ module Aws::Route53Domains
|
|
1128
1329
|
req.send_request(options)
|
1129
1330
|
end
|
1130
1331
|
|
1332
|
+
# Rejects the transfer of a domain from another AWS account to the
|
1333
|
+
# current AWS account. You initiate a transfer between AWS accounts
|
1334
|
+
# using [TransferDomainToAnotherAwsAccount][1].
|
1335
|
+
#
|
1336
|
+
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
1337
|
+
# whether the operation succeeded. [GetOperationDetail][3] provides
|
1338
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
1339
|
+
# 111122223333 has been cancelled`.
|
1340
|
+
#
|
1341
|
+
#
|
1342
|
+
#
|
1343
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1344
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
1345
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1346
|
+
#
|
1347
|
+
# @option params [required, String] :domain_name
|
1348
|
+
# The name of the domain that was specified when another AWS account
|
1349
|
+
# submitted a [TransferDomainToAnotherAwsAccount][1] request.
|
1350
|
+
#
|
1351
|
+
#
|
1352
|
+
#
|
1353
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1354
|
+
#
|
1355
|
+
# @return [Types::RejectDomainTransferFromAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1356
|
+
#
|
1357
|
+
# * {Types::RejectDomainTransferFromAnotherAwsAccountResponse#operation_id #operation_id} => String
|
1358
|
+
#
|
1359
|
+
# @example Request syntax with placeholder values
|
1360
|
+
#
|
1361
|
+
# resp = client.reject_domain_transfer_from_another_aws_account({
|
1362
|
+
# domain_name: "DomainName", # required
|
1363
|
+
# })
|
1364
|
+
#
|
1365
|
+
# @example Response structure
|
1366
|
+
#
|
1367
|
+
# resp.operation_id #=> String
|
1368
|
+
#
|
1369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/RejectDomainTransferFromAnotherAwsAccount AWS API Documentation
|
1370
|
+
#
|
1371
|
+
# @overload reject_domain_transfer_from_another_aws_account(params = {})
|
1372
|
+
# @param [Hash] params ({})
|
1373
|
+
def reject_domain_transfer_from_another_aws_account(params = {}, options = {})
|
1374
|
+
req = build_request(:reject_domain_transfer_from_another_aws_account, params)
|
1375
|
+
req.send_request(options)
|
1376
|
+
end
|
1377
|
+
|
1131
1378
|
# This operation renews a domain for the specified number of years. The
|
1132
1379
|
# cost of renewing your domain is billed to your AWS account.
|
1133
1380
|
#
|
@@ -1135,11 +1382,12 @@ module Aws::Route53Domains
|
|
1135
1382
|
# expiration date. Some TLD registries delete domains before the
|
1136
1383
|
# expiration date if you haven't renewed far enough in advance. For
|
1137
1384
|
# more information about renewing domain registration, see [Renewing
|
1138
|
-
# Registration for a Domain][1] in the Amazon Route 53 Developer
|
1385
|
+
# Registration for a Domain][1] in the *Amazon Route 53 Developer
|
1386
|
+
# Guide*.
|
1139
1387
|
#
|
1140
1388
|
#
|
1141
1389
|
#
|
1142
|
-
# [1]:
|
1390
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-renew.html
|
1143
1391
|
#
|
1144
1392
|
# @option params [required, String] :domain_name
|
1145
1393
|
# The name of the domain that you want to renew.
|
@@ -1154,7 +1402,7 @@ module Aws::Route53Domains
|
|
1154
1402
|
#
|
1155
1403
|
#
|
1156
1404
|
#
|
1157
|
-
# [1]:
|
1405
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1158
1406
|
#
|
1159
1407
|
# @option params [required, Integer] :current_expiry_year
|
1160
1408
|
# The year when the registration for the domain is set to expire. This
|
@@ -1191,7 +1439,7 @@ module Aws::Route53Domains
|
|
1191
1439
|
# address for the registrant contact.
|
1192
1440
|
#
|
1193
1441
|
# @option params [String] :domain_name
|
1194
|
-
# The name of the domain for which you want
|
1442
|
+
# The name of the domain for which you want Route 53 to resend a
|
1195
1443
|
# confirmation email to the registrant contact.
|
1196
1444
|
#
|
1197
1445
|
# @return [Types::ResendContactReachabilityEmailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1251,23 +1499,33 @@ module Aws::Route53Domains
|
|
1251
1499
|
req.send_request(options)
|
1252
1500
|
end
|
1253
1501
|
|
1254
|
-
#
|
1255
|
-
#
|
1256
|
-
#
|
1257
|
-
#
|
1502
|
+
# Transfers a domain from another registrar to Amazon Route 53. When the
|
1503
|
+
# transfer is complete, the domain is registered either with Amazon
|
1504
|
+
# Registrar (for .com, .net, and .org domains) or with our registrar
|
1505
|
+
# associate, Gandi (for all other TLDs).
|
1258
1506
|
#
|
1259
|
-
# For
|
1260
|
-
#
|
1261
|
-
#
|
1262
|
-
#
|
1507
|
+
# For more information about transferring domains, see the following
|
1508
|
+
# topics:
|
1509
|
+
#
|
1510
|
+
# * For transfer requirements, a detailed procedure, and information
|
1511
|
+
# about viewing the status of a domain that you're transferring to
|
1512
|
+
# Route 53, see [Transferring Registration for a Domain to Amazon
|
1513
|
+
# Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1514
|
+
#
|
1515
|
+
# * For information about how to transfer a domain from one AWS account
|
1516
|
+
# to another, see [TransferDomainToAnotherAwsAccount][2].
|
1517
|
+
#
|
1518
|
+
# * For information about how to transfer a domain to another domain
|
1519
|
+
# registrar, see [Transferring a Domain from Amazon Route 53 to
|
1520
|
+
# Another Registrar][3] in the *Amazon Route 53 Developer Guide*.
|
1263
1521
|
#
|
1264
1522
|
# 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
|
-
#
|
1523
|
+
# the domain, we highly recommend that you transfer your DNS service to
|
1524
|
+
# Route 53 or to another DNS service provider before you transfer your
|
1525
|
+
# registration. Some registrars provide free DNS service when you
|
1526
|
+
# purchase a domain registration. When you transfer the registration,
|
1527
|
+
# the previous registrar will not renew your domain registration and
|
1528
|
+
# could end your DNS service at any time.
|
1271
1529
|
#
|
1272
1530
|
# If the registrar for your domain is also the DNS service provider for
|
1273
1531
|
# the domain and you don't transfer DNS service to another provider,
|
@@ -1281,14 +1539,32 @@ module Aws::Route53Domains
|
|
1281
1539
|
#
|
1282
1540
|
#
|
1283
1541
|
#
|
1284
|
-
# [1]:
|
1542
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html
|
1543
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1544
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-from-route-53.html
|
1285
1545
|
#
|
1286
1546
|
# @option params [required, String] :domain_name
|
1287
|
-
# The name of the domain that you want to transfer to
|
1547
|
+
# The name of the domain that you want to transfer to Route 53. The
|
1548
|
+
# top-level domain (TLD), such as .com, must be a TLD that Route 53
|
1549
|
+
# supports. For a list of supported TLDs, see [Domains that You Can
|
1550
|
+
# Register with Amazon Route 53][1] in the *Amazon Route 53 Developer
|
1551
|
+
# Guide*.
|
1552
|
+
#
|
1553
|
+
# The domain name can contain only the following characters:
|
1554
|
+
#
|
1555
|
+
# * Letters a through z. Domain names are not case sensitive.
|
1556
|
+
#
|
1557
|
+
# * Numbers 0 through 9.
|
1288
1558
|
#
|
1289
|
-
#
|
1290
|
-
#
|
1291
|
-
#
|
1559
|
+
# * Hyphen (-). You can't specify a hyphen at the beginning or end of a
|
1560
|
+
# label.
|
1561
|
+
#
|
1562
|
+
# * Period (.) to separate the labels in the name, such as the `.` in
|
1563
|
+
# `example.com`.
|
1564
|
+
#
|
1565
|
+
#
|
1566
|
+
#
|
1567
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/registrar-tld-list.html
|
1292
1568
|
#
|
1293
1569
|
# @option params [String] :idn_lang_code
|
1294
1570
|
# Reserved for future use.
|
@@ -1387,7 +1663,7 @@ module Aws::Route53Domains
|
|
1387
1663
|
# fax: "ContactNumber",
|
1388
1664
|
# extra_params: [
|
1389
1665
|
# {
|
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
|
1666
|
+
# 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
1667
|
# value: "ExtraParamValue", # required
|
1392
1668
|
# },
|
1393
1669
|
# ],
|
@@ -1408,7 +1684,7 @@ module Aws::Route53Domains
|
|
1408
1684
|
# fax: "ContactNumber",
|
1409
1685
|
# extra_params: [
|
1410
1686
|
# {
|
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
|
1687
|
+
# 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
1688
|
# value: "ExtraParamValue", # required
|
1413
1689
|
# },
|
1414
1690
|
# ],
|
@@ -1429,7 +1705,7 @@ module Aws::Route53Domains
|
|
1429
1705
|
# fax: "ContactNumber",
|
1430
1706
|
# extra_params: [
|
1431
1707
|
# {
|
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
|
1708
|
+
# 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
1709
|
# value: "ExtraParamValue", # required
|
1434
1710
|
# },
|
1435
1711
|
# ],
|
@@ -1452,6 +1728,76 @@ module Aws::Route53Domains
|
|
1452
1728
|
req.send_request(options)
|
1453
1729
|
end
|
1454
1730
|
|
1731
|
+
# Transfers a domain from the current AWS account to another AWS
|
1732
|
+
# account. Note the following:
|
1733
|
+
#
|
1734
|
+
# * The AWS account that you're transferring the domain to must accept
|
1735
|
+
# the transfer. If the other account doesn't accept the transfer
|
1736
|
+
# within 3 days, we cancel the transfer. See
|
1737
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][1].
|
1738
|
+
#
|
1739
|
+
# * You can cancel the transfer before the other account accepts it. See
|
1740
|
+
# [CancelDomainTransferToAnotherAwsAccount][2].
|
1741
|
+
#
|
1742
|
+
# * The other account can reject the transfer. See
|
1743
|
+
# [RejectDomainTransferFromAnotherAwsAccount][3].
|
1744
|
+
#
|
1745
|
+
# When you transfer a domain from one AWS account to another, Route 53
|
1746
|
+
# doesn't transfer the hosted zone that is associated with the domain.
|
1747
|
+
# DNS resolution isn't affected if the domain and the hosted zone are
|
1748
|
+
# owned by separate accounts, so transferring the hosted zone is
|
1749
|
+
# optional. For information about transferring the hosted zone to
|
1750
|
+
# another AWS account, see [Migrating a Hosted Zone to a Different AWS
|
1751
|
+
# Account][4] in the *Amazon Route 53 Developer Guide*.
|
1752
|
+
#
|
1753
|
+
# Use either [ListOperations][5] or [GetOperationDetail][6] to determine
|
1754
|
+
# whether the operation succeeded. [GetOperationDetail][6] provides
|
1755
|
+
# additional information, for example, `Domain Transfer from Aws Account
|
1756
|
+
# 111122223333 has been cancelled`.
|
1757
|
+
#
|
1758
|
+
#
|
1759
|
+
#
|
1760
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_AcceptDomainTransferFromAnotherAwsAccount.html
|
1761
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_CancelDomainTransferToAnotherAwsAccount.html
|
1762
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_RejectDomainTransferFromAnotherAwsAccount.html
|
1763
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-migrating.html
|
1764
|
+
# [5]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
1765
|
+
# [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1766
|
+
#
|
1767
|
+
# @option params [required, String] :domain_name
|
1768
|
+
# The name of the domain that you want to transfer from the current AWS
|
1769
|
+
# account to another account.
|
1770
|
+
#
|
1771
|
+
# @option params [required, String] :account_id
|
1772
|
+
# The account ID of the AWS account that you want to transfer the domain
|
1773
|
+
# to, for example, `111122223333`.
|
1774
|
+
#
|
1775
|
+
# @return [Types::TransferDomainToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1776
|
+
#
|
1777
|
+
# * {Types::TransferDomainToAnotherAwsAccountResponse#operation_id #operation_id} => String
|
1778
|
+
# * {Types::TransferDomainToAnotherAwsAccountResponse#password #password} => String
|
1779
|
+
#
|
1780
|
+
# @example Request syntax with placeholder values
|
1781
|
+
#
|
1782
|
+
# resp = client.transfer_domain_to_another_aws_account({
|
1783
|
+
# domain_name: "DomainName", # required
|
1784
|
+
# account_id: "AccountId", # required
|
1785
|
+
# })
|
1786
|
+
#
|
1787
|
+
# @example Response structure
|
1788
|
+
#
|
1789
|
+
# resp.operation_id #=> String
|
1790
|
+
# resp.password #=> String
|
1791
|
+
#
|
1792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/TransferDomainToAnotherAwsAccount AWS API Documentation
|
1793
|
+
#
|
1794
|
+
# @overload transfer_domain_to_another_aws_account(params = {})
|
1795
|
+
# @param [Hash] params ({})
|
1796
|
+
def transfer_domain_to_another_aws_account(params = {}, options = {})
|
1797
|
+
req = build_request(:transfer_domain_to_another_aws_account, params)
|
1798
|
+
req.send_request(options)
|
1799
|
+
end
|
1800
|
+
|
1455
1801
|
# This operation updates the contact information for a particular
|
1456
1802
|
# domain. You must specify information for at least one contact:
|
1457
1803
|
# registrant, administrator, or technical.
|
@@ -1498,7 +1844,7 @@ module Aws::Route53Domains
|
|
1498
1844
|
# fax: "ContactNumber",
|
1499
1845
|
# extra_params: [
|
1500
1846
|
# {
|
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
|
1847
|
+
# 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
1848
|
# value: "ExtraParamValue", # required
|
1503
1849
|
# },
|
1504
1850
|
# ],
|
@@ -1519,7 +1865,7 @@ module Aws::Route53Domains
|
|
1519
1865
|
# fax: "ContactNumber",
|
1520
1866
|
# extra_params: [
|
1521
1867
|
# {
|
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
|
1868
|
+
# 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
1869
|
# value: "ExtraParamValue", # required
|
1524
1870
|
# },
|
1525
1871
|
# ],
|
@@ -1540,7 +1886,7 @@ module Aws::Route53Domains
|
|
1540
1886
|
# fax: "ContactNumber",
|
1541
1887
|
# extra_params: [
|
1542
1888
|
# {
|
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
|
1889
|
+
# 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
1890
|
# value: "ExtraParamValue", # required
|
1545
1891
|
# },
|
1546
1892
|
# ],
|
@@ -1569,10 +1915,25 @@ module Aws::Route53Domains
|
|
1569
1915
|
# This operation affects only the contact information for the specified
|
1570
1916
|
# contact type (registrant, administrator, or tech). If the request
|
1571
1917
|
# 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
|
1918
|
+
# with [GetOperationDetail][1] to track the progress and completion of
|
1919
|
+
# the action. If the request doesn't complete successfully, the domain
|
1574
1920
|
# registrant will be notified by email.
|
1575
1921
|
#
|
1922
|
+
# By disabling the privacy service via API, you consent to the
|
1923
|
+
# publication of the contact information provided for this domain via
|
1924
|
+
# the public WHOIS database. You certify that you are the registrant of
|
1925
|
+
# this domain name and have the authority to make this decision. You may
|
1926
|
+
# withdraw your consent at any time by enabling privacy protection using
|
1927
|
+
# either `UpdateDomainContactPrivacy` or the Route 53 console. Enabling
|
1928
|
+
# privacy protection removes the contact information provided for this
|
1929
|
+
# domain from the WHOIS database. For more information on our privacy
|
1930
|
+
# practices, see [https://aws.amazon.com/privacy/][2].
|
1931
|
+
#
|
1932
|
+
#
|
1933
|
+
#
|
1934
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1935
|
+
# [2]: https://aws.amazon.com/privacy/
|
1936
|
+
#
|
1576
1937
|
# @option params [required, String] :domain_name
|
1577
1938
|
# The name of the domain that you want to update the privacy setting
|
1578
1939
|
# for.
|
@@ -1717,13 +2078,13 @@ module Aws::Route53Domains
|
|
1717
2078
|
#
|
1718
2079
|
# @option params [Time,DateTime,Date,Integer,String] :start
|
1719
2080
|
# 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).
|
2081
|
+
# list of billing records. Specify the date and time in Unix time format
|
2082
|
+
# and Coordinated Universal time (UTC).
|
1722
2083
|
#
|
1723
2084
|
# @option params [Time,DateTime,Date,Integer,String] :end
|
1724
2085
|
# 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).
|
2086
|
+
# billing records. Specify the date and time in Unix time format and
|
2087
|
+
# Coordinated Universal time (UTC).
|
1727
2088
|
#
|
1728
2089
|
# @option params [String] :marker
|
1729
2090
|
# For an initial request for a list of billing records, omit this
|
@@ -1761,7 +2122,7 @@ module Aws::Route53Domains
|
|
1761
2122
|
# resp.next_page_marker #=> String
|
1762
2123
|
# resp.billing_records #=> Array
|
1763
2124
|
# 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"
|
2125
|
+
# 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
2126
|
# resp.billing_records[0].invoice_id #=> String
|
1766
2127
|
# resp.billing_records[0].bill_date #=> Time
|
1767
2128
|
# resp.billing_records[0].price #=> Float
|
@@ -1788,7 +2149,7 @@ module Aws::Route53Domains
|
|
1788
2149
|
params: params,
|
1789
2150
|
config: config)
|
1790
2151
|
context[:gem_name] = 'aws-sdk-route53domains'
|
1791
|
-
context[:gem_version] = '1.
|
2152
|
+
context[:gem_version] = '1.20.0'
|
1792
2153
|
Seahorse::Client::Request.new(handlers, context)
|
1793
2154
|
end
|
1794
2155
|
|