aws-sdk-networkfirewall 1.76.0 → 1.77.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d936459df2b08a670efa388fb6cc4cf7f12e94826bbdac256af86b3a11538e94
4
- data.tar.gz: 8d0fd2bab8a5e15f155b791dd3e01d30449f09127c46be8d4fd033b1881a9bd0
3
+ metadata.gz: ede64ef386739ee353b1302c14b192a02b89812a4a8b8259b9a2158ca473001a
4
+ data.tar.gz: 9513247b0b520a6a91543eb03998d3dbaaf58b907f7fabfd196c5f69690b9e26
5
5
  SHA512:
6
- metadata.gz: 86d75b7c026a73450f5084e8b87e04af2d6ba3d67ae46797bea0d12099894b3c395c439780b7e9a54ae488827c3b9b3ef0cdd4ae56d2883be957842165a9ca32
7
- data.tar.gz: 258b2c22dba477d6ac2601ae020b6218b50bc06d6222b831df98bd1ca405f6339091550d39c08bfa9de52310ecd9013af7579f62c8105f022211c667ca289fb8
6
+ metadata.gz: 43f5bfe571ffeaa10cbc635fd5debfa40cee2cd42c19004208055fcbf5866bc908dcfbdc6c77e1f2c6a691120231a5c3720680b77c851ddb63f9c2020cd9da56
7
+ data.tar.gz: c24a6fde89ab499fe37f75211426bde470362b23d59280cf9b9c7f903add191e99915168a2c5e02d8c0dea5e54a09d682fb7d9c084811fcefedf0b692506828d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2025-09-25)
5
+ ------------------
6
+
7
+ * Feature - Network Firewall now introduces Reject and Alert action support for stateful domain list rule groups, providing customers with more granular control over their network traffic.
8
+
4
9
  1.76.0 (2025-09-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.77.0
@@ -1292,7 +1292,7 @@ module Aws::NetworkFirewall
1292
1292
  # rules_source_list: {
1293
1293
  # targets: ["CollectionMember_String"], # required
1294
1294
  # target_types: ["TLS_SNI"], # required, accepts TLS_SNI, HTTP_HOST
1295
- # generated_rules_type: "ALLOWLIST", # required, accepts ALLOWLIST, DENYLIST
1295
+ # generated_rules_type: "ALLOWLIST", # required, accepts ALLOWLIST, DENYLIST, REJECTLIST, ALERTLIST
1296
1296
  # },
1297
1297
  # stateful_rules: [
1298
1298
  # {
@@ -2490,7 +2490,7 @@ module Aws::NetworkFirewall
2490
2490
  # resp.rule_group.rules_source.rules_source_list.targets[0] #=> String
2491
2491
  # resp.rule_group.rules_source.rules_source_list.target_types #=> Array
2492
2492
  # resp.rule_group.rules_source.rules_source_list.target_types[0] #=> String, one of "TLS_SNI", "HTTP_HOST"
2493
- # resp.rule_group.rules_source.rules_source_list.generated_rules_type #=> String, one of "ALLOWLIST", "DENYLIST"
2493
+ # resp.rule_group.rules_source.rules_source_list.generated_rules_type #=> String, one of "ALLOWLIST", "DENYLIST", "REJECTLIST", "ALERTLIST"
2494
2494
  # resp.rule_group.rules_source.stateful_rules #=> Array
2495
2495
  # resp.rule_group.rules_source.stateful_rules[0].action #=> String, one of "PASS", "DROP", "ALERT", "REJECT"
2496
2496
  # resp.rule_group.rules_source.stateful_rules[0].header.protocol #=> String, one of "IP", "TCP", "UDP", "ICMP", "HTTP", "FTP", "TLS", "SMB", "DNS", "DCERPC", "SSH", "SMTP", "IMAP", "MSN", "KRB5", "IKEV2", "TFTP", "NTP", "DHCP", "HTTP2", "QUIC"
@@ -4894,7 +4894,7 @@ module Aws::NetworkFirewall
4894
4894
  # rules_source_list: {
4895
4895
  # targets: ["CollectionMember_String"], # required
4896
4896
  # target_types: ["TLS_SNI"], # required, accepts TLS_SNI, HTTP_HOST
4897
- # generated_rules_type: "ALLOWLIST", # required, accepts ALLOWLIST, DENYLIST
4897
+ # generated_rules_type: "ALLOWLIST", # required, accepts ALLOWLIST, DENYLIST, REJECTLIST, ALERTLIST
4898
4898
  # },
4899
4899
  # stateful_rules: [
4900
4900
  # {
@@ -5277,7 +5277,7 @@ module Aws::NetworkFirewall
5277
5277
  tracer: tracer
5278
5278
  )
