aws-sdk-iam 1.56.0 → 1.60.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +26 -6
- data/lib/aws-sdk-iam.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5121819d748185a8c479668754e9c822cc93330c5b523271d5c16f6d108acb53
|
4
|
+
data.tar.gz: 1d04a921fd706bc555cc590b9648c48fad89290eed9a9ee204d0ccd1b85452e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e535e006859d78fb0a4a4d9096fd36ff2e1a134a2fa97fde116c711b502314db10f00ec8a75246adf40315b8a05d62f212d55d25ef8aa9e9c34f92eabc69b5b
|
7
|
+
data.tar.gz: 999e98dbc352afc9912aaf7204fa72d4a281e0b277c4c43a7f9a6a526527d951f453d58cb5c361328264d7d0c0aa5b96744b425fc8512d481dfcb18b068476a4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.60.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.59.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.58.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.57.0 (2021-07-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation updates for AWS Identity and Access Management (IAM).
|
23
|
+
|
4
24
|
1.56.0 (2021-07-07)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.60.0
|
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -1250,6 +1250,16 @@ module Aws::IAM
|
|
1250
1250
|
# You get all of this information from the OIDC IdP that you want to use
|
1251
1251
|
# to access Amazon Web Services.
|
1252
1252
|
#
|
1253
|
+
# <note markdown="1"> Amazon Web Services secures communication with some OIDC identity
|
1254
|
+
# providers (IdPs) through our library of trusted certificate
|
1255
|
+
# authorities (CAs) instead of using a certificate thumbprint to verify
|
1256
|
+
# your IdP server certificate. These OIDC IdPs include Google, and those
|
1257
|
+
# that use an Amazon S3 bucket to host a JSON Web Key Set (JWKS)
|
1258
|
+
# endpoint. In these cases, your legacy thumbprint remains in your
|
1259
|
+
# configuration, but is no longer used for validation.
|
1260
|
+
#
|
1261
|
+
# </note>
|
1262
|
+
#
|
1253
1263
|
# <note markdown="1"> The trust for the OIDC provider is derived from the IAM provider that
|
1254
1264
|
# this operation creates. Therefore, it is best to limit access to the
|
1255
1265
|
# CreateOpenIDConnectProvider operation to highly privileged users.
|
@@ -12167,15 +12177,25 @@ module Aws::IAM
|
|
12167
12177
|
# existing list of thumbprints. (The lists are not merged.)
|
12168
12178
|
#
|
12169
12179
|
# Typically, you need to update a thumbprint only when the identity
|
12170
|
-
# provider
|
12180
|
+
# provider certificate changes, which occurs rarely. However, if the
|
12171
12181
|
# provider's certificate *does* change, any attempt to assume an IAM
|
12172
12182
|
# role that specifies the OIDC provider as a principal fails until the
|
12173
12183
|
# certificate thumbprint is updated.
|
12174
12184
|
#
|
12175
|
-
# <note markdown="1">
|
12176
|
-
#
|
12177
|
-
#
|
12178
|
-
#
|
12185
|
+
# <note markdown="1"> Amazon Web Services secures communication with some OIDC identity
|
12186
|
+
# providers (IdPs) through our library of trusted certificate
|
12187
|
+
# authorities (CAs) instead of using a certificate thumbprint to verify
|
12188
|
+
# your IdP server certificate. These OIDC IdPs include Google, and those
|
12189
|
+
# that use an Amazon S3 bucket to host a JSON Web Key Set (JWKS)
|
12190
|
+
# endpoint. In these cases, your legacy thumbprint remains in your
|
12191
|
+
# configuration, but is no longer used for validation.
|
12192
|
+
#
|
12193
|
+
# </note>
|
12194
|
+
#
|
12195
|
+
# <note markdown="1"> Trust for the OIDC provider is derived from the provider certificate
|
12196
|
+
# and is validated by the thumbprint. Therefore, it is best to limit
|
12197
|
+
# access to the `UpdateOpenIDConnectProviderThumbprint` operation to
|
12198
|
+
# highly privileged users.
|
12179
12199
|
#
|
12180
12200
|
# </note>
|
12181
12201
|
#
|
@@ -13140,7 +13160,7 @@ module Aws::IAM
|
|
13140
13160
|
params: params,
|
13141
13161
|
config: config)
|
13142
13162
|
context[:gem_name] = 'aws-sdk-iam'
|
13143
|
-
context[:gem_version] = '1.
|
13163
|
+
context[:gem_version] = '1.60.0'
|
13144
13164
|
Seahorse::Client::Request.new(handlers, context)
|
13145
13165
|
end
|
13146
13166
|
|
data/lib/aws-sdk-iam.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iam
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.60.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: 2021-
|
11
|
+
date: 2021-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.120.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -99,7 +99,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
100
100
|
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: '
|
102
|
+
version: '2.3'
|
103
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
104
|
requirements:
|
105
105
|
- - ">="
|