aws-sdk-core 3.219.0 → 3.220.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-sso/client.rb +1 -1
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +1 -1
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/aws-sdk-sts/errors.rb +16 -0
- data/lib/aws-sdk-sts.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f27ca30a27b9facf199f41e7e80e5b89582f87581d5e9d1f0c771e7a8a184fb
|
4
|
+
data.tar.gz: 80780457231b474d80999129e719103f0a7292f66154741861076234704a9e47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c53631e0e54859cee1281b03b355c9ae2c447836aa6a32f9f7756fc923e0f2d10149ed95e20877641baf60fdde8329734689ddfee7324d35517e414e2979130f
|
7
|
+
data.tar.gz: f1e1c011480a498d256410cf99294ad6f8b52061517c3785760cc741033948580c2a93e57c5be461133b23cdfaa11336ccb92fb85fbd6a62cd67a4c62ab7ee99
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.220.0
|
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sso.rb
CHANGED
data/lib/aws-sdk-ssooidc.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
data/lib/aws-sdk-sts/errors.rb
CHANGED
@@ -29,15 +29,21 @@ module Aws::STS
|
|
29
29
|
# ## Error Classes
|
30
30
|
# * {ExpiredTokenException}
|
31
31
|
# * {IDPCommunicationErrorException}
|
32
|
+
# * This error class is not used. `IDPCommunicationError` is used during parsing instead.
|
32
33
|
# * {IDPRejectedClaimException}
|
34
|
+
# * This error class is not used. `IDPRejectedClaim` is used during parsing instead.
|
33
35
|
# * {InvalidAuthorizationMessageException}
|
34
36
|
# * {InvalidIdentityTokenException}
|
37
|
+
# * This error class is not used. `InvalidIdentityToken` is used during parsing instead.
|
35
38
|
# * {MalformedPolicyDocumentException}
|
39
|
+
# * This error class is not used. `MalformedPolicyDocument` is used during parsing instead.
|
36
40
|
# * {PackedPolicyTooLargeException}
|
41
|
+
# * This error class is not used. `PackedPolicyTooLarge` is used during parsing instead.
|
37
42
|
# * {RegionDisabledException}
|
38
43
|
#
|
39
44
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
40
45
|
# if they are not defined above.
|
46
|
+
# Some existing error classes may use a different class name than the one documented.
|
41
47
|
module Errors
|
42
48
|
|
43
49
|
extend Aws::Errors::DynamicErrors
|
@@ -57,6 +63,8 @@ module Aws::STS
|
|
57
63
|
end
|
58
64
|
end
|
59
65
|
|
66
|
+
# @deprecated This error class is not used during parsing.
|
67
|
+
# Please use `IDPCommunicationError` instead.
|
60
68
|
class IDPCommunicationErrorException < ServiceError
|
61
69
|
|
62
70
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -72,6 +80,8 @@ module Aws::STS
|
|
72
80
|
end
|
73
81
|
end
|
74
82
|
|
83
|
+
# @deprecated This error class is not used during parsing.
|
84
|
+
# Please use `IDPRejectedClaim` instead.
|
75
85
|
class IDPRejectedClaimException < ServiceError
|
76
86
|
|
77
87
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -102,6 +112,8 @@ module Aws::STS
|
|
102
112
|
end
|
103
113
|
end
|
104
114
|
|
115
|
+
# @deprecated This error class is not used during parsing.
|
116
|
+
# Please use `InvalidIdentityToken` instead.
|
105
117
|
class InvalidIdentityTokenException < ServiceError
|
106
118
|
|
107
119
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -117,6 +129,8 @@ module Aws::STS
|
|
117
129
|
end
|
118
130
|
end
|
119
131
|
|
132
|
+
# @deprecated This error class is not used during parsing.
|
133
|
+
# Please use `MalformedPolicyDocument` instead.
|
120
134
|
class MalformedPolicyDocumentException < ServiceError
|
121
135
|
|
122
136
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -132,6 +146,8 @@ module Aws::STS
|
|
132
146
|
end
|
133
147
|
end
|
134
148
|
|
149
|
+
# @deprecated This error class is not used during parsing.
|
150
|
+
# Please use `PackedPolicyTooLarge` instead.
|
135
151
|
class PackedPolicyTooLargeException < ServiceError
|
136
152
|
|
137
153
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-sts.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.220.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-eventstream
|