aws-sdk-networkfirewall 1.94.0 → 1.96.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 +254 -52
- data/lib/aws-sdk-networkfirewall/client_api.rb +67 -0
- data/lib/aws-sdk-networkfirewall/types.rb +414 -75
- data/lib/aws-sdk-networkfirewall.rb +1 -1
- data/sig/client.rbs +47 -1
- data/sig/types.rbs +50 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -239,7 +239,30 @@ module Aws
|
|
|
239
239
|
availability_zone: ::String
|
|
240
240
|
}
|
|
241
241
|
],
|
|
242
|
-
?availability_zone_change_protection: bool
|
|
242
|
+
?availability_zone_change_protection: bool,
|
|
243
|
+
?nat_gateway_mappings: Array[
|
|
244
|
+
{
|
|
245
|
+
nat_gateway_id: ::String
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
?proxy_settings: {
|
|
249
|
+
listener_properties: Array[
|
|
250
|
+
{
|
|
251
|
+
port: ::Integer?,
|
|
252
|
+
type: ("HTTP" | "HTTPS")?
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
},
|
|
256
|
+
?no_source_preservation: bool,
|
|
257
|
+
?vpc_endpoint: {
|
|
258
|
+
vpc_id: ::String,
|
|
259
|
+
subnet_mappings: Array[
|
|
260
|
+
{
|
|
261
|
+
subnet_id: ::String,
|
|
262
|
+
ip_address_type: ("DUALSTACK" | "IPV4" | "IPV6")?
|
|
263
|
+
}
|
|
264
|
+
]
|
|
265
|
+
}
|
|
243
266
|
) -> _CreateFirewallResponseSuccess
|
|
244
267
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFirewallResponseSuccess
|
|
245
268
|
|
|
@@ -1477,6 +1500,29 @@ module Aws
|
|
|
1477
1500
|
) -> _UpdateProxyRulePrioritiesResponseSuccess
|
|
1478
1501
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProxyRulePrioritiesResponseSuccess
|
|
1479
1502
|
|
|
1503
|
+
interface _UpdateProxySettingsResponseSuccess
|
|
1504
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProxySettingsResponse]
|
|
1505
|
+
def firewall_arn: () -> ::String
|
|
1506
|
+
def firewall_name: () -> ::String
|
|
1507
|
+
def update_token: () -> ::String
|
|
1508
|
+
def proxy_settings: () -> Types::ProxySettings
|
|
1509
|
+
end
|
|
1510
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#update_proxy_settings-instance_method
|
|
1511
|
+
def update_proxy_settings: (
|
|
1512
|
+
?firewall_arn: ::String,
|
|
1513
|
+
?firewall_name: ::String,
|
|
1514
|
+
?update_token: ::String,
|
|
1515
|
+
?proxy_settings: {
|
|
1516
|
+
listener_properties: Array[
|
|
1517
|
+
{
|
|
1518
|
+
port: ::Integer?,
|
|
1519
|
+
type: ("HTTP" | "HTTPS")?
|
|
1520
|
+
}
|
|
1521
|
+
]
|
|
1522
|
+
}
|
|
1523
|
+
) -> _UpdateProxySettingsResponseSuccess
|
|
1524
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProxySettingsResponseSuccess
|
|
1525
|
+
|
|
1480
1526
|
interface _UpdateRuleGroupResponseSuccess
|
|
1481
1527
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleGroupResponse]
|
|
1482
1528
|
def update_token: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -126,6 +126,7 @@ module Aws::NetworkFirewall
|
|
|
126
126
|
attr_accessor endpoint_id: ::String
|
|
127
127
|
attr_accessor status: ("CREATING" | "DELETING" | "FAILED" | "ERROR" | "SCALING" | "READY")
|
|
128
128
|
attr_accessor status_message: ::String
|
|
129
|
+
attr_accessor dns_name: ::String
|
|
129
130
|
SENSITIVE: []
|
|
130
131
|
end
|
|
131
132
|
|
|
@@ -227,6 +228,10 @@ module Aws::NetworkFirewall
|
|
|
227
228
|
attr_accessor transit_gateway_id: ::String
|
|
228
229
|
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
|
229
230
|
attr_accessor availability_zone_change_protection: bool
|
|
231
|
+
attr_accessor nat_gateway_mappings: ::Array[Types::NatGatewayMapping]
|
|
232
|
+
attr_accessor proxy_settings: Types::ProxySettings
|
|
233
|
+
attr_accessor no_source_preservation: bool
|
|
234
|
+
attr_accessor vpc_endpoint: Types::VpcEndpoint
|
|
230
235
|
SENSITIVE: []
|
|
231
236
|
end
|
|
232
237
|
|
|
@@ -837,6 +842,10 @@ module Aws::NetworkFirewall
|
|
|
837
842
|
attr_accessor transit_gateway_owner_account_id: ::String
|
|
838
843
|
attr_accessor availability_zone_mappings: ::Array[Types::AvailabilityZoneMapping]
|
|
839
844
|
attr_accessor availability_zone_change_protection: bool
|
|
845
|
+
attr_accessor nat_gateway_mappings: ::Array[Types::NatGatewayMapping]
|
|
846
|
+
attr_accessor proxy_settings: Types::ProxySettings
|
|
847
|
+
attr_accessor no_source_preservation: bool
|
|
848
|
+
attr_accessor vpc_endpoint: Types::VpcEndpoint
|
|
840
849
|
SENSITIVE: []
|
|
841
850
|
end
|
|
842
851
|
|
|
@@ -1239,6 +1248,19 @@ module Aws::NetworkFirewall
|
|
|
1239
1248
|
SENSITIVE: []
|
|
1240
1249
|
end
|
|
1241
1250
|
|
|
1251
|
+
class NatGatewayAttachment
|
|
1252
|
+
attr_accessor nat_gateway_id: ::String
|
|
1253
|
+
attr_accessor status: ("CREATING" | "READY" | "UPDATING" | "FAILED" | "DELETING")
|
|
1254
|
+
attr_accessor status_message: ::String
|
|
1255
|
+
attr_accessor dns_name: ::String
|
|
1256
|
+
SENSITIVE: []
|
|
1257
|
+
end
|
|
1258
|
+
|
|
1259
|
+
class NatGatewayMapping
|
|
1260
|
+
attr_accessor nat_gateway_id: ::String
|
|
1261
|
+
SENSITIVE: []
|
|
1262
|
+
end
|
|
1263
|
+
|
|
1242
1264
|
class PerObjectStatus
|
|
1243
1265
|
attr_accessor sync_status: ("PENDING" | "IN_SYNC" | "CAPACITY_CONSTRAINED" | "NOT_SUBSCRIBED" | "DEPRECATED")
|
|
1244
1266
|
attr_accessor update_token: ::String
|
|
@@ -1382,6 +1404,11 @@ module Aws::NetworkFirewall
|
|
|
1382
1404
|
SENSITIVE: []
|
|
1383
1405
|
end
|
|
1384
1406
|
|
|
1407
|
+
class ProxySettings
|
|
1408
|
+
attr_accessor listener_properties: ::Array[Types::ListenerProperty]
|
|
1409
|
+
SENSITIVE: []
|
|
1410
|
+
end
|
|
1411
|
+
|
|
1385
1412
|
class PublishMetricAction
|
|
1386
1413
|
attr_accessor dimensions: ::Array[Types::Dimension]
|
|
1387
1414
|
SENSITIVE: []
|
|
@@ -1640,6 +1667,7 @@ module Aws::NetworkFirewall
|
|
|
1640
1667
|
class SyncState
|
|
1641
1668
|
attr_accessor attachment: Types::Attachment
|
|
1642
1669
|
attr_accessor config: ::Hash[::String, Types::PerObjectStatus]
|
|
1670
|
+
attr_accessor nat_gateway_attachments: ::Array[Types::NatGatewayAttachment]
|
|
1643
1671
|
SENSITIVE: []
|
|
1644
1672
|
end
|
|
1645
1673
|
|
|
@@ -1975,6 +2003,22 @@ module Aws::NetworkFirewall
|
|
|
1975
2003
|
SENSITIVE: []
|
|
1976
2004
|
end
|
|
1977
2005
|
|
|
2006
|
+
class UpdateProxySettingsRequest
|
|
2007
|
+
attr_accessor firewall_arn: ::String
|
|
2008
|
+
attr_accessor firewall_name: ::String
|
|
2009
|
+
attr_accessor update_token: ::String
|
|
2010
|
+
attr_accessor proxy_settings: Types::ProxySettings
|
|
2011
|
+
SENSITIVE: []
|
|
2012
|
+
end
|
|
2013
|
+
|
|
2014
|
+
class UpdateProxySettingsResponse
|
|
2015
|
+
attr_accessor firewall_arn: ::String
|
|
2016
|
+
attr_accessor firewall_name: ::String
|
|
2017
|
+
attr_accessor update_token: ::String
|
|
2018
|
+
attr_accessor proxy_settings: Types::ProxySettings
|
|
2019
|
+
SENSITIVE: []
|
|
2020
|
+
end
|
|
2021
|
+
|
|
1978
2022
|
class UpdateRuleGroupRequest
|
|
1979
2023
|
attr_accessor update_token: ::String
|
|
1980
2024
|
attr_accessor rule_group_arn: ::String
|
|
@@ -2029,6 +2073,12 @@ module Aws::NetworkFirewall
|
|
|
2029
2073
|
SENSITIVE: []
|
|
2030
2074
|
end
|
|
2031
2075
|
|
|
2076
|
+
class VpcEndpoint
|
|
2077
|
+
attr_accessor vpc_id: ::String
|
|
2078
|
+
attr_accessor subnet_mappings: ::Array[Types::SubnetMapping]
|
|
2079
|
+
SENSITIVE: []
|
|
2080
|
+
end
|
|
2081
|
+
|
|
2032
2082
|
class VpcEndpointAssociation
|
|
2033
2083
|
attr_accessor vpc_endpoint_association_id: ::String
|
|
2034
2084
|
attr_accessor vpc_endpoint_association_arn: ::String
|