aws-sdk-networkfirewall 1.68.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkfirewall/client.rb +458 -4
- data/lib/aws-sdk-networkfirewall/client_api.rb +178 -0
- data/lib/aws-sdk-networkfirewall/types.rb +681 -22
- data/lib/aws-sdk-networkfirewall.rb +2 -2
- data/sig/client.rbs +100 -3
- data/sig/types.rbs +104 -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,6 +110,8 @@ 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')
|
@@ -211,6 +224,8 @@ module Aws::NetworkFirewall
|
|
211
224
|
PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
|
212
225
|
PutResourcePolicyResponse = Shapes::StructureShape.new(name: 'PutResourcePolicyResponse')
|
213
226
|
ReferenceSets = Shapes::StructureShape.new(name: 'ReferenceSets')
|
227
|
+
RejectNetworkFirewallTransitGatewayAttachmentRequest = Shapes::StructureShape.new(name: 'RejectNetworkFirewallTransitGatewayAttachmentRequest')
|
228
|
+
RejectNetworkFirewallTransitGatewayAttachmentResponse = Shapes::StructureShape.new(name: 'RejectNetworkFirewallTransitGatewayAttachmentResponse')
|
214
229
|
ReportTime = Shapes::TimestampShape.new(name: 'ReportTime')
|
215
230
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
216
231
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
@@ -302,10 +317,17 @@ module Aws::NetworkFirewall
|
|
302
317
|
TcpIdleTimeoutRangeBound = Shapes::IntegerShape.new(name: 'TcpIdleTimeoutRangeBound')
|
303
318
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
304
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')
|
305
325
|
UniqueSources = Shapes::StructureShape.new(name: 'UniqueSources')
|
306
326
|
UnsupportedOperationException = Shapes::StructureShape.new(name: 'UnsupportedOperationException')
|
307
327
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
308
328
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
329
|
+
UpdateAvailabilityZoneChangeProtectionRequest = Shapes::StructureShape.new(name: 'UpdateAvailabilityZoneChangeProtectionRequest')
|
330
|
+
UpdateAvailabilityZoneChangeProtectionResponse = Shapes::StructureShape.new(name: 'UpdateAvailabilityZoneChangeProtectionResponse')
|
309
331
|
UpdateFirewallAnalysisSettingsRequest = Shapes::StructureShape.new(name: 'UpdateFirewallAnalysisSettingsRequest')
|
310
332
|
UpdateFirewallAnalysisSettingsResponse = Shapes::StructureShape.new(name: 'UpdateFirewallAnalysisSettingsResponse')
|
311
333
|
UpdateFirewallDeleteProtectionRequest = Shapes::StructureShape.new(name: 'UpdateFirewallDeleteProtectionRequest')
|
@@ -340,6 +362,13 @@ module Aws::NetworkFirewall
|
|
340
362
|
AZSyncState.add_member(:attachment, Shapes::ShapeRef.new(shape: Attachment, location_name: "Attachment"))
|
341
363
|
AZSyncState.struct_class = Types::AZSyncState
|
342
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
|
+
|
343
372
|
ActionDefinition.add_member(:publish_metric_action, Shapes::ShapeRef.new(shape: PublishMetricAction, location_name: "PublishMetricAction"))
|
344
373
|
ActionDefinition.struct_class = Types::ActionDefinition
|
345
374
|
|
@@ -373,6 +402,18 @@ module Aws::NetworkFirewall
|
|
373
402
|
AnalysisTypeReportResult.add_member(:unique_sources, Shapes::ShapeRef.new(shape: UniqueSources, location_name: "UniqueSources"))
|
374
403
|
AnalysisTypeReportResult.struct_class = Types::AnalysisTypeReportResult
|
375
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
|
+
|
376
417
|
AssociateFirewallPolicyRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
377
418
|
AssociateFirewallPolicyRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
378
419
|
AssociateFirewallPolicyRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
@@ -406,6 +447,11 @@ module Aws::NetworkFirewall
|
|
406
447
|
Attachment.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "StatusMessage"))
|
407
448
|
Attachment.struct_class = Types::Attachment
|
408
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
|
+
|
409
455
|
AvailabilityZoneMetadata.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IPAddressType"))
|
410
456
|
AvailabilityZoneMetadata.struct_class = Types::AvailabilityZoneMetadata
|
411
457
|
|
@@ -448,6 +494,9 @@ module Aws::NetworkFirewall
|
|
448
494
|
CreateFirewallRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
449
495
|
CreateFirewallRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
450
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"))
|
451
500
|
CreateFirewallRequest.struct_class = Types::CreateFirewallRequest
|
452
501
|
|
453
502
|
CreateFirewallResponse.add_member(:firewall, Shapes::ShapeRef.new(shape: Firewall, location_name: "Firewall"))
|
@@ -514,6 +563,13 @@ module Aws::NetworkFirewall
|
|
514
563
|
DeleteFirewallResponse.add_member(:firewall_status, Shapes::ShapeRef.new(shape: FirewallStatus, location_name: "FirewallStatus"))
|
515
564
|
DeleteFirewallResponse.struct_class = Types::DeleteFirewallResponse
|
516
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
|
+
|
517
573
|
DeleteResourcePolicyRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
518
574
|
DeleteResourcePolicyRequest.struct_class = Types::DeleteResourcePolicyRequest
|
519
575
|
|
@@ -549,6 +605,7 @@ module Aws::NetworkFirewall
|
|
549
605
|
DescribeFirewallMetadataResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
550
606
|
DescribeFirewallMetadataResponse.add_member(:status, Shapes::ShapeRef.new(shape: FirewallStatusValue, location_name: "Status"))
|
551
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"))
|
552
609
|
DescribeFirewallMetadataResponse.struct_class = Types::DescribeFirewallMetadataResponse
|
553
610
|
|
554
611
|
DescribeFirewallPolicyRequest.add_member(:firewall_policy_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallPolicyName"))
|
@@ -649,6 +706,18 @@ module Aws::NetworkFirewall
|
|
649
706
|
|
650
707
|
Dimensions.member = Shapes::ShapeRef.new(shape: Dimension)
|
651
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
|
+
|
652
721
|
DisassociateSubnetsRequest.add_member(:update_token, Shapes::ShapeRef.new(shape: UpdateToken, location_name: "UpdateToken"))
|
653
722
|
DisassociateSubnetsRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
654
723
|
DisassociateSubnetsRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
@@ -681,10 +750,15 @@ module Aws::NetworkFirewall
|
|
681
750
|
Firewall.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
682
751
|
Firewall.add_member(:number_of_associations, Shapes::ShapeRef.new(shape: NumberOfAssociations, location_name: "NumberOfAssociations"))
|
683
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"))
|
684
757
|
Firewall.struct_class = Types::Firewall
|
685
758
|
|
686
759
|
FirewallMetadata.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
687
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"))
|
688
762
|
FirewallMetadata.struct_class = Types::FirewallMetadata
|
689
763
|
|
690
764
|
FirewallPolicies.member = Shapes::ShapeRef.new(shape: FirewallPolicyMetadata)
|
@@ -721,6 +795,7 @@ module Aws::NetworkFirewall
|
|
721
795
|
FirewallStatus.add_member(:configuration_sync_state_summary, Shapes::ShapeRef.new(shape: ConfigurationSyncState, required: true, location_name: "ConfigurationSyncStateSummary"))
|
722
796
|
FirewallStatus.add_member(:sync_states, Shapes::ShapeRef.new(shape: SyncStates, location_name: "SyncStates"))
|
723
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"))
|
724
799
|
FirewallStatus.struct_class = Types::FirewallStatus
|
725
800
|
|
726
801
|
Firewalls.member = Shapes::ShapeRef.new(shape: FirewallMetadata)
|
@@ -986,6 +1061,13 @@ module Aws::NetworkFirewall
|
|
986
1061
|
ReferenceSets.add_member(:ip_set_references, Shapes::ShapeRef.new(shape: IPSetReferenceMap, location_name: "IPSetReferences"))
|
987
1062
|
ReferenceSets.struct_class = Types::ReferenceSets
|
988
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
|
+
|
989
1071
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
990
1072
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
991
1073
|
|
@@ -1229,6 +1311,11 @@ module Aws::NetworkFirewall
|
|
1229
1311
|
TlsCertificateData.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusReason, location_name: "StatusMessage"))
|
1230
1312
|
TlsCertificateData.struct_class = Types::TlsCertificateData
|
1231
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
|
+
|
1232
1319
|
UniqueSources.add_member(:count, Shapes::ShapeRef.new(shape: Count, location_name: "Count"))
|
1233
1320
|
UniqueSources.struct_class = Types::UniqueSources
|
1234
1321
|
|
@@ -1241,6 +1328,18 @@ module Aws::NetworkFirewall
|
|
1241
1328
|
|
1242
1329
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
1243
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
|
+
|
1244
1343
|
UpdateFirewallAnalysisSettingsRequest.add_member(:enabled_analysis_types, Shapes::ShapeRef.new(shape: EnabledAnalysisTypes, location_name: "EnabledAnalysisTypes"))
|
1245
1344
|
UpdateFirewallAnalysisSettingsRequest.add_member(:firewall_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "FirewallArn"))
|
1246
1345
|
UpdateFirewallAnalysisSettingsRequest.add_member(:firewall_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "FirewallName"))
|
@@ -1411,6 +1510,33 @@ module Aws::NetworkFirewall
|
|
1411
1510
|
"uid" => "network-firewall-2020-11-12",
|
1412
1511
|
}
|
1413
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
|
+
|
1414
1540
|
api.add_operation(:associate_firewall_policy, Seahorse::Model::Operation.new.tap do |o|
|
1415
1541
|
o.name = "AssociateFirewallPolicy"
|
1416
1542
|
o.http_method = "POST"
|
@@ -1536,6 +1662,18 @@ module Aws::NetworkFirewall
|
|
1536
1662
|
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1537
1663
|
end)
|
1538
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
|
+
|
1539
1677
|
api.add_operation(:delete_resource_policy, Seahorse::Model::Operation.new.tap do |o|
|
1540
1678
|
o.name = "DeleteResourcePolicy"
|
1541
1679
|
o.http_method = "POST"
|
@@ -1709,6 +1847,20 @@ module Aws::NetworkFirewall
|
|
1709
1847
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1710
1848
|
end)
|
1711
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
|
+
|
1712
1864
|
api.add_operation(:disassociate_subnets, Seahorse::Model::Operation.new.tap do |o|
|
1713
1865
|
o.name = "DisassociateSubnets"
|
1714
1866
|
o.http_method = "POST"
|
@@ -1911,6 +2063,18 @@ module Aws::NetworkFirewall
|
|
1911
2063
|
o.errors << Shapes::ShapeRef.new(shape: InvalidResourcePolicyException)
|
1912
2064
|
end)
|
1913
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
|
+
|
1914
2078
|
api.add_operation(:start_analysis_report, Seahorse::Model::Operation.new.tap do |o|
|
1915
2079
|
o.name = "StartAnalysisReport"
|
1916
2080
|
o.http_method = "POST"
|
@@ -1971,6 +2135,20 @@ module Aws::NetworkFirewall
|
|
1971
2135
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1972
2136
|
end)
|
1973
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
|
+
|
1974
2152
|
api.add_operation(:update_firewall_analysis_settings, Seahorse::Model::Operation.new.tap do |o|
|
1975
2153
|
o.name = "UpdateFirewallAnalysisSettings"
|
1976
2154
|
o.http_method = "POST"
|