aws-sdk-networkfirewall 1.60.0 → 1.62.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-networkfirewall/client.rb +303 -33
- data/lib/aws-sdk-networkfirewall/client_api.rb +162 -2
- data/lib/aws-sdk-networkfirewall/types.rb +429 -6
- data/lib/aws-sdk-networkfirewall.rb +1 -1
- data/sig/client.rbs +66 -3
- data/sig/types.rbs +92 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -18,6 +18,14 @@ module Aws::NetworkFirewall
|
|
18
18
|
SENSITIVE: []
|
19
19
|
end
|
20
20
|
|
21
|
+
class AnalysisReport
|
22
|
+
attr_accessor analysis_report_id: ::String
|
23
|
+
attr_accessor analysis_type: ("TLS_SNI" | "HTTP_HOST")
|
24
|
+
attr_accessor report_time: ::Time
|
25
|
+
attr_accessor status: ::String
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
21
29
|
class AnalysisResult
|
22
30
|
attr_accessor identified_rule_ids: ::Array[::String]
|
23
31
|
attr_accessor identified_type: ("STATELESS_RULE_FORWARDING_ASYMMETRICALLY" | "STATELESS_RULE_CONTAINS_TCP_FLAGS")
|
@@ -25,6 +33,16 @@ module Aws::NetworkFirewall
|
|
25
33
|
SENSITIVE: []
|
26
34
|
end
|
27
35
|
|
36
|
+
class AnalysisTypeReportResult
|
37
|
+
attr_accessor protocol: ::String
|
38
|
+
attr_accessor first_accessed: ::Time
|
39
|
+
attr_accessor last_accessed: ::Time
|
40
|
+
attr_accessor domain: ::String
|
41
|
+
attr_accessor hits: Types::Hits
|
42
|
+
attr_accessor unique_sources: Types::UniqueSources
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
28
46
|
class AssociateFirewallPolicyRequest
|
29
47
|
attr_accessor update_token: ::String
|
30
48
|
attr_accessor firewall_arn: ::String
|
@@ -110,6 +128,7 @@ module Aws::NetworkFirewall
|
|
110
128
|
attr_accessor description: ::String
|
111
129
|
attr_accessor tags: ::Array[Types::Tag]
|
112
130
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
131
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
113
132
|
SENSITIVE: []
|
114
133
|
end
|
115
134
|
|
@@ -349,6 +368,7 @@ module Aws::NetworkFirewall
|
|
349
368
|
attr_accessor firewall_id: ::String
|
350
369
|
attr_accessor tags: ::Array[Types::Tag]
|
351
370
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
371
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
352
372
|
SENSITIVE: []
|
353
373
|
end
|
354
374
|
|
@@ -405,6 +425,26 @@ module Aws::NetworkFirewall
|
|
405
425
|
SENSITIVE: []
|
406
426
|
end
|
407
427
|
|
428
|
+
class GetAnalysisReportResultsRequest
|
429
|
+
attr_accessor firewall_name: ::String
|
430
|
+
attr_accessor analysis_report_id: ::String
|
431
|
+
attr_accessor firewall_arn: ::String
|
432
|
+
attr_accessor next_token: ::String
|
433
|
+
attr_accessor max_results: ::Integer
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class GetAnalysisReportResultsResponse
|
438
|
+
attr_accessor status: ::String
|
439
|
+
attr_accessor start_time: ::Time
|
440
|
+
attr_accessor end_time: ::Time
|
441
|
+
attr_accessor report_time: ::Time
|
442
|
+
attr_accessor analysis_type: ("TLS_SNI" | "HTTP_HOST")
|
443
|
+
attr_accessor next_token: ::String
|
444
|
+
attr_accessor analysis_report_results: ::Array[Types::AnalysisTypeReportResult]
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
408
448
|
class Header
|
409
449
|
attr_accessor protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP")
|
410
450
|
attr_accessor source: ::String
|
@@ -415,6 +455,11 @@ module Aws::NetworkFirewall
|
|
415
455
|
SENSITIVE: []
|
416
456
|
end
|
417
457
|
|
458
|
+
class Hits
|
459
|
+
attr_accessor count: ::Integer
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
418
463
|
class IPSet
|
419
464
|
attr_accessor definition: ::Array[::String]
|
420
465
|
SENSITIVE: []
|
@@ -465,6 +510,20 @@ module Aws::NetworkFirewall
|
|
465
510
|
SENSITIVE: []
|
466
511
|
end
|
467
512
|
|
513
|
+
class ListAnalysisReportsRequest
|
514
|
+
attr_accessor firewall_name: ::String
|
515
|
+
attr_accessor firewall_arn: ::String
|
516
|
+
attr_accessor next_token: ::String
|
517
|
+
attr_accessor max_results: ::Integer
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class ListAnalysisReportsResponse
|
522
|
+
attr_accessor analysis_reports: ::Array[Types::AnalysisReport]
|
523
|
+
attr_accessor next_token: ::String
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
468
527
|
class ListFirewallPoliciesRequest
|
469
528
|
attr_accessor next_token: ::String
|
470
529
|
attr_accessor max_results: ::Integer
|
@@ -702,6 +761,18 @@ module Aws::NetworkFirewall
|
|
702
761
|
SENSITIVE: []
|
703
762
|
end
|
704
763
|
|
764
|
+
class StartAnalysisReportRequest
|
765
|
+
attr_accessor firewall_name: ::String
|
766
|
+
attr_accessor firewall_arn: ::String
|
767
|
+
attr_accessor analysis_type: ("TLS_SNI" | "HTTP_HOST")
|
768
|
+
SENSITIVE: []
|
769
|
+
end
|
770
|
+
|
771
|
+
class StartAnalysisReportResponse
|
772
|
+
attr_accessor analysis_report_id: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
705
776
|
class StatefulEngineOptions
|
706
777
|
attr_accessor rule_order: ("DEFAULT_ACTION_ORDER" | "STRICT_ORDER")
|
707
778
|
attr_accessor stream_exception_policy: ("DROP" | "CONTINUE" | "REJECT")
|
@@ -823,6 +894,11 @@ module Aws::NetworkFirewall
|
|
823
894
|
SENSITIVE: []
|
824
895
|
end
|
825
896
|
|
897
|
+
class UniqueSources
|
898
|
+
attr_accessor count: ::Integer
|
899
|
+
SENSITIVE: []
|
900
|
+
end
|
901
|
+
|
826
902
|
class UnsupportedOperationException
|
827
903
|
attr_accessor message: ::String
|
828
904
|
SENSITIVE: []
|
@@ -837,6 +913,22 @@ module Aws::NetworkFirewall
|
|
837
913
|
class UntagResourceResponse < Aws::EmptyStructure
|
838
914
|
end
|
839
915
|
|
916
|
+
class UpdateFirewallAnalysisSettingsRequest
|
917
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
918
|
+
attr_accessor firewall_arn: ::String
|
919
|
+
attr_accessor firewall_name: ::String
|
920
|
+
attr_accessor update_token: ::String
|
921
|
+
SENSITIVE: []
|
922
|
+
end
|
923
|
+
|
924
|
+
class UpdateFirewallAnalysisSettingsResponse
|
925
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
926
|
+
attr_accessor firewall_arn: ::String
|
927
|
+
attr_accessor firewall_name: ::String
|
928
|
+
attr_accessor update_token: ::String
|
929
|
+
SENSITIVE: []
|
930
|
+
end
|
931
|
+
|
840
932
|
class UpdateFirewallDeleteProtectionRequest
|
841
933
|
attr_accessor update_token: ::String
|
842
934
|
attr_accessor firewall_arn: ::String
|
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.
|
4
|
+
version: 1.62.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: 2025-02-
|
11
|
+
date: 2025-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|