aws-sdk-route53domains 1.49.0 → 1.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53domains/client.rb +4 -2
- data/lib/aws-sdk-route53domains/client_api.rb +7 -2
- data/lib/aws-sdk-route53domains/errors.rb +5 -0
- data/lib/aws-sdk-route53domains/types.rb +17 -7
- data/lib/aws-sdk-route53domains.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebe9457b0595258b727971a3bea03f0fb138d7ab529ec6435b3f366aa3d117bd
|
4
|
+
data.tar.gz: d9b9e2390f1a2b8918b6ca76ef326a31744f3477097f629fb8be29c46bb98a89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e29a955f182efbe4f712751a335f8777589567b7f6783e0ef975c253334dbf0ee0994e0d5006e68430ba18395c4218611b23d1dd1f2b15d98d8c30dc88c08e92
|
7
|
+
data.tar.gz: 16645f5f840feb5702160e3cbfb6ad09b9193fd7571a8429e9b7416421ab76fe2dfe9a7a35d7eb230438fe3df06b78bef4e10d7635fb7d0c9ec14edf9fb4c17b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2023-08-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Provide explanation if CheckDomainTransferability return false. Provide requestId if a request is already submitted. Add sensitive protection for customer information
|
8
|
+
|
4
9
|
1.49.0 (2023-07-11)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -445,7 +445,7 @@ module Aws::Route53Domains
|
|
445
445
|
#
|
446
446
|
# resp = client.accept_domain_transfer_from_another_aws_account({
|
447
447
|
# domain_name: "DomainName", # required
|
448
|
-
# password: "
|
448
|
+
# password: "Password", # required
|
449
449
|
# })
|
450
450
|
#
|
451
451
|
# @example Response structure
|
@@ -652,6 +652,7 @@ module Aws::Route53Domains
|
|
652
652
|
# @return [Types::CheckDomainTransferabilityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
653
653
|
#
|
654
654
|
# * {Types::CheckDomainTransferabilityResponse#transferability #transferability} => Types::DomainTransferability
|
655
|
+
# * {Types::CheckDomainTransferabilityResponse#message #message} => String
|
655
656
|
#
|
656
657
|
# @example Request syntax with placeholder values
|
657
658
|
#
|
@@ -663,6 +664,7 @@ module Aws::Route53Domains
|
|
663
664
|
# @example Response structure
|
664
665
|
#
|
665
666
|
# resp.transferability.transferable #=> String, one of "TRANSFERABLE", "UNTRANSFERABLE", "DONT_KNOW", "DOMAIN_IN_OWN_ACCOUNT", "DOMAIN_IN_ANOTHER_ACCOUNT", "PREMIUM_DOMAIN"
|
667
|
+
# resp.message #=> String
|
666
668
|
#
|
667
669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainTransferability AWS API Documentation
|
668
670
|
#
|
@@ -2631,7 +2633,7 @@ module Aws::Route53Domains
|
|
2631
2633
|
params: params,
|
2632
2634
|
config: config)
|
2633
2635
|
context[:gem_name] = 'aws-sdk-route53domains'
|
2634
|
-
context[:gem_version] = '1.
|
2636
|
+
context[:gem_version] = '1.50.0'
|
2635
2637
|
Seahorse::Client::Request.new(handlers, context)
|
2636
2638
|
end
|
2637
2639
|
|
@@ -109,6 +109,7 @@ module Aws::Route53Domains
|
|
109
109
|
ListPricesResponse = Shapes::StructureShape.new(name: 'ListPricesResponse')
|
110
110
|
ListTagsForDomainRequest = Shapes::StructureShape.new(name: 'ListTagsForDomainRequest')
|
111
111
|
ListTagsForDomainResponse = Shapes::StructureShape.new(name: 'ListTagsForDomainResponse')
|
112
|
+
Message = Shapes::StringShape.new(name: 'Message')
|
112
113
|
Nameserver = Shapes::StructureShape.new(name: 'Nameserver')
|
113
114
|
NameserverList = Shapes::ListShape.new(name: 'NameserverList')
|
114
115
|
NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
|
@@ -123,6 +124,7 @@ module Aws::Route53Domains
|
|
123
124
|
Operator = Shapes::StringShape.new(name: 'Operator')
|
124
125
|
PageMarker = Shapes::StringShape.new(name: 'PageMarker')
|
125
126
|
PageMaxItems = Shapes::IntegerShape.new(name: 'PageMaxItems')
|
127
|
+
Password = Shapes::StringShape.new(name: 'Password')
|
126
128
|
Price = Shapes::FloatShape.new(name: 'Price')
|
127
129
|
PriceWithCurrency = Shapes::StructureShape.new(name: 'PriceWithCurrency')
|
128
130
|
PushDomainRequest = Shapes::StructureShape.new(name: 'PushDomainRequest')
|
@@ -137,6 +139,7 @@ module Aws::Route53Domains
|
|
137
139
|
RejectDomainTransferFromAnotherAwsAccountResponse = Shapes::StructureShape.new(name: 'RejectDomainTransferFromAnotherAwsAccountResponse')
|
138
140
|
RenewDomainRequest = Shapes::StructureShape.new(name: 'RenewDomainRequest')
|
139
141
|
RenewDomainResponse = Shapes::StructureShape.new(name: 'RenewDomainResponse')
|
142
|
+
RequestId = Shapes::StringShape.new(name: 'RequestId')
|
140
143
|
Reseller = Shapes::StringShape.new(name: 'Reseller')
|
141
144
|
ResendContactReachabilityEmailRequest = Shapes::StructureShape.new(name: 'ResendContactReachabilityEmailRequest')
|
142
145
|
ResendContactReachabilityEmailResponse = Shapes::StructureShape.new(name: 'ResendContactReachabilityEmailResponse')
|
@@ -177,7 +180,7 @@ module Aws::Route53Domains
|
|
177
180
|
ZipCode = Shapes::StringShape.new(name: 'ZipCode')
|
178
181
|
|
179
182
|
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, required: true, location_name: "DomainName"))
|
180
|
-
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:password, Shapes::ShapeRef.new(shape:
|
183
|
+
AcceptDomainTransferFromAnotherAwsAccountRequest.add_member(:password, Shapes::ShapeRef.new(shape: Password, required: true, location_name: "Password"))
|
181
184
|
AcceptDomainTransferFromAnotherAwsAccountRequest.struct_class = Types::AcceptDomainTransferFromAnotherAwsAccountRequest
|
182
185
|
|
183
186
|
AcceptDomainTransferFromAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
@@ -217,6 +220,7 @@ module Aws::Route53Domains
|
|
217
220
|
CheckDomainTransferabilityRequest.struct_class = Types::CheckDomainTransferabilityRequest
|
218
221
|
|
219
222
|
CheckDomainTransferabilityResponse.add_member(:transferability, Shapes::ShapeRef.new(shape: DomainTransferability, location_name: "Transferability"))
|
223
|
+
CheckDomainTransferabilityResponse.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
220
224
|
CheckDomainTransferabilityResponse.struct_class = Types::CheckDomainTransferabilityResponse
|
221
225
|
|
222
226
|
Consent.add_member(:max_price, Shapes::ShapeRef.new(shape: Price, required: true, location_name: "MaxPrice"))
|
@@ -320,6 +324,7 @@ module Aws::Route53Domains
|
|
320
324
|
DomainTransferability.add_member(:transferable, Shapes::ShapeRef.new(shape: Transferable, location_name: "Transferable"))
|
321
325
|
DomainTransferability.struct_class = Types::DomainTransferability
|
322
326
|
|
327
|
+
DuplicateRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: RequestId, location_name: "requestId"))
|
323
328
|
DuplicateRequest.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
324
329
|
DuplicateRequest.struct_class = Types::DuplicateRequest
|
325
330
|
|
@@ -561,7 +566,7 @@ module Aws::Route53Domains
|
|
561
566
|
TransferDomainToAnotherAwsAccountRequest.struct_class = Types::TransferDomainToAnotherAwsAccountRequest
|
562
567
|
|
563
568
|
TransferDomainToAnotherAwsAccountResponse.add_member(:operation_id, Shapes::ShapeRef.new(shape: OperationId, location_name: "OperationId"))
|
564
|
-
TransferDomainToAnotherAwsAccountResponse.add_member(:password, Shapes::ShapeRef.new(shape:
|
569
|
+
TransferDomainToAnotherAwsAccountResponse.add_member(:password, Shapes::ShapeRef.new(shape: Password, location_name: "Password"))
|
565
570
|
TransferDomainToAnotherAwsAccountResponse.struct_class = Types::TransferDomainToAnotherAwsAccountResponse
|
566
571
|
|
567
572
|
UnsupportedTLD.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -37,7 +37,7 @@ module Aws::Route53Domains
|
|
37
37
|
class AcceptDomainTransferFromAnotherAwsAccountRequest < Struct.new(
|
38
38
|
:domain_name,
|
39
39
|
:password)
|
40
|
-
SENSITIVE = []
|
40
|
+
SENSITIVE = [:password]
|
41
41
|
include Aws::Structure
|
42
42
|
end
|
43
43
|
|
@@ -332,10 +332,15 @@ module Aws::Route53Domains
|
|
332
332
|
# domain can be transferred to Route 53.
|
333
333
|
# @return [Types::DomainTransferability]
|
334
334
|
#
|
335
|
+
# @!attribute [rw] message
|
336
|
+
# Provides an explanation for when a domain can't be transferred.
|
337
|
+
# @return [String]
|
338
|
+
#
|
335
339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CheckDomainTransferabilityResponse AWS API Documentation
|
336
340
|
#
|
337
341
|
class CheckDomainTransferabilityResponse < Struct.new(
|
338
|
-
:transferability
|
342
|
+
:transferability,
|
343
|
+
:message)
|
339
344
|
SENSITIVE = []
|
340
345
|
include Aws::Structure
|
341
346
|
end
|
@@ -461,7 +466,7 @@ module Aws::Route53Domains
|
|
461
466
|
:email,
|
462
467
|
:fax,
|
463
468
|
:extra_params)
|
464
|
-
SENSITIVE = []
|
469
|
+
SENSITIVE = [:first_name, :last_name, :organization_name, :address_line_1, :address_line_2, :city, :state, :country_code, :zip_code, :phone_number, :email, :fax]
|
465
470
|
include Aws::Structure
|
466
471
|
end
|
467
472
|
|
@@ -937,7 +942,7 @@ module Aws::Route53Domains
|
|
937
942
|
#
|
938
943
|
# DOMAIN\_IN\_ANOTHER\_ACCOUNT
|
939
944
|
#
|
940
|
-
# :
|
945
|
+
# : The domain exists in another Amazon Web Services account.
|
941
946
|
#
|
942
947
|
# PREMIUM\_DOMAIN
|
943
948
|
#
|
@@ -954,6 +959,10 @@ module Aws::Route53Domains
|
|
954
959
|
|
955
960
|
# The request is already in progress for the domain.
|
956
961
|
#
|
962
|
+
# @!attribute [rw] request_id
|
963
|
+
# ID of the request operation.
|
964
|
+
# @return [String]
|
965
|
+
#
|
957
966
|
# @!attribute [rw] message
|
958
967
|
# The request is already in progress for the domain.
|
959
968
|
# @return [String]
|
@@ -961,6 +970,7 @@ module Aws::Route53Domains
|
|
961
970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/DuplicateRequest AWS API Documentation
|
962
971
|
#
|
963
972
|
class DuplicateRequest < Struct.new(
|
973
|
+
:request_id,
|
964
974
|
:message)
|
965
975
|
SENSITIVE = []
|
966
976
|
include Aws::Structure
|
@@ -1659,7 +1669,7 @@ module Aws::Route53Domains
|
|
1659
1669
|
:dns_sec,
|
1660
1670
|
:status_list,
|
1661
1671
|
:dnssec_keys)
|
1662
|
-
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact]
|
1672
|
+
SENSITIVE = [:admin_contact, :registrant_contact, :tech_contact, :abuse_contact_email, :abuse_contact_phone]
|
1663
1673
|
include Aws::Structure
|
1664
1674
|
end
|
1665
1675
|
|
@@ -2516,7 +2526,7 @@ module Aws::Route53Domains
|
|
2516
2526
|
:domain_name,
|
2517
2527
|
:email_address,
|
2518
2528
|
:is_already_verified)
|
2519
|
-
SENSITIVE = []
|
2529
|
+
SENSITIVE = [:email_address]
|
2520
2530
|
include Aws::Structure
|
2521
2531
|
end
|
2522
2532
|
|
@@ -2834,7 +2844,7 @@ module Aws::Route53Domains
|
|
2834
2844
|
class TransferDomainToAnotherAwsAccountResponse < Struct.new(
|
2835
2845
|
:operation_id,
|
2836
2846
|
:password)
|
2837
|
-
SENSITIVE = []
|
2847
|
+
SENSITIVE = [:password]
|
2838
2848
|
include Aws::Structure
|
2839
2849
|
end
|
2840
2850
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53domains
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.50.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|