aws-sdk-auditmanager 1.66.0 → 1.67.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-auditmanager/client.rb +1 -1
- data/lib/aws-sdk-auditmanager/client_api.rb +1 -0
- data/lib/aws-sdk-auditmanager.rb +1 -1
- 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: 54dc633319c8d1df525317f2b31647ba2216b08d4267c25476edba7a81a45619
|
4
|
+
data.tar.gz: e87e457210e3259a41eef84c050723e1899a596b090d09818b0752df89f42ac1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 277b554e286439e5d228c2c0cc11ae42e8027616e84782656c46a08e1c45b8a111c70162172c04f4762eb3336aeb8dd5a7cfee8f232cf2da5b80ad4c577f8065
|
7
|
+
data.tar.gz: 46617d963022adb879c7bfc69784ddef209746f37fd629c81d4a6040868148774643c5344c2d2b0f93cddfe554ea131e0fc3f11f3a07423f8be7b1d31a37546e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2025-07-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated error handling for RegisterOrganizationAdminAccount API to properly translate TooManyExceptions to HTTP 429 status code. This enhancement improves error handling consistency and provides clearer feedback when request limits are exceeded.
|
8
|
+
|
4
9
|
1.66.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
@@ -4057,7 +4057,7 @@ module Aws::AuditManager
|
|
4057
4057
|
tracer: tracer
|
4058
4058
|
)
|
4059
4059
|
context[:gem_name] = 'aws-sdk-auditmanager'
|
4060
|
-
context[:gem_version] = '1.
|
4060
|
+
context[:gem_version] = '1.67.0'
|
4061
4061
|
Seahorse::Client::Request.new(handlers, context)
|
4062
4062
|
end
|
4063
4063
|
|
@@ -2061,6 +2061,7 @@ module Aws::AuditManager
|
|
2061
2061
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2062
2062
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2063
2063
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2064
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2064
2065
|
end)
|
2065
2066
|
|
2066
2067
|
api.add_operation(:start_assessment_framework_share, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-auditmanager.rb
CHANGED