aws-sdk-core 3.202.1 → 3.202.2
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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-core.rb +9 -35
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +1 -1
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/aws-sdk-sts.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: 0072b215b84fdf20732969f2e6c471ba8b5b9a27de261addc0518fe650d31eec
|
|
4
|
+
data.tar.gz: 01e7506da1222047c1e852fa375b84f104a16476057de6448ad79582d5096345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4306a917a294c832eb03c3c26257b11d5e20a50224808ade0d71e3856f27c02c0e2e0ea0b9aab2c97718035938de0fd058b2abefb96dae00f07c2d3b1a44eb3c
|
|
7
|
+
data.tar.gz: 7fed48d60a2e1ae6dcf968af4c4291153417ef22b0b3e8aa69fae68d3b89b88ad43fb5f2d2a453295eb28b45376cb2602bfd3d688d8d7bbde3aa12b5c5e038d5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.202.
|
|
1
|
+
3.202.2
|
data/lib/aws-sdk-core.rb
CHANGED
|
@@ -109,30 +109,15 @@ require_relative 'aws-sdk-core/plugins/signature_v4'
|
|
|
109
109
|
# defaults
|
|
110
110
|
require_relative 'aws-defaults'
|
|
111
111
|
|
|
112
|
-
#
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
require_relative 'aws-sdk-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
require_relative 'aws-sdk-
|
|
120
|
-
require_relative 'aws-sdk-
|
|
121
|
-
require_relative 'aws-sdk-core/plugins/global_configuration'
|
|
122
|
-
require_relative 'aws-sdk-core/plugins/regional_endpoint'
|
|
123
|
-
require_relative 'aws-sdk-core/plugins/endpoint_discovery'
|
|
124
|
-
require_relative 'aws-sdk-core/plugins/endpoint_pattern'
|
|
125
|
-
require_relative 'aws-sdk-core/plugins/response_paging'
|
|
126
|
-
require_relative 'aws-sdk-core/plugins/stub_responses'
|
|
127
|
-
require_relative 'aws-sdk-core/plugins/idempotency_token'
|
|
128
|
-
require_relative 'aws-sdk-core/plugins/invocation_id'
|
|
129
|
-
require_relative 'aws-sdk-core/plugins/transfer_encoding'
|
|
130
|
-
require_relative 'aws-sdk-core/plugins/http_checksum'
|
|
131
|
-
require_relative 'aws-sdk-core/plugins/checksum_algorithm'
|
|
132
|
-
require_relative 'aws-sdk-core/plugins/request_compression'
|
|
133
|
-
require_relative 'aws-sdk-core/plugins/defaults_mode'
|
|
134
|
-
require_relative 'aws-sdk-core/plugins/recursion_detection'
|
|
135
|
-
require_relative 'aws-sdk-core/plugins/sign'
|
|
112
|
+
# plugins
|
|
113
|
+
# loaded through building STS or SSO ..
|
|
114
|
+
|
|
115
|
+
# aws-sdk-sts is included to support Aws::AssumeRoleCredentials
|
|
116
|
+
require_relative 'aws-sdk-sts'
|
|
117
|
+
|
|
118
|
+
# aws-sdk-sso is included to support Aws::SSOCredentials
|
|
119
|
+
require_relative 'aws-sdk-sso'
|
|
120
|
+
require_relative 'aws-sdk-ssooidc'
|
|
136
121
|
|
|
137
122
|
module Aws
|
|
138
123
|
|
|
@@ -220,14 +205,3 @@ module Aws
|
|
|
220
205
|
|
|
221
206
|
end
|
|
222
207
|
end
|
|
223
|
-
|
|
224
|
-
# Autoload bundled service gems used in credential providers
|
|
225
|
-
# need to ensure that the files are the local files from aws-sdk-core
|
|
226
|
-
# and not the installed, legacy/dummy service gems.
|
|
227
|
-
|
|
228
|
-
# aws-sdk-sts is included to support Aws::AssumeRoleCredentials
|
|
229
|
-
Aws.autoload :STS, File.join(__dir__, 'aws-sdk-sts.rb')
|
|
230
|
-
|
|
231
|
-
# aws-sdk-sso is included to support Aws::SSOCredentials
|
|
232
|
-
Aws.autoload :SSO, File.join(__dir__, 'aws-sdk-sso.rb')
|
|
233
|
-
Aws.autoload :SSOOIDC, File.join(__dir__, 'aws-sdk-ssooidc.rb')
|
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sso.rb
CHANGED
data/lib/aws-sdk-ssooidc.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -2389,7 +2389,7 @@ module Aws::STS
|
|
|
2389
2389
|
params: params,
|
|
2390
2390
|
config: config)
|
|
2391
2391
|
context[:gem_name] = 'aws-sdk-core'
|
|
2392
|
-
context[:gem_version] = '3.202.
|
|
2392
|
+
context[:gem_version] = '3.202.2'
|
|
2393
2393
|
Seahorse::Client::Request.new(handlers, context)
|
|
2394
2394
|
end
|
|
2395
2395
|
|
data/lib/aws-sdk-sts.rb
CHANGED
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.202.
|
|
4
|
+
version: 3.202.2
|
|
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-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|