aws-sdk-networkfirewall 1.61.0 → 1.63.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 +657 -5
- data/lib/aws-sdk-networkfirewall/client_api.rb +360 -2
- data/lib/aws-sdk-networkfirewall/types.rb +1024 -21
- data/lib/aws-sdk-networkfirewall.rb +1 -1
- data/sig/client.rbs +175 -3
- data/sig/types.rbs +212 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -124,8 +124,8 @@ module Aws
|
|
124
124
|
def create_firewall: (
|
125
125
|
firewall_name: ::String,
|
126
126
|
firewall_policy_arn: ::String,
|
127
|
-
vpc_id: ::String,
|
128
|
-
subnet_mappings: Array[
|
127
|
+
?vpc_id: ::String,
|
128
|
+
?subnet_mappings: Array[
|
129
129
|
{
|
130
130
|
subnet_id: ::String,
|
131
131
|
ip_address_type: ("DUALSTACK" | "IPV4" | "IPV6")?
|
@@ -144,7 +144,8 @@ module Aws
|
|
144
144
|
?encryption_configuration: {
|
145
145
|
key_id: ::String?,
|
146
146
|
type: ("CUSTOMER_KMS" | "AWS_OWNED_KMS_KEY")
|
147
|
-
}
|
147
|
+
},
|
148
|
+
?enabled_analysis_types: Array[("TLS_SNI" | "HTTP_HOST")]
|
148
149
|
) -> _CreateFirewallResponseSuccess
|
149
150
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFirewallResponseSuccess
|
150
151
|
|
@@ -495,6 +496,25 @@ module Aws
|
|
495
496
|
) -> _DescribeFirewallPolicyResponseSuccess
|
496
497
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFirewallPolicyResponseSuccess
|
497
498
|
|
499
|
+
interface _DescribeFlowOperationResponseSuccess
|
500
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFlowOperationResponse]
|
501
|
+
def firewall_arn: () -> ::String
|
502
|
+
def availability_zone: () -> ::String
|
503
|
+
def flow_operation_id: () -> ::String
|
504
|
+
def flow_operation_type: () -> ("FLOW_FLUSH" | "FLOW_CAPTURE")
|
505
|
+
def flow_operation_status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
506
|
+
def status_message: () -> ::String
|
507
|
+
def flow_request_timestamp: () -> ::Time
|
508
|
+
def flow_operation: () -> Types::FlowOperation
|
509
|
+
end
|
510
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_flow_operation-instance_method
|
511
|
+
def describe_flow_operation: (
|
512
|
+
firewall_arn: ::String,
|
513
|
+
?availability_zone: ::String,
|
514
|
+
flow_operation_id: ::String
|
515
|
+
) -> _DescribeFlowOperationResponseSuccess
|
516
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowOperationResponseSuccess
|
517
|
+
|
498
518
|
interface _DescribeLoggingConfigurationResponseSuccess
|
499
519
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLoggingConfigurationResponse]
|
500
520
|
def firewall_arn: () -> ::String
|
@@ -579,6 +599,40 @@ module Aws
|
|
579
599
|
) -> _DisassociateSubnetsResponseSuccess
|
580
600
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateSubnetsResponseSuccess
|
581
601
|
|
602
|
+
interface _GetAnalysisReportResultsResponseSuccess
|
603
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAnalysisReportResultsResponse]
|
604
|
+
def status: () -> ::String
|
605
|
+
def start_time: () -> ::Time
|
606
|
+
def end_time: () -> ::Time
|
607
|
+
def report_time: () -> ::Time
|
608
|
+
def analysis_type: () -> ("TLS_SNI" | "HTTP_HOST")
|
609
|
+
def next_token: () -> ::String
|
610
|
+
def analysis_report_results: () -> ::Array[Types::AnalysisTypeReportResult]
|
611
|
+
end
|
612
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#get_analysis_report_results-instance_method
|
613
|
+
def get_analysis_report_results: (
|
614
|
+
?firewall_name: ::String,
|
615
|
+
analysis_report_id: ::String,
|
616
|
+
?firewall_arn: ::String,
|
617
|
+
?next_token: ::String,
|
618
|
+
?max_results: ::Integer
|
619
|
+
) -> _GetAnalysisReportResultsResponseSuccess
|
620
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnalysisReportResultsResponseSuccess
|
621
|
+
|
622
|
+
interface _ListAnalysisReportsResponseSuccess
|
623
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAnalysisReportsResponse]
|
624
|
+
def analysis_reports: () -> ::Array[Types::AnalysisReport]
|
625
|
+
def next_token: () -> ::String
|
626
|
+
end
|
627
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#list_analysis_reports-instance_method
|
628
|
+
def list_analysis_reports: (
|
629
|
+
?firewall_name: ::String,
|
630
|
+
?firewall_arn: ::String,
|
631
|
+
?next_token: ::String,
|
632
|
+
?max_results: ::Integer
|
633
|
+
) -> _ListAnalysisReportsResponseSuccess
|
634
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnalysisReportsResponseSuccess
|
635
|
+
|
582
636
|
interface _ListFirewallPoliciesResponseSuccess
|
583
637
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListFirewallPoliciesResponse]
|
584
638
|
def next_token: () -> ::String
|
@@ -604,6 +658,42 @@ module Aws
|
|
604
658
|
) -> _ListFirewallsResponseSuccess
|
605
659
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFirewallsResponseSuccess
|
606
660
|
|
661
|
+
interface _ListFlowOperationResultsResponseSuccess
|
662
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListFlowOperationResultsResponse]
|
663
|
+
def firewall_arn: () -> ::String
|
664
|
+
def availability_zone: () -> ::String
|
665
|
+
def flow_operation_id: () -> ::String
|
666
|
+
def flow_operation_status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
667
|
+
def status_message: () -> ::String
|
668
|
+
def flow_request_timestamp: () -> ::Time
|
669
|
+
def flows: () -> ::Array[Types::Flow]
|
670
|
+
def next_token: () -> ::String
|
671
|
+
end
|
672
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#list_flow_operation_results-instance_method
|
673
|
+
def list_flow_operation_results: (
|
674
|
+
firewall_arn: ::String,
|
675
|
+
flow_operation_id: ::String,
|
676
|
+
?next_token: ::String,
|
677
|
+
?max_results: ::Integer,
|
678
|
+
?availability_zone: ::String
|
679
|
+
) -> _ListFlowOperationResultsResponseSuccess
|
680
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFlowOperationResultsResponseSuccess
|
681
|
+
|
682
|
+
interface _ListFlowOperationsResponseSuccess
|
683
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListFlowOperationsResponse]
|
684
|
+
def flow_operations: () -> ::Array[Types::FlowOperationMetadata]
|
685
|
+
def next_token: () -> ::String
|
686
|
+
end
|
687
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#list_flow_operations-instance_method
|
688
|
+
def list_flow_operations: (
|
689
|
+
firewall_arn: ::String,
|
690
|
+
?availability_zone: ::String,
|
691
|
+
?flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE"),
|
692
|
+
?next_token: ::String,
|
693
|
+
?max_results: ::Integer
|
694
|
+
) -> _ListFlowOperationsResponseSuccess
|
695
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFlowOperationsResponseSuccess
|
696
|
+
|
607
697
|
interface _ListRuleGroupsResponseSuccess
|
608
698
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRuleGroupsResponse]
|
609
699
|
def next_token: () -> ::String
|
@@ -654,6 +744,72 @@ module Aws
|
|
654
744
|
) -> _PutResourcePolicyResponseSuccess
|
655
745
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
|
656
746
|
|
747
|
+
interface _StartAnalysisReportResponseSuccess
|
748
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartAnalysisReportResponse]
|
749
|
+
def analysis_report_id: () -> ::String
|
750
|
+
end
|
751
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#start_analysis_report-instance_method
|
752
|
+
def start_analysis_report: (
|
753
|
+
?firewall_name: ::String,
|
754
|
+
?firewall_arn: ::String,
|
755
|
+
analysis_type: ("TLS_SNI" | "HTTP_HOST")
|
756
|
+
) -> _StartAnalysisReportResponseSuccess
|
757
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAnalysisReportResponseSuccess
|
758
|
+
|
759
|
+
interface _StartFlowCaptureResponseSuccess
|
760
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartFlowCaptureResponse]
|
761
|
+
def firewall_arn: () -> ::String
|
762
|
+
def flow_operation_id: () -> ::String
|
763
|
+
def flow_operation_status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
764
|
+
end
|
765
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#start_flow_capture-instance_method
|
766
|
+
def start_flow_capture: (
|
767
|
+
firewall_arn: ::String,
|
768
|
+
?availability_zone: ::String,
|
769
|
+
?minimum_flow_age_in_seconds: ::Integer,
|
770
|
+
flow_filters: Array[
|
771
|
+
{
|
772
|
+
source_address: {
|
773
|
+
address_definition: ::String
|
774
|
+
}?,
|
775
|
+
destination_address: {
|
776
|
+
address_definition: ::String
|
777
|
+
}?,
|
778
|
+
source_port: ::String?,
|
779
|
+
destination_port: ::String?,
|
780
|
+
protocols: Array[::String]?
|
781
|
+
},
|
782
|
+
]
|
783
|
+
) -> _StartFlowCaptureResponseSuccess
|
784
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFlowCaptureResponseSuccess
|
785
|
+
|
786
|
+
interface _StartFlowFlushResponseSuccess
|
787
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartFlowFlushResponse]
|
788
|
+
def firewall_arn: () -> ::String
|
789
|
+
def flow_operation_id: () -> ::String
|
790
|
+
def flow_operation_status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
791
|
+
end
|
792
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#start_flow_flush-instance_method
|
793
|
+
def start_flow_flush: (
|
794
|
+
firewall_arn: ::String,
|
795
|
+
?availability_zone: ::String,
|
796
|
+
?minimum_flow_age_in_seconds: ::Integer,
|
797
|
+
flow_filters: Array[
|
798
|
+
{
|
799
|
+
source_address: {
|
800
|
+
address_definition: ::String
|
801
|
+
}?,
|
802
|
+
destination_address: {
|
803
|
+
address_definition: ::String
|
804
|
+
}?,
|
805
|
+
source_port: ::String?,
|
806
|
+
destination_port: ::String?,
|
807
|
+
protocols: Array[::String]?
|
808
|
+
},
|
809
|
+
]
|
810
|
+
) -> _StartFlowFlushResponseSuccess
|
811
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFlowFlushResponseSuccess
|
812
|
+
|
657
813
|
interface _TagResourceResponseSuccess
|
658
814
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
659
815
|
end
|
@@ -679,6 +835,22 @@ module Aws
|
|
679
835
|
) -> _UntagResourceResponseSuccess
|
680
836
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
681
837
|
|
838
|
+
interface _UpdateFirewallAnalysisSettingsResponseSuccess
|
839
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFirewallAnalysisSettingsResponse]
|
840
|
+
def enabled_analysis_types: () -> ::Array[("TLS_SNI" | "HTTP_HOST")]
|
841
|
+
def firewall_arn: () -> ::String
|
842
|
+
def firewall_name: () -> ::String
|
843
|
+
def update_token: () -> ::String
|
844
|
+
end
|
845
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#update_firewall_analysis_settings-instance_method
|
846
|
+
def update_firewall_analysis_settings: (
|
847
|
+
?enabled_analysis_types: Array[("TLS_SNI" | "HTTP_HOST")],
|
848
|
+
?firewall_arn: ::String,
|
849
|
+
?firewall_name: ::String,
|
850
|
+
?update_token: ::String
|
851
|
+
) -> _UpdateFirewallAnalysisSettingsResponseSuccess
|
852
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFirewallAnalysisSettingsResponseSuccess
|
853
|
+
|
682
854
|
interface _UpdateFirewallDeleteProtectionResponseSuccess
|
683
855
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFirewallDeleteProtectionResponse]
|
684
856
|
def firewall_arn: () -> ::String
|
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
|
|
@@ -241,6 +260,25 @@ module Aws::NetworkFirewall
|
|
241
260
|
SENSITIVE: []
|
242
261
|
end
|
243
262
|
|
263
|
+
class DescribeFlowOperationRequest
|
264
|
+
attr_accessor firewall_arn: ::String
|
265
|
+
attr_accessor availability_zone: ::String
|
266
|
+
attr_accessor flow_operation_id: ::String
|
267
|
+
SENSITIVE: []
|
268
|
+
end
|
269
|
+
|
270
|
+
class DescribeFlowOperationResponse
|
271
|
+
attr_accessor firewall_arn: ::String
|
272
|
+
attr_accessor availability_zone: ::String
|
273
|
+
attr_accessor flow_operation_id: ::String
|
274
|
+
attr_accessor flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE")
|
275
|
+
attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
276
|
+
attr_accessor status_message: ::String
|
277
|
+
attr_accessor flow_request_timestamp: ::Time
|
278
|
+
attr_accessor flow_operation: Types::FlowOperation
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
244
282
|
class DescribeLoggingConfigurationRequest
|
245
283
|
attr_accessor firewall_arn: ::String
|
246
284
|
attr_accessor firewall_name: ::String
|
@@ -349,6 +387,7 @@ module Aws::NetworkFirewall
|
|
349
387
|
attr_accessor firewall_id: ::String
|
350
388
|
attr_accessor tags: ::Array[Types::Tag]
|
351
389
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
390
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
352
391
|
SENSITIVE: []
|
353
392
|
end
|
354
393
|
|
@@ -400,11 +439,66 @@ module Aws::NetworkFirewall
|
|
400
439
|
SENSITIVE: []
|
401
440
|
end
|
402
441
|
|
442
|
+
class Flow
|
443
|
+
attr_accessor source_address: Types::Address
|
444
|
+
attr_accessor destination_address: Types::Address
|
445
|
+
attr_accessor source_port: ::String
|
446
|
+
attr_accessor destination_port: ::String
|
447
|
+
attr_accessor protocol: ::String
|
448
|
+
attr_accessor age: ::Integer
|
449
|
+
attr_accessor packet_count: ::Integer
|
450
|
+
attr_accessor byte_count: ::Integer
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
454
|
+
class FlowFilter
|
455
|
+
attr_accessor source_address: Types::Address
|
456
|
+
attr_accessor destination_address: Types::Address
|
457
|
+
attr_accessor source_port: ::String
|
458
|
+
attr_accessor destination_port: ::String
|
459
|
+
attr_accessor protocols: ::Array[::String]
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
463
|
+
class FlowOperation
|
464
|
+
attr_accessor minimum_flow_age_in_seconds: ::Integer
|
465
|
+
attr_accessor flow_filters: ::Array[Types::FlowFilter]
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class FlowOperationMetadata
|
470
|
+
attr_accessor flow_operation_id: ::String
|
471
|
+
attr_accessor flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE")
|
472
|
+
attr_accessor flow_request_timestamp: ::Time
|
473
|
+
attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
403
477
|
class FlowTimeouts
|
404
478
|
attr_accessor tcp_idle_timeout_seconds: ::Integer
|
405
479
|
SENSITIVE: []
|
406
480
|
end
|
407
481
|
|
482
|
+
class GetAnalysisReportResultsRequest
|
483
|
+
attr_accessor firewall_name: ::String
|
484
|
+
attr_accessor analysis_report_id: ::String
|
485
|
+
attr_accessor firewall_arn: ::String
|
486
|
+
attr_accessor next_token: ::String
|
487
|
+
attr_accessor max_results: ::Integer
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class GetAnalysisReportResultsResponse
|
492
|
+
attr_accessor status: ::String
|
493
|
+
attr_accessor start_time: ::Time
|
494
|
+
attr_accessor end_time: ::Time
|
495
|
+
attr_accessor report_time: ::Time
|
496
|
+
attr_accessor analysis_type: ("TLS_SNI" | "HTTP_HOST")
|
497
|
+
attr_accessor next_token: ::String
|
498
|
+
attr_accessor analysis_report_results: ::Array[Types::AnalysisTypeReportResult]
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
408
502
|
class Header
|
409
503
|
attr_accessor protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP")
|
410
504
|
attr_accessor source: ::String
|
@@ -415,6 +509,11 @@ module Aws::NetworkFirewall
|
|
415
509
|
SENSITIVE: []
|
416
510
|
end
|
417
511
|
|
512
|
+
class Hits
|
513
|
+
attr_accessor count: ::Integer
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
418
517
|
class IPSet
|
419
518
|
attr_accessor definition: ::Array[::String]
|
420
519
|
SENSITIVE: []
|
@@ -465,6 +564,20 @@ module Aws::NetworkFirewall
|
|
465
564
|
SENSITIVE: []
|
466
565
|
end
|
467
566
|
|
567
|
+
class ListAnalysisReportsRequest
|
568
|
+
attr_accessor firewall_name: ::String
|
569
|
+
attr_accessor firewall_arn: ::String
|
570
|
+
attr_accessor next_token: ::String
|
571
|
+
attr_accessor max_results: ::Integer
|
572
|
+
SENSITIVE: []
|
573
|
+
end
|
574
|
+
|
575
|
+
class ListAnalysisReportsResponse
|
576
|
+
attr_accessor analysis_reports: ::Array[Types::AnalysisReport]
|
577
|
+
attr_accessor next_token: ::String
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
468
581
|
class ListFirewallPoliciesRequest
|
469
582
|
attr_accessor next_token: ::String
|
470
583
|
attr_accessor max_results: ::Integer
|
@@ -490,6 +603,42 @@ module Aws::NetworkFirewall
|
|
490
603
|
SENSITIVE: []
|
491
604
|
end
|
492
605
|
|
606
|
+
class ListFlowOperationResultsRequest
|
607
|
+
attr_accessor firewall_arn: ::String
|
608
|
+
attr_accessor flow_operation_id: ::String
|
609
|
+
attr_accessor next_token: ::String
|
610
|
+
attr_accessor max_results: ::Integer
|
611
|
+
attr_accessor availability_zone: ::String
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class ListFlowOperationResultsResponse
|
616
|
+
attr_accessor firewall_arn: ::String
|
617
|
+
attr_accessor availability_zone: ::String
|
618
|
+
attr_accessor flow_operation_id: ::String
|
619
|
+
attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
620
|
+
attr_accessor status_message: ::String
|
621
|
+
attr_accessor flow_request_timestamp: ::Time
|
622
|
+
attr_accessor flows: ::Array[Types::Flow]
|
623
|
+
attr_accessor next_token: ::String
|
624
|
+
SENSITIVE: []
|
625
|
+
end
|
626
|
+
|
627
|
+
class ListFlowOperationsRequest
|
628
|
+
attr_accessor firewall_arn: ::String
|
629
|
+
attr_accessor availability_zone: ::String
|
630
|
+
attr_accessor flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE")
|
631
|
+
attr_accessor next_token: ::String
|
632
|
+
attr_accessor max_results: ::Integer
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class ListFlowOperationsResponse
|
637
|
+
attr_accessor flow_operations: ::Array[Types::FlowOperationMetadata]
|
638
|
+
attr_accessor next_token: ::String
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
493
642
|
class ListRuleGroupsRequest
|
494
643
|
attr_accessor next_token: ::String
|
495
644
|
attr_accessor max_results: ::Integer
|
@@ -702,6 +851,48 @@ module Aws::NetworkFirewall
|
|
702
851
|
SENSITIVE: []
|
703
852
|
end
|
704
853
|
|
854
|
+
class StartAnalysisReportRequest
|
855
|
+
attr_accessor firewall_name: ::String
|
856
|
+
attr_accessor firewall_arn: ::String
|
857
|
+
attr_accessor analysis_type: ("TLS_SNI" | "HTTP_HOST")
|
858
|
+
SENSITIVE: []
|
859
|
+
end
|
860
|
+
|
861
|
+
class StartAnalysisReportResponse
|
862
|
+
attr_accessor analysis_report_id: ::String
|
863
|
+
SENSITIVE: []
|
864
|
+
end
|
865
|
+
|
866
|
+
class StartFlowCaptureRequest
|
867
|
+
attr_accessor firewall_arn: ::String
|
868
|
+
attr_accessor availability_zone: ::String
|
869
|
+
attr_accessor minimum_flow_age_in_seconds: ::Integer
|
870
|
+
attr_accessor flow_filters: ::Array[Types::FlowFilter]
|
871
|
+
SENSITIVE: []
|
872
|
+
end
|
873
|
+
|
874
|
+
class StartFlowCaptureResponse
|
875
|
+
attr_accessor firewall_arn: ::String
|
876
|
+
attr_accessor flow_operation_id: ::String
|
877
|
+
attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
878
|
+
SENSITIVE: []
|
879
|
+
end
|
880
|
+
|
881
|
+
class StartFlowFlushRequest
|
882
|
+
attr_accessor firewall_arn: ::String
|
883
|
+
attr_accessor availability_zone: ::String
|
884
|
+
attr_accessor minimum_flow_age_in_seconds: ::Integer
|
885
|
+
attr_accessor flow_filters: ::Array[Types::FlowFilter]
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class StartFlowFlushResponse
|
890
|
+
attr_accessor firewall_arn: ::String
|
891
|
+
attr_accessor flow_operation_id: ::String
|
892
|
+
attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
705
896
|
class StatefulEngineOptions
|
706
897
|
attr_accessor rule_order: ("DEFAULT_ACTION_ORDER" | "STRICT_ORDER")
|
707
898
|
attr_accessor stream_exception_policy: ("DROP" | "CONTINUE" | "REJECT")
|
@@ -823,6 +1014,11 @@ module Aws::NetworkFirewall
|
|
823
1014
|
SENSITIVE: []
|
824
1015
|
end
|
825
1016
|
|
1017
|
+
class UniqueSources
|
1018
|
+
attr_accessor count: ::Integer
|
1019
|
+
SENSITIVE: []
|
1020
|
+
end
|
1021
|
+
|
826
1022
|
class UnsupportedOperationException
|
827
1023
|
attr_accessor message: ::String
|
828
1024
|
SENSITIVE: []
|
@@ -837,6 +1033,22 @@ module Aws::NetworkFirewall
|
|
837
1033
|
class UntagResourceResponse < Aws::EmptyStructure
|
838
1034
|
end
|
839
1035
|
|
1036
|
+
class UpdateFirewallAnalysisSettingsRequest
|
1037
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
1038
|
+
attr_accessor firewall_arn: ::String
|
1039
|
+
attr_accessor firewall_name: ::String
|
1040
|
+
attr_accessor update_token: ::String
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class UpdateFirewallAnalysisSettingsResponse
|
1045
|
+
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
1046
|
+
attr_accessor firewall_arn: ::String
|
1047
|
+
attr_accessor firewall_name: ::String
|
1048
|
+
attr_accessor update_token: ::String
|
1049
|
+
SENSITIVE: []
|
1050
|
+
end
|
1051
|
+
|
840
1052
|
class UpdateFirewallDeleteProtectionRequest
|
841
1053
|
attr_accessor update_token: ::String
|
842
1054
|
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.63.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-
|
11
|
+
date: 2025-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|