aws-sdk-route53 1.78.0 → 1.80.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-route53/client.rb +40 -10
- data/lib/aws-sdk-route53/client_api.rb +2 -0
- data/lib/aws-sdk-route53/types.rb +17 -3
- 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: 7017c530de04b48a9ce2725f4c1fce879a14b6ae91aee17db43393156a0fb306
|
4
|
+
data.tar.gz: fa6c159b990388e4121c587f25387523593f6708d4271ae59a5ba05ce19feac6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27ae098c6fbcffb04eda8e5c00cf07dd77d3c887eecfb231ddae3f3e6e8a3274723ac40f70fcef1231fe86485845d5f362244ea186978d3828e580a8509baf41
|
7
|
+
data.tar.gz: 2bf634b904034ffb0b775c254923259400ef1f7ce76b8d71907f17f81058000a570a1e8db474c18da0a48ecabd08be3f1786303dab953fac5d0286a7b4939648
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2023-10-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add hostedzonetype filter to ListHostedZones API.
|
8
|
+
|
9
|
+
1.79.0 (2023-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.78.0 (2023-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -669,8 +669,9 @@ module Aws::Route53
|
|
669
669
|
# * `DELETE`: Deletes an existing resource record set that has the
|
670
670
|
# specified values.
|
671
671
|
#
|
672
|
-
# * `UPSERT`: If a resource set
|
673
|
-
# values in the
|
672
|
+
# * `UPSERT`: If a resource set doesn't exist, Route 53 creates it. If
|
673
|
+
# a resource set exists Route 53 updates it with the values in the
|
674
|
+
# request.
|
674
675
|
#
|
675
676
|
# **Syntaxes for Creating, Updating, and Deleting Resource Record Sets**
|
676
677
|
#
|
@@ -1552,6 +1553,10 @@ module Aws::Route53
|
|
1552
1553
|
# `CallerReference` but settings identical to an existing health
|
1553
1554
|
# check, Route 53 creates the health check.
|
1554
1555
|
#
|
1556
|
+
# Route 53 does not store the `CallerReference` for a deleted health
|
1557
|
+
# check indefinitely. The `CallerReference` for a deleted health check
|
1558
|
+
# will be deleted after a number of days.
|
1559
|
+
#
|
1555
1560
|
# @option params [required, Types::HealthCheckConfig] :health_check_config
|
1556
1561
|
# A complex type that contains settings for a new health check.
|
1557
1562
|
#
|
@@ -2289,6 +2294,16 @@ module Aws::Route53
|
|
2289
2294
|
# domain or subdomain name by using the resource record sets that
|
2290
2295
|
# `CreateTrafficPolicyInstance` created.
|
2291
2296
|
#
|
2297
|
+
# <note markdown="1"> After you submit an `CreateTrafficPolicyInstance` request, there's a
|
2298
|
+
# brief delay while Amazon Route 53 creates the resource record sets
|
2299
|
+
# that are specified in the traffic policy definition. Use
|
2300
|
+
# `GetTrafficPolicyInstance` with the `id` of new traffic policy
|
2301
|
+
# instance to confirm that the `CreateTrafficPolicyInstance` request
|
2302
|
+
# completed successfully. For more information, see the `State` response
|
2303
|
+
# element.
|
2304
|
+
#
|
2305
|
+
# </note>
|
2306
|
+
#
|
2292
2307
|
# @option params [required, String] :hosted_zone_id
|
2293
2308
|
# The ID of the hosted zone that you want Amazon Route 53 to create
|
2294
2309
|
# resource record sets in by using the configuration in a traffic
|
@@ -3269,6 +3284,8 @@ module Aws::Route53
|
|
3269
3284
|
# Amazon Route 53 uses the two-letter country codes that are specified
|
3270
3285
|
# in [ISO standard 3166-1 alpha-2][1].
|
3271
3286
|
#
|
3287
|
+
# Route 53 also supports the contry code **UA** forr Ukraine.
|
3288
|
+
#
|
3272
3289
|
#
|
3273
3290
|
#
|
3274
3291
|
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
@@ -3799,11 +3816,10 @@ module Aws::Route53
|
|
3799
3816
|
|
3800
3817
|
# Gets information about a specified traffic policy instance.
|
3801
3818
|
#
|
3802
|
-
# <note markdown="1">
|
3803
|
-
#
|
3804
|
-
#
|
3805
|
-
#
|
3806
|
-
# response element.
|
3819
|
+
# <note markdown="1"> Use `GetTrafficPolicyInstance` with the `id` of new traffic policy
|
3820
|
+
# instance to confirm that the `CreateTrafficPolicyInstance` or an
|
3821
|
+
# `UpdateTrafficPolicyInstance` request completed successfully. For more
|
3822
|
+
# information, see the `State` response element.
|
3807
3823
|
#
|
3808
3824
|
# </note>
|
3809
3825
|
#
|
@@ -4120,8 +4136,8 @@ module Aws::Route53
|
|
4120
4136
|
# @option params [Integer] :max_items
|
4121
4137
|
# The maximum number of health checks that you want `ListHealthChecks`
|
4122
4138
|
# to return in response to the current request. Amazon Route 53 returns
|
4123
|
-
# a maximum of
|
4124
|
-
#
|
4139
|
+
# a maximum of 1000 items. If you set `MaxItems` to a value greater than
|
4140
|
+
# 1000, Route 53 returns only the first 1000 health checks.
|
4125
4141
|
#
|
4126
4142
|
# @return [Types::ListHealthChecksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4127
4143
|
#
|
@@ -4225,6 +4241,9 @@ module Aws::Route53
|
|
4225
4241
|
# the hosted zones that are associated with a reusable delegation set,
|
4226
4242
|
# specify the ID of that reusable delegation set.
|
4227
4243
|
#
|
4244
|
+
# @option params [String] :hosted_zone_type
|
4245
|
+
# (Optional) Specifies if the hosted zone is private.
|
4246
|
+
#
|
4228
4247
|
# @return [Types::ListHostedZonesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4229
4248
|
#
|
4230
4249
|
# * {Types::ListHostedZonesResponse#hosted_zones #hosted_zones} => Array<Types::HostedZone>
|
@@ -4241,6 +4260,7 @@ module Aws::Route53
|
|
4241
4260
|
# marker: "PageMarker",
|
4242
4261
|
# max_items: 1,
|
4243
4262
|
# delegation_set_id: "ResourceId",
|
4263
|
+
# hosted_zone_type: "PrivateHostedZone", # accepts PrivateHostedZone
|
4244
4264
|
# })
|
4245
4265
|
#
|
4246
4266
|
# @example Response structure
|
@@ -6010,6 +6030,16 @@ module Aws::Route53
|
|
6010
6030
|
req.send_request(options)
|
6011
6031
|
end
|
6012
6032
|
|
6033
|
+
# <note markdown="1"> After you submit a `UpdateTrafficPolicyInstance` request, there's a
|
6034
|
+
# brief delay while Route 53 creates the resource record sets that are
|
6035
|
+
# specified in the traffic policy definition. Use
|
6036
|
+
# `GetTrafficPolicyInstance` with the `id` of updated traffic policy
|
6037
|
+
# instance confirm that the `UpdateTrafficPolicyInstance` request
|
6038
|
+
# completed successfully. For more information, see the `State` response
|
6039
|
+
# element.
|
6040
|
+
#
|
6041
|
+
# </note>
|
6042
|
+
#
|
6013
6043
|
# Updates the resource record sets in a specified hosted zone that were
|
6014
6044
|
# created based on the settings in a specified traffic policy version.
|
6015
6045
|
#
|
@@ -6094,7 +6124,7 @@ module Aws::Route53
|
|
6094
6124
|
params: params,
|
6095
6125
|
config: config)
|
6096
6126
|
context[:gem_name] = 'aws-sdk-route53'
|
6097
|
-
context[:gem_version] = '1.
|
6127
|
+
context[:gem_version] = '1.80.0'
|
6098
6128
|
Seahorse::Client::Request.new(handlers, context)
|
6099
6129
|
end
|
6100
6130
|
|
@@ -213,6 +213,7 @@ module Aws::Route53
|
|
213
213
|
HostedZoneRRSetCount = Shapes::IntegerShape.new(name: 'HostedZoneRRSetCount')
|
214
214
|
HostedZoneSummaries = Shapes::ListShape.new(name: 'HostedZoneSummaries')
|
215
215
|
HostedZoneSummary = Shapes::StructureShape.new(name: 'HostedZoneSummary')
|
216
|
+
HostedZoneType = Shapes::StringShape.new(name: 'HostedZoneType')
|
216
217
|
HostedZones = Shapes::ListShape.new(name: 'HostedZones')
|
217
218
|
IPAddress = Shapes::StringShape.new(name: 'IPAddress')
|
218
219
|
IPAddressCidr = Shapes::StringShape.new(name: 'IPAddressCidr')
|
@@ -1139,6 +1140,7 @@ module Aws::Route53
|
|
1139
1140
|
ListHostedZonesRequest.add_member(:marker, Shapes::ShapeRef.new(shape: PageMarker, location: "querystring", location_name: "marker"))
|
1140
1141
|
ListHostedZonesRequest.add_member(:max_items, Shapes::ShapeRef.new(shape: PageMaxItems, location: "querystring", location_name: "maxitems"))
|
1141
1142
|
ListHostedZonesRequest.add_member(:delegation_set_id, Shapes::ShapeRef.new(shape: ResourceId, location: "querystring", location_name: "delegationsetid"))
|
1143
|
+
ListHostedZonesRequest.add_member(:hosted_zone_type, Shapes::ShapeRef.new(shape: HostedZoneType, location: "querystring", location_name: "hostedzonetype"))
|
1142
1144
|
ListHostedZonesRequest.struct_class = Types::ListHostedZonesRequest
|
1143
1145
|
|
1144
1146
|
ListHostedZonesResponse.add_member(:hosted_zones, Shapes::ShapeRef.new(shape: HostedZones, required: true, location_name: "HostedZones"))
|
@@ -1205,6 +1205,10 @@ module Aws::Route53
|
|
1205
1205
|
# * If you send a `CreateHealthCheck` request with a unique
|
1206
1206
|
# `CallerReference` but settings identical to an existing health
|
1207
1207
|
# check, Route 53 creates the health check.
|
1208
|
+
#
|
1209
|
+
# Route 53 does not store the `CallerReference` for a deleted health
|
1210
|
+
# check indefinitely. The `CallerReference` for a deleted health check
|
1211
|
+
# will be deleted after a number of days.
|
1208
1212
|
# @return [String]
|
1209
1213
|
#
|
1210
1214
|
# @!attribute [rw] health_check_config
|
@@ -2325,6 +2329,8 @@ module Aws::Route53
|
|
2325
2329
|
# Amazon Route 53 uses the two-letter country codes that are specified
|
2326
2330
|
# in [ISO standard 3166-1 alpha-2][1].
|
2327
2331
|
#
|
2332
|
+
# Route 53 also supports the contry code **UA** forr Ukraine.
|
2333
|
+
#
|
2328
2334
|
#
|
2329
2335
|
#
|
2330
2336
|
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
@@ -2575,6 +2581,8 @@ module Aws::Route53
|
|
2575
2581
|
# Amazon Route 53 uses the two-letter country codes that are specified
|
2576
2582
|
# in [ISO standard 3166-1 alpha-2][1].
|
2577
2583
|
#
|
2584
|
+
# Route 53 also supports the contry code **UA** forr Ukraine.
|
2585
|
+
#
|
2578
2586
|
#
|
2579
2587
|
#
|
2580
2588
|
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
@@ -4633,8 +4641,9 @@ module Aws::Route53
|
|
4633
4641
|
# @!attribute [rw] max_items
|
4634
4642
|
# The maximum number of health checks that you want `ListHealthChecks`
|
4635
4643
|
# to return in response to the current request. Amazon Route 53
|
4636
|
-
# returns a maximum of
|
4637
|
-
# greater than
|
4644
|
+
# returns a maximum of 1000 items. If you set `MaxItems` to a value
|
4645
|
+
# greater than 1000, Route 53 returns only the first 1000 health
|
4646
|
+
# checks.
|
4638
4647
|
# @return [Integer]
|
4639
4648
|
#
|
4640
4649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHealthChecksRequest AWS API Documentation
|
@@ -4906,12 +4915,17 @@ module Aws::Route53
|
|
4906
4915
|
# set, specify the ID of that reusable delegation set.
|
4907
4916
|
# @return [String]
|
4908
4917
|
#
|
4918
|
+
# @!attribute [rw] hosted_zone_type
|
4919
|
+
# (Optional) Specifies if the hosted zone is private.
|
4920
|
+
# @return [String]
|
4921
|
+
#
|
4909
4922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/ListHostedZonesRequest AWS API Documentation
|
4910
4923
|
#
|
4911
4924
|
class ListHostedZonesRequest < Struct.new(
|
4912
4925
|
:marker,
|
4913
4926
|
:max_items,
|
4914
|
-
:delegation_set_id
|
4927
|
+
:delegation_set_id,
|
4928
|
+
:hosted_zone_type)
|
4915
4929
|
SENSITIVE = []
|
4916
4930
|
include Aws::Structure
|
4917
4931
|
end
|
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.80.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-10-05 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.184.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.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|