aws-sdk-fms 1.51.0 → 1.53.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fms/client.rb +364 -6
- data/lib/aws-sdk-fms/client_api.rb +239 -0
- data/lib/aws-sdk-fms/endpoints.rb +112 -0
- data/lib/aws-sdk-fms/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-fms/types.rb +658 -55
- data/lib/aws-sdk-fms.rb +1 -1
- metadata +2 -2
@@ -60,6 +60,10 @@ module Aws::FMS
|
|
60
60
|
Aws::FMS::Endpoints::AssociateAdminAccount.build(context)
|
61
61
|
when :associate_third_party_firewall
|
62
62
|
Aws::FMS::Endpoints::AssociateThirdPartyFirewall.build(context)
|
63
|
+
when :batch_associate_resource
|
64
|
+
Aws::FMS::Endpoints::BatchAssociateResource.build(context)
|
65
|
+
when :batch_disassociate_resource
|
66
|
+
Aws::FMS::Endpoints::BatchDisassociateResource.build(context)
|
63
67
|
when :delete_apps_list
|
64
68
|
Aws::FMS::Endpoints::DeleteAppsList.build(context)
|
65
69
|
when :delete_notification_channel
|
@@ -68,6 +72,8 @@ module Aws::FMS
|
|
68
72
|
Aws::FMS::Endpoints::DeletePolicy.build(context)
|
69
73
|
when :delete_protocols_list
|
70
74
|
Aws::FMS::Endpoints::DeleteProtocolsList.build(context)
|
75
|
+
when :delete_resource_set
|
76
|
+
Aws::FMS::Endpoints::DeleteResourceSet.build(context)
|
71
77
|
when :disassociate_admin_account
|
72
78
|
Aws::FMS::Endpoints::DisassociateAdminAccount.build(context)
|
73
79
|
when :disassociate_third_party_firewall
|
@@ -86,6 +92,8 @@ module Aws::FMS
|
|
86
92
|
Aws::FMS::Endpoints::GetProtectionStatus.build(context)
|
87
93
|
when :get_protocols_list
|
88
94
|
Aws::FMS::Endpoints::GetProtocolsList.build(context)
|
95
|
+
when :get_resource_set
|
96
|
+
Aws::FMS::Endpoints::GetResourceSet.build(context)
|
89
97
|
when :get_third_party_firewall_association_status
|
90
98
|
Aws::FMS::Endpoints::GetThirdPartyFirewallAssociationStatus.build(context)
|
91
99
|
when :get_violation_details
|
@@ -94,12 +102,18 @@ module Aws::FMS
|
|
94
102
|
Aws::FMS::Endpoints::ListAppsLists.build(context)
|
95
103
|
when :list_compliance_status
|
96
104
|
Aws::FMS::Endpoints::ListComplianceStatus.build(context)
|
105
|
+
when :list_discovered_resources
|
106
|
+
Aws::FMS::Endpoints::ListDiscoveredResources.build(context)
|
97
107
|
when :list_member_accounts
|
98
108
|
Aws::FMS::Endpoints::ListMemberAccounts.build(context)
|
99
109
|
when :list_policies
|
100
110
|
Aws::FMS::Endpoints::ListPolicies.build(context)
|
101
111
|
when :list_protocols_lists
|
102
112
|
Aws::FMS::Endpoints::ListProtocolsLists.build(context)
|
113
|
+
when :list_resource_set_resources
|
114
|
+
Aws::FMS::Endpoints::ListResourceSetResources.build(context)
|
115
|
+
when :list_resource_sets
|
116
|
+
Aws::FMS::Endpoints::ListResourceSets.build(context)
|
103
117
|
when :list_tags_for_resource
|
104
118
|
Aws::FMS::Endpoints::ListTagsForResource.build(context)
|
105
119
|
when :list_third_party_firewall_firewall_policies
|
@@ -112,6 +126,8 @@ module Aws::FMS
|
|
112
126
|
Aws::FMS::Endpoints::PutPolicy.build(context)
|
113
127
|
when :put_protocols_list
|
114
128
|
Aws::FMS::Endpoints::PutProtocolsList.build(context)
|
129
|
+
when :put_resource_set
|
130
|
+
Aws::FMS::Endpoints::PutResourceSet.build(context)
|
115
131
|
when :tag_resource
|
116
132
|
Aws::FMS::Endpoints::TagResource.build(context)
|
117
133
|
when :untag_resource
|