aws-sdk-networkfirewall 1.22.0 → 1.23.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: 33bff6d59d08b1ff2709ea6ed6c84b9cb741396124c4ec779f7a05206b1865e0
4
- data.tar.gz: 64feff96312cecb749cfe6c05de7f34cd2a8aee98af3b9db697df69e401c77ef
3
+ metadata.gz: 19321febeaca00db82ed0f8cace3d5c15661473db38a4e30a1f870f23d7c638e
4
+ data.tar.gz: 769f88cc610dacb69001414bbe7980c77960712610b52bd03089dc49514d3738
5
5
  SHA512:
6
- metadata.gz: bd934630272b32a572bf1ba211c8172e422a3bfe5b1351b6d2467a34502db2faa9d46d8e7958a0f7586d7b39f01aef23a5f125d47cbfedf669146e42f336c584
7
- data.tar.gz: d37afe8ee582b7bdb17924f9f814d5fe5fa3e0bfd0bf5931cea9bf457982711559d3a8908f6cc5cc6b7d6350fd95c413d04c9450d18a3a8121669ce99b5218c6
6
+ metadata.gz: 486e6a6c074541bb8d2e367439a635a823ae0a79fa4ac247d9ee4c42e9beb91c31cd9bd192c2eeb9b30779ad765652ed41a2c549ee6b4f0aa61f3ac33bc43f28
7
+ data.tar.gz: 34d55f958a8bba9107a7bb6b7ff5b2628762ad80523cb2854ba25e0ec461a59e5b9810aeec0112d9bac6884d2875aec95b46e8b863525db3db355afa46f74302
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2023-01-17)
5
+ ------------------
6
+
7
+ * Feature - Network Firewall now allows creation of dual stack endpoints, enabling inspection of IPv6 traffic.
8
+
4
9
  1.22.0 (2023-01-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -509,6 +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
513
  # },
513
514
  # ],
514
515
  # })
@@ -519,6 +520,7 @@ module Aws::NetworkFirewall
519
520
  # resp.firewall_name #=> String
520
521
  # resp.subnet_mappings #=> Array
521
522
  # resp.subnet_mappings[0].subnet_id #=> String
523
+ # resp.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
522
524
  # resp.update_token #=> String
523
525
  #
524
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/AssociateSubnets AWS API Documentation
@@ -618,6 +620,7 @@ module Aws::NetworkFirewall
618
620
  # subnet_mappings: [ # required
619
621
  # {
620
622
  # subnet_id: "CollectionMember_String", # required
623
+ # ip_address_type: "DUALSTACK", # accepts DUALSTACK, IPV4
621
624
  # },
622
625
  # ],
623
626
  # delete_protection: false,
@@ -644,6 +647,7 @@ module Aws::NetworkFirewall
644
647
  # resp.firewall.vpc_id #=> String
645
648
  # resp.firewall.subnet_mappings #=> Array
646
649
  # resp.firewall.subnet_mappings[0].subnet_id #=> String
650
+ # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
647
651
  # resp.firewall.delete_protection #=> Boolean
648
652
  # resp.firewall.subnet_change_protection #=> Boolean
649
653
  # resp.firewall.firewall_policy_change_protection #=> Boolean
@@ -1137,6 +1141,7 @@ module Aws::NetworkFirewall
1137
1141
  # resp.firewall.vpc_id #=> String
1138
1142
  # resp.firewall.subnet_mappings #=> Array
1139
1143
  # resp.firewall.subnet_mappings[0].subnet_id #=> String
1144
+ # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
1140
1145
  # resp.firewall.delete_protection #=> Boolean
1141
1146
  # resp.firewall.subnet_change_protection #=> Boolean
1142
1147
  # resp.firewall.firewall_policy_change_protection #=> Boolean
@@ -1345,6 +1350,7 @@ module Aws::NetworkFirewall
1345
1350
  # resp.firewall.vpc_id #=> String
1346
1351
  # resp.firewall.subnet_mappings #=> Array
1347
1352
  # resp.firewall.subnet_mappings[0].subnet_id #=> String
1353
+ # resp.firewall.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
1348
1354
  # resp.firewall.delete_protection #=> Boolean
1349
1355
  # resp.firewall.subnet_change_protection #=> Boolean
1350
1356
  # resp.firewall.firewall_policy_change_protection #=> Boolean
@@ -1767,6 +1773,7 @@ module Aws::NetworkFirewall
1767
1773
  # resp.firewall_name #=> String
1768
1774
  # resp.subnet_mappings #=> Array
1769
1775
  # resp.subnet_mappings[0].subnet_id #=> String
1776
+ # resp.subnet_mappings[0].ip_address_type #=> String, one of "DUALSTACK", "IPV4"
1770
1777
  # resp.update_token #=> String
1771
1778
  #
1772
1779
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DisassociateSubnets AWS API Documentation
@@ -3007,7 +3014,7 @@ module Aws::NetworkFirewall
3007
3014
  params: params,
3008
3015
  config: config)
