aws-sdk-route53domains 1.55.0 → 1.57.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53domains/client.rb +252 -91
- data/lib/aws-sdk-route53domains/client_api.rb +8 -0
- data/lib/aws-sdk-route53domains/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-route53domains/types.rb +136 -66
- data/lib/aws-sdk-route53domains.rb +1 -1
- data/sig/client.rbs +74 -6
- data/sig/types.rbs +17 -9
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a30492d12bb0a38e06aee1df912639a2fc2264c7a01923177e1f5451fbc9dcac
|
4
|
+
data.tar.gz: 4577036f5f3b2043d9457e2e7a0d40de29104709ec2a885446329333fd8cd028
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc8cea3e18d23ea354de4637a1f5572edf31b2f21c05bf062352d225e81d22623b08c075ef3df96fb66d35e334c2cda59fee7cb1c27b9606fc5196dc13e98fdd
|
7
|
+
data.tar.gz: e4c4354b718ec97cfa7d43537038bdbcbb44b4b11ed0711c24f227b56765e77f57855cdabaf3b28db3e7a899182fbd3d924dba46220fbf3512af37e11e181daf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.57.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.56.0 (2024-02-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.
|
13
|
+
|
4
14
|
1.55.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.57.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::Route53Domains
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::Route53Domains
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::Route53Domains
|
|
347
356
|
# @option options [Aws::Route53Domains::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Route53Domains::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
375
|
-
#
|
376
|
-
#
|
377
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
378
409
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
382
412
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
388
415
|
#
|
389
|
-
# @option options [
|
390
|
-
#
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -608,7 +632,7 @@ module Aws::Route53Domains
|
|
608
632
|
#
|
609
633
|
# @example Response structure
|
610
634
|
#
|
611
|
-
# resp.availability #=> String, one of "AVAILABLE", "AVAILABLE_RESERVED", "AVAILABLE_PREORDER", "UNAVAILABLE", "UNAVAILABLE_PREMIUM", "UNAVAILABLE_RESTRICTED", "RESERVED", "DONT_KNOW"
|
635
|
+
# resp.availability #=> String, one of "AVAILABLE", "AVAILABLE_RESERVED", "AVAILABLE_PREORDER", "UNAVAILABLE", "UNAVAILABLE_PREMIUM", "UNAVAILABLE_RESTRICTED", "RESERVED", "DONT_KNOW", "INVALID_NAME_FOR_TLD", "PENDING"
|
612
636
|
#
|
613
637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainAvailability AWS API Documentation
|
614
638
|
#
|
@@ -987,6 +1011,8 @@ module Aws::Route53Domains
|
|
987
1011
|
# * {Types::GetDomainDetailResponse#dns_sec #dns_sec} => String
|
988
1012
|
# * {Types::GetDomainDetailResponse#status_list #status_list} => Array<String>
|
989
1013
|
# * {Types::GetDomainDetailResponse#dnssec_keys #dnssec_keys} => Array<Types::DnssecKey>
|
1014
|
+
# * {Types::GetDomainDetailResponse#billing_contact #billing_contact} => Types::ContactDetail
|
1015
|
+
# * {Types::GetDomainDetailResponse#billing_privacy #billing_privacy} => Boolean
|
990
1016
|
#
|
991
1017
|
# @example Request syntax with placeholder values
|
992
1018
|
#
|
@@ -1074,6 +1100,23 @@ module Aws::Route53Domains
|
|
1074
1100
|
# resp.dnssec_keys[0].digest #=> String
|
1075
1101
|
# resp.dnssec_keys[0].key_tag #=> Integer
|
1076
1102
|
# resp.dnssec_keys[0].id #=> String
|
1103
|
+
# resp.billing_contact.first_name #=> String
|
1104
|
+
# resp.billing_contact.last_name #=> String
|
1105
|
+
# resp.billing_contact.contact_type #=> String, one of "PERSON", "COMPANY", "ASSOCIATION", "PUBLIC_BODY", "RESELLER"
|
1106
|
+
# resp.billing_contact.organization_name #=> String
|
1107
|
+
# resp.billing_contact.address_line_1 #=> String
|
1108
|
+
# resp.billing_contact.address_line_2 #=> String
|
1109
|
+
# resp.billing_contact.city #=> String
|
1110
|
+
# resp.billing_contact.state #=> String
|
1111
|
+
# resp.billing_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"
|
1112
|
+
# resp.billing_contact.zip_code #=> String
|
1113
|
+
# resp.billing_contact.phone_number #=> String
|
1114
|
+
# resp.billing_contact.email #=> String
|
1115
|
+
# resp.billing_contact.fax #=> String
|
1116
|
+
# resp.billing_contact.extra_params #=> Array
|
1117
|
+
# resp.billing_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", "AU_PRIORITY_TOKEN"
|
1118
|
+
# resp.billing_contact.extra_params[0].value #=> String
|
1119
|
+
# resp.billing_privacy #=> Boolean
|
1077
1120
|
#
|
1078
1121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/GetDomainDetail AWS API Documentation
|
1079
1122
|
#
|
@@ -1184,7 +1227,7 @@ module Aws::Route53Domains
|
|
1184
1227
|
# resp.status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
1185
1228
|
# resp.message #=> String
|
1186
1229
|
# resp.domain_name #=> String
|
1187
|
-
# resp.type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN"
|
1230
|
+
# resp.type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN", "RELEASE_TO_GANDI", "TRANSFER_ON_RENEW"
|
1188
1231
|
# resp.submitted_date #=> Time
|
1189
1232
|
# resp.last_updated_date #=> Time
|
1190
1233
|
# resp.status_flag #=> String, one of "PENDING_ACCEPTANCE", "PENDING_CUSTOMER_ACTION", "PENDING_AUTHORIZATION", "PENDING_PAYMENT_VERIFICATION", "PENDING_SUPPORT_CASE"
|
@@ -1322,7 +1365,7 @@ module Aws::Route53Domains
|
|
1322
1365
|
# marker: "PageMarker",
|
1323
1366
|
# max_items: 1,
|
1324
1367
|
# status: ["SUBMITTED"], # accepts SUBMITTED, IN_PROGRESS, ERROR, SUCCESSFUL, FAILED
|
1325
|
-
# type: ["REGISTER_DOMAIN"], # accepts REGISTER_DOMAIN, DELETE_DOMAIN, TRANSFER_IN_DOMAIN, UPDATE_DOMAIN_CONTACT, UPDATE_NAMESERVER, CHANGE_PRIVACY_PROTECTION, DOMAIN_LOCK, ENABLE_AUTORENEW, DISABLE_AUTORENEW, ADD_DNSSEC, REMOVE_DNSSEC, EXPIRE_DOMAIN, TRANSFER_OUT_DOMAIN, CHANGE_DOMAIN_OWNER, RENEW_DOMAIN, PUSH_DOMAIN, INTERNAL_TRANSFER_OUT_DOMAIN, INTERNAL_TRANSFER_IN_DOMAIN
|
1368
|
+
# type: ["REGISTER_DOMAIN"], # accepts REGISTER_DOMAIN, DELETE_DOMAIN, TRANSFER_IN_DOMAIN, UPDATE_DOMAIN_CONTACT, UPDATE_NAMESERVER, CHANGE_PRIVACY_PROTECTION, DOMAIN_LOCK, ENABLE_AUTORENEW, DISABLE_AUTORENEW, ADD_DNSSEC, REMOVE_DNSSEC, EXPIRE_DOMAIN, TRANSFER_OUT_DOMAIN, CHANGE_DOMAIN_OWNER, RENEW_DOMAIN, PUSH_DOMAIN, INTERNAL_TRANSFER_OUT_DOMAIN, INTERNAL_TRANSFER_IN_DOMAIN, RELEASE_TO_GANDI, TRANSFER_ON_RENEW
|
1326
1369
|
# sort_by: "SubmittedDate", # accepts SubmittedDate
|
1327
1370
|
# sort_order: "ASC", # accepts ASC, DESC
|
1328
1371
|
# })
|
@@ -1332,7 +1375,7 @@ module Aws::Route53Domains
|
|
1332
1375
|
# resp.operations #=> Array
|
1333
1376
|
# resp.operations[0].operation_id #=> String
|
1334
1377
|
# resp.operations[0].status #=> String, one of "SUBMITTED", "IN_PROGRESS", "ERROR", "SUCCESSFUL", "FAILED"
|
1335
|
-
# resp.operations[0].type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN"
|
1378
|
+
# resp.operations[0].type #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN", "RELEASE_TO_GANDI", "TRANSFER_ON_RENEW"
|
1336
1379
|
# resp.operations[0].submitted_date #=> Time
|
1337
1380
|
# resp.operations[0].domain_name #=> String
|
1338
1381
|
# resp.operations[0].message #=> String
|
@@ -1611,13 +1654,12 @@ module Aws::Route53Domains
|
|
1611
1654
|
# @option params [Boolean] :privacy_protect_admin_contact
|
1612
1655
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1613
1656
|
# you specify `true`, WHOIS ("who is") queries return contact
|
1614
|
-
# information either for Amazon Registrar
|
1615
|
-
#
|
1616
|
-
#
|
1617
|
-
# entered for the admin contact.
|
1657
|
+
# information either for Amazon Registrar or for our registrar
|
1658
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
1659
|
+
# information that you entered for the admin contact.
|
1618
1660
|
#
|
1619
1661
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1620
|
-
# registrant, and technical contacts.
|
1662
|
+
# billing, registrant, and technical contacts.
|
1621
1663
|
#
|
1622
1664
|
# </note>
|
1623
1665
|
#
|
@@ -1626,13 +1668,13 @@ module Aws::Route53Domains
|
|
1626
1668
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
1627
1669
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1628
1670
|
# you specify `true`, WHOIS ("who is") queries return contact
|
1629
|
-
# information either for Amazon Registrar
|
1630
|
-
#
|
1631
|
-
#
|
1632
|
-
#
|
1671
|
+
# information either for Amazon Registrar or for our registrar
|
1672
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
1673
|
+
# information that you entered for the registrant contact (the domain
|
1674
|
+
# owner).
|
1633
1675
|
#
|
1634
1676
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1635
|
-
# registrant, and technical contacts.
|
1677
|
+
# billing, registrant, and technical contacts.
|
1636
1678
|
#
|
1637
1679
|
# </note>
|
1638
1680
|
#
|
@@ -1641,18 +1683,37 @@ module Aws::Route53Domains
|
|
1641
1683
|
# @option params [Boolean] :privacy_protect_tech_contact
|
1642
1684
|
# Whether you want to conceal contact information from WHOIS queries. If
|
1643
1685
|
# you specify `true`, WHOIS ("who is") queries return contact
|
1644
|
-
# information either for Amazon Registrar
|
1645
|
-
#
|
1646
|
-
#
|
1647
|
-
# entered for the technical contact.
|
1686
|
+
# information either for Amazon Registrar or for our registrar
|
1687
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
1688
|
+
# information that you entered for the technical contact.
|
1648
1689
|
#
|
1649
1690
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1650
|
-
# registrant, and technical contacts.
|
1691
|
+
# billing, registrant, and technical contacts.
|
1651
1692
|
#
|
1652
1693
|
# </note>
|
1653
1694
|
#
|
1654
1695
|
# Default: `true`
|
1655
1696
|
#
|
1697
|
+
# @option params [Types::ContactDetail] :billing_contact
|
1698
|
+
# Provides detailed contact information. For information about the
|
1699
|
+
# values that you specify for each element, see [ContactDetail][1].
|
1700
|
+
#
|
1701
|
+
#
|
1702
|
+
#
|
1703
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_ContactDetail.html
|
1704
|
+
#
|
1705
|
+
# @option params [Boolean] :privacy_protect_billing_contact
|
1706
|
+
# Whether you want to conceal contact information from WHOIS queries. If
|
1707
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
1708
|
+
# information either for Amazon Registrar or for our registrar
|
1709
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
1710
|
+
# information that you entered for the billing contact.
|
1711
|
+
#
|
1712
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
1713
|
+
# billing, registrant, and technical contacts.
|
1714
|
+
#
|
1715
|
+
# </note>
|
1716
|
+
#
|
1656
1717
|
# @return [Types::RegisterDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1657
1718
|
#
|
1658
1719
|
# * {Types::RegisterDomainResponse#operation_id #operation_id} => String
|
@@ -1730,6 +1791,28 @@ module Aws::Route53Domains
|
|
1730
1791
|
# privacy_protect_admin_contact: false,
|
1731
1792
|
# privacy_protect_registrant_contact: false,
|
1732
1793
|
# privacy_protect_tech_contact: false,
|
1794
|
+
# billing_contact: {
|
1795
|
+
# first_name: "ContactName",
|
1796
|
+
# last_name: "ContactName",
|
1797
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
1798
|
+
# organization_name: "ContactName",
|
1799
|
+
# address_line_1: "AddressLine",
|
1800
|
+
# address_line_2: "AddressLine",
|
1801
|
+
# city: "City",
|
1802
|
+
# state: "State",
|
1803
|
+
# 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
|
1804
|
+
# zip_code: "ZipCode",
|
1805
|
+
# phone_number: "ContactNumber",
|
1806
|
+
# email: "Email",
|
1807
|
+
# fax: "ContactNumber",
|
1808
|
+
# extra_params: [
|
1809
|
+
# {
|
1810
|
+
# 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, AU_PRIORITY_TOKEN
|
1811
|
+
# value: "ExtraParamValue", # required
|
1812
|
+
# },
|
1813
|
+
# ],
|
1814
|
+
# },
|
1815
|
+
# privacy_protect_billing_contact: false,
|
1733
1816
|
# })
|
1734
1817
|
#
|
1735
1818
|
# @example Response structure
|
@@ -1958,6 +2041,12 @@ module Aws::Route53Domains
|
|
1958
2041
|
# registrar, see [Transferring a Domain from Amazon Route 53 to
|
1959
2042
|
# Another Registrar][3] in the *Amazon Route 53 Developer Guide*.
|
1960
2043
|
#
|
2044
|
+
# During the transfer of any country code top-level domains (ccTLDs) to
|
2045
|
+
# Route 53, except for .cc and .tv, updates to the owner contact are
|
2046
|
+
# ignored and the owner contact data from the registry is used. You can
|
2047
|
+
# update the owner contact after the transfer is complete. For more
|
2048
|
+
# information, see [UpdateDomainContact][4].
|
2049
|
+
#
|
1961
2050
|
# If the registrar for your domain is also the DNS service provider for
|
1962
2051
|
# the domain, we highly recommend that you transfer your DNS service to
|
1963
2052
|
# Route 53 or to another DNS service provider before you transfer your
|
@@ -1981,6 +2070,7 @@ module Aws::Route53Domains
|
|
1981
2070
|
# [1]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-to-route-53.html
|
1982
2071
|
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_TransferDomainToAnotherAwsAccount.html
|
1983
2072
|
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/domain-transfer-from-route-53.html
|
2073
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_domains_UpdateDomainContact.html
|
1984
2074
|
#
|
1985
2075
|
# @option params [required, String] :domain_name
|
1986
2076
|
# The name of the domain that you want to transfer to Route 53. The
|
@@ -2054,13 +2144,13 @@ module Aws::Route53Domains
|
|
2054
2144
|
# @option params [Boolean] :privacy_protect_registrant_contact
|
2055
2145
|
# Whether you want to conceal contact information from WHOIS queries. If
|
2056
2146
|
# you specify `true`, WHOIS ("who is") queries return contact
|
2057
|
-
# information either for Amazon Registrar
|
2058
|
-
#
|
2059
|
-
#
|
2060
|
-
#
|
2147
|
+
# information either for Amazon Registrar or for our registrar
|
2148
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2149
|
+
# information that you entered for the registrant contact (domain
|
2150
|
+
# owner).
|
2061
2151
|
#
|
2062
2152
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2063
|
-
# registrant, and technical contacts.
|
2153
|
+
# billing, registrant, and technical contacts.
|
2064
2154
|
#
|
2065
2155
|
# </note>
|
2066
2156
|
#
|
@@ -2069,18 +2159,32 @@ module Aws::Route53Domains
|
|
2069
2159
|
# @option params [Boolean] :privacy_protect_tech_contact
|
2070
2160
|
# Whether you want to conceal contact information from WHOIS queries. If
|
2071
2161
|
# you specify `true`, WHOIS ("who is") queries return contact
|
2072
|
-
# information either for Amazon Registrar
|
2073
|
-
#
|
2074
|
-
#
|
2075
|
-
# entered for the technical contact.
|
2162
|
+
# information either for Amazon Registrar or for our registrar
|
2163
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2164
|
+
# information that you entered for the technical contact.
|
2076
2165
|
#
|
2077
2166
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2078
|
-
# registrant, and technical contacts.
|
2167
|
+
# billing, registrant, and technical contacts.
|
2079
2168
|
#
|
2080
2169
|
# </note>
|
2081
2170
|
#
|
2082
2171
|
# Default: `true`
|
2083
2172
|
#
|
2173
|
+
# @option params [Types::ContactDetail] :billing_contact
|
2174
|
+
# Provides detailed contact information.
|
2175
|
+
#
|
2176
|
+
# @option params [Boolean] :privacy_protect_billing_contact
|
2177
|
+
# Whether you want to conceal contact information from WHOIS queries. If
|
2178
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
2179
|
+
# information either for Amazon Registrar or for our registrar
|
2180
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2181
|
+
# information that you entered for the billing contact.
|
2182
|
+
#
|
2183
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2184
|
+
# billing, registrant, and technical contacts.
|
2185
|
+
#
|
2186
|
+
# </note>
|
2187
|
+
#
|
2084
2188
|
# @return [Types::TransferDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2085
2189
|
#
|
2086
2190
|
# * {Types::TransferDomainResponse#operation_id #operation_id} => String
|
@@ -2165,6 +2269,28 @@ module Aws::Route53Domains
|
|
2165
2269
|
# privacy_protect_admin_contact: false,
|
2166
2270
|
# privacy_protect_registrant_contact: false,
|
2167
2271
|
# privacy_protect_tech_contact: false,
|
2272
|
+
# billing_contact: {
|
2273
|
+
# first_name: "ContactName",
|
2274
|
+
# last_name: "ContactName",
|
2275
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2276
|
+
# organization_name: "ContactName",
|
2277
|
+
# address_line_1: "AddressLine",
|
2278
|
+
# address_line_2: "AddressLine",
|
2279
|
+
# city: "City",
|
2280
|
+
# state: "State",
|
2281
|
+
# 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
|
2282
|
+
# zip_code: "ZipCode",
|
2283
|
+
# phone_number: "ContactNumber",
|
2284
|
+
# email: "Email",
|
2285
|
+
# fax: "ContactNumber",
|
2286
|
+
# extra_params: [
|
2287
|
+
# {
|
2288
|
+
# 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, AU_PRIORITY_TOKEN
|
2289
|
+
# value: "ExtraParamValue", # required
|
2290
|
+
# },
|
2291
|
+
# ],
|
2292
|
+
# },
|
2293
|
+
# privacy_protect_billing_contact: false,
|
2168
2294
|
# })
|
2169
2295
|
#
|
2170
2296
|
# @example Response structure
|
@@ -2277,6 +2403,9 @@ module Aws::Route53Domains
|
|
2277
2403
|
# Customer's consent for the owner change request. Required if the
|
2278
2404
|
# domain is not free (consent price is more than $0.00).
|
2279
2405
|
#
|
2406
|
+
# @option params [Types::ContactDetail] :billing_contact
|
2407
|
+
# Provides detailed contact information.
|
2408
|
+
#
|
2280
2409
|
# @return [Types::UpdateDomainContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2281
2410
|
#
|
2282
2411
|
# * {Types::UpdateDomainContactResponse#operation_id #operation_id} => String
|
@@ -2352,6 +2481,27 @@ module Aws::Route53Domains
|
|
2352
2481
|
# max_price: 1.0, # required
|
2353
2482
|
# currency: "Currency", # required
|
2354
2483
|
# },
|
2484
|
+
# billing_contact: {
|
2485
|
+
# first_name: "ContactName",
|
2486
|
+
# last_name: "ContactName",
|
2487
|
+
# contact_type: "PERSON", # accepts PERSON, COMPANY, ASSOCIATION, PUBLIC_BODY, RESELLER
|
2488
|
+
# organization_name: "ContactName",
|
2489
|
+
# address_line_1: "AddressLine",
|
2490
|
+
# address_line_2: "AddressLine",
|
2491
|
+
# city: "City",
|
2492
|
+
# state: "State",
|
2493
|
+
# 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
|
2494
|
+
# zip_code: "ZipCode",
|
2495
|
+
# phone_number: "ContactNumber",
|
2496
|
+
# email: "Email",
|
2497
|
+
# fax: "ContactNumber",
|
2498
|
+
# extra_params: [
|
2499
|
+
# {
|
2500
|
+
# 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, AU_PRIORITY_TOKEN
|
2501
|
+
# value: "ExtraParamValue", # required
|
2502
|
+
# },
|
2503
|
+
# ],
|
2504
|
+
# },
|
2355
2505
|
# })
|
2356
2506
|
#
|
2357
2507
|
# @example Response structure
|
@@ -2407,39 +2557,49 @@ module Aws::Route53Domains
|
|
2407
2557
|
# @option params [Boolean] :admin_privacy
|
2408
2558
|
# Whether you want to conceal contact information from WHOIS queries. If
|
2409
2559
|
# you specify `true`, WHOIS ("who is") queries return contact
|
2410
|
-
# information either for Amazon Registrar
|
2411
|
-
#
|
2412
|
-
#
|
2413
|
-
# entered for the admin contact.
|
2560
|
+
# information either for Amazon Registrar or for our registrar
|
2561
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2562
|
+
# information that you entered for the admin contact.
|
2414
2563
|
#
|
2415
2564
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2416
|
-
# registrant, and technical contacts.
|
2565
|
+
# billing, registrant, and technical contacts.
|
2417
2566
|
#
|
2418
2567
|
# </note>
|
2419
2568
|
#
|
2420
2569
|
# @option params [Boolean] :registrant_privacy
|
2421
2570
|
# Whether you want to conceal contact information from WHOIS queries. If
|
2422
2571
|
# you specify `true`, WHOIS ("who is") queries return contact
|
2423
|
-
# information either for Amazon Registrar
|
2424
|
-
#
|
2425
|
-
#
|
2426
|
-
#
|
2572
|
+
# information either for Amazon Registrar or for our registrar
|
2573
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2574
|
+
# information that you entered for the registrant contact (domain
|
2575
|
+
# owner).
|
2427
2576
|
#
|
2428
2577
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2429
|
-
# registrant, and technical contacts.
|
2578
|
+
# billing, registrant, and technical contacts.
|
2430
2579
|
#
|
2431
2580
|
# </note>
|
2432
2581
|
#
|
2433
2582
|
# @option params [Boolean] :tech_privacy
|
2434
2583
|
# Whether you want to conceal contact information from WHOIS queries. If
|
2435
2584
|
# you specify `true`, WHOIS ("who is") queries return contact
|
2436
|
-
# information either for Amazon Registrar
|
2437
|
-
#
|
2438
|
-
#
|
2439
|
-
#
|
2585
|
+
# information either for Amazon Registrar or for our registrar
|
2586
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2587
|
+
# information that you entered for the technical contact.
|
2588
|
+
#
|
2589
|
+
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2590
|
+
# billing, registrant, and technical contacts.
|
2591
|
+
#
|
2592
|
+
# </note>
|
2593
|
+
#
|
2594
|
+
# @option params [Boolean] :billing_privacy
|
2595
|
+
# Whether you want to conceal contact information from WHOIS queries. If
|
2596
|
+
# you specify `true`, WHOIS ("who is") queries return contact
|
2597
|
+
# information either for Amazon Registrar or for our registrar
|
2598
|
+
# associate, Gandi. If you specify `false`, WHOIS queries return the
|
2599
|
+
# information that you entered for the billing contact.
|
2440
2600
|
#
|
2441
2601
|
# <note markdown="1"> You must specify the same privacy setting for the administrative,
|
2442
|
-
# registrant, and technical contacts.
|
2602
|
+
# billing, registrant, and technical contacts.
|
2443
2603
|
#
|
2444
2604
|
# </note>
|
2445
2605
|
#
|
@@ -2454,6 +2614,7 @@ module Aws::Route53Domains
|
|
2454
2614
|
# admin_privacy: false,
|
2455
2615
|
# registrant_privacy: false,
|
2456
2616
|
# tech_privacy: false,
|
2617
|
+
# billing_privacy: false,
|
2457
2618
|
# })
|
2458
2619
|
#
|
2459
2620
|
# @example Response structure
|
@@ -2606,7 +2767,7 @@ module Aws::Route53Domains
|
|
2606
2767
|
# resp.next_page_marker #=> String
|
2607
2768
|
# resp.billing_records #=> Array
|
2608
2769
|
# resp.billing_records[0].domain_name #=> String
|
2609
|
-
# resp.billing_records[0].operation #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN"
|
2770
|
+
# resp.billing_records[0].operation #=> String, one of "REGISTER_DOMAIN", "DELETE_DOMAIN", "TRANSFER_IN_DOMAIN", "UPDATE_DOMAIN_CONTACT", "UPDATE_NAMESERVER", "CHANGE_PRIVACY_PROTECTION", "DOMAIN_LOCK", "ENABLE_AUTORENEW", "DISABLE_AUTORENEW", "ADD_DNSSEC", "REMOVE_DNSSEC", "EXPIRE_DOMAIN", "TRANSFER_OUT_DOMAIN", "CHANGE_DOMAIN_OWNER", "RENEW_DOMAIN", "PUSH_DOMAIN", "INTERNAL_TRANSFER_OUT_DOMAIN", "INTERNAL_TRANSFER_IN_DOMAIN", "RELEASE_TO_GANDI", "TRANSFER_ON_RENEW"
|
2610
2771
|
# resp.billing_records[0].invoice_id #=> String
|
2611
2772
|
# resp.billing_records[0].bill_date #=> Time
|
2612
2773
|
# resp.billing_records[0].price #=> Float
|
@@ -2633,7 +2794,7 @@ module Aws::Route53Domains
|
|
2633
2794
|
params: params,
|
2634
2795
|
config: config)
|
2635
2796
|
context[:gem_name] = 'aws-sdk-route53domains'
|
2636
|
-
context[:gem_version] = '1.
|
2797
|
+
context[:gem_version] = '1.57.0'
|
2637
2798
|
Seahorse::Client::Request.new(handlers, context)
|
2638
2799
|
end
|
2639
2800
|
|