aws-sdk-resourcegroupstaggingapi 1.95.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: f12accbd0cf7c7864c6d4f6bcc7d2941e147bbc9461807bd31fee5640ae86406
4
- data.tar.gz: '009388d6a03e2ac62edf86ef9912084d026dbe1848f989ae66c5a4b0cff8b83b'
3
+ metadata.gz: 3a1fb04ac5b99b9db4eee9e94a6afb900ac92c3490f145684302b58c976eef26
4
+ data.tar.gz: e2a8f871cd9a2c25bc0414615a593462e19b11364dd9008ecd99c96bd8e3a69b
5
5
  SHA512:
6
- metadata.gz: d4fc61c8dca6ee24da29b0764c44eeb1fcdc7824c901234139d98de0cb7a12edd71909eddd2093f0d9664a4861a437ec3fdde6bf527b591ff70ad6644ba629bb
7
- data.tar.gz: 1489d0eb92f8bbca8046f51f87ebba873e51ac9ff4628824f0cb09ed6bc4dd5135c086da9efbec41274c5a3ff8230f214d86b01e44868d4655e2cbfb348c0f9d
6
+ metadata.gz: 83356ef3811dc7531c1e8e985d5d722046a1ee9e3a1d1d035c620d79e041aeb97912937641a184ff84b44ce09cb568478eec651577c58583f7cfb0a8c8ef81a6
7
+ data.tar.gz: 9fd7645c7aa9726c1f856f9770ef23d39c5602efc83f4fd85f3b206180df952c3a50e1f88cb54781e9be2961aedc3958bfba2f71a2efad3ee472a20d80dd15c7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.96.0 (2026-05-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.95.0 (2026-05-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.97.0
@@ -199,7 +199,7 @@ module Aws::ResourceGroupsTaggingAPI
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::ResourceGroupsTaggingAPI
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -873,6 +871,8 @@ module Aws::ResourceGroupsTaggingAPI
873
871
  # resp.resource_tag_mapping_list[0].compliance_details.noncompliant_keys[0] #=> String
874
872
  # resp.resource_tag_mapping_list[0].compliance_details.keys_with_noncompliant_values #=> Array
875
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
876
876
  # resp.resource_tag_mapping_list[0].compliance_details.compliance_status #=> Boolean
877
877
  #
878
878
  # @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/GetResources AWS API Documentation
@@ -1281,7 +1281,7 @@ module Aws::ResourceGroupsTaggingAPI
1281
1281
  tracer: tracer
1282
1282
  )
1283
1283
  context[:gem_name] = 'aws-sdk-resourcegroupstaggingapi'
1284
- context[:gem_version] = '1.95.0'
1284
+ context[:gem_version] = '1.97.0'
1285
1285
  Seahorse::Client::Request.new(handlers, context)
1286
1286
  end
1287
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.95.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.95.0
4
+ version: 1.97.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement