aws-sdk-iam 1.104.0 → 1.105.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iam/client.rb +16 -18
- data/lib/aws-sdk-iam/client_api.rb +1 -1
- data/lib/aws-sdk-iam.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: 6ee368184aeec7a8d94c0e6349915caf6da16bbedc9e51cea6f30a9a0d74f7f3
|
4
|
+
data.tar.gz: b5d1f989feeeb601d52ea6a7ec9ea5c7fa83dc5c79fa875424fd3641c057af29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfe80835d9e43c1fb99883063011ebe9ca919dbcb3b808c5191e46ca3712c54ce9e186d9f1a9097171e8e5b5e88209b3ac5bc92d27668cb2312ef86f72222a66
|
7
|
+
data.tar.gz: d007fde74429c6098da8b8a641abbc228872b370cc3d49f53e32523d582e4ff3586ad64b5e4bfddae3e6507d6107d1cf5b4986bb247d3d31c77887c8e5c035ac
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.105.0 (2024-08-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Make the LastUsedDate field in the GetAccessKeyLastUsed response optional. This may break customers who only call the API for access keys with a valid LastUsedDate. This fixes a deserialization issue for access keys without a LastUsedDate, because the field was marked as required but could be null.
|
8
|
+
|
4
9
|
1.104.0 (2024-08-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.105.0
|
data/lib/aws-sdk-iam/client.rb
CHANGED
@@ -1360,13 +1360,12 @@ module Aws::IAM
|
|
1360
1360
|
# You get all of this information from the OIDC IdP you want to use to
|
1361
1361
|
# access Amazon Web Services.
|
1362
1362
|
#
|
1363
|
-
# <note markdown="1"> Amazon Web Services secures communication with
|
1364
|
-
#
|
1365
|
-
#
|
1366
|
-
# your IdP
|
1367
|
-
#
|
1368
|
-
#
|
1369
|
-
# use an Amazon S3 bucket to host a JSON Web Key Set (JWKS) endpoint.
|
1363
|
+
# <note markdown="1"> Amazon Web Services secures communication with OIDC identity providers
|
1364
|
+
# (IdPs) using our library of trusted root certificate authorities (CAs)
|
1365
|
+
# to verify the JSON Web Key Set (JWKS) endpoint's TLS certificate. If
|
1366
|
+
# your OIDC IdP relies on a certificate that is not signed by one of
|
1367
|
+
# these trusted CAs, only then we secure communication using the
|
1368
|
+
# thumbprints set in the IdP's configuration.
|
1370
1369
|
#
|
1371
1370
|
# </note>
|
1372
1371
|
#
|
@@ -6473,12 +6472,12 @@ module Aws::IAM
|
|
6473
6472
|
# Lists the account alias associated with the Amazon Web Services
|
6474
6473
|
# account (Note: you can have only one). For information about using an
|
6475
6474
|
# Amazon Web Services account alias, see [Creating, deleting, and
|
6476
|
-
# listing an Amazon Web Services account alias][1] in the *
|
6477
|
-
#
|
6475
|
+
# listing an Amazon Web Services account alias][1] in the *IAM User
|
6476
|
+
# Guide*.
|
6478
6477
|
#
|
6479
6478
|
#
|
6480
6479
|
#
|
6481
|
-
# [1]: https://docs.aws.amazon.com/
|
6480
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/console_account-alias.html#CreateAccountAlias
|
6482
6481
|
#
|
6483
6482
|
# @option params [String] :marker
|
6484
6483
|
# Use this parameter only when paginating results and only after you
|
@@ -12526,13 +12525,12 @@ module Aws::IAM
|
|
12526
12525
|
# role that specifies the OIDC provider as a principal fails until the
|
12527
12526
|
# certificate thumbprint is updated.
|
12528
12527
|
#
|
12529
|
-
# <note markdown="1"> Amazon Web Services secures communication with
|
12530
|
-
#
|
12531
|
-
#
|
12532
|
-
# your IdP
|
12533
|
-
#
|
12534
|
-
#
|
12535
|
-
# use an Amazon S3 bucket to host a JSON Web Key Set (JWKS) endpoint.
|
12528
|
+
# <note markdown="1"> Amazon Web Services secures communication with OIDC identity providers
|
12529
|
+
# (IdPs) using our library of trusted root certificate authorities (CAs)
|
12530
|
+
# to verify the JSON Web Key Set (JWKS) endpoint's TLS certificate. If
|
12531
|
+
# your OIDC IdP relies on a certificate that is not signed by one of
|
12532
|
+
# these trusted CAs, only then we secure communication using the
|
12533
|
+
# thumbprints set in the IdP's configuration.
|
12536
12534
|
#
|
12537
12535
|
# </note>
|
12538
12536
|
#
|
@@ -13512,7 +13510,7 @@ module Aws::IAM
|
|
13512
13510
|
params: params,
|
13513
13511
|
config: config)
|
13514
13512
|
context[:gem_name] = 'aws-sdk-iam'
|
13515
|
-
context[:gem_version] = '1.
|
13513
|
+
context[:gem_version] = '1.105.0'
|
13516
13514
|
Seahorse::Client::Request.new(handlers, context)
|
13517
13515
|
end
|
13518
13516
|
|
@@ -528,7 +528,7 @@ module Aws::IAM
|
|
528
528
|
AccessKey.add_member(:create_date, Shapes::ShapeRef.new(shape: dateType, location_name: "CreateDate"))
|
529
529
|
AccessKey.struct_class = Types::AccessKey
|
530
530
|
|
531
|
-
AccessKeyLastUsed.add_member(:last_used_date, Shapes::ShapeRef.new(shape: dateType,
|
531
|
+
AccessKeyLastUsed.add_member(:last_used_date, Shapes::ShapeRef.new(shape: dateType, location_name: "LastUsedDate"))
|
532
532
|
AccessKeyLastUsed.add_member(:service_name, Shapes::ShapeRef.new(shape: stringType, required: true, location_name: "ServiceName"))
|
533
533
|
AccessKeyLastUsed.add_member(:region, Shapes::ShapeRef.new(shape: stringType, required: true, location_name: "Region"))
|
534
534
|
AccessKeyLastUsed.struct_class = Types::AccessKeyLastUsed
|
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.105.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: 2024-08-
|
11
|
+
date: 2024-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|