aws-sdk-networkfirewall 1.3.0 → 1.4.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: 2284fc4b33b4795a4dfba2c23a70e0df1b42a8f923da8c542b7e95cc1c049170
4
- data.tar.gz: b0bfbb9f710a6f4ea785824760c62047d23b784d404f8838e6381d4807955ccf
3
+ metadata.gz: cea6707a105fde848db525dce19d4fef8d49f3fcf39055d047b99dcb6b16a124
4
+ data.tar.gz: 17b5b710536fa217ce06155e4ae9c53a60140934b97343ff7c9ca95891c80b01
5
5
  SHA512:
6
- metadata.gz: 3559fae902e3fcb2296604278ea8fd0f758fcef3d91e952f70d2f620e215289ad9feb664db28fd4771dc782d34a28fd1c2938c4e4de9cbe8fd864c405274c779
7
- data.tar.gz: 9379ff24f6544ccc8f2fbced08a7a9d5d1ac028ece68c4b76d3355b7e8ac62422672c848951f7713ea73baeb878b9c002770f2bd92b863b756f62bc5b1294640
6
+ metadata.gz: eec3daf375e748c5fe1e870f02ab9c2e38a25bfe6d72b4e326f2a863016e07064f0922c9055e56bd27c586647d2b519c54fdf3b3fbaa50e6223cba0fe4a88d63
7
+ data.tar.gz: c9f7b7b6a88bd0dee12b59b3479cce6bc539861d8b3bad89b7e1e38f7d8d06142c40a63359a19b115c8f966e507cc973966c248fffe8ee46cbb4d7749839bd32
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.4.0 (2021-03-11)
5
+ ------------------
6
+
7
+ * Feature - Correct the documentation about how you can provide rule group rules
8
+
4
9
  1.3.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.4.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-networkfirewall/customizations'
48
48
  # @!group service
49
49
  module Aws::NetworkFirewall
50
50
 
51
- GEM_VERSION = '1.3.0'
51
+ GEM_VERSION = '1.4.0'
52
52
 
53
53
  end
@@ -746,23 +746,19 @@ module Aws::NetworkFirewall
746
746
  # </note>
747
747
  #
748
748
  # @option params [String] :rules
749
- # The name of a file containing stateful rule group rules specifications
750
- # in Suricata flat format, with one rule per line. Use this to import
751
- # your existing Suricata compatible rule groups.
749
+ # A string containing stateful rule group rules specifications in
750
+ # Suricata flat format, with one rule per line. Use this to import your
751
+ # existing Suricata compatible rule groups.
752
752
  #
753
753
  # <note markdown="1"> You must provide either this rules setting or a populated `RuleGroup`
754
754
  # setting, but not both.
755
755
  #
756
756
  # </note>
757
757
  #
758
- # You can provide your rule group specification in a file through this
759
- # setting when you create or update your rule group. The call response
760
- # returns a RuleGroup object that Network Firewall has populated from
761
- # your file. Network Firewall uses the file contents to populate the
762
- # rule group rules, but does not maintain a reference to the file or use
763
- # the file in any way after performing the create or update. If you call
764
- # DescribeRuleGroup to retrieve the rule group, Network Firewall returns
765
- # rules settings inside a RuleGroup object.
758
+ # You can provide your rule group specification in Suricata flat format
759
+ # through this setting when you create or update your rule group. The
760
+ # call response returns a RuleGroup object that Network Firewall has
761
+ # populated from your string.
766
762
  #
767
763
  # @option params [required, String] :type
768
764
  # Indicates whether the rule group is stateless or stateful. If the rule
@@ -2361,23 +2357,19 @@ module Aws::NetworkFirewall
2361
2357
  # </note>
2362
2358
  #
2363
2359
  # @option params [String] :rules
2364
- # The name of a file containing stateful rule group rules specifications
2365
- # in Suricata flat format, with one rule per line. Use this to import
2366
- # your existing Suricata compatible rule groups.
2360
+ # A string containing stateful rule group rules specifications in
2361
+ # Suricata flat format, with one rule per line. Use this to import your
2362
+ # existing Suricata compatible rule groups.
2367
2363
  #
2368
2364
  # <note markdown="1"> You must provide either this rules setting or a populated `RuleGroup`
2369
2365
  # setting, but not both.
2370
2366
  #
2371
2367
  # </note>
2372
2368
  #
