aws-sdk-fms 1.86.0 → 1.88.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 +27 -1
- data/lib/aws-sdk-fms/client_api.rb +2 -0
- data/lib/aws-sdk-fms/types.rb +14 -6
- data/lib/aws-sdk-fms.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b3d5c3946fb6fe2fcbbf426c5e069e37e883587f1955f6578dc12b2a54d4003
|
4
|
+
data.tar.gz: af0cabbd29d8bbdaef372f01578e7db0c3679531d5dd0ae1877414c3f5eb1463
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cdd9e5444733fc97e1ec9f3ae346926889096ccc2dac983b1ab0c9e383a8ffa9b70432eac868ec09db7d325695c14221b2e4710558b99aa822dc963003921222
|
7
|
+
data.tar.gz: a4b3a3660a4934b4a2352b80a6e1d65649592c3af808638e342e64872d1be0fffe99d24f0a9efe24dfb96514904742a031dbfc3688a19114845521247792e6cf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.88.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.87.0 (2025-01-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator.
|
13
|
+
|
4
14
|
1.86.0 (2024-11-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.88.0
|
data/lib/aws-sdk-fms/client.rb
CHANGED
@@ -257,11 +257,34 @@ module Aws::FMS
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -1060,6 +1083,7 @@ module Aws::FMS
|
|
1060
1083
|
# resp.policy.resource_set_ids[0] #=> String
|
1061
1084
|
# resp.policy.policy_description #=> String
|
1062
1085
|
# resp.policy.policy_status #=> String, one of "ACTIVE", "OUT_OF_ADMIN_SCOPE"
|
1086
|
+
# resp.policy.resource_tag_logical_operator #=> String, one of "AND", "OR"
|
1063
1087
|
# resp.policy_arn #=> String
|
1064
1088
|
#
|
1065
1089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetPolicy AWS API Documentation
|
@@ -2685,6 +2709,7 @@ module Aws::FMS
|
|
2685
2709
|
# resource_set_ids: ["Base62Id"],
|
2686
2710
|
# policy_description: "ResourceDescription",
|
2687
2711
|
# policy_status: "ACTIVE", # accepts ACTIVE, OUT_OF_ADMIN_SCOPE
|
2712
|
+
# resource_tag_logical_operator: "AND", # accepts AND, OR
|
2688
2713
|
# },
|
2689
2714
|
# tag_list: [
|
2690
2715
|
# {
|
@@ -2744,6 +2769,7 @@ module Aws::FMS
|
|
2744
2769
|
# resp.policy.resource_set_ids[0] #=> String
|
2745
2770
|
# resp.policy.policy_description #=> String
|
2746
2771
|
# resp.policy.policy_status #=> String, one of "ACTIVE", "OUT_OF_ADMIN_SCOPE"
|
2772
|
+
# resp.policy.resource_tag_logical_operator #=> String, one of "AND", "OR"
|
2747
2773
|
# resp.policy_arn #=> String
|
2748
2774
|
#
|
2749
2775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutPolicy AWS API Documentation
|
@@ -2954,7 +2980,7 @@ module Aws::FMS
|
|
2954
2980
|
tracer: tracer
|
2955
2981
|
)
|
2956
2982
|
context[:gem_name] = 'aws-sdk-fms'
|
2957
|
-
context[:gem_version] = '1.
|
2983
|
+
context[:gem_version] = '1.88.0'
|
2958
2984
|
Seahorse::Client::Request.new(handlers, context)
|
2959
2985
|
end
|
2960
2986
|
|
@@ -263,6 +263,7 @@ module Aws::FMS
|
|
263
263
|
ResourceSetSummaryList = Shapes::ListShape.new(name: 'ResourceSetSummaryList')
|
264
264
|
ResourceTag = Shapes::StructureShape.new(name: 'ResourceTag')
|
265
265
|
ResourceTagKey = Shapes::StringShape.new(name: 'ResourceTagKey')
|
266
|
+
ResourceTagLogicalOperator = Shapes::StringShape.new(name: 'ResourceTagLogicalOperator')
|
266
267
|
ResourceTagValue = Shapes::StringShape.new(name: 'ResourceTagValue')
|
267
268
|
ResourceTags = Shapes::ListShape.new(name: 'ResourceTags')
|
268
269
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
@@ -970,6 +971,7 @@ module Aws::FMS
|
|
970
971
|
Policy.add_member(:resource_set_ids, Shapes::ShapeRef.new(shape: ResourceSetIds, location_name: "ResourceSetIds"))
|
971
972
|
Policy.add_member(:policy_description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "PolicyDescription"))
|
972
973
|
Policy.add_member(:policy_status, Shapes::ShapeRef.new(shape: CustomerPolicyStatus, location_name: "PolicyStatus"))
|
974
|
+
Policy.add_member(:resource_tag_logical_operator, Shapes::ShapeRef.new(shape: ResourceTagLogicalOperator, location_name: "ResourceTagLogicalOperator"))
|
973
975
|
Policy.struct_class = Types::Policy
|
974
976
|
|
975
977
|
PolicyComplianceDetail.add_member(:policy_owner, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "PolicyOwner"))
|
data/lib/aws-sdk-fms/types.rb
CHANGED
@@ -3550,6 +3550,14 @@ module Aws::FMS
|
|
3550
3550
|
# policy won't be protected.
|
3551
3551
|
# @return [String]
|
3552
3552
|
#
|
3553
|
+
# @!attribute [rw] resource_tag_logical_operator
|
3554
|
+
# Specifies whether to combine multiple resource tags with AND, so
|
3555
|
+
# that a resource must have all tags to be included or excluded, or
|
3556
|
+
# OR, so that a resource must have at least one tag.
|
3557
|
+
#
|
3558
|
+
# Default: `AND`
|
3559
|
+
# @return [String]
|
3560
|
+
#
|
3553
3561
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/Policy AWS API Documentation
|
3554
3562
|
#
|
3555
3563
|
class Policy < Struct.new(
|
@@ -3567,7 +3575,8 @@ module Aws::FMS
|
|
3567
3575
|
:exclude_map,
|
3568
3576
|
:resource_set_ids,
|
3569
3577
|
:policy_description,
|
3570
|
-
:policy_status
|
3578
|
+
:policy_status,
|
3579
|
+
:resource_tag_logical_operator)
|
3571
3580
|
SENSITIVE = []
|
3572
3581
|
include Aws::Structure
|
3573
3582
|
end
|
@@ -4427,11 +4436,10 @@ module Aws::FMS
|
|
4427
4436
|
# particular resource should be included or excluded from the Firewall
|
4428
4437
|
# Manager policy. Tags enable you to categorize your Amazon Web Services
|
4429
4438
|
# resources in different ways, for example, by purpose, owner, or
|
4430
|
-
# environment. Each tag consists of a key and an optional value.
|
4431
|
-
#
|
4432
|
-
#
|
4433
|
-
#
|
4434
|
-
# [Working with Tag Editor][1].
|
4439
|
+
# environment. Each tag consists of a key and an optional value. If you
|
4440
|
+
# add more than one tag to a policy, you can specify whether to combine
|
4441
|
+
# them using the logical AND operator or the logical OR operator. For
|
4442
|
+
# more information, see [Working with Tag Editor][1].
|
4435
4443
|
#
|
4436
4444
|
# Every resource tag must have a string value, either a non-empty string
|
4437
4445
|
# or an empty string. If you don't provide a value for a resource tag,
|
data/lib/aws-sdk-fms.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -587,7 +589,8 @@ module Aws
|
|
587
589
|
exclude_map: Hash[("ACCOUNT" | "ORG_UNIT"), Array[::String]]?,
|
588
590
|
resource_set_ids: Array[::String]?,
|
589
591
|
policy_description: ::String?,
|
590
|
-
policy_status: ("ACTIVE" | "OUT_OF_ADMIN_SCOPE")
|
592
|
+
policy_status: ("ACTIVE" | "OUT_OF_ADMIN_SCOPE")?,
|
593
|
+
resource_tag_logical_operator: ("AND" | "OR")?
|
591
594
|
},
|
592
595
|
?tag_list: Array[
|
593
596
|
{
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -840,6 +840,7 @@ module Aws::FMS
|
|
840
840
|
attr_accessor resource_set_ids: ::Array[::String]
|
841
841
|
attr_accessor policy_description: ::String
|
842
842
|
attr_accessor policy_status: ("ACTIVE" | "OUT_OF_ADMIN_SCOPE")
|
843
|
+
attr_accessor resource_tag_logical_operator: ("AND" | "OR")
|
843
844
|
SENSITIVE: []
|
844
845
|
end
|
845
846
|
|
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.88.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:
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|