aws-sdk-cognitoidentityprovider 1.120.0 → 1.122.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 774d78181cb5b3671ec1c31b4eb746bb1d5dbfdd9c1b2b346c0a07ea2dbbf234
|
4
|
+
data.tar.gz: 20afed79fb8fc8a76f76b92011871c34f1cdb12dc133913fe37458ca8b0057cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 154163e42ca2bc861aa363cae7e6ee609554f02a4b3949669149956e2b8c54578a07b9aacc93e51b9090d66efdc50f8c0d2991aa4cfa15b1104063e4064c112f
|
7
|
+
data.tar.gz: 9396c3383726739b4dfee8e1ea2eab23b6e646408a32f23f9ebb7534d42d91d9f0efcee0f998ca06a9b1863b4ca6591cc49413089c167ab08e3f038f50b5c33a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.122.0 (2025-05-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add exceptions to WebAuthn operations.
|
8
|
+
|
9
|
+
1.121.0 (2025-05-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.120.0 (2025-05-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.122.0
|
@@ -200,8 +200,7 @@ module Aws::CognitoIdentityProvider
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -13019,7 +13018,7 @@ module Aws::CognitoIdentityProvider
|
|
13019
13018
|
tracer: tracer
|
13020
13019
|
)
|
13021
13020
|
context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
|
13022
|
-
context[:gem_version] = '1.
|
13021
|
+
context[:gem_version] = '1.122.0'
|
13023
13022
|
Seahorse::Client::Request.new(handlers, context)
|
13024
13023
|
end
|
13025
13024
|
|
@@ -3235,6 +3235,8 @@ module Aws::CognitoIdentityProvider
|
|
3235
3235
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3236
3236
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
3237
3237
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
3238
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
3239
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
3238
3240
|
o.errors << Shapes::ShapeRef.new(shape: NotAuthorizedException)
|
3239
3241
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
3240
3242
|
end)
|
@@ -3829,6 +3831,8 @@ module Aws::CognitoIdentityProvider
|
|
3829
3831
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
3830
3832
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
3831
3833
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
3834
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
3835
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
3832
3836
|
o.errors << Shapes::ShapeRef.new(shape: NotAuthorizedException)
|
3833
3837
|
end)
|
3834
3838
|
|