aws-sdk-networkfirewall 1.68.0 → 1.70.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 +554 -5
- data/lib/aws-sdk-networkfirewall/client_api.rb +228 -0
- data/lib/aws-sdk-networkfirewall/types.rb +889 -33
- data/lib/aws-sdk-networkfirewall.rb +2 -2
- data/sig/client.rbs +127 -8
- data/sig/types.rbs +140 -2
- metadata +1 -1
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:networkfirewall)
|
|
23
23
|
# structure.
|
24
24
|
#
|
25
25
|
# network_firewall = Aws::NetworkFirewall::Client.new
|
26
|
-
# resp = network_firewall.
|
26
|
+
# resp = network_firewall.accept_network_firewall_transit_gateway_attachment(params)
|
27
27
|
#
|
28
28
|
# See {Client} for more information.
|
29
29
|
#
|
@@ -54,7 +54,7 @@ module Aws::NetworkFirewall
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-networkfirewall/endpoint_provider'
|
55
55
|
autoload :Endpoints, 'aws-sdk-networkfirewall/endpoints'
|
56
56
|
|
57
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.70.0'
|
58
58
|
|
59
59
|
end
|
60
60
|
|
data/sig/client.rbs
CHANGED
@@ -78,6 +78,37 @@ module Aws
|
|
78
78
|
| (?Hash[Symbol, untyped]) -> instance
|
79
79
|
|
80
80
|
|
81
|
+
interface _AcceptNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
82
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptNetworkFirewallTransitGatewayAttachmentResponse]
|
83
|
+
def transit_gateway_attachment_id: () -> ::String
|
84
|
+
def transit_gateway_attachment_status: () -> ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
85
|
+
end
|
86
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#accept_network_firewall_transit_gateway_attachment-instance_method
|
87
|
+
def accept_network_firewall_transit_gateway_attachment: (
|
88
|
+
transit_gateway_attachment_id: ::String
|
89
|
+
) -> _AcceptNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
90
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
91
|
+
|
92
|
+
interface _AssociateAvailabilityZonesResponseSuccess
|
93
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateAvailabilityZonesResponse]
|
94
|
+
def firewall_arn: () -> ::String
|
95
|
+
def firewall_name: () -> ::String
|
96
|
+
def availability_zone_mappings: () -> ::Array[Types::AvailabilityZoneMapping]
|
97
|
+
def update_token: () -> ::String
|
98
|
+
end
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#associate_availability_zones-instance_method
|
100
|
+
def associate_availability_zones: (
|
101
|
+
?update_token: ::String,
|
102
|
+
?firewall_arn: ::String,
|
103
|
+
?firewall_name: ::String,
|
104
|
+
availability_zone_mappings: Array[
|
105
|
+
{
|
106
|
+
availability_zone: ::String
|
107
|
+
},
|
108
|
+
]
|
109
|
+
) -> _AssociateAvailabilityZonesResponseSuccess
|
110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateAvailabilityZonesResponseSuccess
|
111
|
+
|
81
112
|
interface _AssociateFirewallPolicyResponseSuccess
|
82
113
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateFirewallPolicyResponse]
|
83
114
|
def firewall_arn: () -> ::String
|
@@ -145,7 +176,14 @@ module Aws
|
|
145
176
|
key_id: ::String?,
|
146
177
|
type: ("CUSTOMER_KMS" | "AWS_OWNED_KMS_KEY")
|
147
178
|
},
|
148
|
-
?enabled_analysis_types: Array[("TLS_SNI" | "HTTP_HOST")]
|
179
|
+
?enabled_analysis_types: Array[("TLS_SNI" | "HTTP_HOST")],
|
180
|
+
?transit_gateway_id: ::String,
|
181
|
+
?availability_zone_mappings: Array[
|
182
|
+
{
|
183
|
+
availability_zone: ::String
|
184
|
+
},
|
185
|
+
],
|
186
|
+
?availability_zone_change_protection: bool
|
149
187
|
) -> _CreateFirewallResponseSuccess
|
150
188
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFirewallResponseSuccess
|
151
189
|
|
@@ -186,7 +224,8 @@ module Aws
|
|
186
224
|
priority: ::Integer?,
|
187
225
|
override: {
|
188
226
|
action: ("DROP_TO_ALERT")?
|
189
|
-
}
|
227
|
+
}?,
|
228
|
+
deep_threat_inspection: bool?
|
190
229
|
},
|
191
230
|
]?,
|
192
231
|
stateful_default_actions: Array[::String]?,
|
@@ -252,7 +291,7 @@ module Aws
|
|
252
291
|
{
|
253
292
|
action: ("PASS" | "DROP" | "ALERT" | "REJECT"),
|
254
293
|
header: {
|
255
|
-
protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP"),
|
294
|
+
protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP" | "HTTP2" | "QUIC"),
|
256
295
|
source: ::String,
|
257
296
|
source_port: ::String,
|
258
297
|
direction: ("FORWARD" | "ANY"),
|
@@ -346,7 +385,10 @@ module Aws
|
|
346
385
|
source_arn: ::String?,
|
347
386
|
source_update_token: ::String?
|
348
387
|
},
|
349
|
-
?analyze_rule_group: bool
|
388
|
+
?analyze_rule_group: bool,
|
389
|
+
?summary_configuration: {
|
390
|
+
rule_options: Array[("SID" | "MSG" | "METADATA")]?
|
391
|
+
}
|
350
392
|
) -> _CreateRuleGroupResponseSuccess
|
351
393
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRuleGroupResponseSuccess
|
352
394
|
|
@@ -461,6 +503,17 @@ module Aws
|
|
461
503
|
) -> _DeleteFirewallPolicyResponseSuccess
|
462
504
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFirewallPolicyResponseSuccess
|
463
505
|
|
506
|
+
interface _DeleteNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
507
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteNetworkFirewallTransitGatewayAttachmentResponse]
|
508
|
+
def transit_gateway_attachment_id: () -> ::String
|
509
|
+
def transit_gateway_attachment_status: () -> ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
510
|
+
end
|
511
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#delete_network_firewall_transit_gateway_attachment-instance_method
|
512
|
+
def delete_network_firewall_transit_gateway_attachment: (
|
513
|
+
transit_gateway_attachment_id: ::String
|
514
|
+
) -> _DeleteNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
515
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
516
|
+
|
464
517
|
interface _DeleteResourcePolicyResponseSuccess
|
465
518
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
|
466
519
|
end
|
@@ -524,6 +577,7 @@ module Aws
|
|
524
577
|
def description: () -> ::String
|
525
578
|
def status: () -> ("PROVISIONING" | "DELETING" | "READY")
|
526
579
|
def supported_availability_zones: () -> ::Hash[::String, Types::AvailabilityZoneMetadata]
|
580
|
+
def transit_gateway_attachment_id: () -> ::String
|
527
581
|
end
|
528
582
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_firewall_metadata-instance_method
|
529
583
|
def describe_firewall_metadata: (
|
@@ -623,6 +677,20 @@ module Aws
|
|
623
677
|
) -> _DescribeRuleGroupMetadataResponseSuccess
|
624
678
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRuleGroupMetadataResponseSuccess
|
625
679
|
|
680
|
+
interface _DescribeRuleGroupSummaryResponseSuccess
|
681
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRuleGroupSummaryResponse]
|
682
|
+
def rule_group_name: () -> ::String
|
683
|
+
def description: () -> ::String
|
684
|
+
def summary: () -> Types::Summary
|
685
|
+
end
|
686
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_rule_group_summary-instance_method
|
687
|
+
def describe_rule_group_summary: (
|
688
|
+
?rule_group_name: ::String,
|
689
|
+
?rule_group_arn: ::String,
|
690
|
+
?type: ("STATELESS" | "STATEFUL")
|
691
|
+
) -> _DescribeRuleGroupSummaryResponseSuccess
|
692
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRuleGroupSummaryResponseSuccess
|
693
|
+
|
626
694
|
interface _DescribeTLSInspectionConfigurationResponseSuccess
|
627
695
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTLSInspectionConfigurationResponse]
|
628
696
|
def update_token: () -> ::String
|
@@ -647,6 +715,26 @@ module Aws
|
|
647
715
|
) -> _DescribeVpcEndpointAssociationResponseSuccess
|
648
716
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcEndpointAssociationResponseSuccess
|
649
717
|
|
718
|
+
interface _DisassociateAvailabilityZonesResponseSuccess
|
719
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateAvailabilityZonesResponse]
|
720
|
+
def firewall_arn: () -> ::String
|
721
|
+
def firewall_name: () -> ::String
|
722
|
+
def availability_zone_mappings: () -> ::Array[Types::AvailabilityZoneMapping]
|
723
|
+
def update_token: () -> ::String
|
724
|
+
end
|
725
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#disassociate_availability_zones-instance_method
|
726
|
+
def disassociate_availability_zones: (
|
727
|
+
?update_token: ::String,
|
728
|
+
?firewall_arn: ::String,
|
729
|
+
?firewall_name: ::String,
|
730
|
+
availability_zone_mappings: Array[
|
731
|
+
{
|
732
|
+
availability_zone: ::String
|
733
|
+
},
|
734
|
+
]
|
735
|
+
) -> _DisassociateAvailabilityZonesResponseSuccess
|
736
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateAvailabilityZonesResponseSuccess
|
737
|
+
|
650
738
|
interface _DisassociateSubnetsResponseSuccess
|
651
739
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSubnetsResponse]
|
652
740
|
def firewall_arn: () -> ::String
|
@@ -774,7 +862,7 @@ module Aws
|
|
774
862
|
?next_token: ::String,
|
775
863
|
?max_results: ::Integer,
|
776
864
|
?scope: ("MANAGED" | "ACCOUNT"),
|
777
|
-
?managed_type: ("AWS_MANAGED_THREAT_SIGNATURES" | "AWS_MANAGED_DOMAIN_LISTS"),
|
865
|
+
?managed_type: ("AWS_MANAGED_THREAT_SIGNATURES" | "AWS_MANAGED_DOMAIN_LISTS" | "ACTIVE_THREAT_DEFENSE"),
|
778
866
|
?type: ("STATELESS" | "STATEFUL")
|
779
867
|
) -> _ListRuleGroupsResponseSuccess
|
780
868
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRuleGroupsResponseSuccess
|
@@ -827,6 +915,17 @@ module Aws
|
|
827
915
|
) -> _PutResourcePolicyResponseSuccess
|
828
916
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
|
829
917
|
|
918
|
+
interface _RejectNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
919
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectNetworkFirewallTransitGatewayAttachmentResponse]
|
920
|
+
def transit_gateway_attachment_id: () -> ::String
|
921
|
+
def transit_gateway_attachment_status: () -> ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
922
|
+
end
|
923
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#reject_network_firewall_transit_gateway_attachment-instance_method
|
924
|
+
def reject_network_firewall_transit_gateway_attachment: (
|
925
|
+
transit_gateway_attachment_id: ::String
|
926
|
+
) -> _RejectNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
927
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectNetworkFirewallTransitGatewayAttachmentResponseSuccess
|
928
|
+
|
830
929
|
interface _StartAnalysisReportResponseSuccess
|
831
930
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartAnalysisReportResponse]
|
832
931
|
def analysis_report_id: () -> ::String
|
@@ -922,6 +1021,22 @@ module Aws
|
|
922
1021
|
) -> _UntagResourceResponseSuccess
|
923
1022
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
924
1023
|
|
1024
|
+
interface _UpdateAvailabilityZoneChangeProtectionResponseSuccess
|
1025
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAvailabilityZoneChangeProtectionResponse]
|
1026
|
+
def update_token: () -> ::String
|
1027
|
+
def firewall_arn: () -> ::String
|
1028
|
+
def firewall_name: () -> ::String
|
1029
|
+
def availability_zone_change_protection: () -> bool
|
1030
|
+
end
|
1031
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#update_availability_zone_change_protection-instance_method
|
1032
|
+
def update_availability_zone_change_protection: (
|
1033
|
+
?update_token: ::String,
|
1034
|
+
?firewall_arn: ::String,
|
1035
|
+
?firewall_name: ::String,
|
1036
|
+
availability_zone_change_protection: bool
|
1037
|
+
) -> _UpdateAvailabilityZoneChangeProtectionResponseSuccess
|
1038
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAvailabilityZoneChangeProtectionResponseSuccess
|
1039
|
+
|
925
1040
|
interface _UpdateFirewallAnalysisSettingsResponseSuccess
|
926
1041
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFirewallAnalysisSettingsResponse]
|
927
1042
|
def enabled_analysis_types: () -> ::Array[("TLS_SNI" | "HTTP_HOST")]
|
@@ -1028,7 +1143,8 @@ module Aws
|
|
1028
1143
|
priority: ::Integer?,
|
1029
1144
|
override: {
|
1030
1145
|
action: ("DROP_TO_ALERT")?
|
1031
|
-
}
|
1146
|
+
}?,
|
1147
|
+
deep_threat_inspection: bool?
|
1032
1148
|
},
|
1033
1149
|
]?,
|
1034
1150
|
stateful_default_actions: Array[::String]?,
|
@@ -1130,7 +1246,7 @@ module Aws
|
|
1130
1246
|
{
|
1131
1247
|
action: ("PASS" | "DROP" | "ALERT" | "REJECT"),
|
1132
1248
|
header: {
|
1133
|
-
protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP"),
|
1249
|
+
protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP" | "HTTP2" | "QUIC"),
|
1134
1250
|
source: ::String,
|
1135
1251
|
source_port: ::String,
|
1136
1252
|
direction: ("FORWARD" | "ANY"),
|
@@ -1217,7 +1333,10 @@ module Aws
|
|
1217
1333
|
source_arn: ::String?,
|
1218
1334
|
source_update_token: ::String?
|
1219
1335
|
},
|
1220
|
-
?analyze_rule_group: bool
|
1336
|
+
?analyze_rule_group: bool,
|
1337
|
+
?summary_configuration: {
|
1338
|
+
rule_options: Array[("SID" | "MSG" | "METADATA")]?
|
1339
|
+
}
|
1221
1340
|
) -> _UpdateRuleGroupResponseSuccess
|
1222
1341
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRuleGroupResponseSuccess
|
1223
1342
|
|
data/sig/types.rbs
CHANGED
@@ -13,6 +13,17 @@ module Aws::NetworkFirewall
|
|
13
13
|
SENSITIVE: []
|
14
14
|
end
|
15
15
|
|
16
|
+
class AcceptNetworkFirewallTransitGatewayAttachmentRequest
|
17
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AcceptNetworkFirewallTransitGatewayAttachmentResponse
|
22
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
23
|
+
attr_accessor transit_gateway_attachment_status: ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
16
27
|
class ActionDefinition
|
17
28
|
attr_accessor publish_metric_action: Types::PublishMetricAction
|
18
29
|
SENSITIVE: []
|
@@ -48,6 +59,22 @@ module Aws::NetworkFirewall
|
|
48
59
|
SENSITIVE: []
|
49
60
|
end
|
50
61
|
|
62
|
+
class AssociateAvailabilityZonesRequest
|
63
|
+
attr_accessor update_token: ::String
|
64
|
+
attr_accessor firewall_arn: ::String
|
65
|
+
attr_accessor firewall_name: ::String
|
66
|
+
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
67
|
+
SENSITIVE: []
|
68
|
+
end
|
69
|
+
|
70
|
+
class AssociateAvailabilityZonesResponse
|
71
|
+
attr_accessor firewall_arn: ::String
|
72
|
+
attr_accessor firewall_name: ::String
|
73
|
+
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
74
|
+
attr_accessor update_token: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
51
78
|
class AssociateFirewallPolicyRequest
|
52
79
|
attr_accessor update_token: ::String
|
53
80
|
attr_accessor firewall_arn: ::String
|
@@ -88,6 +115,11 @@ module Aws::NetworkFirewall
|
|
88
115
|
SENSITIVE: []
|
89
116
|
end
|
90
117
|
|
118
|
+
class AvailabilityZoneMapping
|
119
|
+
attr_accessor availability_zone: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
91
123
|
class AvailabilityZoneMetadata
|
92
124
|
attr_accessor ip_address_type: ("DUALSTACK" | "IPV4" | "IPV6")
|
93
125
|
SENSITIVE: []
|
@@ -139,6 +171,9 @@ module Aws::NetworkFirewall
|
|
139
171
|
attr_accessor tags: ::Array[Types::Tag]
|
140
172
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
141
173
|
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
174
|
+
attr_accessor transit_gateway_id: ::String
|
175
|
+
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
176
|
+
attr_accessor availability_zone_change_protection: bool
|
142
177
|
SENSITIVE: []
|
143
178
|
end
|
144
179
|
|
@@ -160,6 +195,7 @@ module Aws::NetworkFirewall
|
|
160
195
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
161
196
|
attr_accessor source_metadata: Types::SourceMetadata
|
162
197
|
attr_accessor analyze_rule_group: bool
|
198
|
+
attr_accessor summary_configuration: Types::SummaryConfiguration
|
163
199
|
SENSITIVE: []
|
164
200
|
end
|
165
201
|
|
@@ -228,6 +264,17 @@ module Aws::NetworkFirewall
|
|
228
264
|
SENSITIVE: []
|
229
265
|
end
|
230
266
|
|
267
|
+
class DeleteNetworkFirewallTransitGatewayAttachmentRequest
|
268
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class DeleteNetworkFirewallTransitGatewayAttachmentResponse
|
273
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
274
|
+
attr_accessor transit_gateway_attachment_status: ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
231
278
|
class DeleteResourcePolicyRequest
|
232
279
|
attr_accessor resource_arn: ::String
|
233
280
|
SENSITIVE: []
|
@@ -281,6 +328,7 @@ module Aws::NetworkFirewall
|
|
281
328
|
attr_accessor description: ::String
|
282
329
|
attr_accessor status: ("PROVISIONING" | "DELETING" | "READY")
|
283
330
|
attr_accessor supported_availability_zones: ::Hash[::String, Types::AvailabilityZoneMetadata]
|
331
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
284
332
|
SENSITIVE: []
|
285
333
|
end
|
286
334
|
|
@@ -389,6 +437,20 @@ module Aws::NetworkFirewall
|
|
389
437
|
SENSITIVE: []
|
390
438
|
end
|
391
439
|
|
440
|
+
class DescribeRuleGroupSummaryRequest
|
441
|
+
attr_accessor rule_group_name: ::String
|
442
|
+
attr_accessor rule_group_arn: ::String
|
443
|
+
attr_accessor type: ("STATELESS" | "STATEFUL")
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class DescribeRuleGroupSummaryResponse
|
448
|
+
attr_accessor rule_group_name: ::String
|
449
|
+
attr_accessor description: ::String
|
450
|
+
attr_accessor summary: Types::Summary
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
|
392
454
|
class DescribeTLSInspectionConfigurationRequest
|
393
455
|
attr_accessor tls_inspection_configuration_arn: ::String
|
394
456
|
attr_accessor tls_inspection_configuration_name: ::String
|
@@ -418,6 +480,22 @@ module Aws::NetworkFirewall
|
|
418
480
|
SENSITIVE: []
|
419
481
|
end
|
420
482
|
|
483
|
+
class DisassociateAvailabilityZonesRequest
|
484
|
+
attr_accessor update_token: ::String
|
485
|
+
attr_accessor firewall_arn: ::String
|
486
|
+
attr_accessor firewall_name: ::String
|
487
|
+
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class DisassociateAvailabilityZonesResponse
|
492
|
+
attr_accessor firewall_arn: ::String
|
493
|
+
attr_accessor firewall_name: ::String
|
494
|
+
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
495
|
+
attr_accessor update_token: ::String
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
421
499
|
class DisassociateSubnetsRequest
|
422
500
|
attr_accessor update_token: ::String
|
423
501
|
attr_accessor firewall_arn: ::String
|
@@ -455,12 +533,17 @@ module Aws::NetworkFirewall
|
|
455
533
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
456
534
|
attr_accessor number_of_associations: ::Integer
|
457
535
|
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
536
|
+
attr_accessor transit_gateway_id: ::String
|
537
|
+
attr_accessor transit_gateway_owner_account_id: ::String
|
538
|
+
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
539
|
+
attr_accessor availability_zone_change_protection: bool
|
458
540
|
SENSITIVE: []
|
459
541
|
end
|
460
542
|
|
461
543
|
class FirewallMetadata
|
462
544
|
attr_accessor firewall_name: ::String
|
463
545
|
attr_accessor firewall_arn: ::String
|
546
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
464
547
|
SENSITIVE: []
|
465
548
|
end
|
466
549
|
|
@@ -503,6 +586,7 @@ module Aws::NetworkFirewall
|
|
503
586
|
attr_accessor configuration_sync_state_summary: ("PENDING" | "IN_SYNC" | "CAPACITY_CONSTRAINED")
|
504
587
|
attr_accessor sync_states: ::Hash[::String, Types::SyncState]
|
505
588
|
attr_accessor capacity_usage_summary: Types::CapacityUsageSummary
|
589
|
+
attr_accessor transit_gateway_attachment_sync_state: Types::TransitGatewayAttachmentSyncState
|
506
590
|
SENSITIVE: []
|
507
591
|
end
|
508
592
|
|
@@ -567,7 +651,7 @@ module Aws::NetworkFirewall
|
|
567
651
|
end
|
568
652
|
|
569
653
|
class Header
|
570
|
-
attr_accessor protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP")
|
654
|
+
attr_accessor protocol: ("IP" | "TCP" | "UDP" | "ICMP" | "HTTP" | "FTP" | "TLS" | "SMB" | "DNS" | "DCERPC" | "SSH" | "SMTP" | "IMAP" | "MSN" | "KRB5" | "IKEV2" | "TFTP" | "NTP" | "DHCP" | "HTTP2" | "QUIC")
|
571
655
|
attr_accessor source: ::String
|
572
656
|
attr_accessor source_port: ::String
|
573
657
|
attr_accessor direction: ("FORWARD" | "ANY")
|
@@ -716,7 +800,7 @@ module Aws::NetworkFirewall
|
|
716
800
|
attr_accessor next_token: ::String
|
717
801
|
attr_accessor max_results: ::Integer
|
718
802
|
attr_accessor scope: ("MANAGED" | "ACCOUNT")
|
719
|
-
attr_accessor managed_type: ("AWS_MANAGED_THREAT_SIGNATURES" | "AWS_MANAGED_DOMAIN_LISTS")
|
803
|
+
attr_accessor managed_type: ("AWS_MANAGED_THREAT_SIGNATURES" | "AWS_MANAGED_DOMAIN_LISTS" | "ACTIVE_THREAT_DEFENSE")
|
720
804
|
attr_accessor type: ("STATELESS" | "STATEFUL")
|
721
805
|
SENSITIVE: []
|
722
806
|
end
|
@@ -833,6 +917,17 @@ module Aws::NetworkFirewall
|
|
833
917
|
SENSITIVE: []
|
834
918
|
end
|
835
919
|
|
920
|
+
class RejectNetworkFirewallTransitGatewayAttachmentRequest
|
921
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class RejectNetworkFirewallTransitGatewayAttachmentResponse
|
926
|
+
attr_accessor transit_gateway_attachment_id: ::String
|
927
|
+
attr_accessor transit_gateway_attachment_status: ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
836
931
|
class ResourceNotFoundException
|
837
932
|
attr_accessor message: ::String
|
838
933
|
SENSITIVE: []
|
@@ -879,6 +974,7 @@ module Aws::NetworkFirewall
|
|
879
974
|
attr_accessor sns_topic: ::String
|
880
975
|
attr_accessor last_modified_time: ::Time
|
881
976
|
attr_accessor analysis_results: ::Array[Types::AnalysisResult]
|
977
|
+
attr_accessor summary_configuration: Types::SummaryConfiguration
|
882
978
|
SENSITIVE: []
|
883
979
|
end
|
884
980
|
|
@@ -888,6 +984,13 @@ module Aws::NetworkFirewall
|
|
888
984
|
SENSITIVE: []
|
889
985
|
end
|
890
986
|
|
987
|
+
class RuleSummary
|
988
|
+
attr_accessor sid: ::String
|
989
|
+
attr_accessor msg: ::String
|
990
|
+
attr_accessor metadata: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
891
994
|
class RuleVariables
|
892
995
|
attr_accessor ip_sets: ::Hash[::String, Types::IPSet]
|
893
996
|
attr_accessor port_sets: ::Hash[::String, Types::PortSet]
|
@@ -1006,6 +1109,7 @@ module Aws::NetworkFirewall
|
|
1006
1109
|
attr_accessor resource_arn: ::String
|
1007
1110
|
attr_accessor priority: ::Integer
|
1008
1111
|
attr_accessor override: Types::StatefulRuleGroupOverride
|
1112
|
+
attr_accessor deep_threat_inspection: bool
|
1009
1113
|
SENSITIVE: []
|
1010
1114
|
end
|
1011
1115
|
|
@@ -1038,6 +1142,16 @@ module Aws::NetworkFirewall
|
|
1038
1142
|
SENSITIVE: []
|
1039
1143
|
end
|
1040
1144
|
|
1145
|
+
class Summary
|
1146
|
+
attr_accessor rule_summaries: ::Array[Types::RuleSummary]
|
1147
|
+
SENSITIVE: []
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class SummaryConfiguration
|
1151
|
+
attr_accessor rule_options: ::Array[("SID" | "MSG" | "METADATA")]
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1041
1155
|
class SyncState
|
1042
1156
|
attr_accessor attachment: Types::Attachment
|
1043
1157
|
attr_accessor config: ::Hash[::String, Types::PerObjectStatus]
|
@@ -1104,6 +1218,13 @@ module Aws::NetworkFirewall
|
|
1104
1218
|
SENSITIVE: []
|
1105
1219
|
end
|
1106
1220
|
|
1221
|
+
class TransitGatewayAttachmentSyncState
|
1222
|
+
attr_accessor attachment_id: ::String
|
1223
|
+
attr_accessor transit_gateway_attachment_status: ("CREATING" | "DELETING" | "DELETED" | "FAILED" | "ERROR" | "READY" | "PENDING_ACCEPTANCE" | "REJECTING" | "REJECTED")
|
1224
|
+
attr_accessor status_message: ::String
|
1225
|
+
SENSITIVE: []
|
1226
|
+
end
|
1227
|
+
|
1107
1228
|
class UniqueSources
|
1108
1229
|
attr_accessor count: ::Integer
|
1109
1230
|
SENSITIVE: []
|
@@ -1123,6 +1244,22 @@ module Aws::NetworkFirewall
|
|
1123
1244
|
class UntagResourceResponse < Aws::EmptyStructure
|
1124
1245
|
end
|
1125
1246
|
|
1247
|
+
class UpdateAvailabilityZoneChangeProtectionRequest
|
1248
|
+
attr_accessor update_token: ::String
|
1249
|
+
attr_accessor firewall_arn: ::String
|
1250
|
+
attr_accessor firewall_name: ::String
|
1251
|
+
attr_accessor availability_zone_change_protection: bool
|
1252
|
+
SENSITIVE: []
|
1253
|
+
end
|
1254
|
+
|
1255
|
+
class UpdateAvailabilityZoneChangeProtectionResponse
|
1256
|
+
attr_accessor update_token: ::String
|
1257
|
+
attr_accessor firewall_arn: ::String
|
1258
|
+
attr_accessor firewall_name: ::String
|
1259
|
+
attr_accessor availability_zone_change_protection: bool
|
1260
|
+
SENSITIVE: []
|
1261
|
+
end
|
1262
|
+
|
1126
1263
|
class UpdateFirewallAnalysisSettingsRequest
|
1127
1264
|
attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
|
1128
1265
|
attr_accessor firewall_arn: ::String
|
@@ -1248,6 +1385,7 @@ module Aws::NetworkFirewall
|
|
1248
1385
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
1249
1386
|
attr_accessor source_metadata: Types::SourceMetadata
|
1250
1387
|
attr_accessor analyze_rule_group: bool
|
1388
|
+
attr_accessor summary_configuration: Types::SummaryConfiguration
|
1251
1389
|
SENSITIVE: []
|
1252
1390
|
end
|
1253
1391
|
|