aws-sdk-fms 1.22.0 → 1.27.1
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 +5 -5
- data/lib/aws-sdk-fms.rb +1 -1
- data/lib/aws-sdk-fms/client.rb +45 -31
- data/lib/aws-sdk-fms/resource.rb +1 -7
- data/lib/aws-sdk-fms/types.rb +66 -21
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0366eb26aefdeb6d0fe60c7a73422694a864fa8d695d153e58ca2df28aed0c56
|
4
|
+
data.tar.gz: 72bd365ba013a4a1eef4bfcc968f700e8c9ea94eb2f425270bc58f7e5d24241e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c73d54364ed8d2b9e39f603cd46ce73991dc7e4b14fcad4e430198b6ca05817a04d3495dd4958c92dc5119f4d7f2367cbce5320b17c62bae47900d8cceea52da
|
7
|
+
data.tar.gz: 17bcf64a591e0d1b7b4b3ae22f5362da84d1ce22aa4c4afd5ecf8e7e0ed9818268f58713d21437f091d84c9e1b23a66c478963c822f45ccabc21dcf19b710606
|
data/lib/aws-sdk-fms.rb
CHANGED
data/lib/aws-sdk-fms/client.rb
CHANGED
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
30
|
|
@@ -32,11 +33,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:fms)
|
|
32
33
|
module Aws::FMS
|
33
34
|
# An API client for FMS. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
35
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
36
|
+
# client = Aws::FMS::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
40
41
|
#
|
41
42
|
# For details on configuring region and credentials see
|
42
43
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +70,7 @@ module Aws::FMS
|
|
69
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
75
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
76
|
|
@@ -105,7 +107,7 @@ module Aws::FMS
|
|
105
107
|
# @option options [required, String] :region
|
106
108
|
# The AWS region to connect to. The configured `:region` is
|
107
109
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
109
111
|
#
|
110
112
|
# * `Aws.config[:region]`
|
111
113
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +163,7 @@ module Aws::FMS
|
|
161
163
|
# @option options [String] :endpoint
|
162
164
|
# The client endpoint is normally constructed from the `:region`
|
163
165
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
167
|
#
|
166
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +178,7 @@ module Aws::FMS
|
|
176
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
179
|
#
|
178
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
182
|
#
|
181
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
184
|
# The log formatter.
|
@@ -229,15 +231,19 @@ module Aws::FMS
|
|
229
231
|
#
|
230
232
|
# @option options [String] :retry_mode ("legacy")
|
231
233
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
241
247
|
#
|
242
248
|
# @option options [String] :secret_access_key
|
243
249
|
#
|
@@ -275,8 +281,7 @@ module Aws::FMS
|
|
275
281
|
#
|
276
282
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
283
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
284
|
+
# safely be set per-request on the session.
|
280
285
|
#
|
281
286
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
287
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +293,7 @@ module Aws::FMS
|
|
288
293
|
# request body. This option has no effect unless the request has
|
289
294
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
295
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
296
|
+
# request on the session.
|
292
297
|
#
|
293
298
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
299
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -555,7 +560,7 @@ module Aws::FMS
|
|
555
560
|
# resp.policy.policy_id #=> String
|
556
561
|
# resp.policy.policy_name #=> String
|
557
562
|
# resp.policy.policy_update_token #=> String
|
558
|
-
# resp.policy.security_service_policy_data.type #=> String, one of "WAF", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
563
|
+
# resp.policy.security_service_policy_data.type #=> String, one of "WAF", "WAFV2", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
559
564
|
# resp.policy.security_service_policy_data.managed_service_data #=> String
|
560
565
|
# resp.policy.resource_type #=> String
|
561
566
|
# resp.policy.resource_type_list #=> Array
|
@@ -641,7 +646,7 @@ module Aws::FMS
|
|
641
646
|
# @example Response structure
|
642
647
|
#
|
643
648
|
# resp.admin_account_id #=> String
|
644
|
-
# resp.service_type #=> String, one of "WAF", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
649
|
+
# resp.service_type #=> String, one of "WAF", "WAFV2", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
645
650
|
# resp.data #=> String
|
646
651
|
# resp.next_token #=> String
|
647
652
|
#
|
@@ -684,6 +689,8 @@ module Aws::FMS
|
|
684
689
|
# * {Types::ListComplianceStatusResponse#policy_compliance_status_list #policy_compliance_status_list} => Array<Types::PolicyComplianceStatus>
|
685
690
|
# * {Types::ListComplianceStatusResponse#next_token #next_token} => String
|
686
691
|
#
|
692
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
693
|
+
#
|
687
694
|
# @example Request syntax with placeholder values
|
688
695
|
#
|
689
696
|
# resp = client.list_compliance_status({
|
@@ -744,6 +751,8 @@ module Aws::FMS
|
|
744
751
|
# * {Types::ListMemberAccountsResponse#member_accounts #member_accounts} => Array<String>
|
745
752
|
# * {Types::ListMemberAccountsResponse#next_token #next_token} => String
|
746
753
|
#
|
754
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
755
|
+
#
|
747
756
|
# @example Request syntax with placeholder values
|
748
757
|
#
|
749
758
|
# resp = client.list_member_accounts({
|
@@ -789,6 +798,8 @@ module Aws::FMS
|
|
789
798
|
# * {Types::ListPoliciesResponse#policy_list #policy_list} => Array<Types::PolicySummary>
|
790
799
|
# * {Types::ListPoliciesResponse#next_token #next_token} => String
|
791
800
|
#
|
801
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
802
|
+
#
|
792
803
|
# @example Request syntax with placeholder values
|
793
804
|
#
|
794
805
|
# resp = client.list_policies({
|
@@ -803,7 +814,7 @@ module Aws::FMS
|
|
803
814
|
# resp.policy_list[0].policy_id #=> String
|
804
815
|
# resp.policy_list[0].policy_name #=> String
|
805
816
|
# resp.policy_list[0].resource_type #=> String
|
806
|
-
# resp.policy_list[0].security_service_type #=> String, one of "WAF", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
817
|
+
# resp.policy_list[0].security_service_type #=> String, one of "WAF", "WAFV2", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
807
818
|
# resp.policy_list[0].remediation_enabled #=> Boolean
|
808
819
|
# resp.next_token #=> String
|
809
820
|
#
|
@@ -884,15 +895,18 @@ module Aws::FMS
|
|
884
895
|
# * A Shield Advanced policy, which applies Shield Advanced protection
|
885
896
|
# to specified accounts and resources
|
886
897
|
#
|
887
|
-
# * An AWS WAF policy, which
|
888
|
-
#
|
898
|
+
# * An AWS WAF policy (type WAFV2), which defines rule groups to run
|
899
|
+
# first in the corresponding AWS WAF web ACL and rule groups to run
|
900
|
+
# last in the web ACL.
|
901
|
+
#
|
902
|
+
# * An AWS WAF Classic policy (type WAF), which defines a rule group.
|
889
903
|
#
|
890
904
|
# * A security group policy, which manages VPC security groups across
|
891
905
|
# your AWS organization.
|
892
906
|
#
|
893
|
-
# Each policy is specific to one of the
|
894
|
-
#
|
895
|
-
#
|
907
|
+
# Each policy is specific to one of the types. If you want to enforce
|
908
|
+
# more than one policy type across accounts, create multiple policies.
|
909
|
+
# You can create multiple policies for each type.
|
896
910
|
#
|
897
911
|
# You must be subscribed to Shield Advanced to create a Shield Advanced
|
898
912
|
# policy. For more information about subscribing to Shield Advanced, see
|
@@ -921,7 +935,7 @@ module Aws::FMS
|
|
921
935
|
# policy_name: "ResourceName", # required
|
922
936
|
# policy_update_token: "PolicyUpdateToken",
|
923
937
|
# security_service_policy_data: { # required
|
924
|
-
# type: "WAF", # required, accepts WAF, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
938
|
+
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
925
939
|
# managed_service_data: "ManagedServiceData",
|
926
940
|
# },
|
927
941
|
# resource_type: "ResourceType", # required
|
@@ -954,7 +968,7 @@ module Aws::FMS
|
|
954
968
|
# resp.policy.policy_id #=> String
|
955
969
|
# resp.policy.policy_name #=> String
|
956
970
|
# resp.policy.policy_update_token #=> String
|
957
|
-
# resp.policy.security_service_policy_data.type #=> String, one of "WAF", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
971
|
+
# resp.policy.security_service_policy_data.type #=> String, one of "WAF", "WAFV2", "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", "SECURITY_GROUPS_USAGE_AUDIT"
|
958
972
|
# resp.policy.security_service_policy_data.managed_service_data #=> String
|
959
973
|
# resp.policy.resource_type #=> String
|
960
974
|
# resp.policy.resource_type_list #=> Array
|
@@ -1055,7 +1069,7 @@ module Aws::FMS
|
|
1055
1069
|
params: params,
|
1056
1070
|
config: config)
|
1057
1071
|
context[:gem_name] = 'aws-sdk-fms'
|
1058
|
-
context[:gem_version] = '1.
|
1072
|
+
context[:gem_version] = '1.27.1'
|
1059
1073
|
Seahorse::Client::Request.new(handlers, context)
|
1060
1074
|
end
|
1061
1075
|
|
data/lib/aws-sdk-fms/resource.rb
CHANGED
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::FMS
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::FMS::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::FMS::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::FMS::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
data/lib/aws-sdk-fms/types.rb
CHANGED
@@ -681,7 +681,7 @@ module Aws::FMS
|
|
681
681
|
# policy_name: "ResourceName", # required
|
682
682
|
# policy_update_token: "PolicyUpdateToken",
|
683
683
|
# security_service_policy_data: { # required
|
684
|
-
# type: "WAF", # required, accepts WAF, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
684
|
+
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
685
685
|
# managed_service_data: "ManagedServiceData",
|
686
686
|
# },
|
687
687
|
# resource_type: "ResourceType", # required
|
@@ -762,24 +762,63 @@ module Aws::FMS
|
|
762
762
|
# @return [Boolean]
|
763
763
|
#
|
764
764
|
# @!attribute [rw] include_map
|
765
|
-
# Specifies the AWS account IDs
|
766
|
-
#
|
767
|
-
#
|
768
|
-
#
|
769
|
-
#
|
770
|
-
#
|
771
|
-
#
|
765
|
+
# Specifies the AWS account IDs and AWS Organizations organizational
|
766
|
+
# units (OUs) to include in the policy. Specifying an OU is the
|
767
|
+
# equivalent of specifying all accounts in the OU and in any of its
|
768
|
+
# child OUs, including any child OUs and accounts that are added at a
|
769
|
+
# later time.
|
770
|
+
#
|
771
|
+
# You can specify inclusions or exclusions, but not both. If you
|
772
|
+
# specify an `IncludeMap`, AWS Firewall Manager applies the policy to
|
773
|
+
# all accounts specified by the `IncludeMap`, and does not evaluate
|
774
|
+
# any `ExcludeMap` specifications. If you do not specify an
|
775
|
+
# `IncludeMap`, then Firewall Manager applies the policy to all
|
776
|
+
# accounts except for those specified by the `ExcludeMap`.
|
777
|
+
#
|
778
|
+
# You can specify account IDs, OUs, or a combination:
|
779
|
+
#
|
780
|
+
# * Specify account IDs by setting the key to `ACCOUNT`. For example,
|
781
|
+
# the following is a valid map: `\{“ACCOUNT” : [“accountID1”,
|
782
|
+
# “accountID2”]\}`.
|
783
|
+
#
|
784
|
+
# * Specify OUs by setting the key to `ORG_UNIT`. For example, the
|
785
|
+
# following is a valid map: `\{“ORG_UNIT” : [“ouid111”,
|
786
|
+
# “ouid112”]\}`.
|
787
|
+
#
|
788
|
+
# * Specify accounts and OUs together in a single map, separated with
|
789
|
+
# a comma. For example, the following is a valid map: `\{“ACCOUNT” :
|
790
|
+
# [“accountID1”, “accountID2”], “ORG_UNIT” : [“ouid111”,
|
791
|
+
# “ouid112”]\}`.
|
772
792
|
# @return [Hash<String,Array<String>>]
|
773
793
|
#
|
774
794
|
# @!attribute [rw] exclude_map
|
775
|
-
# Specifies the AWS account IDs
|
776
|
-
#
|
777
|
-
#
|
778
|
-
#
|
779
|
-
#
|
780
|
-
#
|
781
|
-
#
|
782
|
-
#
|
795
|
+
# Specifies the AWS account IDs and AWS Organizations organizational
|
796
|
+
# units (OUs) to exclude from the policy. Specifying an OU is the
|
797
|
+
# equivalent of specifying all accounts in the OU and in any of its
|
798
|
+
# child OUs, including any child OUs and accounts that are added at a
|
799
|
+
# later time.
|
800
|
+
#
|
801
|
+
# You can specify inclusions or exclusions, but not both. If you
|
802
|
+
# specify an `IncludeMap`, AWS Firewall Manager applies the policy to
|
803
|
+
# all accounts specified by the `IncludeMap`, and does not evaluate
|
804
|
+
# any `ExcludeMap` specifications. If you do not specify an
|
805
|
+
# `IncludeMap`, then Firewall Manager applies the policy to all
|
806
|
+
# accounts except for those specified by the `ExcludeMap`.
|
807
|
+
#
|
808
|
+
# You can specify account IDs, OUs, or a combination:
|
809
|
+
#
|
810
|
+
# * Specify account IDs by setting the key to `ACCOUNT`. For example,
|
811
|
+
# the following is a valid map: `\{“ACCOUNT” : [“accountID1”,
|
812
|
+
# “accountID2”]\}`.
|
813
|
+
#
|
814
|
+
# * Specify OUs by setting the key to `ORG_UNIT`. For example, the
|
815
|
+
# following is a valid map: `\{“ORG_UNIT” : [“ouid111”,
|
816
|
+
# “ouid112”]\}`.
|
817
|
+
#
|
818
|
+
# * Specify accounts and OUs together in a single map, separated with
|
819
|
+
# a comma. For example, the following is a valid map: `\{“ACCOUNT” :
|
820
|
+
# [“accountID1”, “accountID2”], “ORG_UNIT” : [“ouid111”,
|
821
|
+
# “ouid112”]\}`.
|
783
822
|
# @return [Hash<String,Array<String>>]
|
784
823
|
#
|
785
824
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/Policy AWS API Documentation
|
@@ -992,7 +1031,7 @@ module Aws::FMS
|
|
992
1031
|
# policy_name: "ResourceName", # required
|
993
1032
|
# policy_update_token: "PolicyUpdateToken",
|
994
1033
|
# security_service_policy_data: { # required
|
995
|
-
# type: "WAF", # required, accepts WAF, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
1034
|
+
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
996
1035
|
# managed_service_data: "ManagedServiceData",
|
997
1036
|
# },
|
998
1037
|
# resource_type: "ResourceType", # required
|
@@ -1109,7 +1148,7 @@ module Aws::FMS
|
|
1109
1148
|
# data as a hash:
|
1110
1149
|
#
|
1111
1150
|
# {
|
1112
|
-
# type: "WAF", # required, accepts WAF, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
1151
|
+
# type: "WAF", # required, accepts WAF, WAFV2, SHIELD_ADVANCED, SECURITY_GROUPS_COMMON, SECURITY_GROUPS_CONTENT_AUDIT, SECURITY_GROUPS_USAGE_AUDIT
|
1113
1152
|
# managed_service_data: "ManagedServiceData",
|
1114
1153
|
# }
|
1115
1154
|
#
|
@@ -1128,16 +1167,22 @@ module Aws::FMS
|
|
1128
1167
|
# JSON format. For service type `SHIELD_ADVANCED`, this is an empty
|
1129
1168
|
# string.
|
1130
1169
|
#
|
1131
|
-
# * Example: `
|
1170
|
+
# * Example: `WAFV2`
|
1171
|
+
#
|
1172
|
+
# `"ManagedServiceData":
|
1173
|
+
# "\{"type":"WAFV2","defaultAction":\{"type":"ALLOW"\},"preProcessRuleGroups":[\{"managedRuleGroupIdentifier":null,"ruleGroupArn":"rulegrouparn","overrideAction":\{"type":"COUNT"\},"excludedRules":[\{"name":"EntityName"\}],"ruleGroupType":"RuleGroup"\}],"postProcessRuleGroups":[\{"managedRuleGroupIdentifier":\{"managedRuleGroupName":"AWSManagedRulesAdminProtectionRuleSet","vendor":"AWS"\},"ruleGroupArn":"rulegrouparn","overrideAction":\{"type":"NONE"\},"excludedRules":[],"ruleGroupType":"ManagedRuleGroup"\}],"overrideCustomerWebACLAssociation":false\}"`
|
1174
|
+
#
|
1175
|
+
# * Example: `WAF Classic`
|
1132
1176
|
#
|
1133
|
-
# `ManagedServiceData": "\{"type": "WAF", "ruleGroups":
|
1177
|
+
# `"ManagedServiceData": "\{"type": "WAF", "ruleGroups":
|
1134
1178
|
# [\{"id": "12345678-1bcd-9012-efga-0987654321ab",
|
1135
1179
|
# "overrideAction" : \{"type": "COUNT"\}\}],
|
1136
1180
|
# "defaultAction": \{"type": "BLOCK"\}\}`
|
1137
1181
|
#
|
1138
1182
|
# * Example: `SECURITY_GROUPS_COMMON`
|
1139
1183
|
#
|
1140
|
-
# `"SecurityServicePolicyData":\{"Type":"SECURITY_GROUPS_COMMON","ManagedServiceData":"\{"type":"SECURITY_GROUPS_COMMON","revertManualSecurityGroupChanges":false,"exclusiveResourceSecurityGroupManagement":false,
|
1184
|
+
# `"SecurityServicePolicyData":\{"Type":"SECURITY_GROUPS_COMMON","ManagedServiceData":"\{"type":"SECURITY_GROUPS_COMMON","revertManualSecurityGroupChanges":false,"exclusiveResourceSecurityGroupManagement":false,
|
1185
|
+
# "applyToAllEC2InstanceENIs":false,"securityGroups":[\{"id":"
|
1141
1186
|
# sg-000e55995d61a06bd"\}]\}"\},"RemediationEnabled":false,"ResourceType":"AWS::EC2::NetworkInterface"\}`
|
1142
1187
|
#
|
1143
1188
|
# * Example: `SECURITY_GROUPS_CONTENT_AUDIT`
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - FMS
|