aws-sdk-networkfirewall 1.25.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f38dd42856bc8f7369bebbe6adf9d585877b4580cbd3107d47ffab1b79f0edda
4
- data.tar.gz: 06c4cf7cebb034b13357f05fa0c279e89c56d7fa62f7a0d696d5193a61d69916
3
+ metadata.gz: f06525de7ab96ffab1dc74ee6cfb7629f37fade446430443a5e3fa6a6430e571
4
+ data.tar.gz: cdaf82868e449d14b6b626169486b4fd60346a3d3e98d36dbbbfeb76919c0647
5
5
  SHA512:
6
- metadata.gz: 193eae1a0c783614c325b56ec7638cdd6a1786f2a65af6e066e372c16967585611370c1e30711e6bc2fa235c7f2d8704170b88ac4c2527fcb7dee8176f8e3a6c
7
- data.tar.gz: b3f4b1bb72271d701bc9df98879c1a5fa8db5829e38d4b635ada0fa249d6b6fff654238306251793dd6ccb456b1a1156d5a8225dca2b05dd66dfe3e96c725b88
6
+ metadata.gz: 04f2235e8fef3726e03bac04bcca56af77b3ad6055d70f68fd4284a213916edc9b73a901f6480cd4951407fd37df9380d8bf7f6e1b3bddb194074f2136c5d94b
7
+ data.tar.gz: 254bfefe094e643f56861d3444353792363e6fbfc1d89b51a9b9e0da8b9d064a449399120640d2d82762fd48d1c3b62428f72b6229475a78586410103c22f8b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2023-04-05)
5
+ ------------------
6
+
7
+ * Feature - AWS Network Firewall now supports IPv6-only subnets.
8
+
4
9
  1.25.0 (2023-03-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -509,7 +509,7 @@ module Aws::NetworkFirewall
509
509
  # subnet_mappings: [ # required
510
510
  # {
511
511
  # subnet_id: "CollectionMember_String", # required
512
- # ip_address_type: "DUALSTACK", # accepts DUALSTACK, IPV4
512
+ # ip_address_type: "DUALSTACK", # accepts DUALSTACK, IPV4, IPV6
513
513
  # },
514
514
  # ],
515
515
  # })
@@ -520,7 +520,7 @@ module Aws::NetworkFirewall
520
520
  # resp.firewall_name #=> String
521
521
  # resp.subnet_mappings #=> Array
522
522
  # resp.subnet_mappings[0].subnet_id #=> String
523
- # resp.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
523
+ # resp.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
524
524
  # resp.update_token #=> String
525
525
  #
526
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/AssociateSubnets AWS API Documentation
@@ -620,7 +620,7 @@ module Aws::NetworkFirewall
620
620
  # subnet_mappings: [ # required
621
621
  # {
622
622
  # subnet_id: "CollectionMember_String", # required
623
- # ip_address_type: "DUALSTACK", # accepts DUALSTACK, IPV4
623
+ # ip_address_type: "DUALSTACK", # accepts DUALSTACK, IPV4, IPV6
624
624
  # },
625
625
  # ],
626
626
  # delete_protection: false,
@@ -647,7 +647,7 @@ module Aws::NetworkFirewall
647
647
  # resp.firewall.vpc_id #=> String
648
648
  # resp.firewall.subnet_mappings #=> Array
649
649
  # resp.firewall.subnet_mappings[0].subnet_id #=> String
650
- # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
650
+ # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
651
651
  # resp.firewall.delete_protection #=> Boolean
652
652
  # resp.firewall.subnet_change_protection #=> Boolean
653
653
  # resp.firewall.firewall_policy_change_protection #=> Boolean
@@ -1308,7 +1308,7 @@ module Aws::NetworkFirewall
1308
1308
  # resp.firewall.vpc_id #=> String
1309
1309
  # resp.firewall.subnet_mappings #=> Array
1310
1310
  # resp.firewall.subnet_mappings[0].subnet_id #=> String
1311
- # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
1311
+ # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
1312
1312
  # resp.firewall.delete_protection #=> Boolean
1313
1313
  # resp.firewall.subnet_change_protection #=> Boolean
1314
1314
  # resp.firewall.firewall_policy_change_protection #=> Boolean
@@ -1570,7 +1570,7 @@ module Aws::NetworkFirewall
1570
1570
  # resp.firewall.vpc_id #=> String
1571
1571
  # resp.firewall.subnet_mappings #=> Array
1572
1572
  # resp.firewall.subnet_mappings[0].subnet_id #=> String
1573
- # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
1573
+ # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
1574
1574
  # resp.firewall.delete_protection #=> Boolean
1575
1575
  # resp.firewall.subnet_change_protection #=> Boolean
1576
1576
  # resp.firewall.firewall_policy_change_protection #=> Boolean
@@ -2067,7 +2067,7 @@ module Aws::NetworkFirewall
2067
2067
  # resp.firewall_name #=> String
2068
2068
  # resp.subnet_mappings #=> Array
2069
2069
  # resp.subnet_mappings[0].subnet_id #=> String
2070
- # resp.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
2070
+ # resp.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4", "IPV6"
2071
2071
  # resp.update_token #=> String
2072
2072
  #
2073
2073
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DisassociateSubnets AWS API Documentation
@@ -3507,7 +3507,7 @@ module Aws::NetworkFirewall
3507
3507
  params: params,
3508
3508
  config: config)
3509
3509
  context[:gem_name] = 'aws-sdk-networkfirewall'
3510
- context[:gem_version] = '1.25.0'
3510
+ context[:gem_version] = '1.26.0'
3511
3511
  Seahorse::Client::Request.new(handlers, context)
3512
3512
  end
3513
3513
 
@@ -3173,7 +3173,7 @@ module Aws::NetworkFirewall
3173
3173
  #
3174
3174
  #
3175
3175
  #
3176
- # [1]: https://suricata.readthedocs.io/rules/intro.html#
3176
+ # [1]: https://suricata.readthedocs.iorules/intro.html#
3177
3177
  # @return [Array<Types::StatefulRule>]
3178
3178
  #
3179
3179
  # @!attribute [rw] stateless_rules_and_custom_actions
@@ -3444,7 +3444,7 @@ module Aws::NetworkFirewall
3444
3444
  #
3445
3445
  #
3446
3446
  #
3447
- # [1]: https://suricata.readthedocs.io/rules/intro.html#
3447
+ # [1]: https://suricata.readthedocs.iorules/intro.html#
3448
3448
  #
3449
3449
  # @!attribute [rw] action
3450
3450
  # Defines what Network Firewall should do with the packets in a
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-networkfirewall/customizations'
52
52
  # @!group service
53
53
  module Aws::NetworkFirewall
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.26.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkfirewall
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.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-03-30 00:00:00.000000000 Z
11
+ date: 2023-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core