aws-sdk-fms 1.23.0 → 1.28.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 +5 -5
- data/lib/aws-sdk-fms.rb +3 -1
- data/lib/aws-sdk-fms/client.rb +16 -9
- data/lib/aws-sdk-fms/client_api.rb +2 -0
- data/lib/aws-sdk-fms/errors.rb +2 -0
- data/lib/aws-sdk-fms/resource.rb +2 -0
- data/lib/aws-sdk-fms/types.rb +100 -32
- 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: fd3c325fe3f0443a39a04cfb307d7cf7c388e3c2a27bd2da10309eb69ad53b30
|
4
|
+
data.tar.gz: f6664ecc32066e20f5a599b014a0e9b847d76aff8f76a7c96ff7efd584b30fad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fc6f05405a8799f32c612e86074036fcf3fa1dfee2f3de8519d1ec228c3d8238642ca11db0f382622aa25a0a0f14674194f4c5273853e4a718914fd9248819d
|
7
|
+
data.tar.gz: 8691dc3e850b1a7fa129073de98526bf9ac76c3c110ede590734fa31289903b919d3c71bc915478ab93f847847ffceaccee02c71d383512cbd4358b9ff310ae5
|
data/lib/aws-sdk-fms.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-fms/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::FMS
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.28.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-fms/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::FMS
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::FMS
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::FMS
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::FMS
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -893,15 +897,18 @@ module Aws::FMS
|
|
893
897
|
# * A Shield Advanced policy, which applies Shield Advanced protection
|
894
898
|
# to specified accounts and resources
|
895
899
|
#
|
896
|
-
# * An AWS WAF policy, which
|
897
|
-
#
|
900
|
+
# * An AWS WAF policy (type WAFV2), which defines rule groups to run
|
901
|
+
# first in the corresponding AWS WAF web ACL and rule groups to run
|
902
|
+
# last in the web ACL.
|
903
|
+
#
|
904
|
+
# * An AWS WAF Classic policy (type WAF), which defines a rule group.
|
898
905
|
#
|
899
906
|
# * A security group policy, which manages VPC security groups across
|
900
907
|
# your AWS organization.
|
901
908
|
#
|
902
|
-
# Each policy is specific to one of the
|
903
|
-
#
|
904
|
-
#
|
909
|
+
# Each policy is specific to one of the types. If you want to enforce
|
910
|
+
# more than one policy type across accounts, create multiple policies.
|
911
|
+
# You can create multiple policies for each type.
|
905
912
|
#
|
906
913
|
# You must be subscribed to Shield Advanced to create a Shield Advanced
|
907
914
|
# policy. For more information about subscribing to Shield Advanced, see
|
@@ -1064,7 +1071,7 @@ module Aws::FMS
|
|
1064
1071
|
params: params,
|
1065
1072
|
config: config)
|
1066
1073
|
context[:gem_name] = 'aws-sdk-fms'
|
1067
|
-
context[:gem_version] = '1.
|
1074
|
+
context[:gem_version] = '1.28.0'
|
1068
1075
|
Seahorse::Client::Request.new(handlers, context)
|
1069
1076
|
end
|
1070
1077
|
|
data/lib/aws-sdk-fms/errors.rb
CHANGED
data/lib/aws-sdk-fms/resource.rb
CHANGED
data/lib/aws-sdk-fms/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::FMS
|
|
31
33
|
#
|
32
34
|
class AssociateAdminAccountRequest < Struct.new(
|
33
35
|
:admin_account)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -61,6 +64,7 @@ module Aws::FMS
|
|
61
64
|
:resource_id,
|
62
65
|
:violation_reason,
|
63
66
|
:resource_type)
|
67
|
+
SENSITIVE = []
|
64
68
|
include Aws::Structure
|
65
69
|
end
|
66
70
|
|
@@ -120,6 +124,7 @@ module Aws::FMS
|
|
120
124
|
class DeletePolicyRequest < Struct.new(
|
121
125
|
:policy_id,
|
122
126
|
:delete_all_policy_resources)
|
127
|
+
SENSITIVE = []
|
123
128
|
include Aws::Structure
|
124
129
|
end
|
125
130
|
|
@@ -159,6 +164,7 @@ module Aws::FMS
|
|
159
164
|
:compliance_status,
|
160
165
|
:violator_count,
|
161
166
|
:evaluation_limit_exceeded)
|
167
|
+
SENSITIVE = []
|
162
168
|
include Aws::Structure
|
163
169
|
end
|
164
170
|
|
@@ -183,6 +189,7 @@ module Aws::FMS
|
|
183
189
|
class GetAdminAccountResponse < Struct.new(
|
184
190
|
:admin_account,
|
185
191
|
:role_status)
|
192
|
+
SENSITIVE = []
|
186
193
|
include Aws::Structure
|
187
194
|
end
|
188
195
|
|
@@ -209,6 +216,7 @@ module Aws::FMS
|
|
209
216
|
class GetComplianceDetailRequest < Struct.new(
|
210
217
|
:policy_id,
|
211
218
|
:member_account)
|
219
|
+
SENSITIVE = []
|
212
220
|
include Aws::Structure
|
213
221
|
end
|
214
222
|
|
@@ -221,6 +229,7 @@ module Aws::FMS
|
|
221
229
|
#
|
222
230
|
class GetComplianceDetailResponse < Struct.new(
|
223
231
|
:policy_compliance_detail)
|
232
|
+
SENSITIVE = []
|
224
233
|
include Aws::Structure
|
225
234
|
end
|
226
235
|
|
@@ -244,6 +253,7 @@ module Aws::FMS
|
|
244
253
|
class GetNotificationChannelResponse < Struct.new(
|
245
254
|
:sns_topic_arn,
|
246
255
|
:sns_role_name)
|
256
|
+
SENSITIVE = []
|
247
257
|
include Aws::Structure
|
248
258
|
end
|
249
259
|
|
@@ -263,6 +273,7 @@ module Aws::FMS
|
|
263
273
|
#
|
264
274
|
class GetPolicyRequest < Struct.new(
|
265
275
|
:policy_id)
|
276
|
+
SENSITIVE = []
|
266
277
|
include Aws::Structure
|
267
278
|
end
|
268
279
|
|
@@ -279,6 +290,7 @@ module Aws::FMS
|
|
279
290
|
class GetPolicyResponse < Struct.new(
|
280
291
|
:policy,
|
281
292
|
:policy_arn)
|
293
|
+
SENSITIVE = []
|
282
294
|
include Aws::Structure
|
283
295
|
end
|
284
296
|
|
@@ -344,6 +356,7 @@ module Aws::FMS
|
|
344
356
|
:end_time,
|
345
357
|
:next_token,
|
346
358
|
:max_results)
|
359
|
+
SENSITIVE = []
|
347
360
|
include Aws::Structure
|
348
361
|
end
|
349
362
|
|
@@ -393,6 +406,7 @@ module Aws::FMS
|
|
393
406
|
:service_type,
|
394
407
|
:data,
|
395
408
|
:next_token)
|
409
|
+
SENSITIVE = []
|
396
410
|
include Aws::Structure
|
397
411
|
end
|
398
412
|
|
@@ -406,6 +420,7 @@ module Aws::FMS
|
|
406
420
|
#
|
407
421
|
class InternalErrorException < Struct.new(
|
408
422
|
:message)
|
423
|
+
SENSITIVE = []
|
409
424
|
include Aws::Structure
|
410
425
|
end
|
411
426
|
|
@@ -418,6 +433,7 @@ module Aws::FMS
|
|
418
433
|
#
|
419
434
|
class InvalidInputException < Struct.new(
|
420
435
|
:message)
|
436
|
+
SENSITIVE = []
|
421
437
|
include Aws::Structure
|
422
438
|
end
|
423
439
|
|
@@ -433,6 +449,7 @@ module Aws::FMS
|
|
433
449
|
#
|
434
450
|
class InvalidOperationException < Struct.new(
|
435
451
|
:message)
|
452
|
+
SENSITIVE = []
|
436
453
|
include Aws::Structure
|
437
454
|
end
|
438
455
|
|
@@ -445,6 +462,7 @@ module Aws::FMS
|
|
445
462
|
#
|
446
463
|
class InvalidTypeException < Struct.new(
|
447
464
|
:message)
|
465
|
+
SENSITIVE = []
|
448
466
|
include Aws::Structure
|
449
467
|
end
|
450
468
|
|
@@ -464,6 +482,7 @@ module Aws::FMS
|
|
464
482
|
#
|
465
483
|
class LimitExceededException < Struct.new(
|
466
484
|
:message)
|
485
|
+
SENSITIVE = []
|
467
486
|
include Aws::Structure
|
468
487
|
end
|
469
488
|
|
@@ -507,6 +526,7 @@ module Aws::FMS
|
|
507
526
|
:policy_id,
|
508
527
|
:next_token,
|
509
528
|
:max_results)
|
529
|
+
SENSITIVE = []
|
510
530
|
include Aws::Structure
|
511
531
|
end
|
512
532
|
|
@@ -528,6 +548,7 @@ module Aws::FMS
|
|
528
548
|
class ListComplianceStatusResponse < Struct.new(
|
529
549
|
:policy_compliance_status_list,
|
530
550
|
:next_token)
|
551
|
+
SENSITIVE = []
|
531
552
|
include Aws::Structure
|
532
553
|
end
|
533
554
|
|
@@ -562,6 +583,7 @@ module Aws::FMS
|
|
562
583
|
class ListMemberAccountsRequest < Struct.new(
|
563
584
|
:next_token,
|
564
585
|
:max_results)
|
586
|
+
SENSITIVE = []
|
565
587
|
include Aws::Structure
|
566
588
|
end
|
567
589
|
|
@@ -582,6 +604,7 @@ module Aws::FMS
|
|
582
604
|
class ListMemberAccountsResponse < Struct.new(
|
583
605
|
:member_accounts,
|
584
606
|
:next_token)
|
607
|
+
SENSITIVE = []
|
585
608
|
include Aws::Structure
|
586
609
|
end
|
587
610
|
|
@@ -617,6 +640,7 @@ module Aws::FMS
|
|
617
640
|
class ListPoliciesRequest < Struct.new(
|
618
641
|
:next_token,
|
619
642
|
:max_results)
|
643
|
+
SENSITIVE = []
|
620
644
|
include Aws::Structure
|
621
645
|
end
|
622
646
|
|
@@ -637,6 +661,7 @@ module Aws::FMS
|
|
637
661
|
class ListPoliciesResponse < Struct.new(
|
638
662
|
:policy_list,
|
639
663
|
:next_token)
|
664
|
+
SENSITIVE = []
|
640
665
|
include Aws::Structure
|
641
666
|
end
|
642
667
|
|
@@ -657,6 +682,7 @@ module Aws::FMS
|
|
657
682
|
#
|
658
683
|
class ListTagsForResourceRequest < Struct.new(
|
659
684
|
:resource_arn)
|
685
|
+
SENSITIVE = []
|
660
686
|
include Aws::Structure
|
661
687
|
end
|
662
688
|
|
@@ -668,6 +694,7 @@ module Aws::FMS
|
|
668
694
|
#
|
669
695
|
class ListTagsForResourceResponse < Struct.new(
|
670
696
|
:tag_list)
|
697
|
+
SENSITIVE = []
|
671
698
|
include Aws::Structure
|
672
699
|
end
|
673
700
|
|
@@ -762,24 +789,63 @@ module Aws::FMS
|
|
762
789
|
# @return [Boolean]
|
763
790
|
#
|
764
791
|
# @!attribute [rw] include_map
|
765
|
-
# Specifies the AWS account IDs
|
766
|
-
#
|
767
|
-
#
|
768
|
-
#
|
769
|
-
#
|
770
|
-
#
|
771
|
-
#
|
792
|
+
# Specifies the AWS account IDs and AWS Organizations organizational
|
793
|
+
# units (OUs) to include in the policy. Specifying an OU is the
|
794
|
+
# equivalent of specifying all accounts in the OU and in any of its
|
795
|
+
# child OUs, including any child OUs and accounts that are added at a
|
796
|
+
# later time.
|
797
|
+
#
|
798
|
+
# You can specify inclusions or exclusions, but not both. If you
|
799
|
+
# specify an `IncludeMap`, AWS Firewall Manager applies the policy to
|
800
|
+
# all accounts specified by the `IncludeMap`, and does not evaluate
|
801
|
+
# any `ExcludeMap` specifications. If you do not specify an
|
802
|
+
# `IncludeMap`, then Firewall Manager applies the policy to all
|
803
|
+
# accounts except for those specified by the `ExcludeMap`.
|
804
|
+
#
|
805
|
+
# You can specify account IDs, OUs, or a combination:
|
806
|
+
#
|
807
|
+
# * Specify account IDs by setting the key to `ACCOUNT`. For example,
|
808
|
+
# the following is a valid map: `\{“ACCOUNT” : [“accountID1”,
|
809
|
+
# “accountID2”]\}`.
|
810
|
+
#
|
811
|
+
# * Specify OUs by setting the key to `ORG_UNIT`. For example, the
|
812
|
+
# following is a valid map: `\{“ORG_UNIT” : [“ouid111”,
|
813
|
+
# “ouid112”]\}`.
|
814
|
+
#
|
815
|
+
# * Specify accounts and OUs together in a single map, separated with
|
816
|
+
# a comma. For example, the following is a valid map: `\{“ACCOUNT” :
|
817
|
+
# [“accountID1”, “accountID2”], “ORG_UNIT” : [“ouid111”,
|
818
|
+
# “ouid112”]\}`.
|
772
819
|
# @return [Hash<String,Array<String>>]
|
773
820
|
#
|
774
821
|
# @!attribute [rw] exclude_map
|
775
|
-
# Specifies the AWS account IDs
|
776
|
-
#
|
777
|
-
#
|
778
|
-
#
|
779
|
-
#
|
780
|
-
#
|
781
|
-
#
|
782
|
-
#
|
822
|
+
# Specifies the AWS account IDs and AWS Organizations organizational
|
823
|
+
# units (OUs) to exclude from the policy. Specifying an OU is the
|
824
|
+
# equivalent of specifying all accounts in the OU and in any of its
|
825
|
+
# child OUs, including any child OUs and accounts that are added at a
|
826
|
+
# later time.
|
827
|
+
#
|
828
|
+
# You can specify inclusions or exclusions, but not both. If you
|
829
|
+
# specify an `IncludeMap`, AWS Firewall Manager applies the policy to
|
830
|
+
# all accounts specified by the `IncludeMap`, and does not evaluate
|
831
|
+
# any `ExcludeMap` specifications. If you do not specify an
|
832
|
+
# `IncludeMap`, then Firewall Manager applies the policy to all
|
833
|
+
# accounts except for those specified by the `ExcludeMap`.
|
834
|
+
#
|
835
|
+
# You can specify account IDs, OUs, or a combination:
|
836
|
+
#
|
837
|
+
# * Specify account IDs by setting the key to `ACCOUNT`. For example,
|
838
|
+
# the following is a valid map: `\{“ACCOUNT” : [“accountID1”,
|
839
|
+
# “accountID2”]\}`.
|
840
|
+
#
|
841
|
+
# * Specify OUs by setting the key to `ORG_UNIT`. For example, the
|
842
|
+
# following is a valid map: `\{“ORG_UNIT” : [“ouid111”,
|
843
|
+
# “ouid112”]\}`.
|
844
|
+
#
|
845
|
+
# * Specify accounts and OUs together in a single map, separated with
|
846
|
+
# a comma. For example, the following is a valid map: `\{“ACCOUNT” :
|
847
|
+
# [“accountID1”, “accountID2”], “ORG_UNIT” : [“ouid111”,
|
848
|
+
# “ouid112”]\}`.
|
783
849
|
# @return [Hash<String,Array<String>>]
|
784
850
|
#
|
785
851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/Policy AWS API Documentation
|
@@ -796,6 +862,7 @@ module Aws::FMS
|
|
796
862
|
:remediation_enabled,
|
797
863
|
:include_map,
|
798
864
|
:exclude_map)
|
865
|
+
SENSITIVE = []
|
799
866
|
include Aws::Structure
|
800
867
|
end
|
801
868
|
|
@@ -849,6 +916,7 @@ module Aws::FMS
|
|
849
916
|
:evaluation_limit_exceeded,
|
850
917
|
:expired_at,
|
851
918
|
:issue_info_map)
|
919
|
+
SENSITIVE = []
|
852
920
|
include Aws::Structure
|
853
921
|
end
|
854
922
|
|
@@ -899,6 +967,7 @@ module Aws::FMS
|
|
899
967
|
:evaluation_results,
|
900
968
|
:last_updated,
|
901
969
|
:issue_info_map)
|
970
|
+
SENSITIVE = []
|
902
971
|
include Aws::Structure
|
903
972
|
end
|
904
973
|
|
@@ -954,6 +1023,7 @@ module Aws::FMS
|
|
954
1023
|
:resource_type,
|
955
1024
|
:security_service_type,
|
956
1025
|
:remediation_enabled)
|
1026
|
+
SENSITIVE = []
|
957
1027
|
include Aws::Structure
|
958
1028
|
end
|
959
1029
|
|
@@ -980,6 +1050,7 @@ module Aws::FMS
|
|
980
1050
|
class PutNotificationChannelRequest < Struct.new(
|
981
1051
|
:sns_topic_arn,
|
982
1052
|
:sns_role_name)
|
1053
|
+
SENSITIVE = []
|
983
1054
|
include Aws::Structure
|
984
1055
|
end
|
985
1056
|
|
@@ -1033,6 +1104,7 @@ module Aws::FMS
|
|
1033
1104
|
class PutPolicyRequest < Struct.new(
|
1034
1105
|
:policy,
|
1035
1106
|
:tag_list)
|
1107
|
+
SENSITIVE = []
|
1036
1108
|
include Aws::Structure
|
1037
1109
|
end
|
1038
1110
|
|
@@ -1049,6 +1121,7 @@ module Aws::FMS
|
|
1049
1121
|
class PutPolicyResponse < Struct.new(
|
1050
1122
|
:policy,
|
1051
1123
|
:policy_arn)
|
1124
|
+
SENSITIVE = []
|
1052
1125
|
include Aws::Structure
|
1053
1126
|
end
|
1054
1127
|
|
@@ -1061,6 +1134,7 @@ module Aws::FMS
|
|
1061
1134
|
#
|
1062
1135
|
class ResourceNotFoundException < Struct.new(
|
1063
1136
|
:message)
|
1137
|
+
SENSITIVE = []
|
1064
1138
|
include Aws::Structure
|
1065
1139
|
end
|
1066
1140
|
|
@@ -1099,6 +1173,7 @@ module Aws::FMS
|
|
1099
1173
|
class ResourceTag < Struct.new(
|
1100
1174
|
:key,
|
1101
1175
|
:value)
|
1176
|
+
SENSITIVE = []
|
1102
1177
|
include Aws::Structure
|
1103
1178
|
end
|
1104
1179
|
|
@@ -1130,22 +1205,10 @@ module Aws::FMS
|
|
1130
1205
|
#
|
1131
1206
|
# * Example: `WAFV2`
|
1132
1207
|
#
|
1133
|
-
# `"
|
1134
|
-
# "postProcessRuleGroups":
|
1135
|
-
#
|
1136
|
-
#
|
1137
|
-
# "ruleGroupARN": "rule group arn", "overrideAction": \{
|
1138
|
-
# "type": "COUNT|" \}, "excludedRules": [ \{ "name" :
|
1139
|
-
# "EntityName" \} ], "type": "ManagedRuleGroup|RuleGroup" \}
|
1140
|
-
# ], "preProcessRuleGroups": [ \{ "managedRuleGroupIdentifier":
|
1141
|
-
# \{ "managedRuleGroupName":
|
1142
|
-
# "AWSManagedRulesAdminProtectionRuleSet", "vendor": "AWS" \}
|
1143
|
-
# "ruleGroupARN": "rule group arn", "overrideAction": \{
|
1144
|
-
# "type": "COUNT" \}, "excludedRules": [ \{ "name" :
|
1145
|
-
# "EntityName" \} ], "type": "ManagedRuleGroup|RuleGroup" \}
|
1146
|
-
# ], "defaultAction": \{ "type": "BLOCK" \}\}" `
|
1147
|
-
#
|
1148
|
-
# * Example: `WAF`
|
1208
|
+
# `"ManagedServiceData":
|
1209
|
+
# "\{"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\}"`
|
1210
|
+
#
|
1211
|
+
# * Example: `WAF Classic`
|
1149
1212
|
#
|
1150
1213
|
# `"ManagedServiceData": "\{"type": "WAF", "ruleGroups":
|
1151
1214
|
# [\{"id": "12345678-1bcd-9012-efga-0987654321ab",
|
@@ -1154,7 +1217,8 @@ module Aws::FMS
|
|
1154
1217
|
#
|
1155
1218
|
# * Example: `SECURITY_GROUPS_COMMON`
|
1156
1219
|
#
|
1157
|
-
# `"SecurityServicePolicyData":\{"Type":"SECURITY_GROUPS_COMMON","ManagedServiceData":"\{"type":"SECURITY_GROUPS_COMMON","revertManualSecurityGroupChanges":false,"exclusiveResourceSecurityGroupManagement":false,
|
1220
|
+
# `"SecurityServicePolicyData":\{"Type":"SECURITY_GROUPS_COMMON","ManagedServiceData":"\{"type":"SECURITY_GROUPS_COMMON","revertManualSecurityGroupChanges":false,"exclusiveResourceSecurityGroupManagement":false,
|
1221
|
+
# "applyToAllEC2InstanceENIs":false,"securityGroups":[\{"id":"
|
1158
1222
|
# sg-000e55995d61a06bd"\}]\}"\},"RemediationEnabled":false,"ResourceType":"AWS::EC2::NetworkInterface"\}`
|
1159
1223
|
#
|
1160
1224
|
# * Example: `SECURITY_GROUPS_CONTENT_AUDIT`
|
@@ -1181,6 +1245,7 @@ module Aws::FMS
|
|
1181
1245
|
class SecurityServicePolicyData < Struct.new(
|
1182
1246
|
:type,
|
1183
1247
|
:managed_service_data)
|
1248
|
+
SENSITIVE = []
|
1184
1249
|
include Aws::Structure
|
1185
1250
|
end
|
1186
1251
|
|
@@ -1216,6 +1281,7 @@ module Aws::FMS
|
|
1216
1281
|
class Tag < Struct.new(
|
1217
1282
|
:key,
|
1218
1283
|
:value)
|
1284
|
+
SENSITIVE = []
|
1219
1285
|
include Aws::Structure
|
1220
1286
|
end
|
1221
1287
|
|
@@ -1247,6 +1313,7 @@ module Aws::FMS
|
|
1247
1313
|
class TagResourceRequest < Struct.new(
|
1248
1314
|
:resource_arn,
|
1249
1315
|
:tag_list)
|
1316
|
+
SENSITIVE = []
|
1250
1317
|
include Aws::Structure
|
1251
1318
|
end
|
1252
1319
|
|
@@ -1277,6 +1344,7 @@ module Aws::FMS
|
|
1277
1344
|
class UntagResourceRequest < Struct.new(
|
1278
1345
|
:resource_arn,
|
1279
1346
|
:tag_keys)
|
1347
|
+
SENSITIVE = []
|
1280
1348
|
include Aws::Structure
|
1281
1349
|
end
|
1282
1350
|
|
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.28.0
|
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-23 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
|