aws-sdk-resourcegroupstaggingapi 1.96.0 → 1.97.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a25553744be908b051cabceeabc638b452a948698e13f60a51ee32770cb768aa
4
- data.tar.gz: a8e28783d68cac0c508b95f95446d329a211a0ca10f26977c8eeed8ed35bef86
3
+ metadata.gz: 3a1fb04ac5b99b9db4eee9e94a6afb900ac92c3490f145684302b58c976eef26
4
+ data.tar.gz: e2a8f871cd9a2c25bc0414615a593462e19b11364dd9008ecd99c96bd8e3a69b
5
5
  SHA512:
6
- metadata.gz: 16d77a79acfb8ccadd2dfb9896305c64371f7af732c66afdc21f6c55484bc372a18c5a991d8824bfe2fcf55f247feae1d298b6fb41e1c590d8273a476d73a7c2
7
- data.tar.gz: 93bcf8ee93cc83a8a7eca362c05c57658d97cabaf0fb33769e86208b25d9e75dd543633167f56c83aeed7d852c2d40ea4e28fa68ee3919622ca7b532bbf135fe
6
+ metadata.gz: 83356ef3811dc7531c1e8e985d5d722046a1ee9e3a1d1d035c620d79e041aeb97912937641a184ff84b44ce09cb568478eec651577c58583f7cfb0a8c8ef81a6
7
+ data.tar.gz: 9fd7645c7aa9726c1f856f9770ef23d39c5602efc83f4fd85f3b206180df952c3a50e1f88cb54781e9be2961aedc3958bfba2f71a2efad3ee472a20d80dd15c7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2026-05-26)
5
+ ------------------
6
+
7
+ * Feature - The GetResources API now returns MissingTagKeys in ComplianceDetails, listing tag keys defined as required in the ReportRequiredTagBlock block of the effective tag policy that are absent from the resource.
8
+
4
9
  1.96.0 (2026-05-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.97.0
@@ -871,6 +871,8 @@ module Aws::ResourceGroupsTaggingAPI
871
871
  # resp.resource_tag_mapping_list[0].compliance_details.noncompliant_keys[0] #=> String
872
872
  # resp.resource_tag_mapping_list[0].compliance_details.keys_with_noncompliant_values #=> Array
873
873
  # resp.resource_tag_mapping_list[0].compliance_details.keys_with_noncompliant_values[0] #=> String
874
+ # resp.resource_tag_mapping_list[0].compliance_details.missing_tag_keys #=> Array
875
+ # resp.resource_tag_mapping_list[0].compliance_details.missing_tag_keys[0] #=> String
874
876
  # resp.resource_tag_mapping_list[0].compliance_details.compliance_status #=> Boolean
875
877
  #
876
878
  # @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetResources AWS API Documentation
@@ -1279,7 +1281,7 @@ module Aws::ResourceGroupsTaggingAPI
1279
1281
  tracer: tracer
1280
1282
  )
1281
1283
  context[:gem_name] = 'aws-sdk-resourcegroupstaggingapi'
1282
- context[:gem_version] = '1.96.0'
1284
+ context[:gem_version] = '1.97.0'
1283
1285
  Seahorse::Client::Request.new(handlers, context)
1284
1286
  end
1285
1287
 
@@ -97,6 +97,7 @@ module Aws::ResourceGroupsTaggingAPI
97
97
 
98
98
  ComplianceDetails.add_member(:noncompliant_keys, Shapes::ShapeRef.new(shape: TagKeyList, location_name: "NoncompliantKeys"))
99
99
  ComplianceDetails.add_member(:keys_with_noncompliant_values, Shapes::ShapeRef.new(shape: TagKeyList, location_name: "KeysWithNoncompliantValues"))
100
+ ComplianceDetails.add_member(:missing_tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, location_name: "MissingTagKeys"))
100
101
  ComplianceDetails.add_member(:compliance_status, Shapes::ShapeRef.new(shape: ComplianceStatus, location_name: "ComplianceStatus"))
101
102
  ComplianceDetails.struct_class = Types::ComplianceDetails
102
103
 
@@ -24,6 +24,12 @@ module Aws::ResourceGroupsTaggingAPI
24
24
  # values.
25
25
  # @return [Array<String>]
26
26
  #
27
+ # @!attribute [rw] missing_tag_keys
28
+ # These tag keys are defined as required in the
29
+ # `report_required_tag_for` block of the effective tag policy, but are
30
+ # missing from the resource.
31
+ # @return [Array<String>]
32
+ #
27
33
  # @!attribute [rw] compliance_status
28
34
  # Whether a resource is compliant with the effective tag policy.
29
35
  # @return [Boolean]
@@ -33,6 +39,7 @@ module Aws::ResourceGroupsTaggingAPI
33
39
  class ComplianceDetails < Struct.new(
34
40
  :noncompliant_keys,
35
41
  :keys_with_noncompliant_values,
42
+ :missing_tag_keys,
36
43
  :compliance_status)
37
44
  SENSITIVE = []
38
45
  include Aws::Structure
@@ -54,7 +54,7 @@ module Aws::ResourceGroupsTaggingAPI
54
54
  autoload :EndpointProvider, 'aws-sdk-resourcegroupstaggingapi/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-resourcegroupstaggingapi/endpoints'
56
56
 
57
- GEM_VERSION = '1.96.0'
57
+ GEM_VERSION = '1.97.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -11,6 +11,7 @@ module Aws::ResourceGroupsTaggingAPI
11
11
  class ComplianceDetails
12
12
  attr_accessor noncompliant_keys: ::Array[::String]
13
13
  attr_accessor keys_with_noncompliant_values: ::Array[::String]
14
+ attr_accessor missing_tag_keys: ::Array[::String]
14
15
  attr_accessor compliance_status: bool
15
16
  SENSITIVE: []
16
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resourcegroupstaggingapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.96.0
4
+ version: 1.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services