3009
3016
  context[:gem_name] = 'aws-sdk-networkfirewall'
3010
- context[:gem_version] = '1.22.0'
3017
+ context[:gem_version] = '1.23.0'
3011
3018
  Seahorse::Client::Request.new(handlers, context)
3012
3019
  end
3013
3020
 
@@ -86,6 +86,7 @@ module Aws::NetworkFirewall
86
86
  HashMapKey = Shapes::StringShape.new(name: 'HashMapKey')
87
87
  HashMapValue = Shapes::StringShape.new(name: 'HashMapValue')
88
88
  Header = Shapes::StructureShape.new(name: 'Header')
89
+ IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
89
90
  IPSet = Shapes::StructureShape.new(name: 'IPSet')
90
91
  IPSetArn = Shapes::StringShape.new(name: 'IPSetArn')
91
92
  IPSetMetadata = Shapes::StructureShape.new(name: 'IPSetMetadata')
@@ -740,6 +741,7 @@ module Aws::NetworkFirewall
740
741
  StatelessRulesAndCustomActions.struct_class = Types::StatelessRulesAndCustomActions
741
742
 
742
743
  SubnetMapping.add_member(:subnet_id, Shapes::ShapeRef.new(shape: CollectionMember_String, required: true, location_name: "SubnetId"))
744
+ SubnetMapping.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IPAddressType"))
743
745
  SubnetMapping.struct_class = Types::SubnetMapping
744
746
 
745
747
  SubnetMappings.member = Shapes::ShapeRef.new(shape: SubnetMapping)
@@ -39,7 +39,7 @@ module Aws::NetworkFirewall
39
39
  # @!attribute [rw] address_definition
40
40
  # Specify an IP address or a block of IP addresses in Classless
41
41
  # Inter-Domain Routing (CIDR) notation. Network Firewall supports all
42
- # address ranges for IPv4.
42
+ # address ranges for IPv4 and IPv6.
43
43
  #
44
44
  # Examples:
45
45
  #
@@ -49,6 +49,15 @@ module Aws::NetworkFirewall
49
49
  # * To configure Network Firewall to inspect for IP addresses from
50
50
  # 192.0.2.0 to 192.0.2.255, specify `192.0.2.0/24`.
51
51
  #
52
+ # * To configure Network Firewall to inspect for the IP address
53
+ # 1111:0000:0000:0000:0000:0000:0000:0111, specify
54
+ # `1111:0000:0000:0000:0000:0000:0000:0111/128`.
55
+ #
56
+ # * To configure Network Firewall to inspect for IP addresses from
57
+ # 1111:0000:0000:0000:0000:0000:0000:0000 to
58
+ # 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify
59
+ # `1111:0000:0000:0000:0000:0000:0000:0000/64`.
60
+ #
52
61
  # For more information about CIDR notation, see the Wikipedia entry
