aws-sdk-networkfirewall 1.67.0 → 1.68.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkfirewall/client.rb +19 -1
- data/lib/aws-sdk-networkfirewall/client_api.rb +4 -0
- data/lib/aws-sdk-networkfirewall/types.rb +38 -3
- data/lib/aws-sdk-networkfirewall.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3eee9d2a57dd5d6a8a284d34c076da48a7383b475ac45ddeaf7e6135a891570
|
4
|
+
data.tar.gz: e31508218853da16869f7e09d999dc473d69660b2b049b2381dd3d58c700d5ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e31b196d4f37c74ee591bb1cd61743f8afbba3377c84ba7ae6bb02d1f5cf33c9fa13bba434c7145f7902faccaf2d142513356d022afda58baeedd19c70c0603
|
7
|
+
data.tar.gz: 4377e6ceff9970632bdd6734c25dd2d361bc69eb7776282073ceded64d95711a646c4a50de0bf7a52ae1b5fd852fb34919773d49cee2f23d5b312d594a05b02d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
@@ -2103,6 +2103,7 @@ module Aws::NetworkFirewall
|
|
2103
2103
|
#
|
2104
2104
|
# * {Types::DescribeLoggingConfigurationResponse#firewall_arn #firewall_arn} => String
|
2105
2105
|
# * {Types::DescribeLoggingConfigurationResponse#logging_configuration #logging_configuration} => Types::LoggingConfiguration
|
2106
|
+
# * {Types::DescribeLoggingConfigurationResponse#enable_monitoring_dashboard #enable_monitoring_dashboard} => Boolean
|
2106
2107
|
#
|
2107
2108
|
# @example Request syntax with placeholder values
|
2108
2109
|
#
|
@@ -2119,6 +2120,7 @@ module Aws::NetworkFirewall
|
|
2119
2120
|
# resp.logging_configuration.log_destination_configs[0].log_destination_type #=> String, one of "S3", "CloudWatchLogs", "KinesisDataFirehose"
|
2120
2121
|
# resp.logging_configuration.log_destination_configs[0].log_destination #=> Hash
|
2121
2122
|
# resp.logging_configuration.log_destination_configs[0].log_destination["HashMapKey"] #=> String
|
2123
|
+
# resp.enable_monitoring_dashboard #=> Boolean
|
2122
2124
|
#
|
2123
2125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeLoggingConfiguration AWS API Documentation
|
2124
2126
|
#
|
@@ -4143,11 +4145,25 @@ module Aws::NetworkFirewall
|
|
4143
4145
|
# Defines how Network Firewall performs logging for a firewall. If you
|
4144
4146
|
# omit this setting, Network Firewall disables logging for the firewall.
|
4145
4147
|
#
|
4148
|
+
# @option params [Boolean] :enable_monitoring_dashboard
|
4149
|
+
# A boolean that lets you enable or disable the detailed firewall
|
4150
|
+
# monitoring dashboard on the firewall.
|
4151
|
+
#
|
4152
|
+
# The monitoring dashboard provides comprehensive visibility into your
|
4153
|
+
# firewall's flow logs and alert logs. After you enable detailed
|
4154
|
+
# monitoring, you can access these dashboards directly from the
|
4155
|
+
# **Monitoring** page of the Network Firewall console.
|
4156
|
+
#
|
4157
|
+
# Specify `TRUE` to enable the the detailed monitoring dashboard on the
|
4158
|
+
# firewall. Specify `FALSE` to disable the the detailed monitoring
|
4159
|
+
# dashboard on the firewall.
|
4160
|
+
#
|
4146
4161
|
# @return [Types::UpdateLoggingConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4147
4162
|
#
|
4148
4163
|
# * {Types::UpdateLoggingConfigurationResponse#firewall_arn #firewall_arn} => String
|
4149
4164
|
# * {Types::UpdateLoggingConfigurationResponse#firewall_name #firewall_name} => String
|
4150
4165
|
# * {Types::UpdateLoggingConfigurationResponse#logging_configuration #logging_configuration} => Types::LoggingConfiguration
|
4166
|
+
# * {Types::UpdateLoggingConfigurationResponse#enable_monitoring_dashboard #enable_monitoring_dashboard} => Boolean
|
4151
4167
|
#
|
4152
4168
|
# @example Request syntax with placeholder values
|
4153
4169
|
#
|
@@ -4165,6 +4181,7 @@ module Aws::NetworkFirewall
|
|
4165
4181
|
# },
|
4166
4182
|
# ],
|
4167
4183
|
# },
|
4184
|
+
# enable_monitoring_dashboard: false,
|
4168
4185
|
# })
|
4169
4186
|
#
|
4170
4187
|
# @example Response structure
|
@@ -4176,6 +4193,7 @@ module Aws::NetworkFirewall
|
|
4176
4193
|
# resp.logging_configuration.log_destination_configs[0].log_destination_type #=> String, one of "S3", "CloudWatchLogs", "KinesisDataFirehose"
|
4177
4194
|
# resp.logging_configuration.log_destination_configs[0].log_destination #=> Hash
|
4178
4195
|
# resp.logging_configuration.log_destination_configs[0].log_destination["HashMapKey"] #=> String
|
4196
|
+
# resp.enable_monitoring_dashboard #=> Boolean
|
4179
4197
|
#
|
4180
4198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateLoggingConfiguration AWS API Documentation
|
4181
4199
|
#
|
@@ -4699,7 +4717,7 @@ module Aws::NetworkFirewall
|
|
4699
4717
|
tracer: tracer
|
4700
4718
|
)
|
4701
4719
|
context[:gem_name] = 'aws-sdk-networkfirewall'
|
4702
|
-
context[:gem_version] = '1.
|
4720
|
+
context[:gem_version] = '1.68.0'
|
4703
4721
|
Seahorse::Client::Request.new(handlers, context)
|
4704
4722
|
end
|
4705
4723
|
|
@@ -102,6 +102,7 @@ module Aws::NetworkFirewall
|
|
102
102
|
DisassociateSubnetsRequest = Shapes::StructureShape.new(name: 'DisassociateSubnetsRequest')
|
103
103
|
DisassociateSubnetsResponse = Shapes::StructureShape.new(name: 'DisassociateSubnetsResponse')
|
104
104
|
Domain = Shapes::StringShape.new(name: 'Domain')
|
105
|
+
EnableMonitoringDashboard = Shapes::BooleanShape.new(name: 'EnableMonitoringDashboard')
|
105
106
|
EnabledAnalysisType = Shapes::StringShape.new(name: 'EnabledAnalysisType')
|
106
107
|
EnabledAnalysisTypes = Shapes::ListShape.new(name: 'EnabledAnalysisTypes')
|
107
108
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
@@ -593,6 +594,7 @@ module Aws::NetworkFirewall
|
|
593
594
|
|
594
595
|
DescribeLoggingConfigurationResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
595
596
|
DescribeLoggingConfigurationResponse.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "LoggingConfiguration"))
|
597
|
+
DescribeLoggingConfigurationResponse.add_member(:enable_monitoring_dashboard, Shapes::ShapeRef.new(shape: EnableMonitoringDashboard, location_name: "EnableMonitoringDashboard"))
|
596
598
|
DescribeLoggingConfigurationResponse.struct_class = Types::DescribeLoggingConfigurationResponse
|
597
599
|
|
598
600
|
DescribeResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
@@ -1315,11 +1317,13 @@ module Aws::NetworkFirewall
|
|
1315
1317
|
UpdateLoggingConfigurationRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1316
1318
|
UpdateLoggingConfigurationRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
1317
1319
|
UpdateLoggingConfigurationRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "LoggingConfiguration"))
|
1320
|
+
UpdateLoggingConfigurationRequest.add_member(:enable_monitoring_dashboard, Shapes::ShapeRef.new(shape: EnableMonitoringDashboard, location_name: "EnableMonitoringDashboard"))
|
1318
1321
|
UpdateLoggingConfigurationRequest.struct_class = Types::UpdateLoggingConfigurationRequest
|
1319
1322
|
|
1320
1323
|
UpdateLoggingConfigurationResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1321
1324
|
UpdateLoggingConfigurationResponse.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
1322
1325
|
UpdateLoggingConfigurationResponse.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "LoggingConfiguration"))
|
1326
|
+
UpdateLoggingConfigurationResponse.add_member(:enable_monitoring_dashboard, Shapes::ShapeRef.new(shape: EnableMonitoringDashboard, location_name: "EnableMonitoringDashboard"))
|
1323
1327
|
UpdateLoggingConfigurationResponse.struct_class = Types::UpdateLoggingConfigurationResponse
|
1324
1328
|
|
1325
1329
|
UpdateRuleGroupRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, required: true, location_name: "UpdateToken"))
|
@@ -1725,11 +1725,21 @@ module Aws::NetworkFirewall
|
|
1725
1725
|
# Defines how Network Firewall performs logging for a Firewall.
|
1726
1726
|
# @return [Types::LoggingConfiguration]
|
1727
1727
|
#
|
1728
|
+
# @!attribute [rw] enable_monitoring_dashboard
|
1729
|
+
# A boolean that reflects whether or not the firewall monitoring
|
1730
|
+
# dashboard is enabled on a firewall.
|
1731
|
+
#
|
1732
|
+
# Returns `TRUE` when the firewall monitoring dashboard is enabled on
|
1733
|
+
# the firewall. Returns `FALSE` when the firewall monitoring dashboard
|
1734
|
+
# is not enabled on the firewall.
|
1735
|
+
# @return [Boolean]
|
1736
|
+
#
|
1728
1737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeLoggingConfigurationResponse AWS API Documentation
|
1729
1738
|
#
|
1730
1739
|
class DescribeLoggingConfigurationResponse < Struct.new(
|
1731
1740
|
:firewall_arn,
|
1732
|
-
:logging_configuration
|
1741
|
+
:logging_configuration,
|
1742
|
+
:enable_monitoring_dashboard)
|
1733
1743
|
SENSITIVE = []
|
1734
1744
|
include Aws::Structure
|
1735
1745
|
end
|
@@ -6273,12 +6283,27 @@ module Aws::NetworkFirewall
|
|
6273
6283
|
# firewall.
|
6274
6284
|
# @return [Types::LoggingConfiguration]
|
6275
6285
|
#
|
6286
|
+
# @!attribute [rw] enable_monitoring_dashboard
|
6287
|
+
# A boolean that lets you enable or disable the detailed firewall
|
6288
|
+
# monitoring dashboard on the firewall.
|
6289
|
+
#
|
6290
|
+
# The monitoring dashboard provides comprehensive visibility into your
|
6291
|
+
# firewall's flow logs and alert logs. After you enable detailed
|
6292
|
+
# monitoring, you can access these dashboards directly from the
|
6293
|
+
# **Monitoring** page of the Network Firewall console.
|
6294
|
+
#
|
6295
|
+
# Specify `TRUE` to enable the the detailed monitoring dashboard on
|
6296
|
+
# the firewall. Specify `FALSE` to disable the the detailed monitoring
|
6297
|
+
# dashboard on the firewall.
|
6298
|
+
# @return [Boolean]
|
6299
|
+
#
|
6276
6300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateLoggingConfigurationRequest AWS API Documentation
|
6277
6301
|
#
|
6278
6302
|
class UpdateLoggingConfigurationRequest < Struct.new(
|
6279
6303
|
:firewall_arn,
|
6280
6304
|
:firewall_name,
|
6281
|
-
:logging_configuration
|
6305
|
+
:logging_configuration,
|
6306
|
+
:enable_monitoring_dashboard)
|
6282
6307
|
SENSITIVE = []
|
6283
6308
|
include Aws::Structure
|
6284
6309
|
end
|
@@ -6296,12 +6321,22 @@ module Aws::NetworkFirewall
|
|
6296
6321
|
# Defines how Network Firewall performs logging for a Firewall.
|
6297
6322
|
# @return [Types::LoggingConfiguration]
|
6298
6323
|
#
|
6324
|
+
# @!attribute [rw] enable_monitoring_dashboard
|
6325
|
+
# A boolean that reflects whether or not the firewall monitoring
|
6326
|
+
# dashboard is enabled on a firewall.
|
6327
|
+
#
|
6328
|
+
# Returns `TRUE` when the firewall monitoring dashboard is enabled on
|
6329
|
+
# the firewall. Returns `FALSE` when the firewall monitoring dashboard
|
6330
|
+
# is not enabled on the firewall.
|
6331
|
+
# @return [Boolean]
|
6332
|
+
#
|
6299
6333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateLoggingConfigurationResponse AWS API Documentation
|
6300
6334
|
#
|
6301
6335
|
class UpdateLoggingConfigurationResponse < Struct.new(
|
6302
6336
|
:firewall_arn,
|
6303
6337
|
:firewall_name,
|
6304
|
-
:logging_configuration
|
6338
|
+
:logging_configuration,
|
6339
|
+
:enable_monitoring_dashboard)
|
6305
6340
|
SENSITIVE = []
|
6306
6341
|
include Aws::Structure
|
6307
6342
|
end
|
data/sig/client.rbs
CHANGED
@@ -571,6 +571,7 @@ module Aws
|
|
571
571
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLoggingConfigurationResponse]
|
572
572
|
def firewall_arn: () -> ::String
|
573
573
|
def logging_configuration: () -> Types::LoggingConfiguration
|
574
|
+
def enable_monitoring_dashboard: () -> bool
|
574
575
|
end
|
575
576
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_logging_configuration-instance_method
|
576
577
|
def describe_logging_configuration: (
|
@@ -1075,6 +1076,7 @@ module Aws
|
|
1075
1076
|
def firewall_arn: () -> ::String
|
1076
1077
|
def firewall_name: () -> ::String
|
1077
1078
|
def logging_configuration: () -> Types::LoggingConfiguration
|
1079
|
+
def enable_monitoring_dashboard: () -> bool
|
1078
1080
|
end
|
1079
1081
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#update_logging_configuration-instance_method
|
1080
1082
|
def update_logging_configuration: (
|
@@ -1088,7 +1090,8 @@ module Aws
|
|
1088
1090
|
log_destination: Hash[::String, ::String]
|
1089
1091
|
},
|
1090
1092
|
]
|
1091
|
-
}
|
1093
|
+
},
|
1094
|
+
?enable_monitoring_dashboard: bool
|
1092
1095
|
) -> _UpdateLoggingConfigurationResponseSuccess
|
1093
1096
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLoggingConfigurationResponseSuccess
|
1094
1097
|
|
data/sig/types.rbs
CHANGED
@@ -342,6 +342,7 @@ module Aws::NetworkFirewall
|
|
342
342
|
class DescribeLoggingConfigurationResponse
|
343
343
|
attr_accessor firewall_arn: ::String
|
344
344
|
attr_accessor logging_configuration: Types::LoggingConfiguration
|
345
|
+
attr_accessor enable_monitoring_dashboard: bool
|
345
346
|
SENSITIVE: []
|
346
347
|
end
|
347
348
|
|
@@ -1223,6 +1224,7 @@ module Aws::NetworkFirewall
|
|
1223
1224
|
attr_accessor firewall_arn: ::String
|
1224
1225
|
attr_accessor firewall_name: ::String
|
1225
1226
|
attr_accessor logging_configuration: Types::LoggingConfiguration
|
1227
|
+
attr_accessor enable_monitoring_dashboard: bool
|
1226
1228
|
SENSITIVE: []
|
1227
1229
|
end
|
1228
1230
|
|
@@ -1230,6 +1232,7 @@ module Aws::NetworkFirewall
|
|
1230
1232
|
attr_accessor firewall_arn: ::String
|
1231
1233
|
attr_accessor firewall_name: ::String
|
1232
1234
|
attr_accessor logging_configuration: Types::LoggingConfiguration
|
1235
|
+
attr_accessor enable_monitoring_dashboard: bool
|
1233
1236
|
SENSITIVE: []
|
1234
1237
|
end
|
1235
1238
|
|