aws-sdk-core 3.174.0 → 3.176.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: d4ecec9eaf3fee0d30bdd88558775c3553537df9dfd3fe4f62b694cba78b7991
4
- data.tar.gz: f99bff124648f74105f216af8de264e71151357a4ec645531d5c59dcfc696ef9
3
+ metadata.gz: 4d55f3964d4df747b72d706e88c7697db6abd63a6a6317339a909f07516bccc5
4
+ data.tar.gz: b1365f16a04b0c70d323149359e12ad2ed82a9cf30c9a6f208b3c2cdac64d735
5
5
  SHA512:
6
- metadata.gz: 2753ea337d9adde1dab3fbe9d72fbb3f31e9a8061e1a7be017f0eb48a1b56958edd03f8b84c2d634ff10254e4a7a565b40163739497420d5171affd6c880600f
7
- data.tar.gz: 767e58ebbbf1f3e95e835f86cffda3bc4ed9ba99f5fdc663fcb65c0996f15df918f30a6f27b8cf70b2c888a4dc315c9338c717508bc98f5e75b3f3568ff7a00b
6
+ metadata.gz: 71ca87725a33e2a3778203f522e908a8f793eb06446b7e703b250975ce0d089f3f317a7d9cf16541f2aed5d17e5562db153119c1d12cb101c15a8ed2db5c6112
7
+ data.tar.gz: 1d8a808a57567a21f0d265c87f1c300d5439853e931aa926126928cb228c1fcd3c48c880f13a28b5a44e64cd7e858186afeeca680be3dd6bc044bf430a2be6ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,20 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 3.176.0 (2023-06-28)
5
+ ------------------
6
+
7
+ * Feature - Add :expiration accessor to `CredentialProvider` and do not refresh credentials when checking expiration.
8
+
9
+ 3.175.0 (2023-06-15)
10
+ ------------------
11
+
12
+ * Feature - Updated Aws::STS::Client with the latest API changes.
13
+
14
+ * Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
15
+
16
+ * Feature - Updated Aws::SSO::Client with the latest API changes.
17
+
4
18
  3.174.0 (2023-05-31)
5
19
  ------------------
6
20
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.174.0
1
+ 3.176.0
@@ -20,7 +20,7 @@ module Aws
20
20
  # * Globally via the "AWS_DEFAULTS_MODE" environment variable.
21
21
  #
22
22
  #
23
- # @code_generation START - documentation
23
+ # #defaults START - documentation
24
24
  # The following `:default_mode` values are supported:
25
25
  #
26
26
  # * `'standard'` -
@@ -105,10 +105,10 @@ module Aws
105
105
  # [2]: https://docs.aws.amazon.com/sdkref/latest/guide/setting-global-retry_mode.html
106
106
  # [3]: https://docs.aws.amazon.com/sdkref/latest/guide/setting-global-sts_regional_endpoints.html
107
107
  #
108
- # @code_generation END - documentation
108
+ # #defaults END - documentation
109
109
  module DefaultsModeConfiguration
110
110
  # @api private
111
- # @code_generation START - configuration
111
+ # #defaults START - configuration
112
112
  SDK_DEFAULT_CONFIGURATION =
113
113
  {
114
114
  "version" => 1,
@@ -148,6 +148,6 @@ module Aws
148
148
  }
149
149
  }
150
150
  }
151
- # @code_generation END - configuration
151
+ # #defaults END - configuration
152
152
  end
153
153
  end
@@ -6,6 +6,9 @@ module Aws
6
6
  # @return [Credentials]
7
7
  attr_reader :credentials
8
8
 
9
+ # @param [Time]
10
+ attr_reader :expiration
11
+
9
12
  # @return [Boolean]
10
13
  def set?
11
14
  !!credentials && credentials.set?
@@ -36,12 +36,6 @@ module Aws
36
36
  @credentials
37
37
  end
38
38
 
39
- # @return [Time,nil]
40
- def expiration
41
- refresh_if_near_expiration!
42
- @expiration
43
- end
44
-
45
39
  # Refresh credentials.
46
40
  # @return [void]
47
41
  def refresh!
@@ -590,7 +590,7 @@ module Aws::SSO
590
590
  params: params,
591
591
  config: config)
592
592
  context[:gem_name] = 'aws-sdk-core'
593
- context[:gem_version] = '3.174.0'
593
+ context[:gem_version] = '3.176.0'
594
594
  Seahorse::Client::Request.new(handlers, context)
595
595
  end
596
596
 
@@ -9,6 +9,7 @@
9
9
 
10
10
 
11
11
  module Aws::SSO
12
+ # @api private
12
13
  module Endpoints
13
14
 
14
15
  class GetRoleCredentials
data/lib/aws-sdk-sso.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sso/customizations'
54
54
  # @!group service
55
55
  module Aws::SSO
56
56
 
57
- GEM_VERSION = '3.174.0'
57
+ GEM_VERSION = '3.176.0'
58
58
 
59
59
  end
@@ -586,7 +586,7 @@ module Aws::SSOOIDC
586
586
  params: params,
587
587
  config: config)
588
588
  context[:gem_name] = 'aws-sdk-core'
589
- context[:gem_version] = '3.174.0'
589
+ context[:gem_version] = '3.176.0'
590
590
  Seahorse::Client::Request.new(handlers, context)
591
591
  end
592
592
 
@@ -9,6 +9,7 @@
9
9
 
10
10
 
11
11
  module Aws::SSOOIDC
12
+ # @api private
12
13
  module Endpoints
13
14
 
14
15
  class CreateToken
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-ssooidc/customizations'
54
54
  # @!group service
55
55
  module Aws::SSOOIDC
56
56
 
57
- GEM_VERSION = '3.174.0'
57
+ GEM_VERSION = '3.176.0'
58
58
 
59
59
  end
@@ -2319,7 +2319,7 @@ module Aws::STS
2319
2319
  params: params,
2320
2320
  config: config)
2321
2321
  context[:gem_name] = 'aws-sdk-core'
2322
- context[:gem_version] = '3.174.0'
2322
+ context[:gem_version] = '3.176.0'
2323
2323
  Seahorse::Client::Request.new(handlers, context)
2324
2324
  end
2325
2325
 
@@ -9,6 +9,7 @@
9
9
 
10
10
 
11
11
  module Aws::STS
12
+ # @api private
12
13
  module Endpoints
13
14
 
14
15
  class AssumeRole
data/lib/aws-sdk-sts.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sts/customizations'
54
54
  # @!group service
55
55
  module Aws::STS
56
56
 
57
- GEM_VERSION = '3.174.0'
57
+ GEM_VERSION = '3.176.0'
58
58
 
59
59
  end
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.174.0
4
+ version: 3.176.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-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath