aws-sdk-core 3.228.0 → 3.229.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 +9 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +22 -21
- data/lib/aws-sdk-sso/client.rb +10 -13
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +10 -13
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +10 -13
- data/lib/aws-sdk-sts.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: bc59968a13d46354d79845e8249b17859fa38bdb7fbb8c34d7b65d88a4ba944e
|
4
|
+
data.tar.gz: 8e320632b66e1cc387e614bcdbb21bcfd4fce75e76829b01cd625be5db34b6f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad44f4003065f24cdf6900730ef1c19c665041ab130fd9ffde41f69571b1dd87ac18073ced4d7d94884707b79067ba6f8ff3d9f8bfe3e576ca70ec1cf014f14e
|
7
|
+
data.tar.gz: de124ed509b1f008238d79221f2ddd71685a2dfc9eb039daaffa7c2202b01581b14c1d234a2c2f292131b51b5155f2504eeee858b31e814e97ec88d467cdbbd0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
3.229.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated Aws::STS::Client with the latest API changes.
|
8
|
+
|
9
|
+
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
|
10
|
+
|
11
|
+
* Feature - Updated Aws::SSO::Client with the latest API changes.
|
12
|
+
|
4
13
|
3.228.0 (2025-07-31)
|
5
14
|
------------------
|
6
15
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.229.0
|
@@ -14,7 +14,8 @@ module Aws
|
|
14
14
|
|
15
15
|
option(:account_id, doc_type: String, docstring: '')
|
16
16
|
|
17
|
-
option(
|
17
|
+
option(
|
18
|
+
:profile,
|
18
19
|
doc_default: 'default',
|
19
20
|
doc_type: String,
|
20
21
|
docstring: <<~DOCS)
|
@@ -22,13 +23,14 @@ module Aws
|
|
22
23
|
When not specified, 'default' is used.
|
23
24
|
DOCS
|
24
25
|
|
25
|
-
option(
|
26
|
+
option(
|
27
|
+
:credentials,
|
26
28
|
required: true,
|
27
29
|
doc_type: 'Aws::CredentialProvider',
|
28
30
|
rbs_type: 'untyped',
|
29
31
|
docstring: <<~DOCS
|
30
|
-
Your AWS credentials used for authentication. This can be
|
31
|
-
following classes:
|
32
|
+
Your AWS credentials used for authentication. This can be any class that includes and implements
|
33
|
+
`Aws::CredentialProvider`, or instance of any one of the following classes:
|
32
34
|
|
33
35
|
* `Aws::Credentials` - Used for configuring static, non-refreshing
|
34
36
|
credentials.
|
@@ -56,27 +58,24 @@ module Aws
|
|
56
58
|
* `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
57
59
|
from the Cognito Identity service.
|
58
60
|
|
59
|
-
When `:credentials` are not configured directly, the following
|
60
|
-
locations will be searched for credentials:
|
61
|
+
When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
61
62
|
|
62
63
|
* `Aws.config[:credentials]`
|
63
|
-
|
64
|
+
|
64
65
|
* The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
65
66
|
`:account_id` options.
|
66
|
-
|
67
|
+
|
67
68
|
* `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
68
69
|
`ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
69
|
-
|
70
|
+
|
70
71
|
* `~/.aws/credentials`
|
71
|
-
|
72
|
+
|
72
73
|
* `~/.aws/config`
|
73
|
-
|
74
|
-
* EC2/ECS IMDS instance profile - When used by default, the timeouts
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
79
|
-
to `true`.
|
74
|
+
|
75
|
+
* EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
76
|
+
Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
77
|
+
enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
78
|
+
setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
80
79
|
DOCS
|
81
80
|
) do |config|
|
82
81
|
CredentialProviderChain.new(config).resolve
|
@@ -86,12 +85,13 @@ module Aws
|
|
86
85
|
|
87
86
|
option(:instance_profile_credentials_timeout, 1)
|
88
87
|
|
89
|
-
option(
|
88
|
+
option(
|
89
|
+
:token_provider,
|
90
90
|
doc_type: 'Aws::TokenProvider',
|
91
91
|
rbs_type: 'untyped',
|
92
92
|
docstring: <<~DOCS
|
93
|
-
Your Bearer token used for authentication. This can be
|
94
|
-
following classes:
|
93
|
+
Your Bearer token used for authentication. This can be any class that includes and implements
|
94
|
+
`Aws::TokenProvider`, or instance of any one of the following classes:
|
95
95
|
|
96
96
|
* `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
97
97
|
tokens.
|
@@ -106,7 +106,8 @@ module Aws
|
|
106
106
|
TokenProviderChain.new(config).resolve
|
107
107
|
end
|
108
108
|
|
109
|
-
option(
|
109
|
+
option(
|
110
|
+
:auth_scheme_preference,
|
110
111
|
doc_type: 'Array<String>',
|
111
112
|
rbs_type: 'Array[String]',
|
112
113
|
docstring: <<~DOCS
|
data/lib/aws-sdk-sso/client.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::SSO
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::SSO
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::SSO
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -377,8 +374,8 @@ module Aws::SSO
|
|
377
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
378
375
|
#
|
379
376
|
# @option options [Aws::TokenProvider] :token_provider
|
380
|
-
# Your Bearer token used for authentication. This can be
|
381
|
-
# following classes:
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
382
379
|
#
|
383
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
384
381
|
# tokens.
|
@@ -701,7 +698,7 @@ module Aws::SSO
|
|
701
698
|
tracer: tracer
|
702
699
|
)
|
703
700
|
context[:gem_name] = 'aws-sdk-core'
|
704
|
-
context[:gem_version] = '3.
|
701
|
+
context[:gem_version] = '3.229.0'
|
705
702
|
Seahorse::Client::Request.new(handlers, context)
|
706
703
|
end
|
707
704
|
|
data/lib/aws-sdk-sso.rb
CHANGED
@@ -95,8 +95,8 @@ module Aws::SSOOIDC
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::SSOOIDC
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::SSOOIDC
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -377,8 +374,8 @@ module Aws::SSOOIDC
|
|
377
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
378
375
|
#
|
379
376
|
# @option options [Aws::TokenProvider] :token_provider
|
380
|
-
# Your Bearer token used for authentication. This can be
|
381
|
-
# following classes:
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
382
379
|
#
|
383
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
384
381
|
# tokens.
|
@@ -1071,7 +1068,7 @@ module Aws::SSOOIDC
|
|
1071
1068
|
tracer: tracer
|
1072
1069
|
)
|
1073
1070
|
context[:gem_name] = 'aws-sdk-core'
|
1074
|
-
context[:gem_version] = '3.
|
1071
|
+
context[:gem_version] = '3.229.0'
|
1075
1072
|
Seahorse::Client::Request.new(handlers, context)
|
1076
1073
|
end
|
1077
1074
|
|
data/lib/aws-sdk-ssooidc.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
@@ -97,8 +97,8 @@ module Aws::STS
|
|
97
97
|
# class name or an instance of a plugin class.
|
98
98
|
#
|
99
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
100
|
-
# Your AWS credentials used for authentication. This can be
|
101
|
-
# following classes:
|
100
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
101
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
102
102
|
#
|
103
103
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
104
104
|
# credentials.
|
@@ -126,8 +126,7 @@ module Aws::STS
|
|
126
126
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
127
127
|
# from the Cognito Identity service.
|
128
128
|
#
|
129
|
-
# When `:credentials` are not configured directly, the following
|
130
|
-
# locations will be searched for credentials:
|
129
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
131
130
|
#
|
132
131
|
# * `Aws.config[:credentials]`
|
133
132
|
#
|
@@ -141,12 +140,10 @@ module Aws::STS
|
|
141
140
|
#
|
142
141
|
# * `~/.aws/config`
|
143
142
|
#
|
144
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
145
|
-
#
|
146
|
-
#
|
147
|
-
#
|
148
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
149
|
-
# to `true`.
|
143
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
144
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
145
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
146
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
150
147
|
#
|
151
148
|
# @option options [required, String] :region
|
152
149
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::STS
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -2604,7 +2601,7 @@ module Aws::STS
|
|
2604
2601
|
tracer: tracer
|
2605
2602
|
)
|
2606
2603
|
context[:gem_name] = 'aws-sdk-core'
|
2607
|
-
context[:gem_version] = '3.
|
2604
|
+
context[:gem_version] = '3.229.0'
|
2608
2605
|
Seahorse::Client::Request.new(handlers, context)
|
2609
2606
|
end
|
2610
2607
|
|
data/lib/aws-sdk-sts.rb
CHANGED