aws-sdk-iam 1.142.0 → 1.143.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-iam/client.rb +7 -1
- data/lib/aws-sdk-iam/types.rb +6 -0
- data/lib/aws-sdk-iam.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: 7cbbf696a8b06485ec1fc90b810838241bae19b8ee96c3309b550bfc54e66fc5
|
|
4
|
+
data.tar.gz: '001081025fb41d7f2feacd1c10b282d29a796e0e17c2649125dbbb270c2915b8'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a900d6cd9550a63925adbd148c4a75d4548f75e48b49c0215600480481e16c0097064bf433be7a38459ebecdcacc809976d77a6eebd74426a01ee53f02caa868
|
|
7
|
+
data.tar.gz: ecd355b8102f259608063f070be7ff0e3e21efe1ee30d71d534abc1e81019e7b934e9b4fe04a7b30c1498b1b70e875fc8721bd7e63ff9a55b461777104d7cebe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.143.0 (2026-05-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added guidance for CreateOpenIDConnectProvider to include multiple thumbprints when OIDC discovery and JWKS endpoints use different hosts or certificates
|
|
8
|
+
|
|
4
9
|
1.142.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.143.0
|
data/lib/aws-sdk-iam/client.rb
CHANGED
|
@@ -1721,6 +1721,12 @@ module Aws::IAM
|
|
|
1721
1721
|
# [Obtaining the thumbprint for an OpenID Connect provider][1] in the
|
|
1722
1722
|
# *IAM user Guide*.
|
|
1723
1723
|
#
|
|
1724
|
+
# <note markdown="1"> If your OIDC provider's discovery endpoint and JWKS endpoint
|
|
1725
|
+
# (`jwks_uri`) use different certificates or hosts, include the
|
|
1726
|
+
# thumbprints for both endpoints in this list.
|
|
1727
|
+
#
|
|
1728
|
+
# </note>
|
|
1729
|
+
#
|
|
1724
1730
|
#
|
|
1725
1731
|
#
|
|
1726
1732
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html
|
|
@@ -14693,7 +14699,7 @@ module Aws::IAM
|
|
|
14693
14699
|
tracer: tracer
|
|
14694
14700
|
)
|
|
14695
14701
|
context[:gem_name] = 'aws-sdk-iam'
|
|
14696
|
-
context[:gem_version] = '1.
|
|
14702
|
+
context[:gem_version] = '1.143.0'
|
|
14697
14703
|
Seahorse::Client::Request.new(handlers, context)
|
|
14698
14704
|
end
|
|
14699
14705
|
|
data/lib/aws-sdk-iam/types.rb
CHANGED
|
@@ -1123,6 +1123,12 @@ module Aws::IAM
|
|
|
1123
1123
|
# see [Obtaining the thumbprint for an OpenID Connect provider][1] in
|
|
1124
1124
|
# the *IAM user Guide*.
|
|
1125
1125
|
#
|
|
1126
|
+
# <note markdown="1"> If your OIDC provider's discovery endpoint and JWKS endpoint
|
|
1127
|
+
# (`jwks_uri`) use different certificates or hosts, include the
|
|
1128
|
+
# thumbprints for both endpoints in this list.
|
|
1129
|
+
#
|
|
1130
|
+
# </note>
|
|
1131
|
+
#
|
|
1126
1132
|
#
|
|
1127
1133
|
#
|
|
1128
1134
|
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html
|
data/lib/aws-sdk-iam.rb
CHANGED