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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-resourcegroupstaggingapi/client.rb +3 -1
- data/lib/aws-sdk-resourcegroupstaggingapi/client_api.rb +1 -0
- data/lib/aws-sdk-resourcegroupstaggingapi/types.rb +7 -0
- data/lib/aws-sdk-resourcegroupstaggingapi.rb +1 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a1fb04ac5b99b9db4eee9e94a6afb900ac92c3490f145684302b58c976eef26
|
|
4
|
+
data.tar.gz: e2a8f871cd9a2c25bc0414615a593462e19b11364dd9008ecd99c96bd8e3a69b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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
|
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
|