aws-sdk-core 3.242.0 → 3.252.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 +68 -0
- data/VERSION +1 -1
- data/lib/aws-defaults/default_configuration.rb +1 -2
- data/lib/aws-sdk-core/cbor/decoder.rb +12 -11
- data/lib/aws-sdk-core/json/error_handler.rb +2 -1
- data/lib/aws-sdk-core/login_credentials.rb +1 -0
- data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +11 -8
- data/lib/aws-sdk-core/plugins/retry_errors.rb +198 -106
- data/lib/aws-sdk-core/plugins/user_agent.rb +13 -2
- data/lib/aws-sdk-core/sso_token_provider.rb +1 -0
- data/lib/aws-sdk-core/waiters/poller.rb +2 -2
- data/lib/aws-sdk-signin/client.rb +267 -8
- data/lib/aws-sdk-signin/client_api.rb +238 -0
- data/lib/aws-sdk-signin/endpoint_parameters.rb +8 -0
- data/lib/aws-sdk-signin/endpoint_provider.rb +42 -0
- data/lib/aws-sdk-signin/endpoints.rb +81 -1
- data/lib/aws-sdk-signin/errors.rb +63 -0
- data/lib/aws-sdk-signin/types.rb +416 -0
- data/lib/aws-sdk-signin.rb +1 -1
- data/lib/aws-sdk-sso/client.rb +6 -8
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +6 -8
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +6 -8
- data/lib/aws-sdk-sts/client_api.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- metadata +1 -1
data/lib/aws-sdk-signin.rb
CHANGED
data/lib/aws-sdk-sso/client.rb
CHANGED
|
@@ -199,7 +199,7 @@ module Aws::SSO
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::SSO
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -698,7 +696,7 @@ module Aws::SSO
|
|
|
698
696
|
tracer: tracer
|
|
699
697
|
)
|
|
700
698
|
context[:gem_name] = 'aws-sdk-core'
|
|
701
|
-
context[:gem_version] = '3.
|
|
699
|
+
context[:gem_version] = '3.252.0'
|
|
702
700
|
Seahorse::Client::Request.new(handlers, context)
|
|
703
701
|
end
|
|
704
702
|
|
data/lib/aws-sdk-sso.rb
CHANGED
|
@@ -199,7 +199,7 @@ module Aws::SSOOIDC
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::SSOOIDC
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -1081,7 +1079,7 @@ module Aws::SSOOIDC
|
|
|
1081
1079
|
tracer: tracer
|
|
1082
1080
|
)
|
|
1083
1081
|
context[:gem_name] = 'aws-sdk-core'
|
|
1084
|
-
context[:gem_version] = '3.
|
|
1082
|
+
context[:gem_version] = '3.252.0'
|
|
1085
1083
|
Seahorse::Client::Request.new(handlers, context)
|
|
1086
1084
|
end
|
|
1087
1085
|
|
data/lib/aws-sdk-ssooidc.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -201,7 +201,7 @@ module Aws::STS
|
|
|
201
201
|
# the required types.
|
|
202
202
|
#
|
|
203
203
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
204
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
204
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
205
205
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
206
206
|
#
|
|
207
207
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -325,17 +325,15 @@ module Aws::STS
|
|
|
325
325
|
# @option options [String] :retry_mode ("legacy")
|
|
326
326
|
# Specifies which retry algorithm to use. Values are:
|
|
327
327
|
#
|
|
328
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
329
|
-
# no retry mode is provided.
|
|
328
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
329
|
+
# value if no retry mode is provided.
|
|
330
330
|
#
|
|
331
331
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
332
332
|
# This includes support for retry quotas, which limit the number of
|
|
333
333
|
# unsuccessful retries a client can make.
|
|
334
334
|
#
|
|
335
|
-
# * `adaptive` -
|
|
336
|
-
#
|
|
337
|
-
# throttling. This is a provisional mode that may change behavior
|
|
338
|
-
# in the future.
|
|
335
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
336
|
+
# `standard` mode along with automatic client side throttling.
|
|
339
337
|
#
|
|
340
338
|
# @option options [String] :sdk_ua_app_id
|
|
341
339
|
# A unique and opaque application ID that is appended to the
|
|
@@ -2725,7 +2723,7 @@ module Aws::STS
|
|
|
2725
2723
|
tracer: tracer
|
|
2726
2724
|
)
|
|
2727
2725
|
context[:gem_name] = 'aws-sdk-core'
|
|
2728
|
-
context[:gem_version] = '3.
|
|
2726
|
+
context[:gem_version] = '3.252.0'
|
|
2729
2727
|
Seahorse::Client::Request.new(handlers, context)
|
|
2730
2728
|
end
|
|
2731
2729
|
|
|
@@ -315,7 +315,7 @@ module Aws::STS
|
|
|
315
315
|
|
|
316
316
|
api.metadata = {
|
|
317
317
|
"apiVersion" => "2011-06-15",
|
|
318
|
-
"auth" => ["aws.auth#sigv4"],
|
|
318
|
+
"auth" => ["aws.auth#sigv4", "aws.auth#sigv4a"],
|
|
319
319
|
"endpointPrefix" => "sts",
|
|
320
320
|
"globalEndpoint" => "sts.amazonaws.com",
|
|
321
321
|
"protocol" => "query",
|
data/lib/aws-sdk-sts.rb
CHANGED