aws-sdk-route53domains 1.35.0 → 1.39.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53domains/client.rb +330 -92
- data/lib/aws-sdk-route53domains/client_api.rb +100 -0
- data/lib/aws-sdk-route53domains/types.rb +409 -56
- data/lib/aws-sdk-route53domains.rb +1 -1
- metadata +4 -4
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::Route53Domains
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::Route53Domains
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::Route53Domains
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -305,7 +315,7 @@ module Aws::Route53Domains
|
|
305
315
|
# seconds to wait when opening a HTTP session before raising a
|
306
316
|
# `Timeout::Error`.
|
307
317
|
#
|
308
|
-
# @option options [
|
318
|
+
# @option options [Float] :http_read_timeout (60) The default
|
309
319
|
# number of seconds to wait for response data. This value can
|
310
320
|
# safely be set per-request on the session.
|
311
321
|
#
|
@@ -321,6 +331,9 @@ module Aws::Route53Domains
|
|
321
331
|
# disables this behaviour. This value can safely be set per
|
322
332
|
# request on the session.
|
323
333
|
#
|
334
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
335
|
+
# in seconds.
|
336
|
+
#
|
324
337
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
325
338
|
# HTTP debug output will be sent to the `:logger`.
|
326
339
|
#
|
@@ -346,24 +359,32 @@ module Aws::Route53Domains
|
|
346
359
|
|
347
360
|
# @!group API Operations
|
348
361
|
|
349
|
-
# Accepts the transfer of a domain from another
|
350
|
-
#
|
351
|
-
# using
|
362
|
+
# Accepts the transfer of a domain from another Amazon Web Services
|
363
|
+
# account to the currentAmazon Web Services account. You initiate a
|
364
|
+
# transfer between Amazon Web Services accounts using
|
365
|
+
# [TransferDomainToAnotherAwsAccount][1].
|
352
366
|
#
|
353
|
-
#
|
354
|
-
#
|
367
|
+
# If you use the CLI command at
|
368
|
+
# [accept-domain-transfer-from-another-aws-account][2], use JSON format
|
369
|
+
# as input instead of text because otherwise CLI will throw an error
|
370
|
+
# from domain transfer input that includes single quotes.
|
371
|
+
#
|
372
|
+
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
373
|
+
# whether the operation succeeded. [GetOperationDetail][4] provides
|
355
374
|
# additional information, for example, `Domain Transfer from Aws Account
|
356
375
|
# 111122223333 has been cancelled`.
|
357
376
|
#
|
358
377
|
#
|
359
378
|
#
|
360
379
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
361
|
-
# [2]: https://docs.aws.amazon.com/
|
362
|
-
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/
|
380
|
+
# [2]: https://docs.aws.amazon.com/cli/latest/reference/route53domains/accept-domain-transfer-from-another-aws-account.html
|
381
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
382
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
363
383
|
#
|
364
384
|
# @option params [required, String] :domain_name
|
365
|
-
# The name of the domain that was specified when another
|
366
|
-
# submitted a [TransferDomainToAnotherAwsAccount][1]
|
385
|
+
# The name of the domain that was specified when another Amazon Web
|
386
|
+
# Services account submitted a [TransferDomainToAnotherAwsAccount][1]
|
387
|
+
# request.
|
367
388
|
#
|
368
389
|
#
|
369
390
|
#
|
@@ -401,12 +422,14 @@ module Aws::Route53Domains
|
|
401
422
|
req.send_request(options)
|
402
423
|
end
|
403
424
|
|
404
|
-
# Cancels the transfer of a domain from the current
|
405
|
-
# another
|
406
|
-
# using
|
425
|
+
# Cancels the transfer of a domain from the current Amazon Web Services
|
426
|
+
# account to another Amazon Web Services account. You initiate a
|
427
|
+
# transfer betweenAmazon Web Services accounts using
|
428
|
+
# [TransferDomainToAnotherAwsAccount][1].
|
407
429
|
#
|
408
|
-
# You must cancel the transfer before the other
|
409
|
-
# transfer using
|
430
|
+
# You must cancel the transfer before the other Amazon Web Services
|
431
|
+
# account accepts the transfer using
|
432
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][2].
|
410
433
|
#
|
411
434
|
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
412
435
|
# whether the operation succeeded. [GetOperationDetail][4] provides
|
@@ -422,7 +445,7 @@ module Aws::Route53Domains
|
|
422
445
|
#
|
423
446
|
# @option params [required, String] :domain_name
|
424
447
|
# The name of the domain for which you want to cancel the transfer to
|
425
|
-
# another
|
448
|
+
# another Amazon Web Services account.
|
426
449
|
#
|
427
450
|
# @return [Types::CancelDomainTransferToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
428
451
|
#
|
@@ -562,6 +585,55 @@ module Aws::Route53Domains
|
|
562
585
|
req.send_request(options)
|
563
586
|
end
|
564
587
|
|
588
|
+
# This operation deletes the specified domain. This action is permanent.
|
589
|
+
# For more information, see [Deleting a domain name registration][1].
|
590
|
+
#
|
591
|
+
# To transfer the domain registration to another registrar, use the
|
592
|
+
# transfer process that’s provided by the registrar to which you want to
|
593
|
+
# transfer the registration. Otherwise, the following apply:
|
594
|
+
#
|
595
|
+
# 1. You can’t get a refund for the cost of a deleted domain
|
596
|
+
# registration.
|
597
|
+
#
|
598
|
+
# 2. The registry for the top-level domain might hold the domain name
|
599
|
+
# for a brief time before releasing it for other users to register
|
600
|
+
# (varies by registry).
|
601
|
+
#
|
602
|
+
# 3. When the registration has been deleted, we'll send you a
|
603
|
+
# confirmation to the registrant contact. The email will come from
|
604
|
+
# `noreply@domainnameverification.net` or
|
605
|
+
# `noreply@registrar.amazon.com`.
|
606
|
+
#
|
607
|
+
#
|
608
|
+
#
|
609
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-delete.html
|
610
|
+
#
|
611
|
+
# @option params [required, String] :domain_name
|
612
|
+
# Name of the domain to be deleted.
|
613
|
+
#
|
614
|
+
# @return [Types::DeleteDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
615
|
+
#
|
616
|
+
# * {Types::DeleteDomainResponse#operation_id #operation_id} => String
|
617
|
+
#
|
618
|
+
# @example Request syntax with placeholder values
|
619
|
+
#
|
620
|
+
# resp = client.delete_domain({
|
621
|
+
# domain_name: "DomainName", # required
|
622
|
+
# })
|
623
|
+
#
|
624
|
+
# @example Response structure
|
625
|
+
#
|
626
|
+
# resp.operation_id #=> String
|
627
|
+
#
|
628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DeleteDomain AWS API Documentation
|
629
|
+
#
|
630
|
+
# @overload delete_domain(params = {})
|
631
|
+
# @param [Hash] params ({})
|
632
|
+
def delete_domain(params = {}, options = {})
|
633
|
+
req = build_request(:delete_domain, params)
|
634
|
+
req.send_request(options)
|
635
|
+
end
|
636
|
+
|
565
637
|
# This operation deletes the specified tags for a domain.
|
566
638
|
#
|
567
639
|
# All tag operations are eventually consistent; subsequent operations
|
@@ -650,7 +722,8 @@ module Aws::Route53Domains
|
|
650
722
|
|
651
723
|
# This operation configures Amazon Route 53 to automatically renew the
|
652
724
|
# specified domain before the domain registration expires. The cost of
|
653
|
-
# renewing your domain registration is billed to your
|
725
|
+
# renewing your domain registration is billed to your Amazon Web
|
726
|
+
# Services account.
|
654
727
|
#
|
655
728
|
# The period during which you can renew a domain name varies by TLD. For
|
656
729
|
# a list of TLDs and their renewal policies, see [Domains That You Can
|
@@ -753,8 +826,9 @@ module Aws::Route53Domains
|
|
753
826
|
end
|
754
827
|
|
755
828
|
# This operation returns detailed information about a specified domain
|
756
|
-
# that is associated with the current
|
757
|
-
# for the domain is also returned as part of the
|
829
|
+
# that is associated with the current Amazon Web Services account.
|
830
|
+
# Contact information for the domain is also returned as part of the
|
831
|
+
# output.
|
758
832
|
#
|
759
833
|
# @option params [required, String] :domain_name
|
760
834
|
# The name of the domain that you want to get detailed information
|
@@ -806,13 +880,13 @@ module Aws::Route53Domains
|
|
806
880
|
# resp.admin_contact.address_line_2 #=> String
|
807
881
|
# resp.admin_contact.city #=> String
|
808
882
|
# resp.admin_contact.state #=> String
|
809
|
-
# resp.admin_contact.country_code #=> String, one of "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BR", "BS", "BT", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GH", "GI", "GL", "GM", "GN", "GQ", "GR", "GT", "GU", "GW", "GY", "HK", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IQ", "IR", "IS", "IT", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PT", "PW", "PY", "QA", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SK", "SL", "SM", "SN", "SO", "SR", "ST", "SV", "SY", "SZ", "TC", "TD", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
|
883
|
+
# resp.admin_contact.country_code #=> String, one of "AC", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TP", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
|
810
884
|
# resp.admin_contact.zip_code #=> String
|
811
885
|
# resp.admin_contact.phone_number #=> String
|
812
886
|
# resp.admin_contact.email #=> String
|
813
887
|
# resp.admin_contact.fax #=> String
|
814
888
|
# resp.admin_contact.extra_params #=> Array
|
815
|
-
# 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"
|
889
|
+
# 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", "EU_COUNTRY_OF_CITIZENSHIP"
|
816
890
|
# resp.admin_contact.extra_params[0].value #=> String
|
817
891
|
# resp.registrant_contact.first_name #=> String
|
818
892
|
# resp.registrant_contact.last_name #=> String
|
@@ -822,13 +896,13 @@ module Aws::Route53Domains
|
|
822
896
|
# resp.registrant_contact.address_line_2 #=> String
|
823
897
|
# resp.registrant_contact.city #=> String
|
824
898
|
# resp.registrant_contact.state #=> String
|
825
|
-
# resp.registrant_contact.country_code #=> String, one of "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BR", "BS", "BT", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GH", "GI", "GL", "GM", "GN", "GQ", "GR", "GT", "GU", "GW", "GY", "HK", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IQ", "IR", "IS", "IT", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PT", "PW", "PY", "QA", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SK", "SL", "SM", "SN", "SO", "SR", "ST", "SV", "SY", "SZ", "TC", "TD", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
|
899
|
+
# resp.registrant_contact.country_code #=> String, one of "AC", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TP", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
|
826
900
|
# resp.registrant_contact.zip_code #=> String
|
827
901
|
# resp.registrant_contact.phone_number #=> String
|
828
902
|
# resp.registrant_contact.email #=> String
|
829
903
|
# resp.registrant_contact.fax #=> String
|
830
904
|
# resp.registrant_contact.extra_params #=> Array
|
831
|
-
# 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"
|
905
|
+
# 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", "EU_COUNTRY_OF_CITIZENSHIP"
|
832
906
|
# resp.registrant_contact.extra_params[0].value #=> String
|
833
907
|
# resp.tech_contact.first_name #=> String
|
834
908
|
# resp.tech_contact.last_name #=> String
|
@@ -838,13 +912,13 @@ module Aws::Route53Domains
|
|
838
912
|
# resp.tech_contact.address_line_2 #=> String
|
839
913
|
# resp.tech_contact.city #=> String
|
840
914
|
# resp.tech_contact.state #=> String
|
841
|
-
# resp.tech_contact.country_code #=> String, one of "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BR", "BS", "BT", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GH", "GI", "GL", "GM", "GN", "GQ", "GR", "GT", "GU", "GW", "GY", "HK", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IQ", "IR", "IS", "IT", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PT", "PW", "PY", "QA", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SK", "SL", "SM", "SN", "SO", "SR", "ST", "SV", "SY", "SZ", "TC", "TD", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
|
915
|
+
# resp.tech_contact.country_code #=> String, one of "AC", "AD", "AE", "AF", "AG", "AI", "AL", "AM", "AN", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TP", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"
|
842
916
|
# resp.tech_contact.zip_code #=> String
|
843
917
|
# resp.tech_contact.phone_number #=> String
|
844
918
|
# resp.tech_contact.email #=> String
|
845
919
|
# resp.tech_contact.fax #=> String
|
846
920
|
# resp.tech_contact.extra_params #=> Array
|
847
|
-
# 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"
|
921
|
+
# 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", "EU_COUNTRY_OF_CITIZENSHIP"
|
848
922
|
# resp.tech_contact.extra_params[0].value #=> String
|
849
923
|
# resp.admin_privacy #=> Boolean
|
850
924
|
# resp.registrant_privacy #=> Boolean
|
@@ -983,16 +1057,26 @@ module Aws::Route53Domains
|
|
983
1057
|
end
|
984
1058
|
|
985
1059
|
# This operation returns all the domain names registered with Amazon
|
986
|
-
# Route 53 for the current
|
1060
|
+
# Route 53 for the current Amazon Web Services account if no filtering
|
1061
|
+
# conditions are used.
|
1062
|
+
#
|
1063
|
+
# @option params [Array<Types::FilterCondition>] :filter_conditions
|
1064
|
+
# A complex type that contains information about the filters applied
|
1065
|
+
# during the `ListDomains` request. The filter conditions can include
|
1066
|
+
# domain name and domain expiration.
|
1067
|
+
#
|
1068
|
+
# @option params [Types::SortCondition] :sort_condition
|
1069
|
+
# A complex type that contains information about the requested ordering
|
1070
|
+
# of domains in the returned list.
|
987
1071
|
#
|
988
1072
|
# @option params [String] :marker
|
989
1073
|
# For an initial request for a list of domains, omit this element. If
|
990
|
-
# the number of domains that are associated with the current
|
991
|
-
# is greater than the value that you specified for
|
992
|
-
# use `Marker` to return additional domains. Get the
|
993
|
-
# `NextPageMarker` from the previous response, and submit
|
994
|
-
# request that includes the value of `NextPageMarker` in the
|
995
|
-
# element.
|
1074
|
+
# the number of domains that are associated with the current Amazon Web
|
1075
|
+
# Services account is greater than the value that you specified for
|
1076
|
+
# `MaxItems`, you can use `Marker` to return additional domains. Get the
|
1077
|
+
# value of `NextPageMarker` from the previous response, and submit
|
1078
|
+
# another request that includes the value of `NextPageMarker` in the
|
1079
|
+
# `Marker` element.
|
996
1080
|
#
|
997
1081
|
# Constraints: The marker must match the value specified in the previous
|
998
1082
|
# request.
|
@@ -1012,6 +1096,17 @@ module Aws::Route53Domains
|
|
1012
1096
|
# @example Request syntax with placeholder values
|
1013
1097
|
#
|
1014
1098
|
# resp = client.list_domains({
|
1099
|
+
# filter_conditions: [
|
1100
|
+
# {
|
1101
|
+
# name: "DomainName", # required, accepts DomainName, Expiry
|
1102
|
+
# operator: "LE", # required, accepts LE, GE, BEGINS_WITH
|
1103
|
+
# values: ["Value"], # required
|
1104
|
+
# },
|
1105
|
+
# ],
|
1106
|
+
# sort_condition: {
|
1107
|
+
# name: "DomainName", # required, accepts DomainName, Expiry
|
1108
|
+
# sort_order: "ASC", # required, accepts ASC, DESC
|
1109
|
+
# },
|
1015
1110
|
# marker: "PageMarker",
|
1016
1111
|
# max_items: 1,
|
1017
1112
|
# })
|
@@ -1038,6 +1133,8 @@ module Aws::Route53Domains
|
|
1038
1133
|
# operation ID and that have ever been performed on domains that were
|
1039
1134
|
# registered by the current account.
|
1040
1135
|
#
|
1136
|
+
# This command runs only in the us-east-1 Region.
|
1137
|
+
#
|
1041
1138
|
# @option params [Time,DateTime,Date,Integer,String] :submitted_since
|
1042
1139
|
# An optional parameter that lets you get information about all the
|
1043
1140
|
# operations that you submitted after a specified date and time. Specify
|
@@ -1090,6 +1187,83 @@ module Aws::Route53Domains
|
|
1090
1187
|
req.send_request(options)
|
1091
1188
|
end
|
1092
1189
|
|
1190
|
+
# Lists the following prices for either all the TLDs supported by
|
1191
|
+
# Route 53, or the specified TLD:
|
1192
|
+
#
|
1193
|
+
# * Registration
|
1194
|
+
#
|
1195
|
+
# * Transfer
|
1196
|
+
#
|
1197
|
+
# * Owner change
|
1198
|
+
#
|
1199
|
+
# * Domain renewal
|
1200
|
+
#
|
1201
|
+
# * Domain restoration
|
1202
|
+
#
|
1203
|
+
# @option params [String] :tld
|
1204
|
+
# The TLD for which you want to receive the pricing information. For
|
1205
|
+
# example. `.net`.
|
1206
|
+
#
|
1207
|
+
# If a `Tld` value is not provided, a list of prices for all TLDs
|
1208
|
+
# supported by Route 53 is returned.
|
1209
|
+
#
|
1210
|
+
# @option params [String] :marker
|
1211
|
+
# For an initial request for a list of prices, omit this element. If the
|
1212
|
+
# number of prices that are not yet complete is greater than the value
|
1213
|
+
# that you specified for `MaxItems`, you can use `Marker` to return
|
1214
|
+
# additional prices. Get the value of `NextPageMarker` from the previous
|
1215
|
+
# response, and submit another request that includes the value of
|
1216
|
+
# `NextPageMarker` in the `Marker` element.
|
1217
|
+
#
|
1218
|
+
# Used only for all TLDs. If you specify a TLD, don't specify a
|
1219
|
+
# `Marker`.
|
1220
|
+
#
|
1221
|
+
# @option params [Integer] :max_items
|
1222
|
+
# Number of `Prices` to be returned.
|
1223
|
+
#
|
1224
|
+
# Used only for all TLDs. If you specify a TLD, don't specify a
|
1225
|
+
# `MaxItems`.
|
1226
|
+
#
|
1227
|
+
# @return [Types::ListPricesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1228
|
+
#
|
1229
|
+
# * {Types::ListPricesResponse#prices #prices} => Array<Types::DomainPrice>
|
1230
|
+
# * {Types::ListPricesResponse#next_page_marker #next_page_marker} => String
|
1231
|
+
#
|
1232
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1233
|
+
#
|
1234
|
+
# @example Request syntax with placeholder values
|
1235
|
+
#
|
1236
|
+
# resp = client.list_prices({
|
1237
|
+
# tld: "TldName",
|
1238
|
+
# marker: "PageMarker",
|
1239
|
+
# max_items: 1,
|
1240
|
+
# })
|
1241
|
+
#
|
1242
|
+
# @example Response structure
|
1243
|
+
#
|
1244
|
+
# resp.prices #=> Array
|
1245
|
+
# resp.prices[0].name #=> String
|
1246
|
+
# resp.prices[0].registration_price.price #=> Float
|
1247
|
+
# resp.prices[0].registration_price.currency #=> String
|
1248
|
+
# resp.prices[0].transfer_price.price #=> Float
|
1249
|
+
# resp.prices[0].transfer_price.currency #=> String
|
1250
|
+
# resp.prices[0].renewal_price.price #=> Float
|
1251
|
+
# resp.prices[0].renewal_price.currency #=> String
|
1252
|
+
# resp.prices[0].change_ownership_price.price #=> Float
|
1253
|
+
# resp.prices[0].change_ownership_price.currency #=> String
|
1254
|
+
# resp.prices[0].restoration_price.price #=> Float
|
1255
|
+
# resp.prices[0].restoration_price.currency #=> String
|
1256
|
+
# resp.next_page_marker #=> String
|
1257
|
+
#
|
1258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListPrices AWS API Documentation
|
1259
|
+
#
|
1260
|
+
# @overload list_prices(params = {})
|
1261
|
+
# @param [Hash] params ({})
|
1262
|
+
def list_prices(params = {}, options = {})
|
1263
|
+
req = build_request(:list_prices, params)
|
1264
|
+
req.send_request(options)
|
1265
|
+
end
|
1266
|
+
|
1093
1267
|
# This operation returns all of the tags that are associated with the
|
1094
1268
|
# specified domain.
|
1095
1269
|
#
|
@@ -1144,16 +1318,22 @@ module Aws::Route53Domains
|
|
1144
1318
|
# contact information either for Amazon Registrar (for .com, .net, and
|
1145
1319
|
# .org domains) or for our registrar associate, Gandi (for all other
|
1146
1320
|
# TLDs). If you don't enable privacy protection, WHOIS queries return
|
1147
|
-
# the information that you entered for the
|
1148
|
-
# contacts.
|
1321
|
+
# the information that you entered for the administrative, registrant,
|
1322
|
+
# and technical contacts.
|
1323
|
+
#
|
1324
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1325
|
+
# registrant, and technical contacts.
|
1326
|
+
#
|
1327
|
+
# </note>
|
1149
1328
|
#
|
1150
1329
|
# * If registration is successful, returns an operation ID that you can
|
1151
1330
|
# use to track the progress and completion of the action. If the
|
1152
1331
|
# request is not completed successfully, the domain registrant is
|
1153
1332
|
# notified by email.
|
1154
1333
|
#
|
1155
|
-
# * Charges your
|
1156
|
-
# For more information, see [Amazon Route 53
|
1334
|
+
# * Charges your Amazon Web Services account an amount based on the
|
1335
|
+
# top-level domain. For more information, see [Amazon Route 53
|
1336
|
+
# Pricing][1].
|
1157
1337
|
#
|
1158
1338
|
#
|
1159
1339
|
#
|
@@ -1243,6 +1423,11 @@ module Aws::Route53Domains
|
|
1243
1423
|
# If you specify `false`, WHOIS queries return the information that you
|
1244
1424
|
# entered for the admin contact.
|
1245
1425
|
#
|
1426
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1427
|
+
# registrant, and technical contacts.
|
1428
|
+
#
|
1429
|
+
# </note>
|
1430
|
+
#
|
1246
1431
|
# Default: `true`
|
1247
1432
|
#
|
1248
1433
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
@@ -1253,6 +1438,11 @@ module Aws::Route53Domains
|
|
1253
1438
|
# If you specify `false`, WHOIS queries return the information that you
|
1254
1439
|
# entered for the registrant contact (the domain owner).
|
1255
1440
|
#
|
1441
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1442
|
+
# registrant, and technical contacts.
|
1443
|
+
#
|
1444
|
+
# </note>
|
1445
|
+
#
|
1256
1446
|
# Default: `true`
|
1257
1447
|
#
|
1258
1448
|
# @option params [Boolean] :privacy_protect_tech_contact
|
@@ -1263,6 +1453,11 @@ module Aws::Route53Domains
|
|
1263
1453
|
# If you specify `false`, WHOIS queries return the information that you
|
1264
1454
|
# entered for the technical contact.
|
1265
1455
|
#
|
1456
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1457
|
+
# registrant, and technical contacts.
|
1458
|
+
#
|
1459
|
+
# </note>
|
1460
|
+
#
|
1266
1461
|
# Default: `true`
|
1267
1462
|
#
|
1268
1463
|
# @return [Types::RegisterDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1285,14 +1480,14 @@ module Aws::Route53Domains
|
|
1285
1480
|
# address_line_2: "AddressLine",
|
1286
1481
|
# city: "City",
|
1287
1482
|
# state: "State",
|
1288
|
-
# country_code: "
|
1483
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1289
1484
|
# zip_code: "ZipCode",
|
1290
1485
|
# phone_number: "ContactNumber",
|
1291
1486
|
# email: "Email",
|
1292
1487
|
# fax: "ContactNumber",
|
1293
1488
|
# extra_params: [
|
1294
1489
|
# {
|
1295
|
-
# 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
|
1490
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1296
1491
|
# value: "ExtraParamValue", # required
|
1297
1492
|
# },
|
1298
1493
|
# ],
|
@@ -1306,14 +1501,14 @@ module Aws::Route53Domains
|
|
1306
1501
|
# address_line_2: "AddressLine",
|
1307
1502
|
# city: "City",
|
1308
1503
|
# state: "State",
|
1309
|
-
# country_code: "
|
1504
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1310
1505
|
# zip_code: "ZipCode",
|
1311
1506
|
# phone_number: "ContactNumber",
|
1312
1507
|
# email: "Email",
|
1313
1508
|
# fax: "ContactNumber",
|
1314
1509
|
# extra_params: [
|
1315
1510
|
# {
|
1316
|
-
# 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
|
1511
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1317
1512
|
# value: "ExtraParamValue", # required
|
1318
1513
|
# },
|
1319
1514
|
# ],
|
@@ -1327,14 +1522,14 @@ module Aws::Route53Domains
|
|
1327
1522
|
# address_line_2: "AddressLine",
|
1328
1523
|
# city: "City",
|
1329
1524
|
# state: "State",
|
1330
|
-
# country_code: "
|
1525
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1331
1526
|
# zip_code: "ZipCode",
|
1332
1527
|
# phone_number: "ContactNumber",
|
1333
1528
|
# email: "Email",
|
1334
1529
|
# fax: "ContactNumber",
|
1335
1530
|
# extra_params: [
|
1336
1531
|
# {
|
1337
|
-
# 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
|
1532
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1338
1533
|
# value: "ExtraParamValue", # required
|
1339
1534
|
# },
|
1340
1535
|
# ],
|
@@ -1357,9 +1552,10 @@ module Aws::Route53Domains
|
|
1357
1552
|
req.send_request(options)
|
1358
1553
|
end
|
1359
1554
|
|
1360
|
-
# Rejects the transfer of a domain from another
|
1361
|
-
# current
|
1362
|
-
# using
|
1555
|
+
# Rejects the transfer of a domain from another Amazon Web Services
|
1556
|
+
# account to the current Amazon Web Services account. You initiate a
|
1557
|
+
# transfer betweenAmazon Web Services accounts using
|
1558
|
+
# [TransferDomainToAnotherAwsAccount][1].
|
1363
1559
|
#
|
1364
1560
|
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
1365
1561
|
# whether the operation succeeded. [GetOperationDetail][3] provides
|
@@ -1373,8 +1569,9 @@ module Aws::Route53Domains
|
|
1373
1569
|
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1374
1570
|
#
|
1375
1571
|
# @option params [required, String] :domain_name
|
1376
|
-
# The name of the domain that was specified when another
|
1377
|
-
# submitted a [TransferDomainToAnotherAwsAccount][1]
|
1572
|
+
# The name of the domain that was specified when another Amazon Web
|
1573
|
+
# Services account submitted a [TransferDomainToAnotherAwsAccount][1]
|
1574
|
+
# request.
|
1378
1575
|
#
|
1379
1576
|
#
|
1380
1577
|
#
|
@@ -1404,7 +1601,8 @@ module Aws::Route53Domains
|
|
1404
1601
|
end
|
1405
1602
|
|
1406
1603
|
# This operation renews a domain for the specified number of years. The
|
1407
|
-
# cost of renewing your domain is billed to your
|
1604
|
+
# cost of renewing your domain is billed to your Amazon Web Services
|
1605
|
+
# account.
|
1408
1606
|
#
|
1409
1607
|
# We recommend that you renew your domain several weeks before the
|
1410
1608
|
# expiration date. Some TLD registries delete domains before the
|
@@ -1540,8 +1738,9 @@ module Aws::Route53Domains
|
|
1540
1738
|
# Route 53, see [Transferring Registration for a Domain to Amazon
|
1541
1739
|
# Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1542
1740
|
#
|
1543
|
-
# * For information about how to transfer a domain from one
|
1544
|
-
# to another, see
|
1741
|
+
# * For information about how to transfer a domain from one Amazon Web
|
1742
|
+
# Services account to another, see
|
1743
|
+
# [TransferDomainToAnotherAwsAccount][2].
|
1545
1744
|
#
|
1546
1745
|
# * For information about how to transfer a domain to another domain
|
1547
1746
|
# registrar, see [Transferring a Domain from Amazon Route 53 to
|
@@ -1635,6 +1834,11 @@ module Aws::Route53Domains
|
|
1635
1834
|
# If you specify `false`, WHOIS queries return the information that you
|
1636
1835
|
# entered for the admin contact.
|
1637
1836
|
#
|
1837
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1838
|
+
# registrant, and technical contacts.
|
1839
|
+
#
|
1840
|
+
# </note>
|
1841
|
+
#
|
1638
1842
|
# Default: `true`
|
1639
1843
|
#
|
1640
1844
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
@@ -1645,6 +1849,11 @@ module Aws::Route53Domains
|
|
1645
1849
|
# If you specify `false`, WHOIS queries return the information that you
|
1646
1850
|
# entered for the registrant contact (domain owner).
|
1647
1851
|
#
|
1852
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1853
|
+
# registrant, and technical contacts.
|
1854
|
+
#
|
1855
|
+
# </note>
|
1856
|
+
#
|
1648
1857
|
# Default: `true`
|
1649
1858
|
#
|
1650
1859
|
# @option params [Boolean] :privacy_protect_tech_contact
|
@@ -1655,6 +1864,11 @@ module Aws::Route53Domains
|
|
1655
1864
|
# If you specify `false`, WHOIS queries return the information that you
|
1656
1865
|
# entered for the technical contact.
|
1657
1866
|
#
|
1867
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1868
|
+
# registrant, and technical contacts.
|
1869
|
+
#
|
1870
|
+
# </note>
|
1871
|
+
#
|
1658
1872
|
# Default: `true`
|
1659
1873
|
#
|
1660
1874
|
# @return [Types::TransferDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1684,14 +1898,14 @@ module Aws::Route53Domains
|
|
1684
1898
|
# address_line_2: "AddressLine",
|
1685
1899
|
# city: "City",
|
1686
1900
|
# state: "State",
|
1687
|
-
# country_code: "
|
1901
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1688
1902
|
# zip_code: "ZipCode",
|
1689
1903
|
# phone_number: "ContactNumber",
|
1690
1904
|
# email: "Email",
|
1691
1905
|
# fax: "ContactNumber",
|
1692
1906
|
# extra_params: [
|
1693
1907
|
# {
|
1694
|
-
# 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
|
1908
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1695
1909
|
# value: "ExtraParamValue", # required
|
1696
1910
|
# },
|
1697
1911
|
# ],
|
@@ -1705,14 +1919,14 @@ module Aws::Route53Domains
|
|
1705
1919
|
# address_line_2: "AddressLine",
|
1706
1920
|
# city: "City",
|
1707
1921
|
# state: "State",
|
1708
|
-
# country_code: "
|
1922
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1709
1923
|
# zip_code: "ZipCode",
|
1710
1924
|
# phone_number: "ContactNumber",
|
1711
1925
|
# email: "Email",
|
1712
1926
|
# fax: "ContactNumber",
|
1713
1927
|
# extra_params: [
|
1714
1928
|
# {
|
1715
|
-
# 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
|
1929
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1716
1930
|
# value: "ExtraParamValue", # required
|
1717
1931
|
# },
|
1718
1932
|
# ],
|
@@ -1726,14 +1940,14 @@ module Aws::Route53Domains
|
|
1726
1940
|
# address_line_2: "AddressLine",
|
1727
1941
|
# city: "City",
|
1728
1942
|
# state: "State",
|
1729
|
-
# country_code: "
|
1943
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1730
1944
|
# zip_code: "ZipCode",
|
1731
1945
|
# phone_number: "ContactNumber",
|
1732
1946
|
# email: "Email",
|
1733
1947
|
# fax: "ContactNumber",
|
1734
1948
|
# extra_params: [
|
1735
1949
|
# {
|
1736
|
-
# 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
|
1950
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1737
1951
|
# value: "ExtraParamValue", # required
|
1738
1952
|
# },
|
1739
1953
|
# ],
|
@@ -1756,12 +1970,12 @@ module Aws::Route53Domains
|
|
1756
1970
|
req.send_request(options)
|
1757
1971
|
end
|
1758
1972
|
|
1759
|
-
# Transfers a domain from the current
|
1760
|
-
# account. Note the following:
|
1973
|
+
# Transfers a domain from the current Amazon Web Services account to
|
1974
|
+
# another Amazon Web Services account. Note the following:
|
1761
1975
|
#
|
1762
|
-
# * The
|
1763
|
-
# the transfer. If the other account doesn't accept
|
1764
|
-
# within 3 days, we cancel the transfer. See
|
1976
|
+
# * The Amazon Web Services account that you're transferring the domain
|
1977
|
+
# to must accept the transfer. If the other account doesn't accept
|
1978
|
+
# the transfer within 3 days, we cancel the transfer. See
|
1765
1979
|
# [AcceptDomainTransferFromAnotherAwsAccount][1].
|
1766
1980
|
#
|
1767
1981
|
# * You can cancel the transfer before the other account accepts it. See
|
@@ -1770,13 +1984,14 @@ module Aws::Route53Domains
|
|
1770
1984
|
# * The other account can reject the transfer. See
|
1771
1985
|
# [RejectDomainTransferFromAnotherAwsAccount][3].
|
1772
1986
|
#
|
1773
|
-
# When you transfer a domain from one
|
1774
|
-
# doesn't transfer the hosted zone that is associated
|
1775
|
-
# DNS resolution isn't affected if the domain and the
|
1776
|
-
# owned by separate accounts, so transferring the hosted
|
1777
|
-
# optional. For information about transferring the hosted zone
|
1778
|
-
# another
|
1779
|
-
# Account][4] in the *Amazon Route 53
|
1987
|
+
# When you transfer a domain from one Amazon Web Services account to
|
1988
|
+
# another, Route 53 doesn't transfer the hosted zone that is associated
|
1989
|
+
# with the domain. DNS resolution isn't affected if the domain and the
|
1990
|
+
# hosted zone are owned by separate accounts, so transferring the hosted
|
1991
|
+
# zone is optional. For information about transferring the hosted zone
|
1992
|
+
# to another Amazon Web Services account, see [Migrating a Hosted Zone
|
1993
|
+
# to a Different Amazon Web Services Account][4] in the *Amazon Route 53
|
1994
|
+
# Developer Guide*.
|
1780
1995
|
#
|
1781
1996
|
# Use either [ListOperations][5] or [GetOperationDetail][6] to determine
|
1782
1997
|
# whether the operation succeeded. [GetOperationDetail][6] provides
|
@@ -1793,12 +2008,12 @@ module Aws::Route53Domains
|
|
1793
2008
|
# [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1794
2009
|
#
|
1795
2010
|
# @option params [required, String] :domain_name
|
1796
|
-
# The name of the domain that you want to transfer from the current
|
1797
|
-
# account to another account.
|
2011
|
+
# The name of the domain that you want to transfer from the current
|
2012
|
+
# Amazon Web Services account to another account.
|
1798
2013
|
#
|
1799
2014
|
# @option params [required, String] :account_id
|
1800
|
-
# The account ID of the
|
1801
|
-
# to, for example, `111122223333`.
|
2015
|
+
# The account ID of the Amazon Web Services account that you want to
|
2016
|
+
# transfer the domain to, for example, `111122223333`.
|
1802
2017
|
#
|
1803
2018
|
# @return [Types::TransferDomainToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1804
2019
|
#
|
@@ -1865,14 +2080,14 @@ module Aws::Route53Domains
|
|
1865
2080
|
# address_line_2: "AddressLine",
|
1866
2081
|
# city: "City",
|
1867
2082
|
# state: "State",
|
1868
|
-
# country_code: "
|
2083
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1869
2084
|
# zip_code: "ZipCode",
|
1870
2085
|
# phone_number: "ContactNumber",
|
1871
2086
|
# email: "Email",
|
1872
2087
|
# fax: "ContactNumber",
|
1873
2088
|
# extra_params: [
|
1874
2089
|
# {
|
1875
|
-
# 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
|
2090
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1876
2091
|
# value: "ExtraParamValue", # required
|
1877
2092
|
# },
|
1878
2093
|
# ],
|
@@ -1886,14 +2101,14 @@ module Aws::Route53Domains
|
|
1886
2101
|
# address_line_2: "AddressLine",
|
1887
2102
|
# city: "City",
|
1888
2103
|
# state: "State",
|
1889
|
-
# country_code: "
|
2104
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1890
2105
|
# zip_code: "ZipCode",
|
1891
2106
|
# phone_number: "ContactNumber",
|
1892
2107
|
# email: "Email",
|
1893
2108
|
# fax: "ContactNumber",
|
1894
2109
|
# extra_params: [
|
1895
2110
|
# {
|
1896
|
-
# 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
|
2111
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1897
2112
|
# value: "ExtraParamValue", # required
|
1898
2113
|
# },
|
1899
2114
|
# ],
|
@@ -1907,14 +2122,14 @@ module Aws::Route53Domains
|
|
1907
2122
|
# address_line_2: "AddressLine",
|
1908
2123
|
# city: "City",
|
1909
2124
|
# state: "State",
|
1910
|
-
# country_code: "
|
2125
|
+
# country_code: "AC", # accepts AC, AD, AE, AF, AG, AI, AL, AM, AN, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TP, TR, TT, TV, TW, TZ, UA, UG, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW
|
1911
2126
|
# zip_code: "ZipCode",
|
1912
2127
|
# phone_number: "ContactNumber",
|
1913
2128
|
# email: "Email",
|
1914
2129
|
# fax: "ContactNumber",
|
1915
2130
|
# extra_params: [
|
1916
2131
|
# {
|
1917
|
-
# 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
|
2132
|
+
# 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, EU_COUNTRY_OF_CITIZENSHIP
|
1918
2133
|
# value: "ExtraParamValue", # required
|
1919
2134
|
# },
|
1920
2135
|
# ],
|
@@ -1940,12 +2155,17 @@ module Aws::Route53Domains
|
|
1940
2155
|
# Amazon Registrar (for .com, .net, and .org domains) or with contact
|
1941
2156
|
# information for our registrar associate, Gandi.
|
1942
2157
|
#
|
2158
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2159
|
+
# registrant, and technical contacts.
|
2160
|
+
#
|
2161
|
+
# </note>
|
2162
|
+
#
|
1943
2163
|
# This operation affects only the contact information for the specified
|
1944
|
-
# contact type (
|
1945
|
-
# succeeds, Amazon Route 53 returns an operation ID that you can
|
1946
|
-
# with [GetOperationDetail][1] to track the progress and completion
|
1947
|
-
# the action. If the request doesn't complete successfully, the
|
1948
|
-
# registrant will be notified by email.
|
2164
|
+
# contact type (administrative, registrant, or technical). If the
|
2165
|
+
# request succeeds, Amazon Route 53 returns an operation ID that you can
|
2166
|
+
# use with [GetOperationDetail][1] to track the progress and completion
|
2167
|
+
# of the action. If the request doesn't complete successfully, the
|
2168
|
+
# domain registrant will be notified by email.
|
1949
2169
|
#
|
1950
2170
|
# By disabling the privacy service via API, you consent to the
|
1951
2171
|
# publication of the contact information provided for this domain via
|
@@ -1974,6 +2194,11 @@ module Aws::Route53Domains
|
|
1974
2194
|
# If you specify `false`, WHOIS queries return the information that you
|
1975
2195
|
# entered for the admin contact.
|
1976
2196
|
#
|
2197
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2198
|
+
# registrant, and technical contacts.
|
2199
|
+
#
|
2200
|
+
# </note>
|
2201
|
+
#
|
1977
2202
|
# @option params [Boolean] :registrant_privacy
|
1978
2203
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1979
2204
|
# you specify `true`, WHOIS ("who is") queries return contact
|
@@ -1982,6 +2207,11 @@ module Aws::Route53Domains
|
|
1982
2207
|
# If you specify `false`, WHOIS queries return the information that you
|
1983
2208
|
# entered for the registrant contact (domain owner).
|
1984
2209
|
#
|
2210
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2211
|
+
# registrant, and technical contacts.
|
2212
|
+
#
|
2213
|
+
# </note>
|
2214
|
+
#
|
1985
2215
|
# @option params [Boolean] :tech_privacy
|
1986
2216
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1987
2217
|
# you specify `true`, WHOIS ("who is") queries return contact
|
@@ -1990,6 +2220,11 @@ module Aws::Route53Domains
|
|
1990
2220
|
# If you specify `false`, WHOIS queries return the information that you
|
1991
2221
|
# entered for the technical contact.
|
1992
2222
|
#
|
2223
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2224
|
+
# registrant, and technical contacts.
|
2225
|
+
#
|
2226
|
+
# </note>
|
2227
|
+
#
|
1993
2228
|
# @return [Types::UpdateDomainContactPrivacyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1994
2229
|
#
|
1995
2230
|
# * {Types::UpdateDomainContactPrivacyResponse#operation_id #operation_id} => String
|
@@ -2101,8 +2336,8 @@ module Aws::Route53Domains
|
|
2101
2336
|
req.send_request(options)
|
2102
2337
|
end
|
2103
2338
|
|
2104
|
-
# Returns all the domain-related billing records for the current
|
2105
|
-
# account for a specified period
|
2339
|
+
# Returns all the domain-related billing records for the current Amazon
|
2340
|
+
# Web Services account for a specified period
|
2106
2341
|
#
|
2107
2342
|
# @option params [Time,DateTime,Date,Integer,String] :start
|
2108
2343
|
# The beginning date and time for the time period for which you want a
|
@@ -2117,11 +2352,12 @@ module Aws::Route53Domains
|
|
2117
2352
|
# @option params [String] :marker
|
2118
2353
|
# For an initial request for a list of billing records, omit this
|
2119
2354
|
# element. If the number of billing records that are associated with the
|
2120
|
-
# current
|
2121
|
-
# value that you specified for `MaxItems`, you can use
|
2122
|
-
# return additional billing records. Get the value of
|
2123
|
-
# from the previous response, and submit another
|
2124
|
-
# the value of `NextPageMarker` in the `Marker`
|
2355
|
+
# current Amazon Web Services account during the specified period is
|
2356
|
+
# greater than the value that you specified for `MaxItems`, you can use
|
2357
|
+
# `Marker` to return additional billing records. Get the value of
|
2358
|
+
# `NextPageMarker` from the previous response, and submit another
|
2359
|
+
# request that includes the value of `NextPageMarker` in the `Marker`
|
2360
|
+
# element.
|
2125
2361
|
#
|
2126
2362
|
# Constraints: The marker must match the value of `NextPageMarker` that
|
2127
2363
|
# was returned in the previous response.
|
@@ -2136,6 +2372,8 @@ module Aws::Route53Domains
|
|
2136
2372
|
# * {Types::ViewBillingResponse#next_page_marker #next_page_marker} => String
|
2137
2373
|
# * {Types::ViewBillingResponse#billing_records #billing_records} => Array<Types::BillingRecord>
|
2138
2374
|
#
|
2375
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2376
|
+
#
|
2139
2377
|
# @example Request syntax with placeholder values
|
2140
2378
|
#
|
2141
2379
|
# resp = client.view_billing({
|
@@ -2177,7 +2415,7 @@ module Aws::Route53Domains
|
|
2177
2415
|
params: params,
|
2178
2416
|
config: config)
|
2179
2417
|
context[:gem_name] = 'aws-sdk-route53domains'
|
2180
|
-
context[:gem_version] = '1.
|
2418
|
+
context[:gem_version] = '1.39.0'
|
2181
2419
|
Seahorse::Client::Request.new(handlers, context)
|
2182
2420
|
end
|
2183
2421
|
|