aws-sdk-networkfirewall 1.67.0 → 1.69.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 +476 -4
- data/lib/aws-sdk-networkfirewall/client_api.rb +182 -0
- data/lib/aws-sdk-networkfirewall/types.rb +719 -25
- data/lib/aws-sdk-networkfirewall.rb +2 -2
- data/sig/client.rbs +104 -4
- data/sig/types.rbs +107 -1
- metadata +1 -1
@@ -14,7 +14,10 @@ module Aws::NetworkFirewall
|
|
14
14
|
|
15
15
|
include Seahorse::Model
|
16
16
|
|
17
|
+
AWSAccountId = Shapes::StringShape.new(name: 'AWSAccountId')
|
17
18
|
AZSyncState = Shapes::StructureShape.new(name: 'AZSyncState')
|
19
|
+
AcceptNetworkFirewallTransitGatewayAttachmentRequest = Shapes::StructureShape.new(name: 'AcceptNetworkFirewallTransitGatewayAttachmentRequest')
|
20
|
+
AcceptNetworkFirewallTransitGatewayAttachmentResponse = Shapes::StructureShape.new(name: 'AcceptNetworkFirewallTransitGatewayAttachmentResponse')
|
18
21
|
ActionDefinition = Shapes::StructureShape.new(name: 'ActionDefinition')
|
19
22
|
ActionName = Shapes::StringShape.new(name: 'ActionName')
|
20
23
|
Address = Shapes::StructureShape.new(name: 'Address')
|
@@ -29,14 +32,20 @@ module Aws::NetworkFirewall
|
|
29
32
|
AnalysisResult = Shapes::StructureShape.new(name: 'AnalysisResult')
|
30
33
|
AnalysisResultList = Shapes::ListShape.new(name: 'AnalysisResultList')
|
31
34
|
AnalysisTypeReportResult = Shapes::StructureShape.new(name: 'AnalysisTypeReportResult')
|
35
|
+
AssociateAvailabilityZonesRequest = Shapes::StructureShape.new(name: 'AssociateAvailabilityZonesRequest')
|
36
|
+
AssociateAvailabilityZonesResponse = Shapes::StructureShape.new(name: 'AssociateAvailabilityZonesResponse')
|
32
37
|
AssociateFirewallPolicyRequest = Shapes::StructureShape.new(name: 'AssociateFirewallPolicyRequest')
|
33
38
|
AssociateFirewallPolicyResponse = Shapes::StructureShape.new(name: 'AssociateFirewallPolicyResponse')
|
34
39
|
AssociateSubnetsRequest = Shapes::StructureShape.new(name: 'AssociateSubnetsRequest')
|
35
40
|
AssociateSubnetsResponse = Shapes::StructureShape.new(name: 'AssociateSubnetsResponse')
|
36
41
|
AssociationSyncState = Shapes::MapShape.new(name: 'AssociationSyncState')
|
37
42
|
Attachment = Shapes::StructureShape.new(name: 'Attachment')
|
43
|
+
AttachmentId = Shapes::StringShape.new(name: 'AttachmentId')
|
38
44
|
AttachmentStatus = Shapes::StringShape.new(name: 'AttachmentStatus')
|
39
45
|
AvailabilityZone = Shapes::StringShape.new(name: 'AvailabilityZone')
|
46
|
+
AvailabilityZoneMapping = Shapes::StructureShape.new(name: 'AvailabilityZoneMapping')
|
47
|
+
AvailabilityZoneMappingString = Shapes::StringShape.new(name: 'AvailabilityZoneMappingString')
|
48
|
+
AvailabilityZoneMappings = Shapes::ListShape.new(name: 'AvailabilityZoneMappings')
|
40
49
|
AvailabilityZoneMetadata = Shapes::StructureShape.new(name: 'AvailabilityZoneMetadata')
|
41
50
|
AzSubnet = Shapes::StringShape.new(name: 'AzSubnet')
|
42
51
|
AzSubnets = Shapes::ListShape.new(name: 'AzSubnets')
|
@@ -66,6 +75,8 @@ module Aws::NetworkFirewall
|
|
66
75
|
DeleteFirewallPolicyResponse = Shapes::StructureShape.new(name: 'DeleteFirewallPolicyResponse')
|
67
76
|
DeleteFirewallRequest = Shapes::StructureShape.new(name: 'DeleteFirewallRequest')
|
68
77
|
DeleteFirewallResponse = Shapes::StructureShape.new(name: 'DeleteFirewallResponse')
|
78
|
+
DeleteNetworkFirewallTransitGatewayAttachmentRequest = Shapes::StructureShape.new(name: 'DeleteNetworkFirewallTransitGatewayAttachmentRequest')
|
79
|
+
DeleteNetworkFirewallTransitGatewayAttachmentResponse = Shapes::StructureShape.new(name: 'DeleteNetworkFirewallTransitGatewayAttachmentResponse')
|
69
80
|
DeleteResourcePolicyRequest = Shapes::StructureShape.new(name: 'DeleteResourcePolicyRequest')
|
70
81
|
DeleteResourcePolicyResponse = Shapes::StructureShape.new(name: 'DeleteResourcePolicyResponse')
|
71
82
|
DeleteRuleGroupRequest = Shapes::StructureShape.new(name: 'DeleteRuleGroupRequest')
|
@@ -99,9 +110,12 @@ module Aws::NetworkFirewall
|
|
99
110
|
Dimension = Shapes::StructureShape.new(name: 'Dimension')
|
100
111
|
DimensionValue = Shapes::StringShape.new(name: 'DimensionValue')
|
101
112
|
Dimensions = Shapes::ListShape.new(name: 'Dimensions')
|
113
|
+
DisassociateAvailabilityZonesRequest = Shapes::StructureShape.new(name: 'DisassociateAvailabilityZonesRequest')
|
114
|
+
DisassociateAvailabilityZonesResponse = Shapes::StructureShape.new(name: 'DisassociateAvailabilityZonesResponse')
|
102
115
|
DisassociateSubnetsRequest = Shapes::StructureShape.new(name: 'DisassociateSubnetsRequest')
|
103
116
|
DisassociateSubnetsResponse = Shapes::StructureShape.new(name: 'DisassociateSubnetsResponse')
|
104
117
|
Domain = Shapes::StringShape.new(name: 'Domain')
|
118
|
+
EnableMonitoringDashboard = Shapes::BooleanShape.new(name: 'EnableMonitoringDashboard')
|
105
119
|
EnabledAnalysisType = Shapes::StringShape.new(name: 'EnabledAnalysisType')
|
106
120
|
EnabledAnalysisTypes = Shapes::ListShape.new(name: 'EnabledAnalysisTypes')
|
107
121
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
@@ -210,6 +224,8 @@ module Aws::NetworkFirewall
|
|
210
224
|
PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
|
211
225
|
PutResourcePolicyResponse = Shapes::StructureShape.new(name: 'PutResourcePolicyResponse')
|
212
226
|
ReferenceSets = Shapes::StructureShape.new(name: 'ReferenceSets')
|
227
|
+
RejectNetworkFirewallTransitGatewayAttachmentRequest = Shapes::StructureShape.new(name: 'RejectNetworkFirewallTransitGatewayAttachmentRequest')
|
228
|
+
RejectNetworkFirewallTransitGatewayAttachmentResponse = Shapes::StructureShape.new(name: 'RejectNetworkFirewallTransitGatewayAttachmentResponse')
|
213
229
|
ReportTime = Shapes::TimestampShape.new(name: 'ReportTime')
|
214
230
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
215
231
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
@@ -301,10 +317,17 @@ module Aws::NetworkFirewall
|
|
301
317
|
TcpIdleTimeoutRangeBound = Shapes::IntegerShape.new(name: 'TcpIdleTimeoutRangeBound')
|
302
318
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
303
319
|
TlsCertificateData = Shapes::StructureShape.new(name: 'TlsCertificateData')
|
320
|
+
TransitGatewayAttachmentId = Shapes::StringShape.new(name: 'TransitGatewayAttachmentId')
|
321
|
+
TransitGatewayAttachmentStatus = Shapes::StringShape.new(name: 'TransitGatewayAttachmentStatus')
|
322
|
+
TransitGatewayAttachmentSyncState = Shapes::StructureShape.new(name: 'TransitGatewayAttachmentSyncState')
|
323
|
+
TransitGatewayAttachmentSyncStateMessage = Shapes::StringShape.new(name: 'TransitGatewayAttachmentSyncStateMessage')
|
324
|
+
TransitGatewayId = Shapes::StringShape.new(name: 'TransitGatewayId')
|
304
325
|
UniqueSources = Shapes::StructureShape.new(name: 'UniqueSources')
|
305
326
|
UnsupportedOperationException = Shapes::StructureShape.new(name: 'UnsupportedOperationException')
|
306
327
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
307
328
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
329
|
+
UpdateAvailabilityZoneChangeProtectionRequest = Shapes::StructureShape.new(name: 'UpdateAvailabilityZoneChangeProtectionRequest')
|
330
|
+
UpdateAvailabilityZoneChangeProtectionResponse = Shapes::StructureShape.new(name: 'UpdateAvailabilityZoneChangeProtectionResponse')
|
308
331
|
UpdateFirewallAnalysisSettingsRequest = Shapes::StructureShape.new(name: 'UpdateFirewallAnalysisSettingsRequest')
|
309
332
|
UpdateFirewallAnalysisSettingsResponse = Shapes::StructureShape.new(name: 'UpdateFirewallAnalysisSettingsResponse')
|
310
333
|
UpdateFirewallDeleteProtectionRequest = Shapes::StructureShape.new(name: 'UpdateFirewallDeleteProtectionRequest')
|
@@ -339,6 +362,13 @@ module Aws::NetworkFirewall
|
|
339
362
|
AZSyncState.add_member(:attachment, Shapes::ShapeRef.new(shape: Attachment, location_name: "Attachment"))
|
340
363
|
AZSyncState.struct_class = Types::AZSyncState
|
341
364
|
|
365
|
+
AcceptNetworkFirewallTransitGatewayAttachmentRequest.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
366
|
+
AcceptNetworkFirewallTransitGatewayAttachmentRequest.struct_class = Types::AcceptNetworkFirewallTransitGatewayAttachmentRequest
|
367
|
+
|
368
|
+
AcceptNetworkFirewallTransitGatewayAttachmentResponse.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
369
|
+
AcceptNetworkFirewallTransitGatewayAttachmentResponse.add_member(:transit_gateway_attachment_status, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentStatus, required: true, location_name: "TransitGatewayAttachmentStatus"))
|
370
|
+
AcceptNetworkFirewallTransitGatewayAttachmentResponse.struct_class = Types::AcceptNetworkFirewallTransitGatewayAttachmentResponse
|
371
|
+
|
342
372
|
ActionDefinition.add_member(:publish_metric_action, Shapes::ShapeRef.new(shape: PublishMetricAction, location_name: "PublishMetricAction"))
|
343
373
|
ActionDefinition.struct_class = Types::ActionDefinition
|
344
374
|
|
@@ -372,6 +402,18 @@ module Aws::NetworkFirewall
|
|
372
402
|
AnalysisTypeReportResult.add_member(:unique_sources, Shapes::ShapeRef.new(shape: UniqueSources, location_name: "UniqueSources"))
|
373
403
|
AnalysisTypeReportResult.struct_class = Types::AnalysisTypeReportResult
|
374
404
|
|
405
|
+
AssociateAvailabilityZonesRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
406
|
+
AssociateAvailabilityZonesRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
407
|
+
AssociateAvailabilityZonesRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
408
|
+
AssociateAvailabilityZonesRequest.add_member(:availability_zone_mappings, Shapes::ShapeRef.new(shape: AvailabilityZoneMappings, required: true, location_name: "AvailabilityZoneMappings"))
|
409
|
+
AssociateAvailabilityZonesRequest.struct_class = Types::AssociateAvailabilityZonesRequest
|
410
|
+
|
411
|
+
AssociateAvailabilityZonesResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
412
|
+
AssociateAvailabilityZonesResponse.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
413
|
+
AssociateAvailabilityZonesResponse.add_member(:availability_zone_mappings, Shapes::ShapeRef.new(shape: AvailabilityZoneMappings, location_name: "AvailabilityZoneMappings"))
|
414
|
+
AssociateAvailabilityZonesResponse.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
415
|
+
AssociateAvailabilityZonesResponse.struct_class = Types::AssociateAvailabilityZonesResponse
|
416
|
+
|
375
417
|
AssociateFirewallPolicyRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
376
418
|
AssociateFirewallPolicyRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
377
419
|
AssociateFirewallPolicyRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
@@ -405,6 +447,11 @@ module Aws::NetworkFirewall
|
|
405
447
|
Attachment.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "StatusMessage"))
|
406
448
|
Attachment.struct_class = Types::Attachment
|
407
449
|
|
450
|
+
AvailabilityZoneMapping.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZoneMappingString, required: true, location_name: "AvailabilityZone"))
|
451
|
+
AvailabilityZoneMapping.struct_class = Types::AvailabilityZoneMapping
|
452
|
+
|
453
|
+
AvailabilityZoneMappings.member = Shapes::ShapeRef.new(shape: AvailabilityZoneMapping)
|
454
|
+
|
408
455
|
AvailabilityZoneMetadata.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IPAddressType"))
|
409
456
|
AvailabilityZoneMetadata.struct_class = Types::AvailabilityZoneMetadata
|
410
457
|
|
@@ -447,6 +494,9 @@ module Aws::NetworkFirewall
|
|
447
494
|
CreateFirewallRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
448
495
|
CreateFirewallRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
449
496
|
CreateFirewallRequest.add_member(:enabled_analysis_types, Shapes::ShapeRef.new(shape: EnabledAnalysisTypes, location_name: "EnabledAnalysisTypes"))
|
497
|
+
CreateFirewallRequest.add_member(:transit_gateway_id, Shapes::ShapeRef.new(shape: TransitGatewayId, location_name: "TransitGatewayId"))
|
498
|
+
CreateFirewallRequest.add_member(:availability_zone_mappings, Shapes::ShapeRef.new(shape: AvailabilityZoneMappings, location_name: "AvailabilityZoneMappings"))
|
499
|
+
CreateFirewallRequest.add_member(:availability_zone_change_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "AvailabilityZoneChangeProtection"))
|
450
500
|
CreateFirewallRequest.struct_class = Types::CreateFirewallRequest
|
451
501
|
|
452
502
|
CreateFirewallResponse.add_member(:firewall, Shapes::ShapeRef.new(shape: Firewall, location_name: "Firewall"))
|
@@ -513,6 +563,13 @@ module Aws::NetworkFirewall
|
|
513
563
|
DeleteFirewallResponse.add_member(:firewall_status, Shapes::ShapeRef.new(shape: FirewallStatus, location_name: "FirewallStatus"))
|
514
564
|
DeleteFirewallResponse.struct_class = Types::DeleteFirewallResponse
|
515
565
|
|
566
|
+
DeleteNetworkFirewallTransitGatewayAttachmentRequest.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
567
|
+
DeleteNetworkFirewallTransitGatewayAttachmentRequest.struct_class = Types::DeleteNetworkFirewallTransitGatewayAttachmentRequest
|
568
|
+
|
569
|
+
DeleteNetworkFirewallTransitGatewayAttachmentResponse.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
570
|
+
DeleteNetworkFirewallTransitGatewayAttachmentResponse.add_member(:transit_gateway_attachment_status, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentStatus, required: true, location_name: "TransitGatewayAttachmentStatus"))
|
571
|
+
DeleteNetworkFirewallTransitGatewayAttachmentResponse.struct_class = Types::DeleteNetworkFirewallTransitGatewayAttachmentResponse
|
572
|
+
|
516
573
|
DeleteResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
517
574
|
DeleteResourcePolicyRequest.struct_class = Types::DeleteResourcePolicyRequest
|
518
575
|
|
@@ -548,6 +605,7 @@ module Aws::NetworkFirewall
|
|
548
605
|
DescribeFirewallMetadataResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
549
606
|
DescribeFirewallMetadataResponse.add_member(:status, Shapes::ShapeRef.new(shape: FirewallStatusValue, location_name: "Status"))
|
550
607
|
DescribeFirewallMetadataResponse.add_member(:supported_availability_zones, Shapes::ShapeRef.new(shape: SupportedAvailabilityZones, location_name: "SupportedAvailabilityZones"))
|
608
|
+
DescribeFirewallMetadataResponse.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, location_name: "TransitGatewayAttachmentId"))
|
551
609
|
DescribeFirewallMetadataResponse.struct_class = Types::DescribeFirewallMetadataResponse
|
552
610
|
|
553
611
|
DescribeFirewallPolicyRequest.add_member(:firewall_policy_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallPolicyName"))
|
@@ -593,6 +651,7 @@ module Aws::NetworkFirewall
|
|
593
651
|
|
594
652
|
DescribeLoggingConfigurationResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
595
653
|
DescribeLoggingConfigurationResponse.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "LoggingConfiguration"))
|
654
|
+
DescribeLoggingConfigurationResponse.add_member(:enable_monitoring_dashboard, Shapes::ShapeRef.new(shape: EnableMonitoringDashboard, location_name: "EnableMonitoringDashboard"))
|
596
655
|
DescribeLoggingConfigurationResponse.struct_class = Types::DescribeLoggingConfigurationResponse
|
597
656
|
|
598
657
|
DescribeResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
@@ -647,6 +706,18 @@ module Aws::NetworkFirewall
|
|
647
706
|
|
648
707
|
Dimensions.member = Shapes::ShapeRef.new(shape: Dimension)
|
649
708
|
|
709
|
+
DisassociateAvailabilityZonesRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
710
|
+
DisassociateAvailabilityZonesRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
711
|
+
DisassociateAvailabilityZonesRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
712
|
+
DisassociateAvailabilityZonesRequest.add_member(:availability_zone_mappings, Shapes::ShapeRef.new(shape: AvailabilityZoneMappings, required: true, location_name: "AvailabilityZoneMappings"))
|
713
|
+
DisassociateAvailabilityZonesRequest.struct_class = Types::DisassociateAvailabilityZonesRequest
|
714
|
+
|
715
|
+
DisassociateAvailabilityZonesResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
716
|
+
DisassociateAvailabilityZonesResponse.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
717
|
+
DisassociateAvailabilityZonesResponse.add_member(:availability_zone_mappings, Shapes::ShapeRef.new(shape: AvailabilityZoneMappings, location_name: "AvailabilityZoneMappings"))
|
718
|
+
DisassociateAvailabilityZonesResponse.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
719
|
+
DisassociateAvailabilityZonesResponse.struct_class = Types::DisassociateAvailabilityZonesResponse
|
720
|
+
|
650
721
|
DisassociateSubnetsRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
651
722
|
DisassociateSubnetsRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
652
723
|
DisassociateSubnetsRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
@@ -679,10 +750,15 @@ module Aws::NetworkFirewall
|
|
679
750
|
Firewall.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
680
751
|
Firewall.add_member(:number_of_associations, Shapes::ShapeRef.new(shape: NumberOfAssociations, location_name: "NumberOfAssociations"))
|
681
752
|
Firewall.add_member(:enabled_analysis_types, Shapes::ShapeRef.new(shape: EnabledAnalysisTypes, location_name: "EnabledAnalysisTypes"))
|
753
|
+
Firewall.add_member(:transit_gateway_id, Shapes::ShapeRef.new(shape: TransitGatewayId, location_name: "TransitGatewayId"))
|
754
|
+
Firewall.add_member(:transit_gateway_owner_account_id, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "TransitGatewayOwnerAccountId"))
|
755
|
+
Firewall.add_member(:availability_zone_mappings, Shapes::ShapeRef.new(shape: AvailabilityZoneMappings, location_name: "AvailabilityZoneMappings"))
|
756
|
+
Firewall.add_member(:availability_zone_change_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "AvailabilityZoneChangeProtection"))
|
682
757
|
Firewall.struct_class = Types::Firewall
|
683
758
|
|
684
759
|
FirewallMetadata.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
685
760
|
FirewallMetadata.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
761
|
+
FirewallMetadata.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, location_name: "TransitGatewayAttachmentId"))
|
686
762
|
FirewallMetadata.struct_class = Types::FirewallMetadata
|
687
763
|
|
688
764
|
FirewallPolicies.member = Shapes::ShapeRef.new(shape: FirewallPolicyMetadata)
|
@@ -719,6 +795,7 @@ module Aws::NetworkFirewall
|
|
719
795
|
FirewallStatus.add_member(:configuration_sync_state_summary, Shapes::ShapeRef.new(shape: ConfigurationSyncState, required: true, location_name: "ConfigurationSyncStateSummary"))
|
720
796
|
FirewallStatus.add_member(:sync_states, Shapes::ShapeRef.new(shape: SyncStates, location_name: "SyncStates"))
|
721
797
|
FirewallStatus.add_member(:capacity_usage_summary, Shapes::ShapeRef.new(shape: CapacityUsageSummary, location_name: "CapacityUsageSummary"))
|
798
|
+
FirewallStatus.add_member(:transit_gateway_attachment_sync_state, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentSyncState, location_name: "TransitGatewayAttachmentSyncState"))
|
722
799
|
FirewallStatus.struct_class = Types::FirewallStatus
|
723
800
|
|
724
801
|
Firewalls.member = Shapes::ShapeRef.new(shape: FirewallMetadata)
|
@@ -984,6 +1061,13 @@ module Aws::NetworkFirewall
|
|
984
1061
|
ReferenceSets.add_member(:ip_set_references, Shapes::ShapeRef.new(shape: IPSetReferenceMap, location_name: "IPSetReferences"))
|
985
1062
|
ReferenceSets.struct_class = Types::ReferenceSets
|
986
1063
|
|
1064
|
+
RejectNetworkFirewallTransitGatewayAttachmentRequest.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
1065
|
+
RejectNetworkFirewallTransitGatewayAttachmentRequest.struct_class = Types::RejectNetworkFirewallTransitGatewayAttachmentRequest
|
1066
|
+
|
1067
|
+
RejectNetworkFirewallTransitGatewayAttachmentResponse.add_member(:transit_gateway_attachment_id, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentId, required: true, location_name: "TransitGatewayAttachmentId"))
|
1068
|
+
RejectNetworkFirewallTransitGatewayAttachmentResponse.add_member(:transit_gateway_attachment_status, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentStatus, required: true, location_name: "TransitGatewayAttachmentStatus"))
|
1069
|
+
RejectNetworkFirewallTransitGatewayAttachmentResponse.struct_class = Types::RejectNetworkFirewallTransitGatewayAttachmentResponse
|
1070
|
+
|
987
1071
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
988
1072
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
989
1073
|
|
@@ -1227,6 +1311,11 @@ module Aws::NetworkFirewall
|
|
1227
1311
|
TlsCertificateData.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusReason, location_name: "StatusMessage"))
|
1228
1312
|
TlsCertificateData.struct_class = Types::TlsCertificateData
|
1229
1313
|
|
1314
|
+
TransitGatewayAttachmentSyncState.add_member(:attachment_id, Shapes::ShapeRef.new(shape: AttachmentId, location_name: "AttachmentId"))
|
1315
|
+
TransitGatewayAttachmentSyncState.add_member(:transit_gateway_attachment_status, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentStatus, location_name: "TransitGatewayAttachmentStatus"))
|
1316
|
+
TransitGatewayAttachmentSyncState.add_member(:status_message, Shapes::ShapeRef.new(shape: TransitGatewayAttachmentSyncStateMessage, location_name: "StatusMessage"))
|
1317
|
+
TransitGatewayAttachmentSyncState.struct_class = Types::TransitGatewayAttachmentSyncState
|
1318
|
+
|
1230
1319
|
UniqueSources.add_member(:count, Shapes::ShapeRef.new(shape: Count, location_name: "Count"))
|
1231
1320
|
UniqueSources.struct_class = Types::UniqueSources
|
1232
1321
|
|
@@ -1239,6 +1328,18 @@ module Aws::NetworkFirewall
|
|
1239
1328
|
|
1240
1329
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
1241
1330
|
|
1331
|
+
UpdateAvailabilityZoneChangeProtectionRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
1332
|
+
UpdateAvailabilityZoneChangeProtectionRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1333
|
+
UpdateAvailabilityZoneChangeProtectionRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
1334
|
+
UpdateAvailabilityZoneChangeProtectionRequest.add_member(:availability_zone_change_protection, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "AvailabilityZoneChangeProtection"))
|
1335
|
+
UpdateAvailabilityZoneChangeProtectionRequest.struct_class = Types::UpdateAvailabilityZoneChangeProtectionRequest
|
1336
|
+
|
1337
|
+
UpdateAvailabilityZoneChangeProtectionResponse.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
1338
|
+
UpdateAvailabilityZoneChangeProtectionResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1339
|
+
UpdateAvailabilityZoneChangeProtectionResponse.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
1340
|
+
UpdateAvailabilityZoneChangeProtectionResponse.add_member(:availability_zone_change_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "AvailabilityZoneChangeProtection"))
|
1341
|
+
UpdateAvailabilityZoneChangeProtectionResponse.struct_class = Types::UpdateAvailabilityZoneChangeProtectionResponse
|
1342
|
+
|
1242
1343
|
UpdateFirewallAnalysisSettingsRequest.add_member(:enabled_analysis_types, Shapes::ShapeRef.new(shape: EnabledAnalysisTypes, location_name: "EnabledAnalysisTypes"))
|
1243
1344
|
UpdateFirewallAnalysisSettingsRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1244
1345
|
UpdateFirewallAnalysisSettingsRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
@@ -1315,11 +1416,13 @@ module Aws::NetworkFirewall
|
|
1315
1416
|
UpdateLoggingConfigurationRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1316
1417
|
UpdateLoggingConfigurationRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
1317
1418
|
UpdateLoggingConfigurationRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "LoggingConfiguration"))
|
1419
|
+
UpdateLoggingConfigurationRequest.add_member(:enable_monitoring_dashboard, Shapes::ShapeRef.new(shape: EnableMonitoringDashboard, location_name: "EnableMonitoringDashboard"))
|
1318
1420
|
UpdateLoggingConfigurationRequest.struct_class = Types::UpdateLoggingConfigurationRequest
|
1319
1421
|
|
1320
1422
|
UpdateLoggingConfigurationResponse.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1321
1423
|
UpdateLoggingConfigurationResponse.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
1322
1424
|
UpdateLoggingConfigurationResponse.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: LoggingConfiguration, location_name: "LoggingConfiguration"))
|
1425
|
+
UpdateLoggingConfigurationResponse.add_member(:enable_monitoring_dashboard, Shapes::ShapeRef.new(shape: EnableMonitoringDashboard, location_name: "EnableMonitoringDashboard"))
|
1323
1426
|
UpdateLoggingConfigurationResponse.struct_class = Types::UpdateLoggingConfigurationResponse
|
1324
1427
|
|
1325
1428
|
UpdateRuleGroupRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, required: true, location_name: "UpdateToken"))
|
@@ -1407,6 +1510,33 @@ module Aws::NetworkFirewall
|
|
1407
1510
|
"uid" => "network-firewall-2020-11-12",
|
1408
1511
|
}
|
1409
1512
|
|
1513
|
+
api.add_operation(:accept_network_firewall_transit_gateway_attachment, Seahorse::Model::Operation.new.tap do |o|
|
1514
|
+
o.name = "AcceptNetworkFirewallTransitGatewayAttachment"
|
1515
|
+
o.http_method = "POST"
|
1516
|
+
o.http_request_uri = "/"
|
1517
|
+
o.input = Shapes::ShapeRef.new(shape: AcceptNetworkFirewallTransitGatewayAttachmentRequest)
|
1518
|
+
o.output = Shapes::ShapeRef.new(shape: AcceptNetworkFirewallTransitGatewayAttachmentResponse)
|
1519
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1520
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
1521
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1522
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1523
|
+
end)
|
1524
|
+
|
1525
|
+
api.add_operation(:associate_availability_zones, Seahorse::Model::Operation.new.tap do |o|
|
1526
|
+
o.name = "AssociateAvailabilityZones"
|
1527
|
+
o.http_method = "POST"
|
1528
|
+
o.http_request_uri = "/"
|
1529
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateAvailabilityZonesRequest)
|
1530
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateAvailabilityZonesResponse)
|
1531
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1532
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
1533
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1534
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1535
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTokenException)
|
1536
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1537
|
+
o.errors << Shapes::ShapeRef.new(shape: InsufficientCapacityException)
|
1538
|
+
end)
|
1539
|
+
|
1410
1540
|
api.add_operation(:associate_firewall_policy, Seahorse::Model::Operation.new.tap do |o|
|
1411
1541
|
o.name = "AssociateFirewallPolicy"
|
1412
1542
|
o.http_method = "POST"
|
@@ -1532,6 +1662,18 @@ module Aws::NetworkFirewall
|
|
1532
1662
|
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1533
1663
|
end)
|
1534
1664
|
|
1665
|
+
api.add_operation(:delete_network_firewall_transit_gateway_attachment, Seahorse::Model::Operation.new.tap do |o|
|
1666
|
+
o.name = "DeleteNetworkFirewallTransitGatewayAttachment"
|
1667
|
+
o.http_method = "POST"
|
1668
|
+
o.http_request_uri = "/"
|
1669
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteNetworkFirewallTransitGatewayAttachmentRequest)
|
1670
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteNetworkFirewallTransitGatewayAttachmentResponse)
|
1671
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1672
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
1673
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1674
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1675
|
+
end)
|
1676
|
+
|
1535
1677
|
api.add_operation(:delete_resource_policy, Seahorse::Model::Operation.new.tap do |o|
|
1536
1678
|
o.name = "DeleteResourcePolicy"
|
1537
1679
|
o.http_method = "POST"
|
@@ -1705,6 +1847,20 @@ module Aws::NetworkFirewall
|
|
1705
1847
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1706
1848
|
end)
|
1707
1849
|
|
1850
|
+
api.add_operation(:disassociate_availability_zones, Seahorse::Model::Operation.new.tap do |o|
|
1851
|
+
o.name = "DisassociateAvailabilityZones"
|
1852
|
+
o.http_method = "POST"
|
1853
|
+
o.http_request_uri = "/"
|
1854
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateAvailabilityZonesRequest)
|
1855
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateAvailabilityZonesResponse)
|
1856
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1857
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
1858
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1859
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1860
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTokenException)
|
1861
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1862
|
+
end)
|
1863
|
+
|
1708
1864
|
api.add_operation(:disassociate_subnets, Seahorse::Model::Operation.new.tap do |o|
|
1709
1865
|
o.name = "DisassociateSubnets"
|
1710
1866
|
o.http_method = "POST"
|
@@ -1907,6 +2063,18 @@ module Aws::NetworkFirewall
|
|
1907
2063
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourcePolicyException)
|
1908
2064
|
end)
|
1909
2065
|
|
2066
|
+
api.add_operation(:reject_network_firewall_transit_gateway_attachment, Seahorse::Model::Operation.new.tap do |o|
|
2067
|
+
o.name = "RejectNetworkFirewallTransitGatewayAttachment"
|
2068
|
+
o.http_method = "POST"
|
2069
|
+
o.http_request_uri = "/"
|
2070
|
+
o.input = Shapes::ShapeRef.new(shape: RejectNetworkFirewallTransitGatewayAttachmentRequest)
|
2071
|
+
o.output = Shapes::ShapeRef.new(shape: RejectNetworkFirewallTransitGatewayAttachmentResponse)
|
2072
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2073
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2074
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2075
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2076
|
+
end)
|
2077
|
+
|
1910
2078
|
api.add_operation(:start_analysis_report, Seahorse::Model::Operation.new.tap do |o|
|
1911
2079
|
o.name = "StartAnalysisReport"
|
1912
2080
|
o.http_method = "POST"
|
@@ -1967,6 +2135,20 @@ module Aws::NetworkFirewall
|
|
1967
2135
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1968
2136
|
end)
|
1969
2137
|
|
2138
|
+
api.add_operation(:update_availability_zone_change_protection, Seahorse::Model::Operation.new.tap do |o|
|
2139
|
+
o.name = "UpdateAvailabilityZoneChangeProtection"
|
2140
|
+
o.http_method = "POST"
|
2141
|
+
o.http_request_uri = "/"
|
2142
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateAvailabilityZoneChangeProtectionRequest)
|
2143
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateAvailabilityZoneChangeProtectionResponse)
|
2144
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2145
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
2146
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2147
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2148
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidTokenException)
|
2149
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceOwnerCheckException)
|
2150
|
+
end)
|
2151
|
+
|
1970
2152
|
api.add_operation(:update_firewall_analysis_settings, Seahorse::Model::Operation.new.tap do |o|
|
1971
2153
|
o.name = "UpdateFirewallAnalysisSettings"
|
1972
2154
|
o.http_method = "POST"
|