aws-sdk-route53resolver 1.56.0 → 1.58.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-route53resolver/client.rb +10 -9
- data/lib/aws-sdk-route53resolver/types.rb +9 -9
- data/lib/aws-sdk-route53resolver.rb +1 -1
- 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: ce4876218e36e9dbc929653b6d6dd9a741cbf154315d478899aed02a9e2ac347
|
|
4
|
+
data.tar.gz: d19aace30a65b07f1dd9280e27f9933088a53998d9882d3d27b0fa28c2f23b95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a73692d5c7d04830ef5c64a66a2c73d80c803bafb01e95684192c606aed592959778fc7889ee841ecdc7715c5073b681cc486ea5ebae3aabb260a32fb1f2f909
|
|
7
|
+
data.tar.gz: 68c0ef037a73920d5cdb9f51bfe1fc7046d3fd63ed669aae79789c24a6050d11d3bcd909f5cf2ab836eef6bfdf282ad4d6a3591668079a6676d4728d42966d94
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.58.0 (2024-05-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.57.0 (2024-05-09)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Update the DNS Firewall settings to correct a spelling issue.
|
|
13
|
+
|
|
4
14
|
1.56.0 (2024-04-30)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.58.0
|
|
@@ -301,8 +301,9 @@ module Aws::Route53Resolver
|
|
|
301
301
|
#
|
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
|
303
303
|
# A unique and opaque application ID that is appended to the
|
|
304
|
-
# User-Agent header as app
|
|
305
|
-
# maximum length of 50.
|
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
|
306
307
|
#
|
|
307
308
|
# @option options [String] :secret_access_key
|
|
308
309
|
#
|
|
@@ -839,15 +840,15 @@ module Aws::Route53Resolver
|
|
|
839
840
|
#
|
|
840
841
|
# @option params [String] :firewall_domain_redirection_action
|
|
841
842
|
# How you want the the rule to evaluate DNS redirection in the DNS
|
|
842
|
-
# redirection chain, such as CNAME
|
|
843
|
+
# redirection chain, such as CNAME or DNAME.
|
|
843
844
|
#
|
|
844
845
|
# `Inspect_Redirection_Domain `(Default) inspects all domains in the
|
|
845
846
|
# redirection chain. The individual domains in the redirection chain
|
|
846
|
-
# must be added to the
|
|
847
|
+
# must be added to the domain list.
|
|
847
848
|
#
|
|
848
849
|
# `Trust_Redirection_Domain ` inspects only the first domain in the
|
|
849
850
|
# redirection chain. You don't need to add the subsequent domains in
|
|
850
|
-
# the redirection list to the domain
|
|
851
|
+
# the domain in the redirection list to the domain list.
|
|
851
852
|
#
|
|
852
853
|
# @option params [String] :qtype
|
|
853
854
|
# The DNS query type you want the rule to evaluate. Allowed values are;
|
|
@@ -4264,15 +4265,15 @@ module Aws::Route53Resolver
|
|
|
4264
4265
|
#
|
|
4265
4266
|
# @option params [String] :firewall_domain_redirection_action
|
|
4266
4267
|
# How you want the the rule to evaluate DNS redirection in the DNS
|
|
4267
|
-
# redirection chain, such as CNAME
|
|
4268
|
+
# redirection chain, such as CNAME or DNAME.
|
|
4268
4269
|
#
|
|
4269
4270
|
# `Inspect_Redirection_Domain `(Default) inspects all domains in the
|
|
4270
4271
|
# redirection chain. The individual domains in the redirection chain
|
|
4271
|
-
# must be added to the
|
|
4272
|
+
# must be added to the domain list.
|
|
4272
4273
|
#
|
|
4273
4274
|
# `Trust_Redirection_Domain ` inspects only the first domain in the
|
|
4274
4275
|
# redirection chain. You don't need to add the subsequent domains in
|
|
4275
|
-
# the domain in the redirection list to the domain
|
|
4276
|
+
# the domain in the redirection list to the domain list.
|
|
4276
4277
|
#
|
|
4277
4278
|
# @option params [String] :qtype
|
|
4278
4279
|
# The DNS query type you want the rule to evaluate. Allowed values are;
|
|
@@ -4752,7 +4753,7 @@ module Aws::Route53Resolver
|
|
|
4752
4753
|
params: params,
|
|
4753
4754
|
config: config)
|
|
4754
4755
|
context[:gem_name] = 'aws-sdk-route53resolver'
|
|
4755
|
-
context[:gem_version] = '1.
|
|
4756
|
+
context[:gem_version] = '1.58.0'
|
|
4756
4757
|
Seahorse::Client::Request.new(handlers, context)
|
|
4757
4758
|
end
|
|
4758
4759
|
|
|
@@ -406,15 +406,15 @@ module Aws::Route53Resolver
|
|
|
406
406
|
#
|
|
407
407
|
# @!attribute [rw] firewall_domain_redirection_action
|
|
408
408
|
# How you want the the rule to evaluate DNS redirection in the DNS
|
|
409
|
-
# redirection chain, such as CNAME
|
|
409
|
+
# redirection chain, such as CNAME or DNAME.
|
|
410
410
|
#
|
|
411
411
|
# `Inspect_Redirection_Domain `(Default) inspects all domains in the
|
|
412
412
|
# redirection chain. The individual domains in the redirection chain
|
|
413
|
-
# must be added to the
|
|
413
|
+
# must be added to the domain list.
|
|
414
414
|
#
|
|
415
415
|
# `Trust_Redirection_Domain ` inspects only the first domain in the
|
|
416
416
|
# redirection chain. You don't need to add the subsequent domains in
|
|
417
|
-
# the redirection list to the domain
|
|
417
|
+
# the domain in the redirection list to the domain list.
|
|
418
418
|
# @return [String]
|
|
419
419
|
#
|
|
420
420
|
# @!attribute [rw] qtype
|
|
@@ -1644,15 +1644,15 @@ module Aws::Route53Resolver
|
|
|
1644
1644
|
#
|
|
1645
1645
|
# @!attribute [rw] firewall_domain_redirection_action
|
|
1646
1646
|
# How you want the the rule to evaluate DNS redirection in the DNS
|
|
1647
|
-
# redirection chain, such as CNAME
|
|
1647
|
+
# redirection chain, such as CNAME or DNAME.
|
|
1648
1648
|
#
|
|
1649
1649
|
# `Inspect_Redirection_Domain `(Default) inspects all domains in the
|
|
1650
1650
|
# redirection chain. The individual domains in the redirection chain
|
|
1651
|
-
# must be added to the
|
|
1651
|
+
# must be added to the domain list.
|
|
1652
1652
|
#
|
|
1653
1653
|
# `Trust_Redirection_Domain ` inspects only the first domain in the
|
|
1654
1654
|
# redirection chain. You don't need to add the subsequent domains in
|
|
1655
|
-
# the domain in the redirection list to the domain
|
|
1655
|
+
# the domain in the redirection list to the domain list.
|
|
1656
1656
|
# @return [String]
|
|
1657
1657
|
#
|
|
1658
1658
|
# @!attribute [rw] qtype
|
|
@@ -5146,15 +5146,15 @@ module Aws::Route53Resolver
|
|
|
5146
5146
|
#
|
|
5147
5147
|
# @!attribute [rw] firewall_domain_redirection_action
|
|
5148
5148
|
# How you want the the rule to evaluate DNS redirection in the DNS
|
|
5149
|
-
# redirection chain, such as CNAME
|
|
5149
|
+
# redirection chain, such as CNAME or DNAME.
|
|
5150
5150
|
#
|
|
5151
5151
|
# `Inspect_Redirection_Domain `(Default) inspects all domains in the
|
|
5152
5152
|
# redirection chain. The individual domains in the redirection chain
|
|
5153
|
-
# must be added to the
|
|
5153
|
+
# must be added to the domain list.
|
|
5154
5154
|
#
|
|
5155
5155
|
# `Trust_Redirection_Domain ` inspects only the first domain in the
|
|
5156
5156
|
# redirection chain. You don't need to add the subsequent domains in
|
|
5157
|
-
# the domain in the redirection list to the domain
|
|
5157
|
+
# the domain in the redirection list to the domain list.
|
|
5158
5158
|
# @return [String]
|
|
5159
5159
|
#
|
|
5160
5160
|
# @!attribute [rw] qtype
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-route53resolver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.58.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: 2024-
|
|
11
|
+
date: 2024-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|