aws-sdk-route53 1.59.0 → 1.62.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +125 -15
- data/lib/aws-sdk-route53.rb +1 -1
- 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: 1fe73a5e9df5d0dbca4f6d8b19ae0d3a9f48bbf7a34189dd4621da6e5162c08b
|
4
|
+
data.tar.gz: 599e9075330bb10e3c851e92eac34b030c00ca9e0dd82cef599a283e2191a343
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfc21205e576f8dd43877f2d6dbb822c2fe32a495a957d579fe46285b24b580273b56a52e2de73f7b85f15776705a8cea54f98a7eb9dbc4aa6585842237af886
|
7
|
+
data.tar.gz: d7631d4697a520a75f911cf1459bce207f219becb1c6d05b8820df6facf4044331767e5a49add3b7dab57878e0e7f316b9e1f92dd22207d56f216c639feb7a77
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - SDK doc update for Route 53 to update some parameters with new information.
|
8
|
+
|
9
|
+
1.61.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.60.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.59.0 (2021-12-06)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
@@ -27,6 +27,9 @@ 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/checksum_algorithm.rb'
|
31
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
34
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
32
35
|
require 'aws-sdk-route53/plugins/id_fix.rb'
|
@@ -74,6 +77,9 @@ module Aws::Route53
|
|
74
77
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
78
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
79
|
add_plugin(Aws::Plugins::HttpChecksum)
|
80
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
81
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
82
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
77
83
|
add_plugin(Aws::Plugins::SignatureV4)
|
78
84
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
79
85
|
add_plugin(Aws::Route53::Plugins::IdFix)
|
@@ -177,6 +183,10 @@ module Aws::Route53
|
|
177
183
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
178
184
|
# a clock skew correction and retry requests with skewed client clocks.
|
179
185
|
#
|
186
|
+
# @option options [String] :defaults_mode ("legacy")
|
187
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
188
|
+
# accepted modes and the configuration defaults that are included.
|
189
|
+
#
|
180
190
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
181
191
|
# Set to true to disable SDK automatically adding host prefix
|
182
192
|
# to default service endpoint when available.
|
@@ -299,7 +309,7 @@ module Aws::Route53
|
|
299
309
|
# seconds to wait when opening a HTTP session before raising a
|
300
310
|
# `Timeout::Error`.
|
301
311
|
#
|
302
|
-
# @option options [
|
312
|
+
# @option options [Float] :http_read_timeout (60) The default
|
303
313
|
# number of seconds to wait for response data. This value can
|
304
314
|
# safely be set per-request on the session.
|
305
315
|
#
|
@@ -315,6 +325,9 @@ module Aws::Route53
|
|
315
325
|
# disables this behaviour. This value can safely be set per
|
316
326
|
# request on the session.
|
317
327
|
#
|
328
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
329
|
+
# in seconds.
|
330
|
+
#
|
318
331
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
319
332
|
# HTTP debug output will be sent to the `:logger`.
|
320
333
|
#
|
@@ -393,6 +406,27 @@ module Aws::Route53
|
|
393
406
|
#
|
394
407
|
# </note>
|
395
408
|
#
|
409
|
+
# <note markdown="1"> When granting access, the hosted zone and the Amazon VPC must belong
|
410
|
+
# to the same partition. A partition is a group of Amazon Web Services
|
411
|
+
# Regions. Each Amazon Web Services account is scoped to one partition.
|
412
|
+
#
|
413
|
+
# The following are the supported partitions:
|
414
|
+
#
|
415
|
+
# * `aws` - Amazon Web Services Regions
|
416
|
+
#
|
417
|
+
# * `aws-cn` - China Regions
|
418
|
+
#
|
419
|
+
# * `aws-us-gov` - Amazon Web Services GovCloud (US) Region
|
420
|
+
#
|
421
|
+
# For more information, see [Access Management][1] in the *Amazon Web
|
422
|
+
# Services General Reference*.
|
423
|
+
#
|
424
|
+
# </note>
|
425
|
+
#
|
426
|
+
#
|
427
|
+
#
|
428
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
429
|
+
#
|
396
430
|
# @option params [required, String] :hosted_zone_id
|
397
431
|
# The ID of the private hosted zone that you want to associate an Amazon
|
398
432
|
# VPC with.
|
@@ -522,9 +556,8 @@ module Aws::Route53
|
|
522
556
|
# * `DELETE`\: Deletes an existing resource record set that has the
|
523
557
|
# specified values.
|
524
558
|
#
|
525
|
-
# * `UPSERT`\: If a resource
|
526
|
-
#
|
527
|
-
# updates it with the values in the request.
|
559
|
+
# * `UPSERT`\: If a resource set exists Route 53 updates it with the
|
560
|
+
# values in the request.
|
528
561
|
#
|
529
562
|
# **Syntaxes for Creating, Updating, and Deleting Resource Record Sets**
|
530
563
|
#
|
@@ -1492,11 +1525,30 @@ module Aws::Route53
|
|
1492
1525
|
# The `CreateHostedZone` request requires the caller to have an
|
1493
1526
|
# `ec2:DescribeVpcs` permission.
|
1494
1527
|
#
|
1528
|
+
# <note markdown="1"> When creating private hosted zones, the Amazon VPC must belong to the
|
1529
|
+
# same partition where the hosted zone is created. A partition is a
|
1530
|
+
# group of Amazon Web Services Regions. Each Amazon Web Services account
|
1531
|
+
# is scoped to one partition.
|
1532
|
+
#
|
1533
|
+
# The following are the supported partitions:
|
1534
|
+
#
|
1535
|
+
# * `aws` - Amazon Web Services Regions
|
1536
|
+
#
|
1537
|
+
# * `aws-cn` - China Regions
|
1538
|
+
#
|
1539
|
+
# * `aws-us-gov` - Amazon Web Services GovCloud (US) Region
|
1540
|
+
#
|
1541
|
+
# For more information, see [Access Management][4] in the *Amazon Web
|
1542
|
+
# Services General Reference*.
|
1543
|
+
#
|
1544
|
+
# </note>
|
1545
|
+
#
|
1495
1546
|
#
|
1496
1547
|
#
|
1497
1548
|
# [1]: http://aws.amazon.com/route53/pricing/
|
1498
1549
|
# [2]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html
|
1499
1550
|
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/MigratingDNS.html
|
1551
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
1500
1552
|
#
|
1501
1553
|
# @option params [required, String] :name
|
1502
1554
|
# The name of the domain. Specify a fully qualified domain name, for
|
@@ -1781,6 +1833,23 @@ module Aws::Route53
|
|
1781
1833
|
#
|
1782
1834
|
# `arn:aws:logs:us-east-1:123412341234:log-group:/aws/route53/*`
|
1783
1835
|
#
|
1836
|
+
# To avoid the confused deputy problem, a security issue where an
|
1837
|
+
# entity without a permission for an action can coerce a
|
1838
|
+
# more-privileged entity to perform it, you can optionally limit
|
1839
|
+
# the permissions that a service has to a resource in a
|
1840
|
+
# resource-based policy by supplying the following values:
|
1841
|
+
#
|
1842
|
+
# * For `aws:SourceArn`, supply the hosted zone ARN used in
|
1843
|
+
# creating the query logging configuration. For example,
|
1844
|
+
# `aws:SourceArn: arn:aws:route53:::hostedzone/hosted zone ID`.
|
1845
|
+
#
|
1846
|
+
# * For `aws:SourceAccount`, supply the account ID for the account
|
1847
|
+
# that creates the query logging configuration. For example,
|
1848
|
+
# `aws:SourceAccount:111111111111`.
|
1849
|
+
#
|
1850
|
+
# For more information, see [The confused deputy problem][1] in
|
1851
|
+
# the *Amazon Web Services IAM User Guide*.
|
1852
|
+
#
|
1784
1853
|
# <note markdown="1"> You can't use the CloudWatch console to create or edit a
|
1785
1854
|
# resource policy. You must use the CloudWatch API, one of the
|
1786
1855
|
# Amazon Web Services SDKs, or the CLI.
|
@@ -1808,7 +1877,7 @@ module Aws::Route53
|
|
1808
1877
|
# corresponds with the International Air Transport Association airport
|
1809
1878
|
# code for an airport near the edge location. (These abbreviations
|
1810
1879
|
# might change in the future.) For a list of edge locations, see "The
|
1811
|
-
# Route 53 Global Network" on the [Route 53 Product Details][
|
1880
|
+
# Route 53 Global Network" on the [Route 53 Product Details][2] page.
|
1812
1881
|
#
|
1813
1882
|
# Queries That Are Logged
|
1814
1883
|
#
|
@@ -1823,32 +1892,33 @@ module Aws::Route53
|
|
1823
1892
|
# information about only one query out of every several thousand
|
1824
1893
|
# queries that are submitted to DNS. For more information about how
|
1825
1894
|
# DNS works, see [Routing Internet Traffic to Your Website or Web
|
1826
|
-
# Application][
|
1895
|
+
# Application][3] in the *Amazon Route 53 Developer Guide*.
|
1827
1896
|
#
|
1828
1897
|
# Log File Format
|
1829
1898
|
#
|
1830
1899
|
# : For a list of the values in each query log and the format of each
|
1831
|
-
# value, see [Logging DNS Queries][
|
1900
|
+
# value, see [Logging DNS Queries][4] in the *Amazon Route 53
|
1832
1901
|
# Developer Guide*.
|
1833
1902
|
#
|
1834
1903
|
# Pricing
|
1835
1904
|
#
|
1836
1905
|
# : For information about charges for query logs, see [Amazon CloudWatch
|
1837
|
-
# Pricing][
|
1906
|
+
# Pricing][5].
|
1838
1907
|
#
|
1839
1908
|
# How to Stop Logging
|
1840
1909
|
#
|
1841
1910
|
# : If you want Route 53 to stop sending query logs to CloudWatch Logs,
|
1842
1911
|
# delete the query logging configuration. For more information, see
|
1843
|
-
# [DeleteQueryLoggingConfig][
|
1912
|
+
# [DeleteQueryLoggingConfig][6].
|
1844
1913
|
#
|
1845
1914
|
#
|
1846
1915
|
#
|
1847
|
-
# [1]:
|
1848
|
-
# [2]:
|
1849
|
-
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/
|
1850
|
-
# [4]:
|
1851
|
-
# [5]:
|
1916
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/confused-deputy.html
|
1917
|
+
# [2]: http://aws.amazon.com/route53/details/
|
1918
|
+
# [3]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/welcome-dns-service.html
|
1919
|
+
# [4]: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/query-logs.html
|
1920
|
+
# [5]: http://aws.amazon.com/cloudwatch/pricing/
|
1921
|
+
# [6]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteQueryLoggingConfig.html
|
1852
1922
|
#
|
1853
1923
|
# @option params [required, String] :hosted_zone_id
|
1854
1924
|
# The ID of the hosted zone that you want to log queries for. You can
|
@@ -2680,9 +2750,27 @@ module Aws::Route53
|
|
2680
2750
|
# `DisassociateVPCFromHostedZone`. If the hosted zone has a value for
|
2681
2751
|
# `OwningService`, you can't use `DisassociateVPCFromHostedZone`.
|
2682
2752
|
#
|
2753
|
+
# <note markdown="1"> When revoking access, the hosted zone and the Amazon VPC must belong
|
2754
|
+
# to the same partition. A partition is a group of Amazon Web Services
|
2755
|
+
# Regions. Each Amazon Web Services account is scoped to one partition.
|
2756
|
+
#
|
2757
|
+
# The following are the supported partitions:
|
2758
|
+
#
|
2759
|
+
# * `aws` - Amazon Web Services Regions
|
2760
|
+
#
|
2761
|
+
# * `aws-cn` - China Regions
|
2762
|
+
#
|
2763
|
+
# * `aws-us-gov` - Amazon Web Services GovCloud (US) Region
|
2764
|
+
#
|
2765
|
+
# For more information, see [Access Management][2] in the *Amazon Web
|
2766
|
+
# Services General Reference*.
|
2767
|
+
#
|
2768
|
+
# </note>
|
2769
|
+
#
|
2683
2770
|
#
|
2684
2771
|
#
|
2685
2772
|
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListHostedZonesByVPC.html
|
2773
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
2686
2774
|
#
|
2687
2775
|
# @option params [required, String] :hosted_zone_id
|
2688
2776
|
# The ID of the private hosted zone that you want to disassociate a VPC
|
@@ -4003,6 +4091,28 @@ module Aws::Route53
|
|
4003
4091
|
# hosted zone was created by Amazon Elastic File System (Amazon EFS),
|
4004
4092
|
# the value of `Owner` is `efs.amazonaws.com`.
|
4005
4093
|
#
|
4094
|
+
# <note markdown="1"> When listing private hosted zones, the hosted zone and the Amazon VPC
|
4095
|
+
# must belong to the same partition where the hosted zones were created.
|
4096
|
+
# A partition is a group of Amazon Web Services Regions. Each Amazon Web
|
4097
|
+
# Services account is scoped to one partition.
|
4098
|
+
#
|
4099
|
+
# The following are the supported partitions:
|
4100
|
+
#
|
4101
|
+
# * `aws` - Amazon Web Services Regions
|
4102
|
+
#
|
4103
|
+
# * `aws-cn` - China Regions
|
4104
|
+
#
|
4105
|
+
# * `aws-us-gov` - Amazon Web Services GovCloud (US) Region
|
4106
|
+
#
|
4107
|
+
# For more information, see [Access Management][1] in the *Amazon Web
|
4108
|
+
# Services General Reference*.
|
4109
|
+
#
|
4110
|
+
# </note>
|
4111
|
+
#
|
4112
|
+
#
|
4113
|
+
#
|
4114
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
|
4115
|
+
#
|
4006
4116
|
# @option params [required, String] :vpc_id
|
4007
4117
|
# The ID of the Amazon VPC that you want to list hosted zones for.
|
4008
4118
|
#
|
@@ -5649,7 +5759,7 @@ module Aws::Route53
|
|
5649
5759
|
params: params,
|
5650
5760
|
config: config)
|
5651
5761
|
context[:gem_name] = 'aws-sdk-route53'
|
5652
|
-
context[:gem_version] = '1.
|
5762
|
+
context[:gem_version] = '1.62.0'
|
5653
5763
|
Seahorse::Client::Request.new(handlers, context)
|
5654
5764
|
end
|
5655
5765
|
|
data/lib/aws-sdk-route53.rb
CHANGED
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.62.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:
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|