aws-sdk-route53 1.57.0 → 1.61.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +60 -34
- data/lib/aws-sdk-route53/client_api.rb +1 -0
- data/lib/aws-sdk-route53/types.rb +49 -39
- 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: 760eba3745b468dde8b231020cd39c3cd2497a4ac5572fde410c55ce3471d0f3
|
4
|
+
data.tar.gz: 7e1d56e03e4babca2f5afd6da9871a8b44827468ee67261c08b95c062142575b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f8b8487f2b860efecaa03b8711c95a899f629003c09bf5a81f163f046c0402f0ef91ca1ae6a94149c29f0f26a6b8973646abcd707f6294928865f93e29fcd79
|
7
|
+
data.tar.gz: b419cf49448477e5eb94aab273cf4bcd1778e1487612fa3f9b34540cd2e516c40e51e43b467f35fb08d74ceddd19d3c609cea1c3e2061925113f7d4a3f42f14d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.61.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.60.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.59.0 (2021-12-06)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Add PriorRequestNotComplete exception to UpdateHostedZoneComment API
|
18
|
+
|
19
|
+
1.58.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.57.0 (2021-11-04)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.61.0
|
@@ -27,6 +27,8 @@ 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/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_xml.rb'
|
32
34
|
require 'aws-sdk-route53/plugins/id_fix.rb'
|
@@ -74,6 +76,8 @@ module Aws::Route53
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
80
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
77
81
|
add_plugin(Aws::Plugins::SignatureV4)
|
78
82
|
add_plugin(Aws::Plugins::Protocols::RestXml)
|
79
83
|
add_plugin(Aws::Route53::Plugins::IdFix)
|
@@ -121,7 +125,9 @@ module Aws::Route53
|
|
121
125
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
126
|
# are very aggressive. Construct and pass an instance of
|
123
127
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
-
# enable retries and extended timeouts.
|
128
|
+
# enable retries and extended timeouts. Instance profile credential
|
129
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
130
|
+
# to true.
|
125
131
|
#
|
126
132
|
# @option options [required, String] :region
|
127
133
|
# The AWS region to connect to. The configured `:region` is
|
@@ -175,6 +181,10 @@ module Aws::Route53
|
|
175
181
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
182
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
183
|
#
|
184
|
+
# @option options [String] :defaults_mode ("legacy")
|
185
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
186
|
+
# accepted modes and the configuration defaults that are included.
|
187
|
+
#
|
178
188
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
189
|
# Set to true to disable SDK automatically adding host prefix
|
180
190
|
# to default service endpoint when available.
|
@@ -297,7 +307,7 @@ module Aws::Route53
|
|
297
307
|
# seconds to wait when opening a HTTP session before raising a
|
298
308
|
# `Timeout::Error`.
|
299
309
|
#
|
300
|
-
# @option options [
|
310
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
311
|
# number of seconds to wait for response data. This value can
|
302
312
|
# safely be set per-request on the session.
|
303
313
|
#
|
@@ -313,6 +323,9 @@ module Aws::Route53
|
|
313
323
|
# disables this behaviour. This value can safely be set per
|
314
324
|
# request on the session.
|
315
325
|
#
|
326
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
327
|
+
# in seconds.
|
328
|
+
#
|
316
329
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
330
|
# HTTP debug output will be sent to the `:logger`.
|
318
331
|
#
|
@@ -438,7 +451,7 @@ module Aws::Route53
|
|
438
451
|
# resp = client.associate_vpc_with_hosted_zone({
|
439
452
|
# hosted_zone_id: "ResourceId", # required
|
440
453
|
# vpc: { # required
|
441
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
454
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
442
455
|
# vpc_id: "VPCId",
|
443
456
|
# },
|
444
457
|
# comment: "AssociateVPCComment",
|
@@ -1168,7 +1181,7 @@ module Aws::Route53
|
|
1168
1181
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
1169
1182
|
# set_identifier: "ResourceRecordSetIdentifier",
|
1170
1183
|
# weight: 1,
|
1171
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
1184
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
1172
1185
|
# geo_location: {
|
1173
1186
|
# continent_code: "GeoLocationContinentCode",
|
1174
1187
|
# country_code: "GeoLocationCountryCode",
|
@@ -1388,7 +1401,7 @@ module Aws::Route53
|
|
1388
1401
|
# enable_sni: false,
|
1389
1402
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
1390
1403
|
# alarm_identifier: {
|
1391
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1404
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
1392
1405
|
# name: "AlarmName", # required
|
1393
1406
|
# },
|
1394
1407
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1419,7 +1432,7 @@ module Aws::Route53
|
|
1419
1432
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
1420
1433
|
# resp.health_check.health_check_config.regions #=> Array
|
1421
1434
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
1422
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
1435
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1"
|
1423
1436
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
1424
1437
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
1425
1438
|
# resp.health_check.health_check_config.routing_control_arn #=> String
|
@@ -1514,7 +1527,10 @@ module Aws::Route53
|
|
1514
1527
|
# about the Amazon VPC that you're associating with this hosted zone.
|
1515
1528
|
#
|
1516
1529
|
# You can specify only one Amazon VPC when you create a private hosted
|
1517
|
-
# zone.
|
1530
|
+
# zone. If you are associating a VPC with a hosted zone with this
|
1531
|
+
# request, the paramaters `VPCId` and `VPCRegion` are also required.
|
1532
|
+
#
|
1533
|
+
# To associate additional Amazon VPCs with the hosted zone, use
|
1518
1534
|
# [AssociateVPCWithHostedZone][1] after you create a hosted zone.
|
1519
1535
|
#
|
1520
1536
|
#
|
@@ -1562,7 +1578,7 @@ module Aws::Route53
|
|
1562
1578
|
# resp = client.create_hosted_zone({
|
1563
1579
|
# name: "DNSName", # required
|
1564
1580
|
# vpc: {
|
1565
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1581
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1566
1582
|
# vpc_id: "VPCId",
|
1567
1583
|
# },
|
1568
1584
|
# caller_reference: "Nonce", # required
|
@@ -1591,7 +1607,7 @@ module Aws::Route53
|
|
1591
1607
|
# resp.delegation_set.caller_reference #=> String
|
1592
1608
|
# resp.delegation_set.name_servers #=> Array
|
1593
1609
|
# resp.delegation_set.name_servers[0] #=> String
|
1594
|
-
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
1610
|
+
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
1595
1611
|
# resp.vpc.vpc_id #=> String
|
1596
1612
|
# resp.location #=> String
|
1597
1613
|
#
|
@@ -1614,14 +1630,14 @@ module Aws::Route53
|
|
1614
1630
|
# The unique string (ID) used to identify a hosted zone.
|
1615
1631
|
#
|
1616
1632
|
# @option params [required, String] :key_management_service_arn
|
1617
|
-
# The Amazon resource name (ARN) for a customer managed
|
1618
|
-
#
|
1619
|
-
#
|
1620
|
-
#
|
1621
|
-
#
|
1622
|
-
# DNSSEC, scroll down to **Example**.
|
1633
|
+
# The Amazon resource name (ARN) for a customer managed key in Key
|
1634
|
+
# Management Service (KMS). The `KeyManagementServiceArn` must be unique
|
1635
|
+
# for each key-signing key (KSK) in a single hosted zone. To see an
|
1636
|
+
# example of `KeyManagementServiceArn` that grants the correct
|
1637
|
+
# permissions for DNSSEC, scroll down to **Example**.
|
1623
1638
|
#
|
1624
|
-
# You must configure the customer managed
|
1639
|
+
# You must configure the customer managed customer managed key as
|
1640
|
+
# follows:
|
1625
1641
|
#
|
1626
1642
|
# Status
|
1627
1643
|
#
|
@@ -1652,7 +1668,7 @@ module Aws::Route53
|
|
1652
1668
|
#
|
1653
1669
|
# ^
|
1654
1670
|
#
|
1655
|
-
# For more information about working with a customer managed
|
1671
|
+
# For more information about working with a customer managed key in KMS,
|
1656
1672
|
# see [Key Management Service concepts][1].
|
1657
1673
|
#
|
1658
1674
|
#
|
@@ -2201,7 +2217,7 @@ module Aws::Route53
|
|
2201
2217
|
# resp = client.create_vpc_association_authorization({
|
2202
2218
|
# hosted_zone_id: "ResourceId", # required
|
2203
2219
|
# vpc: { # required
|
2204
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2220
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2205
2221
|
# vpc_id: "VPCId",
|
2206
2222
|
# },
|
2207
2223
|
# })
|
@@ -2209,7 +2225,7 @@ module Aws::Route53
|
|
2209
2225
|
# @example Response structure
|
2210
2226
|
#
|
2211
2227
|
# resp.hosted_zone_id #=> String
|
2212
|
-
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
2228
|
+
# resp.vpc.vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
2213
2229
|
# resp.vpc.vpc_id #=> String
|
2214
2230
|
#
|
2215
2231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/CreateVPCAssociationAuthorization AWS API Documentation
|
@@ -2389,6 +2405,16 @@ module Aws::Route53
|
|
2389
2405
|
# deactivate it. The KSK must be deactivated before you can delete it
|
2390
2406
|
# regardless of whether the hosted zone is enabled for DNSSEC signing.
|
2391
2407
|
#
|
2408
|
+
# You can use [DeactivateKeySigningKey][1] to deactivate the key before
|
2409
|
+
# you delete it.
|
2410
|
+
#
|
2411
|
+
# Use [GetDNSSEC][2] to verify that the KSK is in an `INACTIVE` status.
|
2412
|
+
#
|
2413
|
+
#
|
2414
|
+
#
|
2415
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_DeactivateKeySigningKey.html
|
2416
|
+
# [2]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetDNSSEC.html
|
2417
|
+
#
|
2392
2418
|
# @option params [required, String] :hosted_zone_id
|
2393
2419
|
# A unique string used to identify a hosted zone.
|
2394
2420
|
#
|
@@ -2594,7 +2620,7 @@ module Aws::Route53
|
|
2594
2620
|
# resp = client.delete_vpc_association_authorization({
|
2595
2621
|
# hosted_zone_id: "ResourceId", # required
|
2596
2622
|
# vpc: { # required
|
2597
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2623
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2598
2624
|
# vpc_id: "VPCId",
|
2599
2625
|
# },
|
2600
2626
|
# })
|
@@ -2689,7 +2715,7 @@ module Aws::Route53
|
|
2689
2715
|
# resp = client.disassociate_vpc_from_hosted_zone({
|
2690
2716
|
# hosted_zone_id: "ResourceId", # required
|
2691
2717
|
# vpc: { # required
|
2692
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2718
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2693
2719
|
# vpc_id: "VPCId",
|
2694
2720
|
# },
|
2695
2721
|
# comment: "DisassociateVPCComment",
|
@@ -3066,7 +3092,7 @@ module Aws::Route53
|
|
3066
3092
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
3067
3093
|
# resp.health_check.health_check_config.regions #=> Array
|
3068
3094
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
3069
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
3095
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1"
|
3070
3096
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
3071
3097
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
3072
3098
|
# resp.health_check.health_check_config.routing_control_arn #=> String
|
@@ -3260,7 +3286,7 @@ module Aws::Route53
|
|
3260
3286
|
# resp.delegation_set.name_servers #=> Array
|
3261
3287
|
# resp.delegation_set.name_servers[0] #=> String
|
3262
3288
|
# resp.vp_cs #=> Array
|
3263
|
-
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
3289
|
+
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
3264
3290
|
# resp.vp_cs[0].vpc_id #=> String
|
3265
3291
|
#
|
3266
3292
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/GetHostedZone AWS API Documentation
|
@@ -3735,7 +3761,7 @@ module Aws::Route53
|
|
3735
3761
|
# resp.health_checks[0].health_check_config.enable_sni #=> Boolean
|
3736
3762
|
# resp.health_checks[0].health_check_config.regions #=> Array
|
3737
3763
|
# resp.health_checks[0].health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
3738
|
-
# resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
3764
|
+
# resp.health_checks[0].health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1"
|
3739
3765
|
# resp.health_checks[0].health_check_config.alarm_identifier.name #=> String
|
3740
3766
|
# resp.health_checks[0].health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
3741
3767
|
# resp.health_checks[0].health_check_config.routing_control_arn #=> String
|
@@ -4023,7 +4049,7 @@ module Aws::Route53
|
|
4023
4049
|
#
|
4024
4050
|
# resp = client.list_hosted_zones_by_vpc({
|
4025
4051
|
# vpc_id: "VPCId", # required
|
4026
|
-
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
4052
|
+
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
4027
4053
|
# max_items: 1,
|
4028
4054
|
# next_token: "PaginationToken",
|
4029
4055
|
# })
|
@@ -4281,7 +4307,7 @@ module Aws::Route53
|
|
4281
4307
|
# resp.resource_record_sets[0].type #=> String, one of "SOA", "A", "TXT", "NS", "CNAME", "MX", "NAPTR", "PTR", "SRV", "SPF", "AAAA", "CAA", "DS"
|
4282
4308
|
# resp.resource_record_sets[0].set_identifier #=> String
|
4283
4309
|
# resp.resource_record_sets[0].weight #=> Integer
|
4284
|
-
# resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "me-south-1", "ap-south-1", "af-south-1", "eu-south-1"
|
4310
|
+
# resp.resource_record_sets[0].region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-north-1", "cn-northwest-1", "ap-east-1", "me-south-1", "ap-south-1", "af-south-1", "eu-south-1"
|
4285
4311
|
# resp.resource_record_sets[0].geo_location.continent_code #=> String
|
4286
4312
|
# resp.resource_record_sets[0].geo_location.country_code #=> String
|
4287
4313
|
# resp.resource_record_sets[0].geo_location.subdivision_code #=> String
|
@@ -4959,7 +4985,7 @@ module Aws::Route53
|
|
4959
4985
|
# resp.hosted_zone_id #=> String
|
4960
4986
|
# resp.next_token #=> String
|
4961
4987
|
# resp.vp_cs #=> Array
|
4962
|
-
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
4988
|
+
# resp.vp_cs[0].vpc_region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "eu-west-1", "eu-west-2", "eu-west-3", "eu-central-1", "ap-east-1", "me-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-south-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "ca-central-1", "cn-north-1", "af-south-1", "eu-south-1"
|
4963
4989
|
# resp.vp_cs[0].vpc_id #=> String
|
4964
4990
|
#
|
4965
4991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListVPCAssociationAuthorizations AWS API Documentation
|
@@ -5361,10 +5387,10 @@ module Aws::Route53
|
|
5361
5387
|
#
|
5362
5388
|
# * `Unhealthy`\: Route 53 considers the health check to be unhealthy.
|
5363
5389
|
#
|
5364
|
-
# * `LastKnownStatus`\: Route 53 uses the status of the
|
5365
|
-
# from the last time CloudWatch had sufficient data to
|
5366
|
-
# alarm state. For new health checks that have no last
|
5367
|
-
# the
|
5390
|
+
# * `LastKnownStatus`\: By default, Route 53 uses the status of the
|
5391
|
+
# health check from the last time CloudWatch had sufficient data to
|
5392
|
+
# determine the alarm state. For new health checks that have no last
|
5393
|
+
# known status, the status for the health check is healthy.
|
5368
5394
|
#
|
5369
5395
|
# @option params [Array<String>] :reset_elements
|
5370
5396
|
# A complex type that contains one `ResettableElementName` element for
|
@@ -5411,7 +5437,7 @@ module Aws::Route53
|
|
5411
5437
|
# enable_sni: false,
|
5412
5438
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
5413
5439
|
# alarm_identifier: {
|
5414
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
5440
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
5415
5441
|
# name: "AlarmName", # required
|
5416
5442
|
# },
|
5417
5443
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -5441,7 +5467,7 @@ module Aws::Route53
|
|
5441
5467
|
# resp.health_check.health_check_config.enable_sni #=> Boolean
|
5442
5468
|
# resp.health_check.health_check_config.regions #=> Array
|
5443
5469
|
# resp.health_check.health_check_config.regions[0] #=> String, one of "us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"
|
5444
|
-
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-isob-east-1"
|
5470
|
+
# resp.health_check.health_check_config.alarm_identifier.region #=> String, one of "us-east-1", "us-east-2", "us-west-1", "us-west-2", "ca-central-1", "eu-central-1", "eu-west-1", "eu-west-2", "eu-west-3", "ap-east-1", "me-south-1", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "eu-north-1", "sa-east-1", "cn-northwest-1", "cn-north-1", "af-south-1", "eu-south-1", "us-gov-west-1", "us-gov-east-1", "us-iso-east-1", "us-iso-west-1", "us-isob-east-1"
|
5445
5471
|
# resp.health_check.health_check_config.alarm_identifier.name #=> String
|
5446
5472
|
# resp.health_check.health_check_config.insufficient_data_health_status #=> String, one of "Healthy", "Unhealthy", "LastKnownStatus"
|
5447
5473
|
# resp.health_check.health_check_config.routing_control_arn #=> String
|
@@ -5634,7 +5660,7 @@ module Aws::Route53
|
|
5634
5660
|
params: params,
|
5635
5661
|
config: config)
|
5636
5662
|
context[:gem_name] = 'aws-sdk-route53'
|
5637
|
-
context[:gem_version] = '1.
|
5663
|
+
context[:gem_version] = '1.61.0'
|
5638
5664
|
Seahorse::Client::Request.new(handlers, context)
|
5639
5665
|
end
|
5640
5666
|
|
@@ -2223,6 +2223,7 @@ module Aws::Route53
|
|
2223
2223
|
o.output = Shapes::ShapeRef.new(shape: UpdateHostedZoneCommentResponse)
|
2224
2224
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchHostedZone)
|
2225
2225
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInput)
|
2226
|
+
o.errors << Shapes::ShapeRef.new(shape: PriorRequestNotComplete)
|
2226
2227
|
end)
|
2227
2228
|
|
2228
2229
|
api.add_operation(:update_traffic_policy_comment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -100,7 +100,7 @@ module Aws::Route53
|
|
100
100
|
# data as a hash:
|
101
101
|
#
|
102
102
|
# {
|
103
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
103
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
104
104
|
# name: "AlarmName", # required
|
105
105
|
# }
|
106
106
|
#
|
@@ -563,7 +563,7 @@ module Aws::Route53
|
|
563
563
|
# {
|
564
564
|
# hosted_zone_id: "ResourceId", # required
|
565
565
|
# vpc: { # required
|
566
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
566
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
567
567
|
# vpc_id: "VPCId",
|
568
568
|
# },
|
569
569
|
# comment: "AssociateVPCComment",
|
@@ -623,7 +623,7 @@ module Aws::Route53
|
|
623
623
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
624
624
|
# set_identifier: "ResourceRecordSetIdentifier",
|
625
625
|
# weight: 1,
|
626
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
626
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
627
627
|
# geo_location: {
|
628
628
|
# continent_code: "GeoLocationContinentCode",
|
629
629
|
# country_code: "GeoLocationCountryCode",
|
@@ -701,7 +701,7 @@ module Aws::Route53
|
|
701
701
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
702
702
|
# set_identifier: "ResourceRecordSetIdentifier",
|
703
703
|
# weight: 1,
|
704
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
704
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
705
705
|
# geo_location: {
|
706
706
|
# continent_code: "GeoLocationContinentCode",
|
707
707
|
# country_code: "GeoLocationCountryCode",
|
@@ -806,7 +806,7 @@ module Aws::Route53
|
|
806
806
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
807
807
|
# set_identifier: "ResourceRecordSetIdentifier",
|
808
808
|
# weight: 1,
|
809
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
809
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
810
810
|
# geo_location: {
|
811
811
|
# continent_code: "GeoLocationContinentCode",
|
812
812
|
# country_code: "GeoLocationCountryCode",
|
@@ -1094,7 +1094,7 @@ module Aws::Route53
|
|
1094
1094
|
# enable_sni: false,
|
1095
1095
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
1096
1096
|
# alarm_identifier: {
|
1097
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
1097
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
1098
1098
|
# name: "AlarmName", # required
|
1099
1099
|
# },
|
1100
1100
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -1169,7 +1169,7 @@ module Aws::Route53
|
|
1169
1169
|
# {
|
1170
1170
|
# name: "DNSName", # required
|
1171
1171
|
# vpc: {
|
1172
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1172
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1173
1173
|
# vpc_id: "VPCId",
|
1174
1174
|
# },
|
1175
1175
|
# caller_reference: "Nonce", # required
|
@@ -1199,7 +1199,10 @@ module Aws::Route53
|
|
1199
1199
|
# about the Amazon VPC that you're associating with this hosted zone.
|
1200
1200
|
#
|
1201
1201
|
# You can specify only one Amazon VPC when you create a private hosted
|
1202
|
-
# zone.
|
1202
|
+
# zone. If you are associating a VPC with a hosted zone with this
|
1203
|
+
# request, the paramaters `VPCId` and `VPCRegion` are also required.
|
1204
|
+
#
|
1205
|
+
# To associate additional Amazon VPCs with the hosted zone, use
|
1203
1206
|
# [AssociateVPCWithHostedZone][1] after you create a hosted zone.
|
1204
1207
|
#
|
1205
1208
|
#
|
@@ -1309,14 +1312,14 @@ module Aws::Route53
|
|
1309
1312
|
# @return [String]
|
1310
1313
|
#
|
1311
1314
|
# @!attribute [rw] key_management_service_arn
|
1312
|
-
# The Amazon resource name (ARN) for a customer managed
|
1313
|
-
#
|
1314
|
-
#
|
1315
|
-
#
|
1316
|
-
#
|
1317
|
-
# DNSSEC, scroll down to **Example**.
|
1315
|
+
# The Amazon resource name (ARN) for a customer managed key in Key
|
1316
|
+
# Management Service (KMS). The `KeyManagementServiceArn` must be
|
1317
|
+
# unique for each key-signing key (KSK) in a single hosted zone. To
|
1318
|
+
# see an example of `KeyManagementServiceArn` that grants the correct
|
1319
|
+
# permissions for DNSSEC, scroll down to **Example**.
|
1318
1320
|
#
|
1319
|
-
# You must configure the customer managed
|
1321
|
+
# You must configure the customer managed customer managed key as
|
1322
|
+
# follows:
|
1320
1323
|
#
|
1321
1324
|
# Status
|
1322
1325
|
#
|
@@ -1347,7 +1350,7 @@ module Aws::Route53
|
|
1347
1350
|
#
|
1348
1351
|
# ^
|
1349
1352
|
#
|
1350
|
-
# For more information about working with a customer managed
|
1353
|
+
# For more information about working with a customer managed key in
|
1351
1354
|
# KMS, see [Key Management Service concepts][1].
|
1352
1355
|
#
|
1353
1356
|
#
|
@@ -1720,7 +1723,7 @@ module Aws::Route53
|
|
1720
1723
|
# {
|
1721
1724
|
# hosted_zone_id: "ResourceId", # required
|
1722
1725
|
# vpc: { # required
|
1723
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1726
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
1724
1727
|
# vpc_id: "VPCId",
|
1725
1728
|
# },
|
1726
1729
|
# }
|
@@ -1802,8 +1805,8 @@ module Aws::Route53
|
|
1802
1805
|
#
|
1803
1806
|
# : There is a problem with signing in the hosted zone that requires
|
1804
1807
|
# you to take action to resolve. For example, the customer managed
|
1805
|
-
#
|
1806
|
-
#
|
1808
|
+
# key might have been deleted, or the permissions for the customer
|
1809
|
+
# managed key might have been changed.
|
1807
1810
|
#
|
1808
1811
|
# INTERNAL\_FAILURE
|
1809
1812
|
#
|
@@ -2192,7 +2195,7 @@ module Aws::Route53
|
|
2192
2195
|
# {
|
2193
2196
|
# hosted_zone_id: "ResourceId", # required
|
2194
2197
|
# vpc: { # required
|
2195
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2198
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2196
2199
|
# vpc_id: "VPCId",
|
2197
2200
|
# },
|
2198
2201
|
# }
|
@@ -2289,7 +2292,7 @@ module Aws::Route53
|
|
2289
2292
|
# {
|
2290
2293
|
# hosted_zone_id: "ResourceId", # required
|
2291
2294
|
# vpc: { # required
|
2292
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2295
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
2293
2296
|
# vpc_id: "VPCId",
|
2294
2297
|
# },
|
2295
2298
|
# comment: "DisassociateVPCComment",
|
@@ -3353,7 +3356,7 @@ module Aws::Route53
|
|
3353
3356
|
# enable_sni: false,
|
3354
3357
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
3355
3358
|
# alarm_identifier: {
|
3356
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
3359
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
3357
3360
|
# name: "AlarmName", # required
|
3358
3361
|
# },
|
3359
3362
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -4276,11 +4279,10 @@ module Aws::Route53
|
|
4276
4279
|
#
|
4277
4280
|
# @!attribute [rw] kms_arn
|
4278
4281
|
# The Amazon resource name (ARN) used to identify the customer managed
|
4279
|
-
#
|
4280
|
-
#
|
4281
|
-
# hosted zone.
|
4282
|
+
# key in Key Management Service (KMS). The `KmsArn` must be unique for
|
4283
|
+
# each key-signing key (KSK) in a single hosted zone.
|
4282
4284
|
#
|
4283
|
-
# You must configure the
|
4285
|
+
# You must configure the customer managed key as follows:
|
4284
4286
|
#
|
4285
4287
|
# Status
|
4286
4288
|
#
|
@@ -4311,7 +4313,7 @@ module Aws::Route53
|
|
4311
4313
|
#
|
4312
4314
|
# ^
|
4313
4315
|
#
|
4314
|
-
# For more information about working with the customer managed
|
4316
|
+
# For more information about working with the customer managed key in
|
4315
4317
|
# KMS, see [Key Management Service concepts][1].
|
4316
4318
|
#
|
4317
4319
|
#
|
@@ -4416,9 +4418,9 @@ module Aws::Route53
|
|
4416
4418
|
# ACTION\_NEEDED
|
4417
4419
|
#
|
4418
4420
|
# : There is a problem with the KSK that requires you to take action
|
4419
|
-
# to resolve. For example, the customer managed
|
4420
|
-
#
|
4421
|
-
#
|
4421
|
+
# to resolve. For example, the customer managed key might have been
|
4422
|
+
# deleted, or the permissions for the customer managed key might
|
4423
|
+
# have been changed.
|
4422
4424
|
#
|
4423
4425
|
# INTERNAL\_FAILURE
|
4424
4426
|
#
|
@@ -4467,7 +4469,7 @@ module Aws::Route53
|
|
4467
4469
|
end
|
4468
4470
|
|
4469
4471
|
# You've already created a key-signing key (KSK) with this name or with
|
4470
|
-
# the same customer managed
|
4472
|
+
# the same customer managed key ARN.
|
4471
4473
|
#
|
4472
4474
|
# @!attribute [rw] message
|
4473
4475
|
# @return [String]
|
@@ -4925,7 +4927,7 @@ module Aws::Route53
|
|
4925
4927
|
#
|
4926
4928
|
# {
|
4927
4929
|
# vpc_id: "VPCId", # required
|
4928
|
-
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
4930
|
+
# vpc_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
4929
4931
|
# max_items: 1,
|
4930
4932
|
# next_token: "PaginationToken",
|
4931
4933
|
# }
|
@@ -6419,7 +6421,7 @@ module Aws::Route53
|
|
6419
6421
|
# type: "SOA", # required, accepts SOA, A, TXT, NS, CNAME, MX, NAPTR, PTR, SRV, SPF, AAAA, CAA, DS
|
6420
6422
|
# set_identifier: "ResourceRecordSetIdentifier",
|
6421
6423
|
# weight: 1,
|
6422
|
-
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
6424
|
+
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-north-1, cn-northwest-1, ap-east-1, me-south-1, ap-south-1, af-south-1, eu-south-1
|
6423
6425
|
# geo_location: {
|
6424
6426
|
# continent_code: "GeoLocationContinentCode",
|
6425
6427
|
# country_code: "GeoLocationCountryCode",
|
@@ -7692,7 +7694,7 @@ module Aws::Route53
|
|
7692
7694
|
# enable_sni: false,
|
7693
7695
|
# regions: ["us-east-1"], # accepts us-east-1, us-west-1, us-west-2, eu-west-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1
|
7694
7696
|
# alarm_identifier: {
|
7695
|
-
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1
|
7697
|
+
# region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, ap-east-1, me-south-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, cn-northwest-1, cn-north-1, af-south-1, eu-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1
|
7696
7698
|
# name: "AlarmName", # required
|
7697
7699
|
# },
|
7698
7700
|
# insufficient_data_health_status: "Healthy", # accepts Healthy, Unhealthy, LastKnownStatus
|
@@ -8011,10 +8013,10 @@ module Aws::Route53
|
|
8011
8013
|
#
|
8012
8014
|
# * `Unhealthy`\: Route 53 considers the health check to be unhealthy.
|
8013
8015
|
#
|
8014
|
-
# * `LastKnownStatus`\: Route 53 uses the status of the
|
8015
|
-
# from the last time CloudWatch had sufficient data to
|
8016
|
-
# alarm state. For new health checks that have no last
|
8017
|
-
# the
|
8016
|
+
# * `LastKnownStatus`\: By default, Route 53 uses the status of the
|
8017
|
+
# health check from the last time CloudWatch had sufficient data to
|
8018
|
+
# determine the alarm state. For new health checks that have no last
|
8019
|
+
# known status, the status for the health check is healthy.
|
8018
8020
|
# @return [String]
|
8019
8021
|
#
|
8020
8022
|
# @!attribute [rw] reset_elements
|
@@ -8243,11 +8245,19 @@ module Aws::Route53
|
|
8243
8245
|
# (Private hosted zones only) A complex type that contains information
|
8244
8246
|
# about an Amazon VPC.
|
8245
8247
|
#
|
8248
|
+
# If you associate a private hosted zone with an Amazon VPC when you
|
8249
|
+
# make a [CreateHostedZone][1] request, the following parameters are
|
8250
|
+
# also required.
|
8251
|
+
#
|
8252
|
+
#
|
8253
|
+
#
|
8254
|
+
# [1]: https://docs.aws.amazon.com/Route53/latest/APIReference/API_CreateHostedZone.html
|
8255
|
+
#
|
8246
8256
|
# @note When making an API call, you may pass VPC
|
8247
8257
|
# data as a hash:
|
8248
8258
|
#
|
8249
8259
|
# {
|
8250
|
-
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
8260
|
+
# vpc_region: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ap-east-1, me-south-1, us-gov-west-1, us-gov-east-1, us-iso-east-1, us-iso-west-1, us-isob-east-1, ap-southeast-1, ap-southeast-2, ap-southeast-3, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, eu-north-1, sa-east-1, ca-central-1, cn-north-1, af-south-1, eu-south-1
|
8251
8261
|
# vpc_id: "VPCId",
|
8252
8262
|
# }
|
8253
8263
|
#
|
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.61.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-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|