aws-sdk-core 3.124.0 → 3.186.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +552 -0
- data/VERSION +1 -1
- data/lib/aws-defaults/default_configuration.rb +153 -0
- data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
- data/lib/aws-defaults.rb +3 -0
- data/lib/aws-sdk-core/arn.rb +13 -0
- data/lib/aws-sdk-core/assume_role_credentials.rb +21 -7
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +14 -10
- data/lib/aws-sdk-core/binary/encode_handler.rb +12 -1
- data/lib/aws-sdk-core/client_stubs.rb +5 -1
- data/lib/aws-sdk-core/credential_provider.rb +3 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +8 -5
- data/lib/aws-sdk-core/ec2_metadata.rb +3 -2
- data/lib/aws-sdk-core/ecs_credentials.rb +121 -53
- data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
- data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
- data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
- data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
- data/lib/aws-sdk-core/endpoints/function.rb +80 -0
- data/lib/aws-sdk-core/endpoints/matchers.rb +131 -0
- data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
- data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
- data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
- data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
- data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
- data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
- data/lib/aws-sdk-core/endpoints/url.rb +60 -0
- data/lib/aws-sdk-core/endpoints.rb +78 -0
- data/lib/aws-sdk-core/errors.rb +15 -2
- data/lib/aws-sdk-core/ini_parser.rb +7 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +124 -31
- data/lib/aws-sdk-core/json/error_handler.rb +20 -1
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/formatter.rb +6 -0
- data/lib/aws-sdk-core/pageable_response.rb +81 -32
- data/lib/aws-sdk-core/param_validator.rb +2 -2
- data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
- data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +24 -0
- data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +6 -2
- data/lib/aws-sdk-core/plugins/http_checksum.rb +8 -1
- data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +34 -6
- data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +111 -30
- data/lib/aws-sdk-core/plugins/request_compression.rb +217 -0
- data/lib/aws-sdk-core/plugins/response_paging.rb +1 -1
- data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +7 -4
- data/lib/aws-sdk-core/plugins/retry_errors.rb +21 -5
- data/lib/aws-sdk-core/plugins/sign.rb +201 -0
- data/lib/aws-sdk-core/plugins/signature_v2.rb +1 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +15 -8
- data/lib/aws-sdk-core/plugins/stub_responses.rb +5 -1
- data/lib/aws-sdk-core/plugins/user_agent.rb +117 -14
- data/lib/aws-sdk-core/process_credentials.rb +9 -11
- data/lib/aws-sdk-core/refreshing_credentials.rb +41 -16
- data/lib/aws-sdk-core/refreshing_token.rb +71 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -1
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -8
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +43 -29
- data/lib/aws-sdk-core/shared_config.rb +108 -12
- data/lib/aws-sdk-core/sso_credentials.rb +91 -50
- data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
- data/lib/aws-sdk-core/static_token_provider.rb +14 -0
- data/lib/aws-sdk-core/structure.rb +6 -4
- data/lib/aws-sdk-core/stubbing/stub_data.rb +11 -0
- data/lib/aws-sdk-core/token.rb +31 -0
- data/lib/aws-sdk-core/token_provider.rb +15 -0
- data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
- data/lib/aws-sdk-core/waiters/poller.rb +3 -1
- data/lib/aws-sdk-core/xml/error_handler.rb +7 -0
- data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
- data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -1
- data/lib/aws-sdk-core.rb +17 -0
- data/lib/aws-sdk-sso/client.rb +85 -12
- data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-sso/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-sso/endpoints.rb +72 -0
- data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
- data/lib/aws-sdk-sso/types.rb +8 -43
- data/lib/aws-sdk-sso.rb +5 -1
- data/lib/aws-sdk-ssooidc/client.rb +626 -0
- data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
- data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
- data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ssooidc/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-ssooidc/endpoints.rb +58 -0
- data/lib/aws-sdk-ssooidc/errors.rb +290 -0
- data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
- data/lib/aws-sdk-ssooidc/resource.rb +26 -0
- data/lib/aws-sdk-ssooidc/types.rb +502 -0
- data/lib/aws-sdk-ssooidc.rb +59 -0
- data/lib/aws-sdk-sts/client.rb +332 -263
- data/lib/aws-sdk-sts/client_api.rb +12 -1
- data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
- data/lib/aws-sdk-sts/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-sts/endpoints.rb +136 -0
- data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +5 -1
- data/lib/aws-sdk-sts/presigner.rb +13 -15
- data/lib/aws-sdk-sts/types.rb +121 -204
- data/lib/aws-sdk-sts.rb +5 -1
- data/lib/seahorse/client/async_base.rb +0 -1
- data/lib/seahorse/client/configuration.rb +1 -5
- data/lib/seahorse/client/h2/connection.rb +12 -11
- data/lib/seahorse/client/net_http/connection_pool.rb +7 -0
- data/lib/seahorse/client/plugins/net_http.rb +33 -2
- data/lib/seahorse/client/plugins/request_callback.rb +40 -9
- data/lib/seahorse/client/response.rb +6 -0
- data/lib/seahorse/model/operation.rb +6 -0
- data/lib/seahorse/util.rb +4 -0
- metadata +62 -8
@@ -9,9 +9,13 @@ module Seahorse
|
|
9
9
|
|
10
10
|
option(:http_proxy, default: nil, doc_type: String, docstring: '')
|
11
11
|
|
12
|
-
option(:http_open_timeout, default: 15, doc_type: Integer, docstring: '')
|
12
|
+
option(:http_open_timeout, default: 15, doc_type: Integer, docstring: '') do |cfg|
|
13
|
+
resolve_http_open_timeout(cfg)
|
14
|
+
end
|
13
15
|
|
14
|
-
option(:http_read_timeout, default: 60, doc_type: Integer, docstring: '')
|
16
|
+
option(:http_read_timeout, default: 60, doc_type: Integer, docstring: '') do |cfg|
|
17
|
+
resolve_http_read_timeout(cfg)
|
18
|
+
end
|
15
19
|
|
16
20
|
option(:http_idle_timeout, default: 5, doc_type: Integer, docstring: '')
|
17
21
|
|
@@ -30,10 +34,37 @@ module Seahorse
|
|
30
34
|
|
31
35
|
option(:ssl_ca_store, default: nil, doc_type: String, docstring: '')
|
32
36
|
|
37
|
+
option(:ssl_timeout, default: nil, doc_type: Float, docstring: '') do |cfg|
|
38
|
+
resolve_ssl_timeout(cfg)
|
39
|
+
end
|
40
|
+
|
33
41
|
option(:logger) # for backwards compat
|
34
42
|
|
35
43
|
handler(Client::NetHttp::Handler, step: :send)
|
36
44
|
|
45
|
+
def self.resolve_http_open_timeout(cfg)
|
46
|
+
default_mode_value =
|
47
|
+
if cfg.respond_to?(:defaults_mode_config_resolver)
|
48
|
+
cfg.defaults_mode_config_resolver.resolve(:http_open_timeout)
|
49
|
+
end
|
50
|
+
default_mode_value || 15
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.resolve_http_read_timeout(cfg)
|
54
|
+
default_mode_value =
|
55
|
+
if cfg.respond_to?(:defaults_mode_config_resolver)
|
56
|
+
cfg.defaults_mode_config_resolver.resolve(:http_read_timeout)
|
57
|
+
end
|
58
|
+
default_mode_value || 60
|
59
|
+
end
|
60
|
+
|
61
|
+
def self.resolve_ssl_timeout(cfg)
|
62
|
+
default_mode_value =
|
63
|
+
if cfg.respond_to?(:defaults_mode_config_resolver)
|
64
|
+
cfg.defaults_mode_config_resolver.resolve(:ssl_timeout)
|
65
|
+
end
|
66
|
+
default_mode_value || nil
|
67
|
+
end
|
37
68
|
end
|
38
69
|
end
|
39
70
|
end
|
@@ -60,6 +60,16 @@ the number of bytes read from the body, and the total number of
|
|
60
60
|
bytes in the body.
|
61
61
|
DOCS
|
62
62
|
|
63
|
+
option(:on_chunk_received,
|
64
|
+
default: nil,
|
65
|
+
doc_type: 'Proc',
|
66
|
+
docstring: <<-DOCS)
|
67
|
+
When a Proc object is provided, it will be used as callback when each chunk
|
68
|
+
of the response body is received. It provides three arguments: the chunk,
|
69
|
+
the number of bytes received, and the total number of
|
70
|
+
bytes in the response (or nil if the server did not send a `content-length`).
|
71
|
+
DOCS
|
72
|
+
|
63
73
|
# @api private
|
64
74
|
class OptionHandler < Client::Handler
|
65
75
|
def call(context)
|
@@ -68,8 +78,29 @@ bytes in the body.
|
|
68
78
|
end
|
69
79
|
on_chunk_sent = context.config.on_chunk_sent if on_chunk_sent.nil?
|
70
80
|
context[:on_chunk_sent] = on_chunk_sent if on_chunk_sent
|
81
|
+
|
82
|
+
if context.params.is_a?(Hash) && context.params[:on_chunk_received]
|
83
|
+
on_chunk_received = context.params.delete(:on_chunk_received)
|
84
|
+
end
|
85
|
+
on_chunk_received = context.config.on_chunk_received if on_chunk_received.nil?
|
86
|
+
|
87
|
+
add_response_events(on_chunk_received, context) if on_chunk_received
|
88
|
+
|
71
89
|
@handler.call(context)
|
72
90
|
end
|
91
|
+
|
92
|
+
def add_response_events(on_chunk_received, context)
|
93
|
+
shared_data = {bytes_received: 0}
|
94
|
+
|
95
|
+
context.http_response.on_headers do |_status, headers|
|
96
|
+
shared_data[:content_length] = headers['content-length']&.to_i
|
97
|
+
end
|
98
|
+
|
99
|
+
context.http_response.on_data do |chunk|
|
100
|
+
shared_data[:bytes_received] += chunk.bytesize if chunk && chunk.respond_to?(:bytesize)
|
101
|
+
on_chunk_received.call(chunk, shared_data[:bytes_received], shared_data[:content_length])
|
102
|
+
end
|
103
|
+
end
|
73
104
|
end
|
74
105
|
|
75
106
|
# @api private
|
@@ -80,18 +111,18 @@ bytes in the body.
|
|
80
111
|
context.http_request.body,
|
81
112
|
callback
|
82
113
|
)
|
83
|
-
|
114
|
+
@handler.call(context).tap do
|
115
|
+
unwrap_callback_body(context)
|
116
|
+
end
|
117
|
+
else
|
118
|
+
@handler.call(context)
|
84
119
|
end
|
85
|
-
@handler.call(context)
|
86
120
|
end
|
87
121
|
|
88
|
-
def
|
89
|
-
|
90
|
-
|
91
|
-
body =
|
92
|
-
if body.is_a? ReadCallbackIO
|
93
|
-
context.http_request.body = body.io
|
94
|
-
end
|
122
|
+
def unwrap_callback_body(context)
|
123
|
+
body = context.http_request.body
|
124
|
+
if body.is_a? ReadCallbackIO
|
125
|
+
context.http_request.body = body.io
|
95
126
|
end
|
96
127
|
end
|
97
128
|
end
|
@@ -30,6 +30,12 @@ module Seahorse
|
|
30
30
|
# @return [StandardError, nil]
|
31
31
|
attr_accessor :error
|
32
32
|
|
33
|
+
# @return [String, nil] returns the algorithm used to validate
|
34
|
+
# the response checksum. Returns nil if no verification was done.
|
35
|
+
def checksum_validated
|
36
|
+
context[:http_checksum][:validated] if context[:http_checksum]
|
37
|
+
end
|
38
|
+
|
33
39
|
# @overload on(status_code, &block)
|
34
40
|
# @param [Integer] status_code The block will be
|
35
41
|
# triggered only for responses with the given status code.
|
@@ -25,6 +25,12 @@ module Seahorse
|
|
25
25
|
# @return [Boolean]
|
26
26
|
attr_accessor :http_checksum_required
|
27
27
|
|
28
|
+
# @return [Hash]
|
29
|
+
attr_accessor :http_checksum
|
30
|
+
|
31
|
+
# @return [Hash]
|
32
|
+
attr_accessor :request_compression
|
33
|
+
|
28
34
|
# @return [Boolean]
|
29
35
|
attr_accessor :deprecated
|
30
36
|
|
data/lib/seahorse/util.rb
CHANGED
@@ -14,6 +14,10 @@ module Seahorse
|
|
14
14
|
path.gsub(/[^\/]+/) { |part| uri_escape(part) }
|
15
15
|
end
|
16
16
|
|
17
|
+
def escape_header_list_string(s)
|
18
|
+
s.include?('"') || s.include?(',') ? "\"#{s.gsub('"', '\"')}\"" : s
|
19
|
+
end
|
20
|
+
|
17
21
|
# Checks for a valid host label
|
18
22
|
# @see https://tools.ietf.org/html/rfc3986#section-3.2.2
|
19
23
|
# @see https://tools.ietf.org/html/rfc1123#page-13
|
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.
|
4
|
+
version: 3.186.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:
|
11
|
+
date: 2023-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -16,14 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1
|
19
|
+
version: '1'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.6.1
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
27
|
- - "~>"
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1
|
29
|
+
version: '1'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.6.1
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: aws-partitions
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -33,7 +39,7 @@ dependencies:
|
|
33
39
|
version: '1'
|
34
40
|
- - ">="
|
35
41
|
- !ruby/object:Gem::Version
|
36
|
-
version: 1.
|
42
|
+
version: 1.651.0
|
37
43
|
type: :runtime
|
38
44
|
prerelease: false
|
39
45
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,21 +49,21 @@ dependencies:
|
|
43
49
|
version: '1'
|
44
50
|
- - ">="
|
45
51
|
- !ruby/object:Gem::Version
|
46
|
-
version: 1.
|
52
|
+
version: 1.651.0
|
47
53
|
- !ruby/object:Gem::Dependency
|
48
54
|
name: aws-sigv4
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
50
56
|
requirements:
|
51
57
|
- - "~>"
|
52
58
|
- !ruby/object:Gem::Version
|
53
|
-
version: '1.
|
59
|
+
version: '1.5'
|
54
60
|
type: :runtime
|
55
61
|
prerelease: false
|
56
62
|
version_requirements: !ruby/object:Gem::Requirement
|
57
63
|
requirements:
|
58
64
|
- - "~>"
|
59
65
|
- !ruby/object:Gem::Version
|
60
|
-
version: '1.
|
66
|
+
version: '1.5'
|
61
67
|
- !ruby/object:Gem::Dependency
|
62
68
|
name: aws-eventstream
|
63
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -89,6 +95,9 @@ files:
|
|
89
95
|
- LICENSE.txt
|
90
96
|
- VERSION
|
91
97
|
- ca-bundle.crt
|
98
|
+
- lib/aws-defaults.rb
|
99
|
+
- lib/aws-defaults/default_configuration.rb
|
100
|
+
- lib/aws-defaults/defaults_mode_config_resolver.rb
|
92
101
|
- lib/aws-sdk-core.rb
|
93
102
|
- lib/aws-sdk-core/arn.rb
|
94
103
|
- lib/aws-sdk-core/arn_parser.rb
|
@@ -113,6 +122,20 @@ files:
|
|
113
122
|
- lib/aws-sdk-core/ec2_metadata.rb
|
114
123
|
- lib/aws-sdk-core/ecs_credentials.rb
|
115
124
|
- lib/aws-sdk-core/endpoint_cache.rb
|
125
|
+
- lib/aws-sdk-core/endpoints.rb
|
126
|
+
- lib/aws-sdk-core/endpoints/condition.rb
|
127
|
+
- lib/aws-sdk-core/endpoints/endpoint.rb
|
128
|
+
- lib/aws-sdk-core/endpoints/endpoint_rule.rb
|
129
|
+
- lib/aws-sdk-core/endpoints/error_rule.rb
|
130
|
+
- lib/aws-sdk-core/endpoints/function.rb
|
131
|
+
- lib/aws-sdk-core/endpoints/matchers.rb
|
132
|
+
- lib/aws-sdk-core/endpoints/reference.rb
|
133
|
+
- lib/aws-sdk-core/endpoints/rule.rb
|
134
|
+
- lib/aws-sdk-core/endpoints/rule_set.rb
|
135
|
+
- lib/aws-sdk-core/endpoints/rules_provider.rb
|
136
|
+
- lib/aws-sdk-core/endpoints/templater.rb
|
137
|
+
- lib/aws-sdk-core/endpoints/tree_rule.rb
|
138
|
+
- lib/aws-sdk-core/endpoints/url.rb
|
116
139
|
- lib/aws-sdk-core/errors.rb
|
117
140
|
- lib/aws-sdk-core/event_emitter.rb
|
118
141
|
- lib/aws-sdk-core/ini_parser.rb
|
@@ -136,9 +159,12 @@ files:
|
|
136
159
|
- lib/aws-sdk-core/plugins/apig_authorizer_token.rb
|
137
160
|
- lib/aws-sdk-core/plugins/apig_credentials_configuration.rb
|
138
161
|
- lib/aws-sdk-core/plugins/apig_user_agent.rb
|
162
|
+
- lib/aws-sdk-core/plugins/bearer_authorization.rb
|
163
|
+
- lib/aws-sdk-core/plugins/checksum_algorithm.rb
|
139
164
|
- lib/aws-sdk-core/plugins/client_metrics_plugin.rb
|
140
165
|
- lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb
|
141
166
|
- lib/aws-sdk-core/plugins/credentials_configuration.rb
|
167
|
+
- lib/aws-sdk-core/plugins/defaults_mode.rb
|
142
168
|
- lib/aws-sdk-core/plugins/endpoint_discovery.rb
|
143
169
|
- lib/aws-sdk-core/plugins/endpoint_pattern.rb
|
144
170
|
- lib/aws-sdk-core/plugins/event_stream_configuration.rb
|
@@ -157,13 +183,16 @@ files:
|
|
157
183
|
- lib/aws-sdk-core/plugins/protocols/query.rb
|
158
184
|
- lib/aws-sdk-core/plugins/protocols/rest_json.rb
|
159
185
|
- lib/aws-sdk-core/plugins/protocols/rest_xml.rb
|
186
|
+
- lib/aws-sdk-core/plugins/recursion_detection.rb
|
160
187
|
- lib/aws-sdk-core/plugins/regional_endpoint.rb
|
188
|
+
- lib/aws-sdk-core/plugins/request_compression.rb
|
161
189
|
- lib/aws-sdk-core/plugins/response_paging.rb
|
162
190
|
- lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb
|
163
191
|
- lib/aws-sdk-core/plugins/retries/clock_skew.rb
|
164
192
|
- lib/aws-sdk-core/plugins/retries/error_inspector.rb
|
165
193
|
- lib/aws-sdk-core/plugins/retries/retry_quota.rb
|
166
194
|
- lib/aws-sdk-core/plugins/retry_errors.rb
|
195
|
+
- lib/aws-sdk-core/plugins/sign.rb
|
167
196
|
- lib/aws-sdk-core/plugins/signature_v2.rb
|
168
197
|
- lib/aws-sdk-core/plugins/signature_v4.rb
|
169
198
|
- lib/aws-sdk-core/plugins/stub_responses.rb
|
@@ -177,6 +206,7 @@ files:
|
|
177
206
|
- lib/aws-sdk-core/query/param_builder.rb
|
178
207
|
- lib/aws-sdk-core/query/param_list.rb
|
179
208
|
- lib/aws-sdk-core/refreshing_credentials.rb
|
209
|
+
- lib/aws-sdk-core/refreshing_token.rb
|
180
210
|
- lib/aws-sdk-core/resources/collection.rb
|
181
211
|
- lib/aws-sdk-core/rest.rb
|
182
212
|
- lib/aws-sdk-core/rest/handler.rb
|
@@ -192,6 +222,8 @@ files:
|
|
192
222
|
- lib/aws-sdk-core/shared_config.rb
|
193
223
|
- lib/aws-sdk-core/shared_credentials.rb
|
194
224
|
- lib/aws-sdk-core/sso_credentials.rb
|
225
|
+
- lib/aws-sdk-core/sso_token_provider.rb
|
226
|
+
- lib/aws-sdk-core/static_token_provider.rb
|
195
227
|
- lib/aws-sdk-core/structure.rb
|
196
228
|
- lib/aws-sdk-core/stubbing/data_applicator.rb
|
197
229
|
- lib/aws-sdk-core/stubbing/empty_stub.rb
|
@@ -204,6 +236,9 @@ files:
|
|
204
236
|
- lib/aws-sdk-core/stubbing/protocols/rest_xml.rb
|
205
237
|
- lib/aws-sdk-core/stubbing/stub_data.rb
|
206
238
|
- lib/aws-sdk-core/stubbing/xml_error.rb
|
239
|
+
- lib/aws-sdk-core/token.rb
|
240
|
+
- lib/aws-sdk-core/token_provider.rb
|
241
|
+
- lib/aws-sdk-core/token_provider_chain.rb
|
207
242
|
- lib/aws-sdk-core/type_builder.rb
|
208
243
|
- lib/aws-sdk-core/util.rb
|
209
244
|
- lib/aws-sdk-core/waiters.rb
|
@@ -229,14 +264,33 @@ files:
|
|
229
264
|
- lib/aws-sdk-sso/client.rb
|
230
265
|
- lib/aws-sdk-sso/client_api.rb
|
231
266
|
- lib/aws-sdk-sso/customizations.rb
|
267
|
+
- lib/aws-sdk-sso/endpoint_parameters.rb
|
268
|
+
- lib/aws-sdk-sso/endpoint_provider.rb
|
269
|
+
- lib/aws-sdk-sso/endpoints.rb
|
232
270
|
- lib/aws-sdk-sso/errors.rb
|
271
|
+
- lib/aws-sdk-sso/plugins/endpoints.rb
|
233
272
|
- lib/aws-sdk-sso/resource.rb
|
234
273
|
- lib/aws-sdk-sso/types.rb
|
274
|
+
- lib/aws-sdk-ssooidc.rb
|
275
|
+
- lib/aws-sdk-ssooidc/client.rb
|
276
|
+
- lib/aws-sdk-ssooidc/client_api.rb
|
277
|
+
- lib/aws-sdk-ssooidc/customizations.rb
|
278
|
+
- lib/aws-sdk-ssooidc/endpoint_parameters.rb
|
279
|
+
- lib/aws-sdk-ssooidc/endpoint_provider.rb
|
280
|
+
- lib/aws-sdk-ssooidc/endpoints.rb
|
281
|
+
- lib/aws-sdk-ssooidc/errors.rb
|
282
|
+
- lib/aws-sdk-ssooidc/plugins/endpoints.rb
|
283
|
+
- lib/aws-sdk-ssooidc/resource.rb
|
284
|
+
- lib/aws-sdk-ssooidc/types.rb
|
235
285
|
- lib/aws-sdk-sts.rb
|
236
286
|
- lib/aws-sdk-sts/client.rb
|
237
287
|
- lib/aws-sdk-sts/client_api.rb
|
238
288
|
- lib/aws-sdk-sts/customizations.rb
|
289
|
+
- lib/aws-sdk-sts/endpoint_parameters.rb
|
290
|
+
- lib/aws-sdk-sts/endpoint_provider.rb
|
291
|
+
- lib/aws-sdk-sts/endpoints.rb
|
239
292
|
- lib/aws-sdk-sts/errors.rb
|
293
|
+
- lib/aws-sdk-sts/plugins/endpoints.rb
|
240
294
|
- lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb
|
241
295
|
- lib/aws-sdk-sts/presigner.rb
|
242
296
|
- lib/aws-sdk-sts/resource.rb
|