aws-sdk-route53domains 1.41.0 → 1.42.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 +207 -23
- data/lib/aws-sdk-route53domains/client_api.rb +150 -25
- data/lib/aws-sdk-route53domains/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-route53domains/endpoint_provider.rb +73 -74
- data/lib/aws-sdk-route53domains/endpoints.rb +56 -0
- data/lib/aws-sdk-route53domains/errors.rb +16 -0
- data/lib/aws-sdk-route53domains/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-route53domains/types.rb +397 -541
- data/lib/aws-sdk-route53domains.rb +1 -1
- metadata +2 -2
@@ -25,6 +25,20 @@ module Aws::Route53Domains
|
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
|
+
class AssociateDelegationSignerToDomain
|
29
|
+
def self.build(context)
|
30
|
+
unless context.config.regional_endpoint
|
31
|
+
endpoint = context.config.endpoint.to_s
|
32
|
+
end
|
33
|
+
Aws::Route53Domains::EndpointParameters.new(
|
34
|
+
region: context.config.region,
|
35
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
36
|
+
use_fips: context.config.use_fips_endpoint,
|
37
|
+
endpoint: endpoint,
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
28
42
|
class CancelDomainTransferToAnotherAwsAccount
|
29
43
|
def self.build(context)
|
30
44
|
unless context.config.regional_endpoint
|
@@ -123,6 +137,20 @@ module Aws::Route53Domains
|
|
123
137
|
end
|
124
138
|
end
|
125
139
|
|
140
|
+
class DisassociateDelegationSignerFromDomain
|
141
|
+
def self.build(context)
|
142
|
+
unless context.config.regional_endpoint
|
143
|
+
endpoint = context.config.endpoint.to_s
|
144
|
+
end
|
145
|
+
Aws::Route53Domains::EndpointParameters.new(
|
146
|
+
region: context.config.region,
|
147
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
148
|
+
use_fips: context.config.use_fips_endpoint,
|
149
|
+
endpoint: endpoint,
|
150
|
+
)
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
126
154
|
class EnableDomainAutoRenew
|
127
155
|
def self.build(context)
|
128
156
|
unless context.config.regional_endpoint
|
@@ -263,6 +291,20 @@ module Aws::Route53Domains
|
|
263
291
|
end
|
264
292
|
end
|
265
293
|
|
294
|
+
class PushDomain
|
295
|
+
def self.build(context)
|
296
|
+
unless context.config.regional_endpoint
|
297
|
+
endpoint = context.config.endpoint.to_s
|
298
|
+
end
|
299
|
+
Aws::Route53Domains::EndpointParameters.new(
|
300
|
+
region: context.config.region,
|
301
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
302
|
+
use_fips: context.config.use_fips_endpoint,
|
303
|
+
endpoint: endpoint,
|
304
|
+
)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
266
308
|
class RegisterDomain
|
267
309
|
def self.build(context)
|
268
310
|
unless context.config.regional_endpoint
|
@@ -319,6 +361,20 @@ module Aws::Route53Domains
|
|
319
361
|
end
|
320
362
|
end
|
321
363
|
|
364
|
+
class ResendOperationAuthorization
|
365
|
+
def self.build(context)
|
366
|
+
unless context.config.regional_endpoint
|
367
|
+
endpoint = context.config.endpoint.to_s
|
368
|
+
end
|
369
|
+
Aws::Route53Domains::EndpointParameters.new(
|
370
|
+
region: context.config.region,
|
371
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
372
|
+
use_fips: context.config.use_fips_endpoint,
|
373
|
+
endpoint: endpoint,
|
374
|
+
)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
322
378
|
class RetrieveDomainAuthCode
|
323
379
|
def self.build(context)
|
324
380
|
unless context.config.regional_endpoint
|
@@ -27,6 +27,7 @@ module Aws::Route53Domains
|
|
27
27
|
# See {Seahorse::Client::RequestContext} for more information.
|
28
28
|
#
|
29
29
|
# ## Error Classes
|
30
|
+
# * {DnssecLimitExceeded}
|
30
31
|
# * {DomainLimitExceeded}
|
31
32
|
# * {DuplicateRequest}
|
32
33
|
# * {InvalidInput}
|
@@ -40,6 +41,21 @@ module Aws::Route53Domains
|
|
40
41
|
|
41
42
|
extend Aws::Errors::DynamicErrors
|
42
43
|
|
44
|
+
class DnssecLimitExceeded < ServiceError
|
45
|
+
|
46
|
+
# @param [Seahorse::Client::RequestContext] context
|
47
|
+
# @param [String] message
|
48
|
+
# @param [Aws::Route53Domains::Types::DnssecLimitExceeded] data
|
49
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
50
|
+
super(context, message, data)
|
51
|
+
end
|
52
|
+
|
53
|
+
# @return [String]
|
54
|
+
def message
|
55
|
+
@message || @data[:message]
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
43
59
|
class DomainLimitExceeded < ServiceError
|
44
60
|
|
45
61
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -58,6 +58,8 @@ module Aws::Route53Domains
|
|
58
58
|
case context.operation_name
|
59
59
|
when :accept_domain_transfer_from_another_aws_account
|
60
60
|
Aws::Route53Domains::Endpoints::AcceptDomainTransferFromAnotherAwsAccount.build(context)
|
61
|
+
when :associate_delegation_signer_to_domain
|
62
|
+
Aws::Route53Domains::Endpoints::AssociateDelegationSignerToDomain.build(context)
|
61
63
|
when :cancel_domain_transfer_to_another_aws_account
|
62
64
|
Aws::Route53Domains::Endpoints::CancelDomainTransferToAnotherAwsAccount.build(context)
|
63
65
|
when :check_domain_availability
|
@@ -72,6 +74,8 @@ module Aws::Route53Domains
|
|
72
74
|
Aws::Route53Domains::Endpoints::DisableDomainAutoRenew.build(context)
|
73
75
|
when :disable_domain_transfer_lock
|
74
76
|
Aws::Route53Domains::Endpoints::DisableDomainTransferLock.build(context)
|
77
|
+
when :disassociate_delegation_signer_from_domain
|
78
|
+
Aws::Route53Domains::Endpoints::DisassociateDelegationSignerFromDomain.build(context)
|
75
79
|
when :enable_domain_auto_renew
|
76
80
|
Aws::Route53Domains::Endpoints::EnableDomainAutoRenew.build(context)
|
77
81
|
when :enable_domain_transfer_lock
|
@@ -92,6 +96,8 @@ module Aws::Route53Domains
|
|
92
96
|
Aws::Route53Domains::Endpoints::ListPrices.build(context)
|
93
97
|
when :list_tags_for_domain
|
94
98
|
Aws::Route53Domains::Endpoints::ListTagsForDomain.build(context)
|
99
|
+
when :push_domain
|
100
|
+
Aws::Route53Domains::Endpoints::PushDomain.build(context)
|
95
101
|
when :register_domain
|
96
102
|
Aws::Route53Domains::Endpoints::RegisterDomain.build(context)
|
97
103
|
when :reject_domain_transfer_from_another_aws_account
|
@@ -100,6 +106,8 @@ module Aws::Route53Domains
|
|
100
106
|
Aws::Route53Domains::Endpoints::RenewDomain.build(context)
|
101
107
|
when :resend_contact_reachability_email
|
102
108
|
Aws::Route53Domains::Endpoints::ResendContactReachabilityEmail.build(context)
|
109
|
+
when :resend_operation_authorization
|
110
|
+
Aws::Route53Domains::Endpoints::ResendOperationAuthorization.build(context)
|
103
111
|
when :retrieve_domain_auth_code
|
104
112
|
Aws::Route53Domains::Endpoints::RetrieveDomainAuthCode.build(context)
|
105
113
|
when :transfer_domain
|