5279
5279
  context[:gem_name] = 'aws-sdk-networkfirewall'
5280
- context[:gem_version] = '1.76.0'
5280
+ context[:gem_version] = '1.77.0'
5281
5281
  Seahorse::Client::Request.new(handlers, context)
5282
5282
  end
5283
5283
 
@@ -5205,8 +5205,15 @@ module Aws::NetworkFirewall
5205
5205
  # @return [Array<String>]
5206
5206
  #
5207
5207
  # @!attribute [rw] generated_rules_type
5208
- # Whether you want to allow or deny access to the domains in your
5209
- # target list.
5208
+ # Whether you want to apply allow, reject, alert, or drop behavior to
5209
+ # the domains in your target list.
5210
+ #
5211
+ # <note markdown="1"> When logging is enabled and you choose Alert, traffic that matches
5212
+ # the domain specifications generates an alert in the firewall's
5213
+ # logs. Then, traffic either passes, is rejected, or drops based on
5214
+ # other rules in the firewall policy.
5215
+ #
5216
+ # </note>
5210
5217
  # @return [String]
5211
5218
  #
5212
5219
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/RulesSourceList AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::NetworkFirewall
54
54
  autoload :EndpointProvider, 'aws-sdk-networkfirewall/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-networkfirewall/endpoints'
56
56
 
57
- GEM_VERSION = '1.76.0'
57
+ GEM_VERSION = '1.77.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -287,7 +287,7 @@ module Aws
287
287
  rules_source_list: {
288
288
  targets: Array[::String],
289
289
  target_types: Array[("TLS_SNI" | "HTTP_HOST")],
290
- generated_rules_type: ("ALLOWLIST" | "DENYLIST")
290
+ generated_rules_type: ("ALLOWLIST" | "DENYLIST" | "REJECTLIST" | "ALERTLIST")
291
291
  }?,
292
292
  stateful_rules: Array[
293
293
  {
@@ -1243,7 +1243,7 @@ module Aws
1243
1243
  rules_source_list: {
1244
1244
  targets: Array[::String],
1245
1245
  target_types: Array[("TLS_SNI" | "HTTP_HOST")],
1246
- generated_rules_type: ("ALLOWLIST" | "DENYLIST")
1246
+ generated_rules_type: ("ALLOWLIST" | "DENYLIST" | "REJECTLIST" | "ALERTLIST")
1247
1247
  }?,
1248
1248
  stateful_rules: Array[
1249
1249
  {
data/sig/types.rbs CHANGED
@@ -1009,7 +1009,7 @@ module Aws::NetworkFirewall
1009
1009
  class RulesSourceList
1010
1010
  attr_accessor targets: ::Array[::String]
1011
1011
  attr_accessor target_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
1012
- attr_accessor generated_rules_type: ("ALLOWLIST" | "DENYLIST")
1012
+ attr_accessor generated_rules_type: ("ALLOWLIST" | "DENYLIST" | "REJECTLIST" | "ALERTLIST")
1013
1013
  SENSITIVE: []
1014
1014
  end
1015
1015
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkfirewall
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.77.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services