aws-sdk-fms 1.46.0 → 1.49.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fms/client.rb +223 -7
- data/lib/aws-sdk-fms/client_api.rb +187 -0
- data/lib/aws-sdk-fms/types.rb +849 -9
- data/lib/aws-sdk-fms.rb +1 -1
- metadata +4 -4
@@ -22,6 +22,8 @@ module Aws::FMS
|
|
22
22
|
AppsListDataSummary = Shapes::StructureShape.new(name: 'AppsListDataSummary')
|
23
23
|
AppsListsData = Shapes::ListShape.new(name: 'AppsListsData')
|
24
24
|
AssociateAdminAccountRequest = Shapes::StructureShape.new(name: 'AssociateAdminAccountRequest')
|
25
|
+
AssociateThirdPartyFirewallRequest = Shapes::StructureShape.new(name: 'AssociateThirdPartyFirewallRequest')
|
26
|
+
AssociateThirdPartyFirewallResponse = Shapes::StructureShape.new(name: 'AssociateThirdPartyFirewallResponse')
|
25
27
|
AwsEc2InstanceViolation = Shapes::StructureShape.new(name: 'AwsEc2InstanceViolation')
|
26
28
|
AwsEc2NetworkInterfaceViolation = Shapes::StructureShape.new(name: 'AwsEc2NetworkInterfaceViolation')
|
27
29
|
AwsEc2NetworkInterfaceViolations = Shapes::ListShape.new(name: 'AwsEc2NetworkInterfaceViolations')
|
@@ -30,6 +32,7 @@ module Aws::FMS
|
|
30
32
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
31
33
|
CIDR = Shapes::StringShape.new(name: 'CIDR')
|
32
34
|
ComplianceViolator = Shapes::StructureShape.new(name: 'ComplianceViolator')
|
35
|
+
ComplianceViolatorMetadata = Shapes::MapShape.new(name: 'ComplianceViolatorMetadata')
|
33
36
|
ComplianceViolators = Shapes::ListShape.new(name: 'ComplianceViolators')
|
34
37
|
CustomerPolicyScopeId = Shapes::StringShape.new(name: 'CustomerPolicyScopeId')
|
35
38
|
CustomerPolicyScopeIdList = Shapes::ListShape.new(name: 'CustomerPolicyScopeIdList')
|
@@ -43,6 +46,8 @@ module Aws::FMS
|
|
43
46
|
DestinationType = Shapes::StringShape.new(name: 'DestinationType')
|
44
47
|
DetailedInfo = Shapes::StringShape.new(name: 'DetailedInfo')
|
45
48
|
DisassociateAdminAccountRequest = Shapes::StructureShape.new(name: 'DisassociateAdminAccountRequest')
|
49
|
+
DisassociateThirdPartyFirewallRequest = Shapes::StructureShape.new(name: 'DisassociateThirdPartyFirewallRequest')
|
50
|
+
DisassociateThirdPartyFirewallResponse = Shapes::StructureShape.new(name: 'DisassociateThirdPartyFirewallResponse')
|
46
51
|
DnsDuplicateRuleGroupViolation = Shapes::StructureShape.new(name: 'DnsDuplicateRuleGroupViolation')
|
47
52
|
DnsRuleGroupLimitExceededViolation = Shapes::StructureShape.new(name: 'DnsRuleGroupLimitExceededViolation')
|
48
53
|
DnsRuleGroupPriorities = Shapes::ListShape.new(name: 'DnsRuleGroupPriorities')
|
@@ -60,6 +65,12 @@ module Aws::FMS
|
|
60
65
|
EvaluationResults = Shapes::ListShape.new(name: 'EvaluationResults')
|
61
66
|
ExpectedRoute = Shapes::StructureShape.new(name: 'ExpectedRoute')
|
62
67
|
ExpectedRoutes = Shapes::ListShape.new(name: 'ExpectedRoutes')
|
68
|
+
FMSPolicyUpdateFirewallCreationConfigAction = Shapes::StructureShape.new(name: 'FMSPolicyUpdateFirewallCreationConfigAction')
|
69
|
+
FirewallDeploymentModel = Shapes::StringShape.new(name: 'FirewallDeploymentModel')
|
70
|
+
FirewallPolicyId = Shapes::StringShape.new(name: 'FirewallPolicyId')
|
71
|
+
FirewallPolicyName = Shapes::StringShape.new(name: 'FirewallPolicyName')
|
72
|
+
FirewallSubnetIsOutOfScopeViolation = Shapes::StructureShape.new(name: 'FirewallSubnetIsOutOfScopeViolation')
|
73
|
+
FirewallSubnetMissingVPCEndpointViolation = Shapes::StructureShape.new(name: 'FirewallSubnetMissingVPCEndpointViolation')
|
63
74
|
GetAdminAccountRequest = Shapes::StructureShape.new(name: 'GetAdminAccountRequest')
|
64
75
|
GetAdminAccountResponse = Shapes::StructureShape.new(name: 'GetAdminAccountResponse')
|
65
76
|
GetAppsListRequest = Shapes::StructureShape.new(name: 'GetAppsListRequest')
|
@@ -74,6 +85,8 @@ module Aws::FMS
|
|
74
85
|
GetProtectionStatusResponse = Shapes::StructureShape.new(name: 'GetProtectionStatusResponse')
|
75
86
|
GetProtocolsListRequest = Shapes::StructureShape.new(name: 'GetProtocolsListRequest')
|
76
87
|
GetProtocolsListResponse = Shapes::StructureShape.new(name: 'GetProtocolsListResponse')
|
88
|
+
GetThirdPartyFirewallAssociationStatusRequest = Shapes::StructureShape.new(name: 'GetThirdPartyFirewallAssociationStatusRequest')
|
89
|
+
GetThirdPartyFirewallAssociationStatusResponse = Shapes::StructureShape.new(name: 'GetThirdPartyFirewallAssociationStatusResponse')
|
77
90
|
GetViolationDetailsRequest = Shapes::StructureShape.new(name: 'GetViolationDetailsRequest')
|
78
91
|
GetViolationDetailsResponse = Shapes::StructureShape.new(name: 'GetViolationDetailsResponse')
|
79
92
|
IPPortNumber = Shapes::IntegerShape.new(name: 'IPPortNumber')
|
@@ -98,7 +111,10 @@ module Aws::FMS
|
|
98
111
|
ListProtocolsListsResponse = Shapes::StructureShape.new(name: 'ListProtocolsListsResponse')
|
99
112
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
100
113
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
114
|
+
ListThirdPartyFirewallFirewallPoliciesRequest = Shapes::StructureShape.new(name: 'ListThirdPartyFirewallFirewallPoliciesRequest')
|
115
|
+
ListThirdPartyFirewallFirewallPoliciesResponse = Shapes::StructureShape.new(name: 'ListThirdPartyFirewallFirewallPoliciesResponse')
|
101
116
|
ManagedServiceData = Shapes::StringShape.new(name: 'ManagedServiceData')
|
117
|
+
MarketplaceSubscriptionOnboardingStatus = Shapes::StringShape.new(name: 'MarketplaceSubscriptionOnboardingStatus')
|
102
118
|
MemberAccounts = Shapes::ListShape.new(name: 'MemberAccounts')
|
103
119
|
NetworkFirewallAction = Shapes::StringShape.new(name: 'NetworkFirewallAction')
|
104
120
|
NetworkFirewallActionList = Shapes::ListShape.new(name: 'NetworkFirewallActionList')
|
@@ -109,6 +125,7 @@ module Aws::FMS
|
|
109
125
|
NetworkFirewallMissingExpectedRoutesViolation = Shapes::StructureShape.new(name: 'NetworkFirewallMissingExpectedRoutesViolation')
|
110
126
|
NetworkFirewallMissingFirewallViolation = Shapes::StructureShape.new(name: 'NetworkFirewallMissingFirewallViolation')
|
111
127
|
NetworkFirewallMissingSubnetViolation = Shapes::StructureShape.new(name: 'NetworkFirewallMissingSubnetViolation')
|
128
|
+
NetworkFirewallPolicy = Shapes::StructureShape.new(name: 'NetworkFirewallPolicy')
|
112
129
|
NetworkFirewallPolicyDescription = Shapes::StructureShape.new(name: 'NetworkFirewallPolicyDescription')
|
113
130
|
NetworkFirewallPolicyModifiedViolation = Shapes::StructureShape.new(name: 'NetworkFirewallPolicyModifiedViolation')
|
114
131
|
NetworkFirewallResourceName = Shapes::StringShape.new(name: 'NetworkFirewallResourceName')
|
@@ -125,6 +142,7 @@ module Aws::FMS
|
|
125
142
|
PolicyComplianceStatusList = Shapes::ListShape.new(name: 'PolicyComplianceStatusList')
|
126
143
|
PolicyComplianceStatusType = Shapes::StringShape.new(name: 'PolicyComplianceStatusType')
|
127
144
|
PolicyId = Shapes::StringShape.new(name: 'PolicyId')
|
145
|
+
PolicyOption = Shapes::StructureShape.new(name: 'PolicyOption')
|
128
146
|
PolicySummary = Shapes::StructureShape.new(name: 'PolicySummary')
|
129
147
|
PolicySummaryList = Shapes::ListShape.new(name: 'PolicySummaryList')
|
130
148
|
PolicyUpdateToken = Shapes::StringShape.new(name: 'PolicyUpdateToken')
|
@@ -167,6 +185,7 @@ module Aws::FMS
|
|
167
185
|
ResourceViolation = Shapes::StructureShape.new(name: 'ResourceViolation')
|
168
186
|
ResourceViolations = Shapes::ListShape.new(name: 'ResourceViolations')
|
169
187
|
Route = Shapes::StructureShape.new(name: 'Route')
|
188
|
+
RouteHasOutOfScopeEndpointViolation = Shapes::StructureShape.new(name: 'RouteHasOutOfScopeEndpointViolation')
|
170
189
|
Routes = Shapes::ListShape.new(name: 'Routes')
|
171
190
|
SecurityGroupRemediationAction = Shapes::StructureShape.new(name: 'SecurityGroupRemediationAction')
|
172
191
|
SecurityGroupRemediationActions = Shapes::ListShape.new(name: 'SecurityGroupRemediationActions')
|
@@ -188,6 +207,14 @@ module Aws::FMS
|
|
188
207
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
189
208
|
TargetViolationReason = Shapes::StringShape.new(name: 'TargetViolationReason')
|
190
209
|
TargetViolationReasons = Shapes::ListShape.new(name: 'TargetViolationReasons')
|
210
|
+
ThirdPartyFirewall = Shapes::StringShape.new(name: 'ThirdPartyFirewall')
|
211
|
+
ThirdPartyFirewallAssociationStatus = Shapes::StringShape.new(name: 'ThirdPartyFirewallAssociationStatus')
|
212
|
+
ThirdPartyFirewallFirewallPolicies = Shapes::ListShape.new(name: 'ThirdPartyFirewallFirewallPolicies')
|
213
|
+
ThirdPartyFirewallFirewallPolicy = Shapes::StructureShape.new(name: 'ThirdPartyFirewallFirewallPolicy')
|
214
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation = Shapes::StructureShape.new(name: 'ThirdPartyFirewallMissingExpectedRouteTableViolation')
|
215
|
+
ThirdPartyFirewallMissingFirewallViolation = Shapes::StructureShape.new(name: 'ThirdPartyFirewallMissingFirewallViolation')
|
216
|
+
ThirdPartyFirewallMissingSubnetViolation = Shapes::StructureShape.new(name: 'ThirdPartyFirewallMissingSubnetViolation')
|
217
|
+
ThirdPartyFirewallPolicy = Shapes::StructureShape.new(name: 'ThirdPartyFirewallPolicy')
|
191
218
|
TimeStamp = Shapes::TimestampShape.new(name: 'TimeStamp')
|
192
219
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
193
220
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
@@ -227,6 +254,12 @@ module Aws::FMS
|
|
227
254
|
AssociateAdminAccountRequest.add_member(:admin_account, Shapes::ShapeRef.new(shape: AWSAccountId, required: true, location_name: "AdminAccount"))
|
228
255
|
AssociateAdminAccountRequest.struct_class = Types::AssociateAdminAccountRequest
|
229
256
|
|
257
|
+
AssociateThirdPartyFirewallRequest.add_member(:third_party_firewall, Shapes::ShapeRef.new(shape: ThirdPartyFirewall, required: true, location_name: "ThirdPartyFirewall"))
|
258
|
+
AssociateThirdPartyFirewallRequest.struct_class = Types::AssociateThirdPartyFirewallRequest
|
259
|
+
|
260
|
+
AssociateThirdPartyFirewallResponse.add_member(:third_party_firewall_status, Shapes::ShapeRef.new(shape: ThirdPartyFirewallAssociationStatus, location_name: "ThirdPartyFirewallStatus"))
|
261
|
+
AssociateThirdPartyFirewallResponse.struct_class = Types::AssociateThirdPartyFirewallResponse
|
262
|
+
|
230
263
|
AwsEc2InstanceViolation.add_member(:violation_target, Shapes::ShapeRef.new(shape: ViolationTarget, location_name: "ViolationTarget"))
|
231
264
|
AwsEc2InstanceViolation.add_member(:aws_ec2_network_interface_violations, Shapes::ShapeRef.new(shape: AwsEc2NetworkInterfaceViolations, location_name: "AwsEc2NetworkInterfaceViolations"))
|
232
265
|
AwsEc2InstanceViolation.struct_class = Types::AwsEc2InstanceViolation
|
@@ -246,8 +279,12 @@ module Aws::FMS
|
|
246
279
|
ComplianceViolator.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ResourceId"))
|
247
280
|
ComplianceViolator.add_member(:violation_reason, Shapes::ShapeRef.new(shape: ViolationReason, location_name: "ViolationReason"))
|
248
281
|
ComplianceViolator.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, location_name: "ResourceType"))
|
282
|
+
ComplianceViolator.add_member(:metadata, Shapes::ShapeRef.new(shape: ComplianceViolatorMetadata, location_name: "Metadata"))
|
249
283
|
ComplianceViolator.struct_class = Types::ComplianceViolator
|
250
284
|
|
285
|
+
ComplianceViolatorMetadata.key = Shapes::ShapeRef.new(shape: LengthBoundedString)
|
286
|
+
ComplianceViolatorMetadata.value = Shapes::ShapeRef.new(shape: LengthBoundedString)
|
287
|
+
|
251
288
|
ComplianceViolators.member = Shapes::ShapeRef.new(shape: ComplianceViolator)
|
252
289
|
|
253
290
|
CustomerPolicyScopeIdList.member = Shapes::ShapeRef.new(shape: CustomerPolicyScopeId)
|
@@ -269,6 +306,12 @@ module Aws::FMS
|
|
269
306
|
|
270
307
|
DisassociateAdminAccountRequest.struct_class = Types::DisassociateAdminAccountRequest
|
271
308
|
|
309
|
+
DisassociateThirdPartyFirewallRequest.add_member(:third_party_firewall, Shapes::ShapeRef.new(shape: ThirdPartyFirewall, required: true, location_name: "ThirdPartyFirewall"))
|
310
|
+
DisassociateThirdPartyFirewallRequest.struct_class = Types::DisassociateThirdPartyFirewallRequest
|
311
|
+
|
312
|
+
DisassociateThirdPartyFirewallResponse.add_member(:third_party_firewall_status, Shapes::ShapeRef.new(shape: ThirdPartyFirewallAssociationStatus, location_name: "ThirdPartyFirewallStatus"))
|
313
|
+
DisassociateThirdPartyFirewallResponse.struct_class = Types::DisassociateThirdPartyFirewallResponse
|
314
|
+
|
272
315
|
DnsDuplicateRuleGroupViolation.add_member(:violation_target, Shapes::ShapeRef.new(shape: ViolationTarget, location_name: "ViolationTarget"))
|
273
316
|
DnsDuplicateRuleGroupViolation.add_member(:violation_target_description, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "ViolationTargetDescription"))
|
274
317
|
DnsDuplicateRuleGroupViolation.struct_class = Types::DnsDuplicateRuleGroupViolation
|
@@ -348,6 +391,23 @@ module Aws::FMS
|
|
348
391
|
|
349
392
|
ExpectedRoutes.member = Shapes::ShapeRef.new(shape: ExpectedRoute)
|
350
393
|
|
394
|
+
FMSPolicyUpdateFirewallCreationConfigAction.add_member(:description, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "Description"))
|
395
|
+
FMSPolicyUpdateFirewallCreationConfigAction.add_member(:firewall_creation_config, Shapes::ShapeRef.new(shape: ManagedServiceData, location_name: "FirewallCreationConfig"))
|
396
|
+
FMSPolicyUpdateFirewallCreationConfigAction.struct_class = Types::FMSPolicyUpdateFirewallCreationConfigAction
|
397
|
+
|
398
|
+
FirewallSubnetIsOutOfScopeViolation.add_member(:firewall_subnet_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "FirewallSubnetId"))
|
399
|
+
FirewallSubnetIsOutOfScopeViolation.add_member(:vpc_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VpcId"))
|
400
|
+
FirewallSubnetIsOutOfScopeViolation.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "SubnetAvailabilityZone"))
|
401
|
+
FirewallSubnetIsOutOfScopeViolation.add_member(:subnet_availability_zone_id, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "SubnetAvailabilityZoneId"))
|
402
|
+
FirewallSubnetIsOutOfScopeViolation.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VpcEndpointId"))
|
403
|
+
FirewallSubnetIsOutOfScopeViolation.struct_class = Types::FirewallSubnetIsOutOfScopeViolation
|
404
|
+
|
405
|
+
FirewallSubnetMissingVPCEndpointViolation.add_member(:firewall_subnet_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "FirewallSubnetId"))
|
406
|
+
FirewallSubnetMissingVPCEndpointViolation.add_member(:vpc_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VpcId"))
|
407
|
+
FirewallSubnetMissingVPCEndpointViolation.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "SubnetAvailabilityZone"))
|
408
|
+
FirewallSubnetMissingVPCEndpointViolation.add_member(:subnet_availability_zone_id, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "SubnetAvailabilityZoneId"))
|
409
|
+
FirewallSubnetMissingVPCEndpointViolation.struct_class = Types::FirewallSubnetMissingVPCEndpointViolation
|
410
|
+
|
351
411
|
GetAdminAccountRequest.struct_class = Types::GetAdminAccountRequest
|
352
412
|
|
353
413
|
GetAdminAccountResponse.add_member(:admin_account, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "AdminAccount"))
|
@@ -404,6 +464,13 @@ module Aws::FMS
|
|
404
464
|
GetProtocolsListResponse.add_member(:protocols_list_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "ProtocolsListArn"))
|
405
465
|
GetProtocolsListResponse.struct_class = Types::GetProtocolsListResponse
|
406
466
|
|
467
|
+
GetThirdPartyFirewallAssociationStatusRequest.add_member(:third_party_firewall, Shapes::ShapeRef.new(shape: ThirdPartyFirewall, required: true, location_name: "ThirdPartyFirewall"))
|
468
|
+
GetThirdPartyFirewallAssociationStatusRequest.struct_class = Types::GetThirdPartyFirewallAssociationStatusRequest
|
469
|
+
|
470
|
+
GetThirdPartyFirewallAssociationStatusResponse.add_member(:third_party_firewall_status, Shapes::ShapeRef.new(shape: ThirdPartyFirewallAssociationStatus, location_name: "ThirdPartyFirewallStatus"))
|
471
|
+
GetThirdPartyFirewallAssociationStatusResponse.add_member(:marketplace_onboarding_status, Shapes::ShapeRef.new(shape: MarketplaceSubscriptionOnboardingStatus, location_name: "MarketplaceOnboardingStatus"))
|
472
|
+
GetThirdPartyFirewallAssociationStatusResponse.struct_class = Types::GetThirdPartyFirewallAssociationStatusResponse
|
473
|
+
|
407
474
|
GetViolationDetailsRequest.add_member(:policy_id, Shapes::ShapeRef.new(shape: PolicyId, required: true, location_name: "PolicyId"))
|
408
475
|
GetViolationDetailsRequest.add_member(:member_account, Shapes::ShapeRef.new(shape: AWSAccountId, required: true, location_name: "MemberAccount"))
|
409
476
|
GetViolationDetailsRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "ResourceId"))
|
@@ -482,6 +549,15 @@ module Aws::FMS
|
|
482
549
|
ListTagsForResourceResponse.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
483
550
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
484
551
|
|
552
|
+
ListThirdPartyFirewallFirewallPoliciesRequest.add_member(:third_party_firewall, Shapes::ShapeRef.new(shape: ThirdPartyFirewall, required: true, location_name: "ThirdPartyFirewall"))
|
553
|
+
ListThirdPartyFirewallFirewallPoliciesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
554
|
+
ListThirdPartyFirewallFirewallPoliciesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PaginationMaxResults, required: true, location_name: "MaxResults"))
|
555
|
+
ListThirdPartyFirewallFirewallPoliciesRequest.struct_class = Types::ListThirdPartyFirewallFirewallPoliciesRequest
|
556
|
+
|
557
|
+
ListThirdPartyFirewallFirewallPoliciesResponse.add_member(:third_party_firewall_firewall_policies, Shapes::ShapeRef.new(shape: ThirdPartyFirewallFirewallPolicies, location_name: "ThirdPartyFirewallFirewallPolicies"))
|
558
|
+
ListThirdPartyFirewallFirewallPoliciesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
559
|
+
ListThirdPartyFirewallFirewallPoliciesResponse.struct_class = Types::ListThirdPartyFirewallFirewallPoliciesResponse
|
560
|
+
|
485
561
|
MemberAccounts.member = Shapes::ShapeRef.new(shape: AWSAccountId)
|
486
562
|
|
487
563
|
NetworkFirewallActionList.member = Shapes::ShapeRef.new(shape: NetworkFirewallAction)
|
@@ -551,6 +627,9 @@ module Aws::FMS
|
|
551
627
|
NetworkFirewallMissingSubnetViolation.add_member(:target_violation_reason, Shapes::ShapeRef.new(shape: TargetViolationReason, location_name: "TargetViolationReason"))
|
552
628
|
NetworkFirewallMissingSubnetViolation.struct_class = Types::NetworkFirewallMissingSubnetViolation
|
553
629
|
|
630
|
+
NetworkFirewallPolicy.add_member(:firewall_deployment_model, Shapes::ShapeRef.new(shape: FirewallDeploymentModel, location_name: "FirewallDeploymentModel"))
|
631
|
+
NetworkFirewallPolicy.struct_class = Types::NetworkFirewallPolicy
|
632
|
+
|
554
633
|
NetworkFirewallPolicyDescription.add_member(:stateless_rule_groups, Shapes::ShapeRef.new(shape: StatelessRuleGroupList, location_name: "StatelessRuleGroups"))
|
555
634
|
NetworkFirewallPolicyDescription.add_member(:stateless_default_actions, Shapes::ShapeRef.new(shape: NetworkFirewallActionList, location_name: "StatelessDefaultActions"))
|
556
635
|
NetworkFirewallPolicyDescription.add_member(:stateless_fragment_default_actions, Shapes::ShapeRef.new(shape: NetworkFirewallActionList, location_name: "StatelessFragmentDefaultActions"))
|
@@ -618,6 +697,10 @@ module Aws::FMS
|
|
618
697
|
|
619
698
|
PolicyComplianceStatusList.member = Shapes::ShapeRef.new(shape: PolicyComplianceStatus)
|
620
699
|
|
700
|
+
PolicyOption.add_member(:network_firewall_policy, Shapes::ShapeRef.new(shape: NetworkFirewallPolicy, location_name: "NetworkFirewallPolicy"))
|
701
|
+
PolicyOption.add_member(:third_party_firewall_policy, Shapes::ShapeRef.new(shape: ThirdPartyFirewallPolicy, location_name: "ThirdPartyFirewallPolicy"))
|
702
|
+
PolicyOption.struct_class = Types::PolicyOption
|
703
|
+
|
621
704
|
PolicySummary.add_member(:policy_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "PolicyArn"))
|
622
705
|
PolicySummary.add_member(:policy_id, Shapes::ShapeRef.new(shape: PolicyId, location_name: "PolicyId"))
|
623
706
|
PolicySummary.add_member(:policy_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "PolicyName"))
|
@@ -701,6 +784,7 @@ module Aws::FMS
|
|
701
784
|
RemediationAction.add_member(:ec2_replace_route_table_association_action, Shapes::ShapeRef.new(shape: EC2ReplaceRouteTableAssociationAction, location_name: "EC2ReplaceRouteTableAssociationAction"))
|
702
785
|
RemediationAction.add_member(:ec2_associate_route_table_action, Shapes::ShapeRef.new(shape: EC2AssociateRouteTableAction, location_name: "EC2AssociateRouteTableAction"))
|
703
786
|
RemediationAction.add_member(:ec2_create_route_table_action, Shapes::ShapeRef.new(shape: EC2CreateRouteTableAction, location_name: "EC2CreateRouteTableAction"))
|
787
|
+
RemediationAction.add_member(:fms_policy_update_firewall_creation_config_action, Shapes::ShapeRef.new(shape: FMSPolicyUpdateFirewallCreationConfigAction, location_name: "FMSPolicyUpdateFirewallCreationConfigAction"))
|
704
788
|
RemediationAction.struct_class = Types::RemediationAction
|
705
789
|
|
706
790
|
RemediationActionWithOrder.add_member(:remediation_action, Shapes::ShapeRef.new(shape: RemediationAction, location_name: "RemediationAction"))
|
@@ -737,6 +821,12 @@ module Aws::FMS
|
|
737
821
|
ResourceViolation.add_member(:dns_duplicate_rule_group_violation, Shapes::ShapeRef.new(shape: DnsDuplicateRuleGroupViolation, location_name: "DnsDuplicateRuleGroupViolation"))
|
738
822
|
ResourceViolation.add_member(:dns_rule_group_limit_exceeded_violation, Shapes::ShapeRef.new(shape: DnsRuleGroupLimitExceededViolation, location_name: "DnsRuleGroupLimitExceededViolation"))
|
739
823
|
ResourceViolation.add_member(:possible_remediation_actions, Shapes::ShapeRef.new(shape: PossibleRemediationActions, location_name: "PossibleRemediationActions"))
|
824
|
+
ResourceViolation.add_member(:firewall_subnet_is_out_of_scope_violation, Shapes::ShapeRef.new(shape: FirewallSubnetIsOutOfScopeViolation, location_name: "FirewallSubnetIsOutOfScopeViolation"))
|
825
|
+
ResourceViolation.add_member(:route_has_out_of_scope_endpoint_violation, Shapes::ShapeRef.new(shape: RouteHasOutOfScopeEndpointViolation, location_name: "RouteHasOutOfScopeEndpointViolation"))
|
826
|
+
ResourceViolation.add_member(:third_party_firewall_missing_firewall_violation, Shapes::ShapeRef.new(shape: ThirdPartyFirewallMissingFirewallViolation, location_name: "ThirdPartyFirewallMissingFirewallViolation"))
|
827
|
+
ResourceViolation.add_member(:third_party_firewall_missing_subnet_violation, Shapes::ShapeRef.new(shape: ThirdPartyFirewallMissingSubnetViolation, location_name: "ThirdPartyFirewallMissingSubnetViolation"))
|
828
|
+
ResourceViolation.add_member(:third_party_firewall_missing_expected_route_table_violation, Shapes::ShapeRef.new(shape: ThirdPartyFirewallMissingExpectedRouteTableViolation, location_name: "ThirdPartyFirewallMissingExpectedRouteTableViolation"))
|
829
|
+
ResourceViolation.add_member(:firewall_subnet_missing_vpc_endpoint_violation, Shapes::ShapeRef.new(shape: FirewallSubnetMissingVPCEndpointViolation, location_name: "FirewallSubnetMissingVPCEndpointViolation"))
|
740
830
|
ResourceViolation.struct_class = Types::ResourceViolation
|
741
831
|
|
742
832
|
ResourceViolations.member = Shapes::ShapeRef.new(shape: ResourceViolation)
|
@@ -747,6 +837,20 @@ module Aws::FMS
|
|
747
837
|
Route.add_member(:target, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "Target"))
|
748
838
|
Route.struct_class = Types::Route
|
749
839
|
|
840
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:subnet_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "SubnetId"))
|
841
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:vpc_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VpcId"))
|
842
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:route_table_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "RouteTableId"))
|
843
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:violating_routes, Shapes::ShapeRef.new(shape: Routes, location_name: "ViolatingRoutes"))
|
844
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "SubnetAvailabilityZone"))
|
845
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:subnet_availability_zone_id, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "SubnetAvailabilityZoneId"))
|
846
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:current_firewall_subnet_route_table, Shapes::ShapeRef.new(shape: ResourceId, location_name: "CurrentFirewallSubnetRouteTable"))
|
847
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:firewall_subnet_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "FirewallSubnetId"))
|
848
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:firewall_subnet_routes, Shapes::ShapeRef.new(shape: Routes, location_name: "FirewallSubnetRoutes"))
|
849
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:internet_gateway_id, Shapes::ShapeRef.new(shape: ResourceId, location_name: "InternetGatewayId"))
|
850
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:current_internet_gateway_route_table, Shapes::ShapeRef.new(shape: ResourceId, location_name: "CurrentInternetGatewayRouteTable"))
|
851
|
+
RouteHasOutOfScopeEndpointViolation.add_member(:internet_gateway_routes, Shapes::ShapeRef.new(shape: Routes, location_name: "InternetGatewayRoutes"))
|
852
|
+
RouteHasOutOfScopeEndpointViolation.struct_class = Types::RouteHasOutOfScopeEndpointViolation
|
853
|
+
|
750
854
|
Routes.member = Shapes::ShapeRef.new(shape: Route)
|
751
855
|
|
752
856
|
SecurityGroupRemediationAction.add_member(:remediation_action_type, Shapes::ShapeRef.new(shape: RemediationActionType, location_name: "RemediationActionType"))
|
@@ -767,6 +871,7 @@ module Aws::FMS
|
|
767
871
|
|
768
872
|
SecurityServicePolicyData.add_member(:type, Shapes::ShapeRef.new(shape: SecurityServiceType, required: true, location_name: "Type"))
|
769
873
|
SecurityServicePolicyData.add_member(:managed_service_data, Shapes::ShapeRef.new(shape: ManagedServiceData, location_name: "ManagedServiceData"))
|
874
|
+
SecurityServicePolicyData.add_member(:policy_option, Shapes::ShapeRef.new(shape: PolicyOption, location_name: "PolicyOption"))
|
770
875
|
SecurityServicePolicyData.struct_class = Types::SecurityServicePolicyData
|
771
876
|
|
772
877
|
StatefulRuleGroup.add_member(:rule_group_name, Shapes::ShapeRef.new(shape: NetworkFirewallResourceName, location_name: "RuleGroupName"))
|
@@ -798,6 +903,34 @@ module Aws::FMS
|
|
798
903
|
|
799
904
|
TargetViolationReasons.member = Shapes::ShapeRef.new(shape: TargetViolationReason)
|
800
905
|
|
906
|
+
ThirdPartyFirewallFirewallPolicies.member = Shapes::ShapeRef.new(shape: ThirdPartyFirewallFirewallPolicy)
|
907
|
+
|
908
|
+
ThirdPartyFirewallFirewallPolicy.add_member(:firewall_policy_id, Shapes::ShapeRef.new(shape: FirewallPolicyId, location_name: "FirewallPolicyId"))
|
909
|
+
ThirdPartyFirewallFirewallPolicy.add_member(:firewall_policy_name, Shapes::ShapeRef.new(shape: FirewallPolicyName, location_name: "FirewallPolicyName"))
|
910
|
+
ThirdPartyFirewallFirewallPolicy.struct_class = Types::ThirdPartyFirewallFirewallPolicy
|
911
|
+
|
912
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation.add_member(:violation_target, Shapes::ShapeRef.new(shape: ViolationTarget, location_name: "ViolationTarget"))
|
913
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation.add_member(:vpc, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VPC"))
|
914
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation.add_member(:availability_zone, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "AvailabilityZone"))
|
915
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation.add_member(:current_route_table, Shapes::ShapeRef.new(shape: ResourceId, location_name: "CurrentRouteTable"))
|
916
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation.add_member(:expected_route_table, Shapes::ShapeRef.new(shape: ResourceId, location_name: "ExpectedRouteTable"))
|
917
|
+
ThirdPartyFirewallMissingExpectedRouteTableViolation.struct_class = Types::ThirdPartyFirewallMissingExpectedRouteTableViolation
|
918
|
+
|
919
|
+
ThirdPartyFirewallMissingFirewallViolation.add_member(:violation_target, Shapes::ShapeRef.new(shape: ViolationTarget, location_name: "ViolationTarget"))
|
920
|
+
ThirdPartyFirewallMissingFirewallViolation.add_member(:vpc, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VPC"))
|
921
|
+
ThirdPartyFirewallMissingFirewallViolation.add_member(:availability_zone, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "AvailabilityZone"))
|
922
|
+
ThirdPartyFirewallMissingFirewallViolation.add_member(:target_violation_reason, Shapes::ShapeRef.new(shape: TargetViolationReason, location_name: "TargetViolationReason"))
|
923
|
+
ThirdPartyFirewallMissingFirewallViolation.struct_class = Types::ThirdPartyFirewallMissingFirewallViolation
|
924
|
+
|
925
|
+
ThirdPartyFirewallMissingSubnetViolation.add_member(:violation_target, Shapes::ShapeRef.new(shape: ViolationTarget, location_name: "ViolationTarget"))
|
926
|
+
ThirdPartyFirewallMissingSubnetViolation.add_member(:vpc, Shapes::ShapeRef.new(shape: ResourceId, location_name: "VPC"))
|
927
|
+
ThirdPartyFirewallMissingSubnetViolation.add_member(:availability_zone, Shapes::ShapeRef.new(shape: LengthBoundedString, location_name: "AvailabilityZone"))
|
928
|
+
ThirdPartyFirewallMissingSubnetViolation.add_member(:target_violation_reason, Shapes::ShapeRef.new(shape: TargetViolationReason, location_name: "TargetViolationReason"))
|
929
|
+
ThirdPartyFirewallMissingSubnetViolation.struct_class = Types::ThirdPartyFirewallMissingSubnetViolation
|
930
|
+
|
931
|
+
ThirdPartyFirewallPolicy.add_member(:firewall_deployment_model, Shapes::ShapeRef.new(shape: FirewallDeploymentModel, location_name: "FirewallDeploymentModel"))
|
932
|
+
ThirdPartyFirewallPolicy.struct_class = Types::ThirdPartyFirewallPolicy
|
933
|
+
|
801
934
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location_name: "ResourceArn"))
|
802
935
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location_name: "TagKeys"))
|
803
936
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -845,6 +978,18 @@ module Aws::FMS
|
|
845
978
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
846
979
|
end)
|
847
980
|
|
981
|
+
api.add_operation(:associate_third_party_firewall, Seahorse::Model::Operation.new.tap do |o|
|
982
|
+
o.name = "AssociateThirdPartyFirewall"
|
983
|
+
o.http_method = "POST"
|
984
|
+
o.http_request_uri = "/"
|
985
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateThirdPartyFirewallRequest)
|
986
|
+
o.output = Shapes::ShapeRef.new(shape: AssociateThirdPartyFirewallResponse)
|
987
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
988
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
989
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
990
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
991
|
+
end)
|
992
|
+
|
848
993
|
api.add_operation(:delete_apps_list, Seahorse::Model::Operation.new.tap do |o|
|
849
994
|
o.name = "DeleteAppsList"
|
850
995
|
o.http_method = "POST"
|
@@ -902,6 +1047,18 @@ module Aws::FMS
|
|
902
1047
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
903
1048
|
end)
|
904
1049
|
|
1050
|
+
api.add_operation(:disassociate_third_party_firewall, Seahorse::Model::Operation.new.tap do |o|
|
1051
|
+
o.name = "DisassociateThirdPartyFirewall"
|
1052
|
+
o.http_method = "POST"
|
1053
|
+
o.http_request_uri = "/"
|
1054
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateThirdPartyFirewallRequest)
|
1055
|
+
o.output = Shapes::ShapeRef.new(shape: DisassociateThirdPartyFirewallResponse)
|
1056
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1057
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1058
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1059
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
1060
|
+
end)
|
1061
|
+
|
905
1062
|
api.add_operation(:get_admin_account, Seahorse::Model::Operation.new.tap do |o|
|
906
1063
|
o.name = "GetAdminAccount"
|
907
1064
|
o.http_method = "POST"
|
@@ -981,6 +1138,18 @@ module Aws::FMS
|
|
981
1138
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
982
1139
|
end)
|
983
1140
|
|
1141
|
+
api.add_operation(:get_third_party_firewall_association_status, Seahorse::Model::Operation.new.tap do |o|
|
1142
|
+
o.name = "GetThirdPartyFirewallAssociationStatus"
|
1143
|
+
o.http_method = "POST"
|
1144
|
+
o.http_request_uri = "/"
|
1145
|
+
o.input = Shapes::ShapeRef.new(shape: GetThirdPartyFirewallAssociationStatusRequest)
|
1146
|
+
o.output = Shapes::ShapeRef.new(shape: GetThirdPartyFirewallAssociationStatusResponse)
|
1147
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1148
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1149
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1150
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
1151
|
+
end)
|
1152
|
+
|
984
1153
|
api.add_operation(:get_violation_details, Seahorse::Model::Operation.new.tap do |o|
|
985
1154
|
o.name = "GetViolationDetails"
|
986
1155
|
o.http_method = "POST"
|
@@ -1089,6 +1258,24 @@ module Aws::FMS
|
|
1089
1258
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1090
1259
|
end)
|
1091
1260
|
|
1261
|
+
api.add_operation(:list_third_party_firewall_firewall_policies, Seahorse::Model::Operation.new.tap do |o|
|
1262
|
+
o.name = "ListThirdPartyFirewallFirewallPolicies"
|
1263
|
+
o.http_method = "POST"
|
1264
|
+
o.http_request_uri = "/"
|
1265
|
+
o.input = Shapes::ShapeRef.new(shape: ListThirdPartyFirewallFirewallPoliciesRequest)
|
1266
|
+
o.output = Shapes::ShapeRef.new(shape: ListThirdPartyFirewallFirewallPoliciesResponse)
|
1267
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1268
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
1269
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1270
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
1271
|
+
o[:pager] = Aws::Pager.new(
|
1272
|
+
limit_key: "max_results",
|
1273
|
+
tokens: {
|
1274
|
+
"next_token" => "next_token"
|
1275
|
+
}
|
1276
|
+
)
|
1277
|
+
end)
|
1278
|
+
|
1092
1279
|
api.add_operation(:put_apps_list, Seahorse::Model::Operation.new.tap do |o|
|
1093
1280
|
o.name = "PutAppsList"
|
1094
1281
|
o.http_method = "POST"
|