aws-sdk-fms 1.86.0 → 1.87.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c35ce9d5d084c9205782f4690c6bb52486b21af89b9d6ba26b9223784fdbc499
4
- data.tar.gz: 40281b2a06b08b6e82d5fa554d2bb2425c90af39dd22b9d6ffe099f1e0ab4652
3
+ metadata.gz: ca6f117d62e0f342b85683cd80f9b8d1272c21774701729657e8ab05277cfc7a
4
+ data.tar.gz: f5efee605e1c0844cc0d23c3bd950deee86fa1ff74a558dbb837bf4cf5122a58
5
5
  SHA512:
6
- metadata.gz: e119e5df8b1040f6373644d539ff617f8dbfa2eaf6a5d2f52e3e45b91d10a40653c1c56625a3425f1ac49af9374b819f5ef5d3dccf3737a7a81c4b65801b757d
7
- data.tar.gz: 7f67d120103e4ef37d96f03882dc48c8b54ce121219dead04652f6cbc9bbf5a99050ff24c249781601d7f701275f7f6e2c5d1c8b4839b0db32c0b7639d48686f
6
+ metadata.gz: bfcad7629696d4d5b6ccdd7bf26224e29c8ee471b62310f7bf60ededb1471bd0f87999d1d05bfcac47a7cd8c265e65a1b9700568d83ef1b71d0c2a172fef4fe5
7
+ data.tar.gz: b198e1c34f01b9b8131730dc904b1d8f89cc5d829fc6dfb40f53b77f82c895dcac98be3a858664b90b52ab8d24fc47d79726b6df5acbab2a9de75d3b05ca472b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.87.0 (2025-01-09)
5
+ ------------------
6
+
7
+ * Feature - AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator.
8
+
4
9
  1.86.0 (2024-11-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.86.0
1
+ 1.87.0
@@ -1060,6 +1060,7 @@ module Aws::FMS
1060
1060
  # resp.policy.resource_set_ids[0] #=> String
1061
1061
  # resp.policy.policy_description #=> String
1062
1062
  # resp.policy.policy_status #=> String, one of "ACTIVE", "OUT_OF_ADMIN_SCOPE"
1063
+ # resp.policy.resource_tag_logical_operator #=> String, one of "AND", "OR"
1063
1064
  # resp.policy_arn #=> String
1064
1065
  #
1065
1066
  # @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/GetPolicy AWS API Documentation
@@ -2685,6 +2686,7 @@ module Aws::FMS
2685
2686
  # resource_set_ids: ["Base62Id"],
2686
2687
  # policy_description: "ResourceDescription",
2687
2688
  # policy_status: "ACTIVE", # accepts ACTIVE, OUT_OF_ADMIN_SCOPE
2689
+ # resource_tag_logical_operator: "AND", # accepts AND, OR
2688
2690
  # },
2689
2691
  # tag_list: [
2690
2692
  # {
@@ -2744,6 +2746,7 @@ module Aws::FMS
2744
2746
  # resp.policy.resource_set_ids[0] #=> String
2745
2747
  # resp.policy.policy_description #=> String
2746
2748
  # resp.policy.policy_status #=> String, one of "ACTIVE", "OUT_OF_ADMIN_SCOPE"
2749
+ # resp.policy.resource_tag_logical_operator #=> String, one of "AND", "OR"
2747
2750
  # resp.policy_arn #=> String
2748
2751
  #
2749
2752
  # @see http://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/PutPolicy AWS API Documentation
@@ -2954,7 +2957,7 @@ module Aws::FMS
2954
2957
  tracer: tracer
2955
2958
  )
2956
2959
  context[:gem_name] = 'aws-sdk-fms'
2957
- context[:gem_version] = '1.86.0'
2960
+ context[:gem_version] = '1.87.0'
2958
2961
  Seahorse::Client::Request.new(handlers, context)
2959
2962
  end
2960
2963
 
@@ -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"))
@@ -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
- # Firewall Manager combines the tags with "AND" so that, if you add
4432
- # more than one tag to a policy scope, a resource must have all the
4433
- # specified tags to be included or excluded. For more information, see
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
@@ -54,7 +54,7 @@ module Aws::FMS
54
54
  autoload :EndpointProvider, 'aws-sdk-fms/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-fms/endpoints'
56
56
 
57
- GEM_VERSION = '1.86.0'
57
+ GEM_VERSION = '1.87.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -587,7 +587,8 @@ module Aws
587
587
  exclude_map: Hash[("ACCOUNT" | "ORG_UNIT"), Array[::String]]?,
588
588
  resource_set_ids: Array[::String]?,
589
589
  policy_description: ::String?,
590
- policy_status: ("ACTIVE" | "OUT_OF_ADMIN_SCOPE")?
590
+ policy_status: ("ACTIVE" | "OUT_OF_ADMIN_SCOPE")?,
591
+ resource_tag_logical_operator: ("AND" | "OR")?
591
592
  },
592
593
  ?tag_list: Array[
593
594
  {
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.86.0
4
+ version: 1.87.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: 2024-11-18 00:00:00.000000000 Z
11
+ date: 2025-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core