aws-sdk-route53 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/lib/aws-sdk-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +45 -25
- data/lib/aws-sdk-route53/types.rb +3 -2
- 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: 22ea9043d386e38fcf44c3e820e67fe772ad18f6fbb903168a053ae0deed5957
|
4
|
+
data.tar.gz: cb70e9e00a8ac713f1d941505ab7e9a20b29545b328d69cbc0d99161aa0037e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8310ff7fea885169d527aa934c06edb0977b0cb06bba075be490060e3fe4abaebc9c09763cbe0c1f90cd8a62f43a05d45d6877e8ef0ecef35ebfe04292fcceff
|
7
|
+
data.tar.gz: 25c77fb3ad9aa490ee614d0f3def28fc27f4e5280d5805c8b42c482da76cc466d8df90db63f7e35651137ee30e5af3672339cdc311eaa940d0a2d2ae9f37d93f
|
data/lib/aws-sdk-route53.rb
CHANGED
@@ -331,31 +331,19 @@ module Aws::Route53
|
|
331
331
|
|
332
332
|
# Associates an Amazon VPC with a private hosted zone.
|
333
333
|
#
|
334
|
-
#
|
335
|
-
# already exist.
|
336
|
-
#
|
334
|
+
# To perform the association, the VPC and the private hosted zone must
|
335
|
+
# already exist. You can't convert a public hosted zone into a private
|
336
|
+
# hosted zone.
|
337
|
+
#
|
338
|
+
# <note markdown="1"> If you want to associate a VPC that was created by using one AWS
|
339
|
+
# account with a private hosted zone that was created by using a
|
340
|
+
# different account, the AWS account that created the private hosted
|
341
|
+
# zone must first submit a `CreateVPCAssociationAuthorization` request.
|
342
|
+
# Then the account that created the VPC must submit an
|
343
|
+
# `AssociateVPCWithHostedZone` request.
|
337
344
|
#
|
338
345
|
# </note>
|
339
346
|
#
|
340
|
-
# If you want to associate a VPC that was created by one AWS account
|
341
|
-
# with a private hosted zone that was created by a different account, do
|
342
|
-
# one of the following:
|
343
|
-
#
|
344
|
-
# * Use the AWS account that created the private hosted zone to submit a
|
345
|
-
# [CreateVPCAssociationAuthorization][1] request. Then use the account
|
346
|
-
# that created the VPC to submit an `AssociateVPCWithHostedZone`
|
347
|
-
# request.
|
348
|
-
#
|
349
|
-
# * If a subnet in the VPC was shared with another account, you can use
|
350
|
-
# the account that the subnet was shared with to submit an
|
351
|
-
# `AssociateVPCWithHostedZone` request. For more information about
|
352
|
-
# sharing subnets, see [Working with Shared VPCs][2].
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateVPCAssociationAuthorization.html
|
357
|
-
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html
|
358
|
-
#
|
359
347
|
# @option params [required, String] :hosted_zone_id
|
360
348
|
# The ID of the private hosted zone that you want to associate an Amazon
|
361
349
|
# VPC with.
|
@@ -2261,6 +2249,24 @@ module Aws::Route53
|
|
2261
2249
|
|
2262
2250
|
# Deletes a traffic policy.
|
2263
2251
|
#
|
2252
|
+
# When you delete a traffic policy, Route 53 sets a flag on the policy
|
2253
|
+
# to indicate that it has been deleted. However, Route 53 never fully
|
2254
|
+
# deletes the traffic policy. Note the following:
|
2255
|
+
#
|
2256
|
+
# * Deleted traffic policies aren't listed if you run
|
2257
|
+
# [ListTrafficPolicies][1].
|
2258
|
+
#
|
2259
|
+
# * There's no way to get a list of deleted policies.
|
2260
|
+
#
|
2261
|
+
# * If you retain the ID of the policy, you can get information about
|
2262
|
+
# the policy, including the traffic policy document, by running
|
2263
|
+
# [GetTrafficPolicy][2].
|
2264
|
+
#
|
2265
|
+
#
|
2266
|
+
#
|
2267
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListTrafficPolicies.html
|
2268
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetTrafficPolicy.html
|
2269
|
+
#
|
2264
2270
|
# @option params [required, String] :id
|
2265
2271
|
# The ID of the traffic policy that you want to delete.
|
2266
2272
|
#
|
@@ -3094,6 +3100,13 @@ module Aws::Route53
|
|
3094
3100
|
|
3095
3101
|
# Gets information about a specific traffic policy version.
|
3096
3102
|
#
|
3103
|
+
# For information about how of deleting a traffic policy affects the
|
3104
|
+
# response from `GetTrafficPolicy`, see [DeleteTrafficPolicy][1].
|
3105
|
+
#
|
3106
|
+
#
|
3107
|
+
#
|
3108
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html
|
3109
|
+
#
|
3097
3110
|
# @option params [required, String] :id
|
3098
3111
|
# The ID of the traffic policy that you want to get information about.
|
3099
3112
|
#
|
@@ -3617,8 +3630,8 @@ module Aws::Route53
|
|
3617
3630
|
# (Optional) The maximum number of hosted zones that you want Amazon
|
3618
3631
|
# Route 53 to return. If the specified VPC is associated with more than
|
3619
3632
|
# `MaxItems` hosted zones, the response includes a `NextToken` element.
|
3620
|
-
# `NextToken` contains
|
3621
|
-
# Route 53 will return if you submit another request.
|
3633
|
+
# `NextToken` contains an encrypted token that identifies the first
|
3634
|
+
# hosted zone that Route 53 will return if you submit another request.
|
3622
3635
|
#
|
3623
3636
|
# @option params [String] :next_token
|
3624
3637
|
# If the previous response included a `NextToken` element, the specified
|
@@ -4087,6 +4100,13 @@ module Aws::Route53
|
|
4087
4100
|
# that is associated with the current AWS account. Policies are listed
|
4088
4101
|
# in the order that they were created in.
|
4089
4102
|
#
|
4103
|
+
# For information about how of deleting a traffic policy affects the
|
4104
|
+
# response from `ListTrafficPolicies`, see [DeleteTrafficPolicy][1].
|
4105
|
+
#
|
4106
|
+
#
|
4107
|
+
#
|
4108
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicy.html
|
4109
|
+
#
|
4090
4110
|
# @option params [String] :traffic_policy_id_marker
|
4091
4111
|
# (Conditional) For your first request to `ListTrafficPolicies`, don't
|
4092
4112
|
# include the `TrafficPolicyIdMarker` parameter.
|
@@ -5244,7 +5264,7 @@ module Aws::Route53
|
|
5244
5264
|
params: params,
|
5245
5265
|
config: config)
|
5246
5266
|
context[:gem_name] = 'aws-sdk-route53'
|
5247
|
-
context[:gem_version] = '1.
|
5267
|
+
context[:gem_version] = '1.42.0'
|
5248
5268
|
Seahorse::Client::Request.new(handlers, context)
|
5249
5269
|
end
|
5250
5270
|
|
@@ -4209,8 +4209,9 @@ module Aws::Route53
|
|
4209
4209
|
# (Optional) The maximum number of hosted zones that you want Amazon
|
4210
4210
|
# Route 53 to return. If the specified VPC is associated with more
|
4211
4211
|
# than `MaxItems` hosted zones, the response includes a `NextToken`
|
4212
|
-
# element. `NextToken` contains
|
4213
|
-
# zone that Route 53 will return if you submit another
|
4212
|
+
# element. `NextToken` contains an encrypted token that identifies the
|
4213
|
+
# first hosted zone that Route 53 will return if you submit another
|
4214
|
+
# request.
|
4214
4215
|
# @return [Integer]
|
4215
4216
|
#
|
4216
4217
|
# @!attribute [rw] next_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.42.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: 2020-08-
|
11
|
+
date: 2020-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|