53
62
  # [Classless Inter-Domain Routing][1].
54
63
  #
@@ -1797,7 +1806,7 @@ module Aws::NetworkFirewall
1797
1806
  #
1798
1807
  # Specify an IP address or a block of IP addresses in Classless
1799
1808
  # Inter-Domain Routing (CIDR) notation. Network Firewall supports all
1800
- # address ranges for IPv4.
1809
+ # address ranges for IPv4 and IPv6.
1801
1810
  #
1802
1811
  # Examples:
1803
1812
  #
@@ -1807,6 +1816,15 @@ module Aws::NetworkFirewall
1807
1816
  # * To configure Network Firewall to inspect for IP addresses from
1808
1817
  # 192.0.2.0 to 192.0.2.255, specify `192.0.2.0/24`.
1809
1818
  #
1819
+ # * To configure Network Firewall to inspect for the IP address
1820
+ # 1111:0000:0000:0000:0000:0000:0000:0111, specify
1821
+ # `1111:0000:0000:0000:0000:0000:0000:0111/128`.
1822
+ #
1823
+ # * To configure Network Firewall to inspect for IP addresses from
1824
+ # 1111:0000:0000:0000:0000:0000:0000:0000 to
1825
+ # 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify
1826
+ # `1111:0000:0000:0000:0000:0000:0000:0000/64`.
1827
+ #
1810
1828
  # For more information about CIDR notation, see the Wikipedia entry
1811
1829
  # [Classless Inter-Domain Routing][1].
1812
1830
  #
@@ -1835,7 +1853,7 @@ module Aws::NetworkFirewall
1835
1853
  #
1836
1854
  # Specify an IP address or a block of IP addresses in Classless
1837
1855
  # Inter-Domain Routing (CIDR) notation. Network Firewall supports all
1838
- # address ranges for IPv4.
1856
+ # address ranges for IPv4 and IPv6.
1839
1857
  #
1840
1858
  # Examples:
1841
1859
  #
@@ -1845,6 +1863,15 @@ module Aws::NetworkFirewall
1845
1863
  # * To configure Network Firewall to inspect for IP addresses from
1846
1864
  # 192.0.2.0 to 192.0.2.255, specify `192.0.2.0/24`.
1847
1865
  #
1866
+ # * To configure Network Firewall to inspect for the IP address
1867
+ # 1111:0000:0000:0000:0000:0000:0000:0111, specify
1868
+ # `1111:0000:0000:0000:0000:0000:0000:0111/128`.
1869
+ #
1870
+ # * To configure Network Firewall to inspect for IP addresses from
1871
+ # 1111:0000:0000:0000:0000:0000:0000:0000 to
1872
+ # 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify
1873
+ # `1111:0000:0000:0000:0000:0000:0000:0000/64`.
1874
+ #
1848
1875
  # For more information about CIDR notation, see the Wikipedia entry
1849
1876
  # [Classless Inter-Domain Routing][1].
1850
1877
  #
@@ -3259,10 +3286,16 @@ module Aws::NetworkFirewall
3259
3286
  # The unique identifier for the subnet.
3260
3287
  # @return [String]
3261
3288
  #
3289
+ # @!attribute [rw] ip_address_type
3290
+ # The subnet's IP address type. You can't change the IP address type
3291
+ # after you create the subnet.
3292
+ # @return [String]
3293
+ #
3262
3294
  # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/SubnetMapping AWS API Documentation
3263
3295
  #
3264
3296
  class SubnetMapping < Struct.new(
3265
- :subnet_id)
3297
+ :subnet_id,
3298
+ :ip_address_type)
3266
3299
  SENSITIVE = []
3267
3300
  include Aws::Structure
3268
3301
  end
@@ -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.22.0'
55
+ GEM_VERSION = '1.23.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.22.0
4
+ version: 1.23.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-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core