2373
- # You can provide your rule group specification in a file through this
2374
- # setting when you create or update your rule group. The call response
2375
- # returns a RuleGroup object that Network Firewall has populated from
2376
- # your file. Network Firewall uses the file contents to populate the
2377
- # rule group rules, but does not maintain a reference to the file or use
2378
- # the file in any way after performing the create or update. If you call
2379
- # DescribeRuleGroup to retrieve the rule group, Network Firewall returns
2380
- # rules settings inside a RuleGroup object.
2369
+ # You can provide your rule group specification in Suricata flat format
2370
+ # through this setting when you create or update your rule group. The
2371
+ # call response returns a RuleGroup object that Network Firewall has
2372
+ # populated from your string.
2381
2373
  #
2382
2374
  # @option params [String] :type
2383
2375
  # Indicates whether the rule group is stateless or stateful. If the rule
@@ -2625,7 +2617,7 @@ module Aws::NetworkFirewall
2625
2617
  params: params,
2626
2618
  config: config)
2627
2619
  context[:gem_name] = 'aws-sdk-networkfirewall'
2628
- context[:gem_version] = '1.3.0'
2620
+ context[:gem_version] = '1.4.0'
2629
2621
  Seahorse::Client::Request.new(handlers, context)
2630
2622
  end
2631
2623
 
@@ -692,23 +692,19 @@ module Aws::NetworkFirewall
692
692
  # @return [Types::RuleGroup]
693
693
  #
694
694
  # @!attribute [rw] rules
695
- # The name of a file containing stateful rule group rules
696
- # specifications in Suricata flat format, with one rule per line. Use
697
- # this to import your existing Suricata compatible rule groups.
695
+ # A string containing stateful rule group rules specifications in
696
+ # Suricata flat format, with one rule per line. Use this to import
697
+ # your existing Suricata compatible rule groups.
698
698
  #
699
699
  # <note markdown="1"> You must provide either this rules setting or a populated
700
700
  # `RuleGroup` setting, but not both.
701
701
  #
702
702
  # </note>
703
703
  #
704
- # You can provide your rule group specification in a file through this
705
- # setting when you create or update your rule group. The call response
706
- # returns a RuleGroup object that Network Firewall has populated from
707
- # your file. Network Firewall uses the file contents to populate the
708
- # rule group rules, but does not maintain a reference to the file or
709
- # use the file in any way after performing the create or update. If
710
- # you call DescribeRuleGroup to retrieve the rule group, Network
711
- # Firewall returns rules settings inside a RuleGroup object.
704
+ # You can provide your rule group specification in Suricata flat
705
+ # format through this setting when you create or update your rule
706
+ # group. The call response returns a RuleGroup object that Network
707
+ # Firewall has populated from your string.
712
708
  # @return [String]
713
709
  #
714
710
  # @!attribute [rw] type
@@ -1867,7 +1863,8 @@ module Aws::NetworkFirewall
1867
1863
  # }
1868
1864
  #
1869
1865
  # @!attribute [rw] protocol
1870
- # The protocol to inspect for.
1866
+ # The protocol to inspect for. To specify all, you can use `IP`,
1867
+ # because all traffic on AWS and on the internet is IP.
1871
1868
  # @return [String]
1872
1869
  #
1873
1870
  # @!attribute [rw] source
@@ -4447,23 +4444,19 @@ module Aws::NetworkFirewall
4447
4444
  # @return [Types::RuleGroup]
4448
4445
  #
4449
4446
  # @!attribute [rw] rules
4450
- # The name of a file containing stateful rule group rules
4451
- # specifications in Suricata flat format, with one rule per line. Use
4452
- # this to import your existing Suricata compatible rule groups.
4447
+ # A string containing stateful rule group rules specifications in
4448
+ # Suricata flat format, with one rule per line. Use this to import
4449
+ # your existing Suricata compatible rule groups.
4453
4450
  #
4454
4451
  # <note markdown="1"> You must provide either this rules setting or a populated
4455
4452
  # `RuleGroup` setting, but not both.
4456
4453
  #
4457
4454
  # </note>
4458
4455
  #
4459
- # You can provide your rule group specification in a file through this
4460
- # setting when you create or update your rule group. The call response
4461
- # returns a RuleGroup object that Network Firewall has populated from
4462
- # your file. Network Firewall uses the file contents to populate the
4463
- # rule group rules, but does not maintain a reference to the file or
4464
- # use the file in any way after performing the create or update. If
4465
- # you call DescribeRuleGroup to retrieve the rule group, Network
4466
- # Firewall returns rules settings inside a RuleGroup object.
4456
+ # You can provide your rule group specification in Suricata flat
4457
+ # format through this setting when you create or update your rule
4458
+ # group. The call response returns a RuleGroup object that Network
4459
+ # Firewall has populated from your string.
4467
4460
  # @return [String]
4468
4461
  #
4469
4462
  # @!attribute [rw] type
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.3.0
4
+ version: 1.4.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core