aws-sdk-route53domains 1.34.0 → 1.38.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 +337 -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,7 @@ 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'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::Route53Domains
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::Route53Domains
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::Route53Domains
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -285,6 +293,15 @@ module Aws::Route53Domains
|
|
285
293
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
286
294
|
# requests are made, and retries are disabled.
|
287
295
|
#
|
296
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
297
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
298
|
+
# will be used if available.
|
299
|
+
#
|
300
|
+
# @option options [Boolean] :use_fips_endpoint
|
301
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
302
|
+
# When a `fips` region is used, the region is normalized and this config
|
303
|
+
# is set to `true`.
|
304
|
+
#
|
288
305
|
# @option options [Boolean] :validate_params (true)
|
289
306
|
# When `true`, request parameters are validated before
|
290
307
|
# sending the request.
|
@@ -296,7 +313,7 @@ module Aws::Route53Domains
|
|
296
313
|
# seconds to wait when opening a HTTP session before raising a
|
297
314
|
# `Timeout::Error`.
|
298
315
|
#
|
299
|
-
# @option options [
|
316
|
+
# @option options [Float] :http_read_timeout (60) The default
|
300
317
|
# number of seconds to wait for response data. This value can
|
301
318
|
# safely be set per-request on the session.
|
302
319
|
#
|
@@ -312,6 +329,9 @@ module Aws::Route53Domains
|
|
312
329
|
# disables this behaviour. This value can safely be set per
|
313
330
|
# request on the session.
|
314
331
|
#
|
332
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
333
|
+
# in seconds.
|
334
|
+
#
|
315
335
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
316
336
|
# HTTP debug output will be sent to the `:logger`.
|
317
337
|
#
|
@@ -337,24 +357,32 @@ module Aws::Route53Domains
|
|
337
357
|
|
338
358
|
# @!group API Operations
|
339
359
|
|
340
|
-
# Accepts the transfer of a domain from another
|
341
|
-
#
|
342
|
-
# using
|
360
|
+
# Accepts the transfer of a domain from another Amazon Web Services
|
361
|
+
# account to the currentAmazon Web Services account. You initiate a
|
362
|
+
# transfer between Amazon Web Services accounts using
|
363
|
+
# [TransferDomainToAnotherAwsAccount][1].
|
343
364
|
#
|
344
|
-
#
|
345
|
-
#
|
365
|
+
# If you use the CLI command at
|
366
|
+
# [accept-domain-transfer-from-another-aws-account][2], use JSON format
|
367
|
+
# as input instead of text because otherwise CLI will throw an error
|
368
|
+
# from domain transfer input that includes single quotes.
|
369
|
+
#
|
370
|
+
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
371
|
+
# whether the operation succeeded. [GetOperationDetail][4] provides
|
346
372
|
# additional information, for example, `Domain Transfer from Aws Account
|
347
373
|
# 111122223333 has been cancelled`.
|
348
374
|
#
|
349
375
|
#
|
350
376
|
#
|
351
377
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
352
|
-
# [2]: https://docs.aws.amazon.com/
|
353
|
-
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/
|
378
|
+
# [2]: https://docs.aws.amazon.com/cli/latest/reference/route53domains/accept-domain-transfer-from-another-aws-account.html
|
379
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ListOperations.html
|
380
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
354
381
|
#
|
355
382
|
# @option params [required, String] :domain_name
|
356
|
-
# The name of the domain that was specified when another
|
357
|
-
# submitted a [TransferDomainToAnotherAwsAccount][1]
|
383
|
+
# The name of the domain that was specified when another Amazon Web
|
384
|
+
# Services account submitted a [TransferDomainToAnotherAwsAccount][1]
|
385
|
+
# request.
|
358
386
|
#
|
359
387
|
#
|
360
388
|
#
|
@@ -392,12 +420,14 @@ module Aws::Route53Domains
|
|
392
420
|
req.send_request(options)
|
393
421
|
end
|
394
422
|
|
395
|
-
# Cancels the transfer of a domain from the current
|
396
|
-
# another
|
397
|
-
# using
|
423
|
+
# Cancels the transfer of a domain from the current Amazon Web Services
|
424
|
+
# account to another Amazon Web Services account. You initiate a
|
425
|
+
# transfer betweenAmazon Web Services accounts using
|
426
|
+
# [TransferDomainToAnotherAwsAccount][1].
|
398
427
|
#
|
399
|
-
# You must cancel the transfer before the other
|
400
|
-
# transfer using
|
428
|
+
# You must cancel the transfer before the other Amazon Web Services
|
429
|
+
# account accepts the transfer using
|
430
|
+
# [AcceptDomainTransferFromAnotherAwsAccount][2].
|
401
431
|
#
|
402
432
|
# Use either [ListOperations][3] or [GetOperationDetail][4] to determine
|
403
433
|
# whether the operation succeeded. [GetOperationDetail][4] provides
|
@@ -413,7 +443,7 @@ module Aws::Route53Domains
|
|
413
443
|
#
|
414
444
|
# @option params [required, String] :domain_name
|
415
445
|
# The name of the domain for which you want to cancel the transfer to
|
416
|
-
# another
|
446
|
+
# another Amazon Web Services account.
|
417
447
|
#
|
418
448
|
# @return [Types::CancelDomainTransferToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
419
449
|
#
|
@@ -553,6 +583,55 @@ module Aws::Route53Domains
|
|
553
583
|
req.send_request(options)
|
554
584
|
end
|
555
585
|
|
586
|
+
# This operation deletes the specified domain. This action is permanent.
|
587
|
+
# For more information, see [Deleting a domain name registration][1].
|
588
|
+
#
|
589
|
+
# To transfer the domain registration to another registrar, use the
|
590
|
+
# transfer process that’s provided by the registrar to which you want to
|
591
|
+
# transfer the registration. Otherwise, the following apply:
|
592
|
+
#
|
593
|
+
# 1. You can’t get a refund for the cost of a deleted domain
|
594
|
+
# registration.
|
595
|
+
#
|
596
|
+
# 2. The registry for the top-level domain might hold the domain name
|
597
|
+
# for a brief time before releasing it for other users to register
|
598
|
+
# (varies by registry).
|
599
|
+
#
|
600
|
+
# 3. When the registration has been deleted, we'll send you a
|
601
|
+
# confirmation to the registrant contact. The email will come from
|
602
|
+
# `noreply@domainnameverification.net` or
|
603
|
+
# `noreply@registrar.amazon.com`.
|
604
|
+
#
|
605
|
+
#
|
606
|
+
#
|
607
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-delete.html
|
608
|
+
#
|
609
|
+
# @option params [required, String] :domain_name
|
610
|
+
# Name of the domain to be deleted.
|
611
|
+
#
|
612
|
+
# @return [Types::DeleteDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
613
|
+
#
|
614
|
+
# * {Types::DeleteDomainResponse#operation_id #operation_id} => String
|
615
|
+
#
|
616
|
+
# @example Request syntax with placeholder values
|
617
|
+
#
|
618
|
+
# resp = client.delete_domain({
|
619
|
+
# domain_name: "DomainName", # required
|
620
|
+
# })
|
621
|
+
#
|
622
|
+
# @example Response structure
|
623
|
+
#
|
624
|
+
# resp.operation_id #=> String
|
625
|
+
#
|
626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DeleteDomain AWS API Documentation
|
627
|
+
#
|
628
|
+
# @overload delete_domain(params = {})
|
629
|
+
# @param [Hash] params ({})
|
630
|
+
def delete_domain(params = {}, options = {})
|
631
|
+
req = build_request(:delete_domain, params)
|
632
|
+
req.send_request(options)
|
633
|
+
end
|
634
|
+
|
556
635
|
# This operation deletes the specified tags for a domain.
|
557
636
|
#
|
558
637
|
# All tag operations are eventually consistent; subsequent operations
|
@@ -641,7 +720,8 @@ module Aws::Route53Domains
|
|
641
720
|
|
642
721
|
# This operation configures Amazon Route 53 to automatically renew the
|
643
722
|
# specified domain before the domain registration expires. The cost of
|
644
|
-
# renewing your domain registration is billed to your
|
723
|
+
# renewing your domain registration is billed to your Amazon Web
|
724
|
+
# Services account.
|
645
725
|
#
|
646
726
|
# The period during which you can renew a domain name varies by TLD. For
|
647
727
|
# a list of TLDs and their renewal policies, see [Domains That You Can
|
@@ -744,8 +824,9 @@ module Aws::Route53Domains
|
|
744
824
|
end
|
745
825
|
|
746
826
|
# This operation returns detailed information about a specified domain
|
747
|
-
# that is associated with the current
|
748
|
-
# for the domain is also returned as part of the
|
827
|
+
# that is associated with the current Amazon Web Services account.
|
828
|
+
# Contact information for the domain is also returned as part of the
|
829
|
+
# output.
|
749
830
|
#
|
750
831
|
# @option params [required, String] :domain_name
|
751
832
|
# The name of the domain that you want to get detailed information
|
@@ -797,13 +878,13 @@ module Aws::Route53Domains
|
|
797
878
|
# resp.admin_contact.address_line_2 #=> String
|
798
879
|
# resp.admin_contact.city #=> String
|
799
880
|
# resp.admin_contact.state #=> String
|
800
|
-
# 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"
|
881
|
+
# 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"
|
801
882
|
# resp.admin_contact.zip_code #=> String
|
802
883
|
# resp.admin_contact.phone_number #=> String
|
803
884
|
# resp.admin_contact.email #=> String
|
804
885
|
# resp.admin_contact.fax #=> String
|
805
886
|
# resp.admin_contact.extra_params #=> Array
|
806
|
-
# 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"
|
887
|
+
# 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"
|
807
888
|
# resp.admin_contact.extra_params[0].value #=> String
|
808
889
|
# resp.registrant_contact.first_name #=> String
|
809
890
|
# resp.registrant_contact.last_name #=> String
|
@@ -813,13 +894,13 @@ module Aws::Route53Domains
|
|
813
894
|
# resp.registrant_contact.address_line_2 #=> String
|
814
895
|
# resp.registrant_contact.city #=> String
|
815
896
|
# resp.registrant_contact.state #=> String
|
816
|
-
# 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"
|
897
|
+
# 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"
|
817
898
|
# resp.registrant_contact.zip_code #=> String
|
818
899
|
# resp.registrant_contact.phone_number #=> String
|
819
900
|
# resp.registrant_contact.email #=> String
|
820
901
|
# resp.registrant_contact.fax #=> String
|
821
902
|
# resp.registrant_contact.extra_params #=> Array
|
822
|
-
# 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"
|
903
|
+
# 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"
|
823
904
|
# resp.registrant_contact.extra_params[0].value #=> String
|
824
905
|
# resp.tech_contact.first_name #=> String
|
825
906
|
# resp.tech_contact.last_name #=> String
|
@@ -829,13 +910,13 @@ module Aws::Route53Domains
|
|
829
910
|
# resp.tech_contact.address_line_2 #=> String
|
830
911
|
# resp.tech_contact.city #=> String
|
831
912
|
# resp.tech_contact.state #=> String
|
832
|
-
# 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"
|
913
|
+
# 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"
|
833
914
|
# resp.tech_contact.zip_code #=> String
|
834
915
|
# resp.tech_contact.phone_number #=> String
|
835
916
|
# resp.tech_contact.email #=> String
|
836
917
|
# resp.tech_contact.fax #=> String
|
837
918
|
# resp.tech_contact.extra_params #=> Array
|
838
|
-
# 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"
|
919
|
+
# 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"
|
839
920
|
# resp.tech_contact.extra_params[0].value #=> String
|
840
921
|
# resp.admin_privacy #=> Boolean
|
841
922
|
# resp.registrant_privacy #=> Boolean
|
@@ -974,16 +1055,26 @@ module Aws::Route53Domains
|
|
974
1055
|
end
|
975
1056
|
|
976
1057
|
# This operation returns all the domain names registered with Amazon
|
977
|
-
# Route 53 for the current
|
1058
|
+
# Route 53 for the current Amazon Web Services account if no filtering
|
1059
|
+
# conditions are used.
|
1060
|
+
#
|
1061
|
+
# @option params [Array<Types::FilterCondition>] :filter_conditions
|
1062
|
+
# A complex type that contains information about the filters applied
|
1063
|
+
# during the `ListDomains` request. The filter conditions can include
|
1064
|
+
# domain name and domain expiration.
|
1065
|
+
#
|
1066
|
+
# @option params [Types::SortCondition] :sort_condition
|
1067
|
+
# A complex type that contains information about the requested ordering
|
1068
|
+
# of domains in the returned list.
|
978
1069
|
#
|
979
1070
|
# @option params [String] :marker
|
980
1071
|
# For an initial request for a list of domains, omit this element. If
|
981
|
-
# the number of domains that are associated with the current
|
982
|
-
# is greater than the value that you specified for
|
983
|
-
# use `Marker` to return additional domains. Get the
|
984
|
-
# `NextPageMarker` from the previous response, and submit
|
985
|
-
# request that includes the value of `NextPageMarker` in the
|
986
|
-
# element.
|
1072
|
+
# the number of domains that are associated with the current Amazon Web
|
1073
|
+
# Services account is greater than the value that you specified for
|
1074
|
+
# `MaxItems`, you can use `Marker` to return additional domains. Get the
|
1075
|
+
# value of `NextPageMarker` from the previous response, and submit
|
1076
|
+
# another request that includes the value of `NextPageMarker` in the
|
1077
|
+
# `Marker` element.
|
987
1078
|
#
|
988
1079
|
# Constraints: The marker must match the value specified in the previous
|
989
1080
|
# request.
|
@@ -1003,6 +1094,17 @@ module Aws::Route53Domains
|
|
1003
1094
|
# @example Request syntax with placeholder values
|
1004
1095
|
#
|
1005
1096
|
# resp = client.list_domains({
|
1097
|
+
# filter_conditions: [
|
1098
|
+
# {
|
1099
|
+
# name: "DomainName", # required, accepts DomainName, Expiry
|
1100
|
+
# operator: "LE", # required, accepts LE, GE, BEGINS_WITH
|
1101
|
+
# values: ["Value"], # required
|
1102
|
+
# },
|
1103
|
+
# ],
|
1104
|
+
# sort_condition: {
|
1105
|
+
# name: "DomainName", # required, accepts DomainName, Expiry
|
1106
|
+
# sort_order: "ASC", # required, accepts ASC, DESC
|
1107
|
+
# },
|
1006
1108
|
# marker: "PageMarker",
|
1007
1109
|
# max_items: 1,
|
1008
1110
|
# })
|
@@ -1029,6 +1131,8 @@ module Aws::Route53Domains
|
|
1029
1131
|
# operation ID and that have ever been performed on domains that were
|
1030
1132
|
# registered by the current account.
|
1031
1133
|
#
|
1134
|
+
# This command runs only in the us-east-1 Region.
|
1135
|
+
#
|
1032
1136
|
# @option params [Time,DateTime,Date,Integer,String] :submitted_since
|
1033
1137
|
# An optional parameter that lets you get information about all the
|
1034
1138
|
# operations that you submitted after a specified date and time. Specify
|
@@ -1081,6 +1185,83 @@ module Aws::Route53Domains
|
|
1081
1185
|
req.send_request(options)
|
1082
1186
|
end
|
1083
1187
|
|
1188
|
+
# Lists the following prices for either all the TLDs supported by
|
1189
|
+
# Route 53, or the specified TLD:
|
1190
|
+
#
|
1191
|
+
# * Registration
|
1192
|
+
#
|
1193
|
+
# * Transfer
|
1194
|
+
#
|
1195
|
+
# * Owner change
|
1196
|
+
#
|
1197
|
+
# * Domain renewal
|
1198
|
+
#
|
1199
|
+
# * Domain restoration
|
1200
|
+
#
|
1201
|
+
# @option params [String] :tld
|
1202
|
+
# The TLD for which you want to receive the pricing information. For
|
1203
|
+
# example. `.net`.
|
1204
|
+
#
|
1205
|
+
# If a `Tld` value is not provided, a list of prices for all TLDs
|
1206
|
+
# supported by Route 53 is returned.
|
1207
|
+
#
|
1208
|
+
# @option params [String] :marker
|
1209
|
+
# For an initial request for a list of prices, omit this element. If the
|
1210
|
+
# number of prices that are not yet complete is greater than the value
|
1211
|
+
# that you specified for `MaxItems`, you can use `Marker` to return
|
1212
|
+
# additional prices. Get the value of `NextPageMarker` from the previous
|
1213
|
+
# response, and submit another request that includes the value of
|
1214
|
+
# `NextPageMarker` in the `Marker` element.
|
1215
|
+
#
|
1216
|
+
# Used only for all TLDs. If you specify a TLD, don't specify a
|
1217
|
+
# `Marker`.
|
1218
|
+
#
|
1219
|
+
# @option params [Integer] :max_items
|
1220
|
+
# Number of `Prices` to be returned.
|
1221
|
+
#
|
1222
|
+
# Used only for all TLDs. If you specify a TLD, don't specify a
|
1223
|
+
# `MaxItems`.
|
1224
|
+
#
|
1225
|
+
# @return [Types::ListPricesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1226
|
+
#
|
1227
|
+
# * {Types::ListPricesResponse#prices #prices} => Array<Types::DomainPrice>
|
1228
|
+
# * {Types::ListPricesResponse#next_page_marker #next_page_marker} => String
|
1229
|
+
#
|
1230
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1231
|
+
#
|
1232
|
+
# @example Request syntax with placeholder values
|
1233
|
+
#
|
1234
|
+
# resp = client.list_prices({
|
1235
|
+
# tld: "TldName",
|
1236
|
+
# marker: "PageMarker",
|
1237
|
+
# max_items: 1,
|
1238
|
+
# })
|
1239
|
+
#
|
1240
|
+
# @example Response structure
|
1241
|
+
#
|
1242
|
+
# resp.prices #=> Array
|
1243
|
+
# resp.prices[0].name #=> String
|
1244
|
+
# resp.prices[0].registration_price.price #=> Float
|
1245
|
+
# resp.prices[0].registration_price.currency #=> String
|
1246
|
+
# resp.prices[0].transfer_price.price #=> Float
|
1247
|
+
# resp.prices[0].transfer_price.currency #=> String
|
1248
|
+
# resp.prices[0].renewal_price.price #=> Float
|
1249
|
+
# resp.prices[0].renewal_price.currency #=> String
|
1250
|
+
# resp.prices[0].change_ownership_price.price #=> Float
|
1251
|
+
# resp.prices[0].change_ownership_price.currency #=> String
|
1252
|
+
# resp.prices[0].restoration_price.price #=> Float
|
1253
|
+
# resp.prices[0].restoration_price.currency #=> String
|
1254
|
+
# resp.next_page_marker #=> String
|
1255
|
+
#
|
1256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListPrices AWS API Documentation
|
1257
|
+
#
|
1258
|
+
# @overload list_prices(params = {})
|
1259
|
+
# @param [Hash] params ({})
|
1260
|
+
def list_prices(params = {}, options = {})
|
1261
|
+
req = build_request(:list_prices, params)
|
1262
|
+
req.send_request(options)
|
1263
|
+
end
|
1264
|
+
|
1084
1265
|
# This operation returns all of the tags that are associated with the
|
1085
1266
|
# specified domain.
|
1086
1267
|
#
|
@@ -1135,16 +1316,22 @@ module Aws::Route53Domains
|
|
1135
1316
|
# contact information either for Amazon Registrar (for .com, .net, and
|
1136
1317
|
# .org domains) or for our registrar associate, Gandi (for all other
|
1137
1318
|
# TLDs). If you don't enable privacy protection, WHOIS queries return
|
1138
|
-
# the information that you entered for the
|
1139
|
-
# contacts.
|
1319
|
+
# the information that you entered for the administrative, registrant,
|
1320
|
+
# and technical contacts.
|
1321
|
+
#
|
1322
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1323
|
+
# registrant, and technical contacts.
|
1324
|
+
#
|
1325
|
+
# </note>
|
1140
1326
|
#
|
1141
1327
|
# * If registration is successful, returns an operation ID that you can
|
1142
1328
|
# use to track the progress and completion of the action. If the
|
1143
1329
|
# request is not completed successfully, the domain registrant is
|
1144
1330
|
# notified by email.
|
1145
1331
|
#
|
1146
|
-
# * Charges your
|
1147
|
-
# For more information, see [Amazon Route 53
|
1332
|
+
# * Charges your Amazon Web Services account an amount based on the
|
1333
|
+
# top-level domain. For more information, see [Amazon Route 53
|
1334
|
+
# Pricing][1].
|
1148
1335
|
#
|
1149
1336
|
#
|
1150
1337
|
#
|
@@ -1234,6 +1421,11 @@ module Aws::Route53Domains
|
|
1234
1421
|
# If you specify `false`, WHOIS queries return the information that you
|
1235
1422
|
# entered for the admin contact.
|
1236
1423
|
#
|
1424
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1425
|
+
# registrant, and technical contacts.
|
1426
|
+
#
|
1427
|
+
# </note>
|
1428
|
+
#
|
1237
1429
|
# Default: `true`
|
1238
1430
|
#
|
1239
1431
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
@@ -1244,6 +1436,11 @@ module Aws::Route53Domains
|
|
1244
1436
|
# If you specify `false`, WHOIS queries return the information that you
|
1245
1437
|
# entered for the registrant contact (the domain owner).
|
1246
1438
|
#
|
1439
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1440
|
+
# registrant, and technical contacts.
|
1441
|
+
#
|
1442
|
+
# </note>
|
1443
|
+
#
|
1247
1444
|
# Default: `true`
|
1248
1445
|
#
|
1249
1446
|
# @option params [Boolean] :privacy_protect_tech_contact
|
@@ -1254,6 +1451,11 @@ module Aws::Route53Domains
|
|
1254
1451
|
# If you specify `false`, WHOIS queries return the information that you
|
1255
1452
|
# entered for the technical contact.
|
1256
1453
|
#
|
1454
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1455
|
+
# registrant, and technical contacts.
|
1456
|
+
#
|
1457
|
+
# </note>
|
1458
|
+
#
|
1257
1459
|
# Default: `true`
|
1258
1460
|
#
|
1259
1461
|
# @return [Types::RegisterDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1276,14 +1478,14 @@ module Aws::Route53Domains
|
|
1276
1478
|
# address_line_2: "AddressLine",
|
1277
1479
|
# city: "City",
|
1278
1480
|
# state: "State",
|
1279
|
-
# country_code: "
|
1481
|
+
# 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
|
1280
1482
|
# zip_code: "ZipCode",
|
1281
1483
|
# phone_number: "ContactNumber",
|
1282
1484
|
# email: "Email",
|
1283
1485
|
# fax: "ContactNumber",
|
1284
1486
|
# extra_params: [
|
1285
1487
|
# {
|
1286
|
-
# 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
|
1488
|
+
# 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
|
1287
1489
|
# value: "ExtraParamValue", # required
|
1288
1490
|
# },
|
1289
1491
|
# ],
|
@@ -1297,14 +1499,14 @@ module Aws::Route53Domains
|
|
1297
1499
|
# address_line_2: "AddressLine",
|
1298
1500
|
# city: "City",
|
1299
1501
|
# state: "State",
|
1300
|
-
# country_code: "
|
1502
|
+
# 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
|
1301
1503
|
# zip_code: "ZipCode",
|
1302
1504
|
# phone_number: "ContactNumber",
|
1303
1505
|
# email: "Email",
|
1304
1506
|
# fax: "ContactNumber",
|
1305
1507
|
# extra_params: [
|
1306
1508
|
# {
|
1307
|
-
# 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
|
1509
|
+
# 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
|
1308
1510
|
# value: "ExtraParamValue", # required
|
1309
1511
|
# },
|
1310
1512
|
# ],
|
@@ -1318,14 +1520,14 @@ module Aws::Route53Domains
|
|
1318
1520
|
# address_line_2: "AddressLine",
|
1319
1521
|
# city: "City",
|
1320
1522
|
# state: "State",
|
1321
|
-
# country_code: "
|
1523
|
+
# 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
|
1322
1524
|
# zip_code: "ZipCode",
|
1323
1525
|
# phone_number: "ContactNumber",
|
1324
1526
|
# email: "Email",
|
1325
1527
|
# fax: "ContactNumber",
|
1326
1528
|
# extra_params: [
|
1327
1529
|
# {
|
1328
|
-
# 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
|
1530
|
+
# 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
|
1329
1531
|
# value: "ExtraParamValue", # required
|
1330
1532
|
# },
|
1331
1533
|
# ],
|
@@ -1348,9 +1550,10 @@ module Aws::Route53Domains
|
|
1348
1550
|
req.send_request(options)
|
1349
1551
|
end
|
1350
1552
|
|
1351
|
-
# Rejects the transfer of a domain from another
|
1352
|
-
# current
|
1353
|
-
# using
|
1553
|
+
# Rejects the transfer of a domain from another Amazon Web Services
|
1554
|
+
# account to the current Amazon Web Services account. You initiate a
|
1555
|
+
# transfer betweenAmazon Web Services accounts using
|
1556
|
+
# [TransferDomainToAnotherAwsAccount][1].
|
1354
1557
|
#
|
1355
1558
|
# Use either [ListOperations][2] or [GetOperationDetail][3] to determine
|
1356
1559
|
# whether the operation succeeded. [GetOperationDetail][3] provides
|
@@ -1364,8 +1567,9 @@ module Aws::Route53Domains
|
|
1364
1567
|
# [3]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1365
1568
|
#
|
1366
1569
|
# @option params [required, String] :domain_name
|
1367
|
-
# The name of the domain that was specified when another
|
1368
|
-
# submitted a [TransferDomainToAnotherAwsAccount][1]
|
1570
|
+
# The name of the domain that was specified when another Amazon Web
|
1571
|
+
# Services account submitted a [TransferDomainToAnotherAwsAccount][1]
|
1572
|
+
# request.
|
1369
1573
|
#
|
1370
1574
|
#
|
1371
1575
|
#
|
@@ -1395,7 +1599,8 @@ module Aws::Route53Domains
|
|
1395
1599
|
end
|
1396
1600
|
|
1397
1601
|
# This operation renews a domain for the specified number of years. The
|
1398
|
-
# cost of renewing your domain is billed to your
|
1602
|
+
# cost of renewing your domain is billed to your Amazon Web Services
|
1603
|
+
# account.
|
1399
1604
|
#
|
1400
1605
|
# We recommend that you renew your domain several weeks before the
|
1401
1606
|
# expiration date. Some TLD registries delete domains before the
|
@@ -1531,8 +1736,9 @@ module Aws::Route53Domains
|
|
1531
1736
|
# Route 53, see [Transferring Registration for a Domain to Amazon
|
1532
1737
|
# Route 53][1] in the *Amazon Route 53 Developer Guide*.
|
1533
1738
|
#
|
1534
|
-
# * For information about how to transfer a domain from one
|
1535
|
-
# to another, see
|
1739
|
+
# * For information about how to transfer a domain from one Amazon Web
|
1740
|
+
# Services account to another, see
|
1741
|
+
# [TransferDomainToAnotherAwsAccount][2].
|
1536
1742
|
#
|
1537
1743
|
# * For information about how to transfer a domain to another domain
|
1538
1744
|
# registrar, see [Transferring a Domain from Amazon Route 53 to
|
@@ -1626,6 +1832,11 @@ module Aws::Route53Domains
|
|
1626
1832
|
# If you specify `false`, WHOIS queries return the information that you
|
1627
1833
|
# entered for the admin contact.
|
1628
1834
|
#
|
1835
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1836
|
+
# registrant, and technical contacts.
|
1837
|
+
#
|
1838
|
+
# </note>
|
1839
|
+
#
|
1629
1840
|
# Default: `true`
|
1630
1841
|
#
|
1631
1842
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
@@ -1636,6 +1847,11 @@ module Aws::Route53Domains
|
|
1636
1847
|
# If you specify `false`, WHOIS queries return the information that you
|
1637
1848
|
# entered for the registrant contact (domain owner).
|
1638
1849
|
#
|
1850
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1851
|
+
# registrant, and technical contacts.
|
1852
|
+
#
|
1853
|
+
# </note>
|
1854
|
+
#
|
1639
1855
|
# Default: `true`
|
1640
1856
|
#
|
1641
1857
|
# @option params [Boolean] :privacy_protect_tech_contact
|
@@ -1646,6 +1862,11 @@ module Aws::Route53Domains
|
|
1646
1862
|
# If you specify `false`, WHOIS queries return the information that you
|
1647
1863
|
# entered for the technical contact.
|
1648
1864
|
#
|
1865
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1866
|
+
# registrant, and technical contacts.
|
1867
|
+
#
|
1868
|
+
# </note>
|
1869
|
+
#
|
1649
1870
|
# Default: `true`
|
1650
1871
|
#
|
1651
1872
|
# @return [Types::TransferDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1675,14 +1896,14 @@ module Aws::Route53Domains
|
|
1675
1896
|
# address_line_2: "AddressLine",
|
1676
1897
|
# city: "City",
|
1677
1898
|
# state: "State",
|
1678
|
-
# country_code: "
|
1899
|
+
# 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
|
1679
1900
|
# zip_code: "ZipCode",
|
1680
1901
|
# phone_number: "ContactNumber",
|
1681
1902
|
# email: "Email",
|
1682
1903
|
# fax: "ContactNumber",
|
1683
1904
|
# extra_params: [
|
1684
1905
|
# {
|
1685
|
-
# 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
|
1906
|
+
# 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
|
1686
1907
|
# value: "ExtraParamValue", # required
|
1687
1908
|
# },
|
1688
1909
|
# ],
|
@@ -1696,14 +1917,14 @@ module Aws::Route53Domains
|
|
1696
1917
|
# address_line_2: "AddressLine",
|
1697
1918
|
# city: "City",
|
1698
1919
|
# state: "State",
|
1699
|
-
# country_code: "
|
1920
|
+
# 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
|
1700
1921
|
# zip_code: "ZipCode",
|
1701
1922
|
# phone_number: "ContactNumber",
|
1702
1923
|
# email: "Email",
|
1703
1924
|
# fax: "ContactNumber",
|
1704
1925
|
# extra_params: [
|
1705
1926
|
# {
|
1706
|
-
# 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
|
1927
|
+
# 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
|
1707
1928
|
# value: "ExtraParamValue", # required
|
1708
1929
|
# },
|
1709
1930
|
# ],
|
@@ -1717,14 +1938,14 @@ module Aws::Route53Domains
|
|
1717
1938
|
# address_line_2: "AddressLine",
|
1718
1939
|
# city: "City",
|
1719
1940
|
# state: "State",
|
1720
|
-
# country_code: "
|
1941
|
+
# 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
|
1721
1942
|
# zip_code: "ZipCode",
|
1722
1943
|
# phone_number: "ContactNumber",
|
1723
1944
|
# email: "Email",
|
1724
1945
|
# fax: "ContactNumber",
|
1725
1946
|
# extra_params: [
|
1726
1947
|
# {
|
1727
|
-
# 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
|
1948
|
+
# 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
|
1728
1949
|
# value: "ExtraParamValue", # required
|
1729
1950
|
# },
|
1730
1951
|
# ],
|
@@ -1747,12 +1968,12 @@ module Aws::Route53Domains
|
|
1747
1968
|
req.send_request(options)
|
1748
1969
|
end
|
1749
1970
|
|
1750
|
-
# Transfers a domain from the current
|
1751
|
-
# account. Note the following:
|
1971
|
+
# Transfers a domain from the current Amazon Web Services account to
|
1972
|
+
# another Amazon Web Services account. Note the following:
|
1752
1973
|
#
|
1753
|
-
# * The
|
1754
|
-
# the transfer. If the other account doesn't accept
|
1755
|
-
# within 3 days, we cancel the transfer. See
|
1974
|
+
# * The Amazon Web Services account that you're transferring the domain
|
1975
|
+
# to must accept the transfer. If the other account doesn't accept
|
1976
|
+
# the transfer within 3 days, we cancel the transfer. See
|
1756
1977
|
# [AcceptDomainTransferFromAnotherAwsAccount][1].
|
1757
1978
|
#
|
1758
1979
|
# * You can cancel the transfer before the other account accepts it. See
|
@@ -1761,13 +1982,14 @@ module Aws::Route53Domains
|
|
1761
1982
|
# * The other account can reject the transfer. See
|
1762
1983
|
# [RejectDomainTransferFromAnotherAwsAccount][3].
|
1763
1984
|
#
|
1764
|
-
# When you transfer a domain from one
|
1765
|
-
# doesn't transfer the hosted zone that is associated
|
1766
|
-
# DNS resolution isn't affected if the domain and the
|
1767
|
-
# owned by separate accounts, so transferring the hosted
|
1768
|
-
# optional. For information about transferring the hosted zone
|
1769
|
-
# another
|
1770
|
-
# Account][4] in the *Amazon Route 53
|
1985
|
+
# When you transfer a domain from one Amazon Web Services account to
|
1986
|
+
# another, Route 53 doesn't transfer the hosted zone that is associated
|
1987
|
+
# with the domain. DNS resolution isn't affected if the domain and the
|
1988
|
+
# hosted zone are owned by separate accounts, so transferring the hosted
|
1989
|
+
# zone is optional. For information about transferring the hosted zone
|
1990
|
+
# to another Amazon Web Services account, see [Migrating a Hosted Zone
|
1991
|
+
# to a Different Amazon Web Services Account][4] in the *Amazon Route 53
|
1992
|
+
# Developer Guide*.
|
1771
1993
|
#
|
1772
1994
|
# Use either [ListOperations][5] or [GetOperationDetail][6] to determine
|
1773
1995
|
# whether the operation succeeded. [GetOperationDetail][6] provides
|
@@ -1784,12 +2006,12 @@ module Aws::Route53Domains
|
|
1784
2006
|
# [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
|
1785
2007
|
#
|
1786
2008
|
# @option params [required, String] :domain_name
|
1787
|
-
# The name of the domain that you want to transfer from the current
|
1788
|
-
# account to another account.
|
2009
|
+
# The name of the domain that you want to transfer from the current
|
2010
|
+
# Amazon Web Services account to another account.
|
1789
2011
|
#
|
1790
2012
|
# @option params [required, String] :account_id
|
1791
|
-
# The account ID of the
|
1792
|
-
# to, for example, `111122223333`.
|
2013
|
+
# The account ID of the Amazon Web Services account that you want to
|
2014
|
+
# transfer the domain to, for example, `111122223333`.
|
1793
2015
|
#
|
1794
2016
|
# @return [Types::TransferDomainToAnotherAwsAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1795
2017
|
#
|
@@ -1856,14 +2078,14 @@ module Aws::Route53Domains
|
|
1856
2078
|
# address_line_2: "AddressLine",
|
1857
2079
|
# city: "City",
|
1858
2080
|
# state: "State",
|
1859
|
-
# country_code: "
|
2081
|
+
# 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
|
1860
2082
|
# zip_code: "ZipCode",
|
1861
2083
|
# phone_number: "ContactNumber",
|
1862
2084
|
# email: "Email",
|
1863
2085
|
# fax: "ContactNumber",
|
1864
2086
|
# extra_params: [
|
1865
2087
|
# {
|
1866
|
-
# 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
|
2088
|
+
# 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
|
1867
2089
|
# value: "ExtraParamValue", # required
|
1868
2090
|
# },
|
1869
2091
|
# ],
|
@@ -1877,14 +2099,14 @@ module Aws::Route53Domains
|
|
1877
2099
|
# address_line_2: "AddressLine",
|
1878
2100
|
# city: "City",
|
1879
2101
|
# state: "State",
|
1880
|
-
# country_code: "
|
2102
|
+
# 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
|
1881
2103
|
# zip_code: "ZipCode",
|
1882
2104
|
# phone_number: "ContactNumber",
|
1883
2105
|
# email: "Email",
|
1884
2106
|
# fax: "ContactNumber",
|
1885
2107
|
# extra_params: [
|
1886
2108
|
# {
|
1887
|
-
# 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
|
2109
|
+
# 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
|
1888
2110
|
# value: "ExtraParamValue", # required
|
1889
2111
|
# },
|
1890
2112
|
# ],
|
@@ -1898,14 +2120,14 @@ module Aws::Route53Domains
|
|
1898
2120
|
# address_line_2: "AddressLine",
|
1899
2121
|
# city: "City",
|
1900
2122
|
# state: "State",
|
1901
|
-
# country_code: "
|
2123
|
+
# 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
|
1902
2124
|
# zip_code: "ZipCode",
|
1903
2125
|
# phone_number: "ContactNumber",
|
1904
2126
|
# email: "Email",
|
1905
2127
|
# fax: "ContactNumber",
|
1906
2128
|
# extra_params: [
|
1907
2129
|
# {
|
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
|
2130
|
+
# 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
|
1909
2131
|
# value: "ExtraParamValue", # required
|
1910
2132
|
# },
|
1911
2133
|
# ],
|
@@ -1931,12 +2153,17 @@ module Aws::Route53Domains
|
|
1931
2153
|
# Amazon Registrar (for .com, .net, and .org domains) or with contact
|
1932
2154
|
# information for our registrar associate, Gandi.
|
1933
2155
|
#
|
2156
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2157
|
+
# registrant, and technical contacts.
|
2158
|
+
#
|
2159
|
+
# </note>
|
2160
|
+
#
|
1934
2161
|
# This operation affects only the contact information for the specified
|
1935
|
-
# contact type (
|
1936
|
-
# succeeds, Amazon Route 53 returns an operation ID that you can
|
1937
|
-
# with [GetOperationDetail][1] to track the progress and completion
|
1938
|
-
# the action. If the request doesn't complete successfully, the
|
1939
|
-
# registrant will be notified by email.
|
2162
|
+
# contact type (administrative, registrant, or technical). If the
|
2163
|
+
# request succeeds, Amazon Route 53 returns an operation ID that you can
|
2164
|
+
# use with [GetOperationDetail][1] to track the progress and completion
|
2165
|
+
# of the action. If the request doesn't complete successfully, the
|
2166
|
+
# domain registrant will be notified by email.
|
1940
2167
|
#
|
1941
2168
|
# By disabling the privacy service via API, you consent to the
|
1942
2169
|
# publication of the contact information provided for this domain via
|
@@ -1965,6 +2192,11 @@ module Aws::Route53Domains
|
|
1965
2192
|
# If you specify `false`, WHOIS queries return the information that you
|
1966
2193
|
# entered for the admin contact.
|
1967
2194
|
#
|
2195
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2196
|
+
# registrant, and technical contacts.
|
2197
|
+
#
|
2198
|
+
# </note>
|
2199
|
+
#
|
1968
2200
|
# @option params [Boolean] :registrant_privacy
|
1969
2201
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1970
2202
|
# you specify `true`, WHOIS ("who is") queries return contact
|
@@ -1973,6 +2205,11 @@ module Aws::Route53Domains
|
|
1973
2205
|
# If you specify `false`, WHOIS queries return the information that you
|
1974
2206
|
# entered for the registrant contact (domain owner).
|
1975
2207
|
#
|
2208
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2209
|
+
# registrant, and technical contacts.
|
2210
|
+
#
|
2211
|
+
# </note>
|
2212
|
+
#
|
1976
2213
|
# @option params [Boolean] :tech_privacy
|
1977
2214
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1978
2215
|
# you specify `true`, WHOIS ("who is") queries return contact
|
@@ -1981,6 +2218,11 @@ module Aws::Route53Domains
|
|
1981
2218
|
# If you specify `false`, WHOIS queries return the information that you
|
1982
2219
|
# entered for the technical contact.
|
1983
2220
|
#
|
2221
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2222
|
+
# registrant, and technical contacts.
|
2223
|
+
#
|
2224
|
+
# </note>
|
2225
|
+
#
|
1984
2226
|
# @return [Types::UpdateDomainContactPrivacyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1985
2227
|
#
|
1986
2228
|
# * {Types::UpdateDomainContactPrivacyResponse#operation_id #operation_id} => String
|
@@ -2092,8 +2334,8 @@ module Aws::Route53Domains
|
|
2092
2334
|
req.send_request(options)
|
2093
2335
|
end
|
2094
2336
|
|
2095
|
-
# Returns all the domain-related billing records for the current
|
2096
|
-
# account for a specified period
|
2337
|
+
# Returns all the domain-related billing records for the current Amazon
|
2338
|
+
# Web Services account for a specified period
|
2097
2339
|
#
|
2098
2340
|
# @option params [Time,DateTime,Date,Integer,String] :start
|
2099
2341
|
# The beginning date and time for the time period for which you want a
|
@@ -2108,11 +2350,12 @@ module Aws::Route53Domains
|
|
2108
2350
|
# @option params [String] :marker
|
2109
2351
|
# For an initial request for a list of billing records, omit this
|
2110
2352
|
# element. If the number of billing records that are associated with the
|
2111
|
-
# current
|
2112
|
-
# value that you specified for `MaxItems`, you can use
|
2113
|
-
# return additional billing records. Get the value of
|
2114
|
-
# from the previous response, and submit another
|
2115
|
-
# the value of `NextPageMarker` in the `Marker`
|
2353
|
+
# current Amazon Web Services account during the specified period is
|
2354
|
+
# greater than the value that you specified for `MaxItems`, you can use
|
2355
|
+
# `Marker` to return additional billing records. Get the value of
|
2356
|
+
# `NextPageMarker` from the previous response, and submit another
|
2357
|
+
# request that includes the value of `NextPageMarker` in the `Marker`
|
2358
|
+
# element.
|
2116
2359
|
#
|
2117
2360
|
# Constraints: The marker must match the value of `NextPageMarker` that
|
2118
2361
|
# was returned in the previous response.
|
@@ -2127,6 +2370,8 @@ module Aws::Route53Domains
|
|
2127
2370
|
# * {Types::ViewBillingResponse#next_page_marker #next_page_marker} => String
|
2128
2371
|
# * {Types::ViewBillingResponse#billing_records #billing_records} => Array<Types::BillingRecord>
|
2129
2372
|
#
|
2373
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2374
|
+
#
|
2130
2375
|
# @example Request syntax with placeholder values
|
2131
2376
|
#
|
2132
2377
|
# resp = client.view_billing({
|
@@ -2168,7 +2413,7 @@ module Aws::Route53Domains
|
|
2168
2413
|
params: params,
|
2169
2414
|
config: config)
|
2170
2415
|
context[:gem_name] = 'aws-sdk-route53domains'
|
2171
|
-
context[:gem_version] = '1.
|
2416
|
+
context[:gem_version] = '1.38.0'
|
2172
2417
|
Seahorse::Client::Request.new(handlers, context)
|
2173
2418
|
end
|
2174
2419
|
|