aws-sdk-iam 1.91.0 → 1.93.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b714a3b6e88406a455e4ce1c1b7c1628a9587d5e55f0cecd226cc4937ce21767
4
- data.tar.gz: 87a8bf301eaffe5c823e2965cfe55a95d0944fce827a96b73b8a6e80988150e2
3
+ metadata.gz: 5d40d7c7e7aef8b0a765f0a8f9f3d0459eb26e61ef25060aaac254823b27c2e0
4
+ data.tar.gz: 1361203bb9b3b28bf8dcb00b4d5994d1ae2c21d217c485b888874431e5298faf
5
5
  SHA512:
6
- metadata.gz: fa73f58835545e420b8e4c570c1f3d6e927ed7ddb627e62ca9f800ad6c5a5e29320b750d291cf55d9214724ec85156419149229e27c40e15d7153ba86e12f2f2
7
- data.tar.gz: bb6dff464ac7ae4b803b17ca19189945982b3aaaf0c007cc010249ba30211df191c28657377e4f05addfa5da21545f552dcec8b3bd68df1918ddaef33ab97935
6
+ metadata.gz: 04df07ecd29481fb8b4813c13a93c82f207dc4eb79e78a2663d9af6a9599e3d24f1cacd0cdb033a7fa55135df44fb07ac630a51671824d2c9f25a67a89d20334
7
+ data.tar.gz: 04d035228f544aec7d9e60d999fc1b816f4ed55acb25184e327dafeeadc71f2082574586386281e6e691ce5e33ee26dd0e2397b99bcda6140ad35251b3c1514f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2023-12-26)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Identity and Access Management (IAM).
8
+
9
+ 1.92.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.91.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -1326,10 +1326,10 @@ module Aws::IAM
1326
1326
  # <note markdown="1"> Amazon Web Services secures communication with some OIDC identity
1327
1327
  # providers (IdPs) through our library of trusted root certificate
1328
1328
  # authorities (CAs) instead of using a certificate thumbprint to verify
1329
- # your IdP server certificate. These OIDC IdPs include Auth0, GitHub,
1330
- # Google, and those that use an Amazon S3 bucket to host a JSON Web Key
1331
- # Set (JWKS) endpoint. In these cases, your legacy thumbprint remains in
1332
- # your configuration, but is no longer used for validation.
1329
+ # your IdP server certificate. In these cases, your legacy thumbprint
1330
+ # remains in your configuration, but is no longer used for validation.
1331
+ # These OIDC IdPs include Auth0, GitHub, GitLab, Google, and those that
1332
+ # use an Amazon S3 bucket to host a JSON Web Key Set (JWKS) endpoint.
1333
1333
  #
1334
1334
  # </note>
1335
1335
  #
@@ -12489,10 +12489,10 @@ module Aws::IAM
12489
12489
  # <note markdown="1"> Amazon Web Services secures communication with some OIDC identity
12490
12490
  # providers (IdPs) through our library of trusted root certificate
12491
12491
  # authorities (CAs) instead of using a certificate thumbprint to verify
12492
- # your IdP server certificate. These OIDC IdPs include Auth0, GitHub,
12493
- # Google, and those that use an Amazon S3 bucket to host a JSON Web Key
12494
- # Set (JWKS) endpoint. In these cases, your legacy thumbprint remains in
12495
- # your configuration, but is no longer used for validation.
12492
+ # your IdP server certificate. In these cases, your legacy thumbprint
12493
+ # remains in your configuration, but is no longer used for validation.
12494
+ # These OIDC IdPs include Auth0, GitHub, GitLab, Google, and those that
12495
+ # use an Amazon S3 bucket to host a JSON Web Key Set (JWKS) endpoint.
12496
12496
  #
12497
12497
  # </note>
12498
12498
  #
@@ -13467,7 +13467,7 @@ module Aws::IAM
13467
13467
  params: params,
13468
13468
  config: config)
13469
13469
  context[:gem_name] = 'aws-sdk-iam'
13470
- context[:gem_version] = '1.91.0'
13470
+ context[:gem_version] = '1.93.0'
13471
13471
  Seahorse::Client::Request.new(handlers, context)
13472
13472
  end
13473
13473
 
@@ -25,16 +25,17 @@ module Aws::IAM
25
25
  # @api private
26
26
  class Handler < Seahorse::Client::Handler
27
27
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
28
  unless context[:discovered_endpoint]
30
29
  params = parameters_for_operation(context)
31
30
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
31
 
33
32
  context.http_request.endpoint = endpoint.url
34
33
  apply_endpoint_headers(context, endpoint.headers)
34
+
35
+ context[:endpoint_params] = params
36
+ context[:endpoint_properties] = endpoint.properties
35
37
  end
36
38
 
37
- context[:endpoint_params] = params
38
39
  context[:auth_scheme] =
39
40
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
41
 
data/lib/aws-sdk-iam.rb CHANGED
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-iam/customizations'
74
74
  # @!group service
75
75
  module Aws::IAM
76
76
 
77
- GEM_VERSION = '1.91.0'
77
+ GEM_VERSION = '1.93.0'
78
78
 
79
79
  end
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.91.0
4
+ version: 1.93.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: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2023-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core