aws-sdk-core 3.197.0 → 3.220.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 +297 -0
- data/VERSION +1 -1
- data/lib/aws-defaults/default_configuration.rb +1 -2
- data/lib/aws-defaults.rb +4 -1
- data/lib/aws-sdk-core/arn.rb +1 -3
- data/lib/aws-sdk-core/assume_role_credentials.rb +12 -5
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +13 -7
- data/lib/aws-sdk-core/binary/decode_handler.rb +3 -4
- data/lib/aws-sdk-core/binary/encode_handler.rb +1 -1
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +1 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +4 -3
- data/lib/aws-sdk-core/cbor/decoder.rb +308 -0
- data/lib/aws-sdk-core/cbor/encoder.rb +243 -0
- data/lib/aws-sdk-core/cbor.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring.rb +9 -0
- data/lib/aws-sdk-core/client_stubs.rb +8 -7
- data/lib/aws-sdk-core/credential_provider_chain.rb +13 -6
- data/lib/aws-sdk-core/credentials.rb +13 -6
- data/lib/aws-sdk-core/endpoints/endpoint.rb +3 -1
- data/lib/aws-sdk-core/endpoints/matchers.rb +6 -9
- data/lib/aws-sdk-core/endpoints.rb +74 -18
- data/lib/aws-sdk-core/error_handler.rb +41 -0
- data/lib/aws-sdk-core/errors.rb +9 -0
- data/lib/aws-sdk-core/json/error_handler.rb +8 -9
- data/lib/aws-sdk-core/json/handler.rb +6 -6
- data/lib/aws-sdk-core/json/json_engine.rb +3 -1
- data/lib/aws-sdk-core/json/oj_engine.rb +7 -1
- data/lib/aws-sdk-core/json/parser.rb +2 -0
- data/lib/aws-sdk-core/json.rb +43 -14
- data/lib/aws-sdk-core/log/param_filter.rb +2 -2
- data/lib/aws-sdk-core/log/param_formatter.rb +7 -3
- data/lib/aws-sdk-core/log.rb +10 -0
- data/lib/aws-sdk-core/param_validator.rb +1 -1
- data/lib/aws-sdk-core/plugins/bearer_authorization.rb +2 -0
- data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +332 -169
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +7 -3
- data/lib/aws-sdk-core/plugins/global_configuration.rb +8 -9
- data/lib/aws-sdk-core/plugins/http_checksum.rb +2 -8
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +3 -1
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -24
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +6 -8
- data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
- data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +4 -3
- data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +5 -1
- data/lib/aws-sdk-core/plugins/protocols/rpc_v2.rb +17 -0
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +74 -25
- data/lib/aws-sdk-core/plugins/retry_errors.rb +0 -1
- data/lib/aws-sdk-core/plugins/sign.rb +13 -11
- data/lib/aws-sdk-core/plugins/signature_v2.rb +2 -1
- data/lib/aws-sdk-core/plugins/signature_v4.rb +2 -1
- data/lib/aws-sdk-core/plugins/stub_responses.rb +29 -2
- data/lib/aws-sdk-core/plugins/telemetry.rb +75 -0
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +16 -9
- data/lib/aws-sdk-core/plugins/user_agent.rb +26 -8
- data/lib/aws-sdk-core/plugins.rb +39 -0
- data/lib/aws-sdk-core/process_credentials.rb +47 -28
- data/lib/aws-sdk-core/query/ec2_handler.rb +27 -0
- data/lib/aws-sdk-core/query/handler.rb +4 -4
- data/lib/aws-sdk-core/query.rb +2 -1
- data/lib/aws-sdk-core/resources.rb +8 -0
- data/lib/aws-sdk-core/rest/{request/content_type.rb → content_type_handler.rb} +1 -1
- data/lib/aws-sdk-core/rest/handler.rb +3 -4
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -1
- data/lib/aws-sdk-core/rest/request/headers.rb +2 -2
- data/lib/aws-sdk-core/rest.rb +1 -1
- data/lib/aws-sdk-core/rpc_v2/builder.rb +62 -0
- data/lib/aws-sdk-core/rpc_v2/cbor_engine.rb +18 -0
- data/lib/aws-sdk-core/rpc_v2/content_type_handler.rb +47 -0
- data/lib/aws-sdk-core/rpc_v2/error_handler.rb +85 -0
- data/lib/aws-sdk-core/rpc_v2/handler.rb +79 -0
- data/lib/aws-sdk-core/rpc_v2/parser.rb +90 -0
- data/lib/aws-sdk-core/rpc_v2.rb +69 -0
- data/lib/aws-sdk-core/shared_config.rb +7 -2
- data/lib/aws-sdk-core/shared_credentials.rb +0 -7
- data/lib/aws-sdk-core/sso_credentials.rb +2 -1
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +12 -11
- data/lib/aws-sdk-core/stubbing/protocols/json.rb +11 -10
- data/lib/aws-sdk-core/stubbing/protocols/query.rb +7 -6
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +2 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +9 -8
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +6 -5
- data/lib/aws-sdk-core/stubbing/protocols/rpc_v2.rb +39 -0
- data/lib/aws-sdk-core/stubbing.rb +22 -0
- data/lib/aws-sdk-core/telemetry/base.rb +177 -0
- data/lib/aws-sdk-core/telemetry/no_op.rb +70 -0
- data/lib/aws-sdk-core/telemetry/otel.rb +235 -0
- data/lib/aws-sdk-core/telemetry/span_kind.rb +22 -0
- data/lib/aws-sdk-core/telemetry/span_status.rb +59 -0
- data/lib/aws-sdk-core/telemetry.rb +78 -0
- data/lib/aws-sdk-core/waiters/poller.rb +9 -4
- data/lib/aws-sdk-core/xml/error_handler.rb +11 -37
- data/lib/aws-sdk-core/xml/parser.rb +2 -6
- data/lib/aws-sdk-core.rb +82 -108
- data/lib/aws-sdk-sso/client.rb +99 -37
- data/lib/aws-sdk-sso/client_api.rb +7 -0
- data/lib/aws-sdk-sso/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-sso/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-sso/endpoints.rb +2 -54
- data/lib/aws-sdk-sso/plugins/endpoints.rb +19 -20
- data/lib/aws-sdk-sso/types.rb +1 -0
- data/lib/aws-sdk-sso.rb +15 -11
- data/lib/aws-sdk-ssooidc/client.rb +123 -55
- data/lib/aws-sdk-ssooidc/client_api.rb +5 -0
- data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-ssooidc/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-ssooidc/endpoints.rb +2 -54
- data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +19 -20
- data/lib/aws-sdk-ssooidc/types.rb +21 -15
- data/lib/aws-sdk-ssooidc.rb +15 -11
- data/lib/aws-sdk-sts/client.rb +307 -89
- data/lib/aws-sdk-sts/client_api.rb +28 -2
- data/lib/aws-sdk-sts/customizations.rb +5 -1
- data/lib/aws-sdk-sts/endpoint_parameters.rb +10 -9
- data/lib/aws-sdk-sts/endpoint_provider.rb +33 -38
- data/lib/aws-sdk-sts/endpoints.rb +2 -118
- data/lib/aws-sdk-sts/errors.rb +16 -0
- data/lib/aws-sdk-sts/plugins/endpoints.rb +19 -28
- data/lib/aws-sdk-sts/types.rb +171 -28
- data/lib/aws-sdk-sts.rb +15 -11
- data/lib/seahorse/client/base.rb +17 -7
- data/lib/seahorse/client/h2/handler.rb +13 -3
- data/lib/seahorse/client/handler.rb +1 -1
- data/lib/seahorse/client/net_http/connection_pool.rb +10 -2
- data/lib/seahorse/client/net_http/handler.rb +21 -9
- data/lib/seahorse/client/plugins/endpoint.rb +0 -1
- data/lib/seahorse/client/plugins/net_http.rb +9 -0
- data/lib/seahorse/client/request_context.rb +8 -1
- data/lib/seahorse/client/response.rb +2 -0
- data/sig/aws-sdk-core/telemetry/base.rbs +46 -0
- data/sig/aws-sdk-core/telemetry/otel.rbs +22 -0
- data/sig/aws-sdk-core/telemetry/span_kind.rbs +15 -0
- data/sig/aws-sdk-core/telemetry/span_status.rbs +24 -0
- metadata +62 -18
- /data/lib/aws-sdk-core/xml/parser/{engines/libxml.rb → libxml_engine.rb} +0 -0
- /data/lib/aws-sdk-core/xml/parser/{engines/nokogiri.rb → nokogiri_engine.rb} +0 -0
- /data/lib/aws-sdk-core/xml/parser/{engines/oga.rb → oga_engine.rb} +0 -0
- /data/lib/aws-sdk-core/xml/parser/{engines/ox.rb → ox_engine.rb} +0 -0
- /data/lib/aws-sdk-core/xml/parser/{engines/rexml.rb → rexml_engine.rb} +0 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
module Aws
|
2
|
+
module Telemetry
|
3
|
+
class TelemetryProviderBase
|
4
|
+
def initialize: (?tracer_provider: TracerProviderBase, ?context_manager: ContextManagerBase) -> void
|
5
|
+
attr_reader tracer_provider: TracerProviderBase
|
6
|
+
|
7
|
+
attr_reader context_manager: ContextManagerBase
|
8
|
+
end
|
9
|
+
|
10
|
+
class TracerProviderBase
|
11
|
+
def tracer: (?String name) -> TracerBase
|
12
|
+
end
|
13
|
+
|
14
|
+
class TracerBase
|
15
|
+
def start_span: (String name, ?untyped with_parent, ?Hash[String, untyped] attributes, ?SpanKind kind) -> SpanBase
|
16
|
+
|
17
|
+
def in_span: (String name, ?Hash[String, untyped] attributes, ?SpanKind kind) -> SpanBase
|
18
|
+
|
19
|
+
def current_span: () -> SpanBase
|
20
|
+
end
|
21
|
+
|
22
|
+
class SpanBase
|
23
|
+
def set_attribute: (String key, untyped value) -> self
|
24
|
+
alias []= set_attribute
|
25
|
+
|
26
|
+
def add_attributes: (Hash[String, untyped] attributes) -> self
|
27
|
+
|
28
|
+
def add_event: (String name, ?Hash[String, untyped] attributes) -> self
|
29
|
+
|
30
|
+
def status=: (SpanStatus status) -> void
|
31
|
+
|
32
|
+
def finish: (?Time end_timestamp) -> self
|
33
|
+
|
34
|
+
def record_exception: (untyped exception, ?Hash[String, untyped] attributes) -> void
|
35
|
+
end
|
36
|
+
|
37
|
+
class ContextManagerBase
|
38
|
+
def current: () -> untyped
|
39
|
+
|
40
|
+
def attach: (untyped context) -> untyped
|
41
|
+
|
42
|
+
def detach: (untyped token) -> bool
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Aws
|
2
|
+
module Telemetry
|
3
|
+
class OTelProvider < TelemetryProviderBase
|
4
|
+
def initialize: () -> void
|
5
|
+
end
|
6
|
+
|
7
|
+
class OTelTracerProvider < TracerProviderBase
|
8
|
+
def initialize: () -> void
|
9
|
+
end
|
10
|
+
|
11
|
+
class OTelTracer < TracerBase
|
12
|
+
def initialize: (untyped tracer) -> void
|
13
|
+
end
|
14
|
+
|
15
|
+
class OTelSpan < SpanBase
|
16
|
+
def initialize: (untyped span) -> void
|
17
|
+
end
|
18
|
+
|
19
|
+
class OTelContextManager < ContextManagerBase
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Aws
|
2
|
+
module Telemetry
|
3
|
+
class SpanStatus
|
4
|
+
|
5
|
+
def self.unset: (?::String description) -> SpanStatus
|
6
|
+
|
7
|
+
def self.ok: (?::String description) -> SpanStatus
|
8
|
+
|
9
|
+
def self.error: (?::String description) -> SpanStatus
|
10
|
+
|
11
|
+
def initialize: (Integer code, ?description: ::String) -> void
|
12
|
+
|
13
|
+
attr_reader code: Integer
|
14
|
+
|
15
|
+
attr_reader description: String
|
16
|
+
|
17
|
+
OK: 0
|
18
|
+
|
19
|
+
UNSET: 1
|
20
|
+
|
21
|
+
ERROR: 2
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
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.220.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: 2025-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: aws-eventstream
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '1'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 1.
|
22
|
+
version: 1.3.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '1'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 1.
|
32
|
+
version: 1.3.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-partitions
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,7 +39,7 @@ dependencies:
|
|
39
39
|
version: '1'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.
|
42
|
+
version: 1.992.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -49,23 +49,37 @@ dependencies:
|
|
49
49
|
version: '1'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.
|
52
|
+
version: 1.992.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: aws-sigv4
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
57
|
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: '1.
|
59
|
+
version: '1.9'
|
60
60
|
type: :runtime
|
61
61
|
prerelease: false
|
62
62
|
version_requirements: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
64
|
- - "~>"
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: '1.
|
66
|
+
version: '1.9'
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
|
-
name:
|
68
|
+
name: base64
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0'
|
74
|
+
type: :runtime
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: jmespath
|
69
83
|
requirement: !ruby/object:Gem::Requirement
|
70
84
|
requirements:
|
71
85
|
- - "~>"
|
@@ -73,7 +87,7 @@ dependencies:
|
|
73
87
|
version: '1'
|
74
88
|
- - ">="
|
75
89
|
- !ruby/object:Gem::Version
|
76
|
-
version: 1.
|
90
|
+
version: 1.6.1
|
77
91
|
type: :runtime
|
78
92
|
prerelease: false
|
79
93
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -83,7 +97,7 @@ dependencies:
|
|
83
97
|
version: '1'
|
84
98
|
- - ">="
|
85
99
|
- !ruby/object:Gem::Version
|
86
|
-
version: 1.
|
100
|
+
version: 1.6.1
|
87
101
|
description: Provides API clients for AWS. This gem is part of the official AWS SDK
|
88
102
|
for Ruby.
|
89
103
|
email:
|
@@ -111,6 +125,10 @@ files:
|
|
111
125
|
- lib/aws-sdk-core/binary/event_parser.rb
|
112
126
|
- lib/aws-sdk-core/binary/event_stream_decoder.rb
|
113
127
|
- lib/aws-sdk-core/binary/event_stream_encoder.rb
|
128
|
+
- lib/aws-sdk-core/cbor.rb
|
129
|
+
- lib/aws-sdk-core/cbor/decoder.rb
|
130
|
+
- lib/aws-sdk-core/cbor/encoder.rb
|
131
|
+
- lib/aws-sdk-core/client_side_monitoring.rb
|
114
132
|
- lib/aws-sdk-core/client_side_monitoring/publisher.rb
|
115
133
|
- lib/aws-sdk-core/client_side_monitoring/request_metrics.rb
|
116
134
|
- lib/aws-sdk-core/client_stubs.rb
|
@@ -136,6 +154,7 @@ files:
|
|
136
154
|
- lib/aws-sdk-core/endpoints/templater.rb
|
137
155
|
- lib/aws-sdk-core/endpoints/tree_rule.rb
|
138
156
|
- lib/aws-sdk-core/endpoints/url.rb
|
157
|
+
- lib/aws-sdk-core/error_handler.rb
|
139
158
|
- lib/aws-sdk-core/errors.rb
|
140
159
|
- lib/aws-sdk-core/event_emitter.rb
|
141
160
|
- lib/aws-sdk-core/ini_parser.rb
|
@@ -147,6 +166,7 @@ files:
|
|
147
166
|
- lib/aws-sdk-core/json/json_engine.rb
|
148
167
|
- lib/aws-sdk-core/json/oj_engine.rb
|
149
168
|
- lib/aws-sdk-core/json/parser.rb
|
169
|
+
- lib/aws-sdk-core/log.rb
|
150
170
|
- lib/aws-sdk-core/log/formatter.rb
|
151
171
|
- lib/aws-sdk-core/log/handler.rb
|
152
172
|
- lib/aws-sdk-core/log/param_filter.rb
|
@@ -156,6 +176,7 @@ files:
|
|
156
176
|
- lib/aws-sdk-core/pager.rb
|
157
177
|
- lib/aws-sdk-core/param_converter.rb
|
158
178
|
- lib/aws-sdk-core/param_validator.rb
|
179
|
+
- lib/aws-sdk-core/plugins.rb
|
159
180
|
- lib/aws-sdk-core/plugins/api_key.rb
|
160
181
|
- lib/aws-sdk-core/plugins/apig_authorizer_token.rb
|
161
182
|
- lib/aws-sdk-core/plugins/apig_credentials_configuration.rb
|
@@ -184,6 +205,7 @@ files:
|
|
184
205
|
- lib/aws-sdk-core/plugins/protocols/query.rb
|
185
206
|
- lib/aws-sdk-core/plugins/protocols/rest_json.rb
|
186
207
|
- lib/aws-sdk-core/plugins/protocols/rest_xml.rb
|
208
|
+
- lib/aws-sdk-core/plugins/protocols/rpc_v2.rb
|
187
209
|
- lib/aws-sdk-core/plugins/recursion_detection.rb
|
188
210
|
- lib/aws-sdk-core/plugins/regional_endpoint.rb
|
189
211
|
- lib/aws-sdk-core/plugins/request_compression.rb
|
@@ -197,10 +219,12 @@ files:
|
|
197
219
|
- lib/aws-sdk-core/plugins/signature_v2.rb
|
198
220
|
- lib/aws-sdk-core/plugins/signature_v4.rb
|
199
221
|
- lib/aws-sdk-core/plugins/stub_responses.rb
|
222
|
+
- lib/aws-sdk-core/plugins/telemetry.rb
|
200
223
|
- lib/aws-sdk-core/plugins/transfer_encoding.rb
|
201
224
|
- lib/aws-sdk-core/plugins/user_agent.rb
|
202
225
|
- lib/aws-sdk-core/process_credentials.rb
|
203
226
|
- lib/aws-sdk-core/query.rb
|
227
|
+
- lib/aws-sdk-core/query/ec2_handler.rb
|
204
228
|
- lib/aws-sdk-core/query/ec2_param_builder.rb
|
205
229
|
- lib/aws-sdk-core/query/handler.rb
|
206
230
|
- lib/aws-sdk-core/query/param.rb
|
@@ -208,12 +232,13 @@ files:
|
|
208
232
|
- lib/aws-sdk-core/query/param_list.rb
|
209
233
|
- lib/aws-sdk-core/refreshing_credentials.rb
|
210
234
|
- lib/aws-sdk-core/refreshing_token.rb
|
235
|
+
- lib/aws-sdk-core/resources.rb
|
211
236
|
- lib/aws-sdk-core/resources/collection.rb
|
212
237
|
- lib/aws-sdk-core/rest.rb
|
238
|
+
- lib/aws-sdk-core/rest/content_type_handler.rb
|
213
239
|
- lib/aws-sdk-core/rest/handler.rb
|
214
240
|
- lib/aws-sdk-core/rest/request/body.rb
|
215
241
|
- lib/aws-sdk-core/rest/request/builder.rb
|
216
|
-
- lib/aws-sdk-core/rest/request/content_type.rb
|
217
242
|
- lib/aws-sdk-core/rest/request/endpoint.rb
|
218
243
|
- lib/aws-sdk-core/rest/request/headers.rb
|
219
244
|
- lib/aws-sdk-core/rest/request/querystring_builder.rb
|
@@ -222,12 +247,20 @@ files:
|
|
222
247
|
- lib/aws-sdk-core/rest/response/headers.rb
|
223
248
|
- lib/aws-sdk-core/rest/response/parser.rb
|
224
249
|
- lib/aws-sdk-core/rest/response/status_code.rb
|
250
|
+
- lib/aws-sdk-core/rpc_v2.rb
|
251
|
+
- lib/aws-sdk-core/rpc_v2/builder.rb
|
252
|
+
- lib/aws-sdk-core/rpc_v2/cbor_engine.rb
|
253
|
+
- lib/aws-sdk-core/rpc_v2/content_type_handler.rb
|
254
|
+
- lib/aws-sdk-core/rpc_v2/error_handler.rb
|
255
|
+
- lib/aws-sdk-core/rpc_v2/handler.rb
|
256
|
+
- lib/aws-sdk-core/rpc_v2/parser.rb
|
225
257
|
- lib/aws-sdk-core/shared_config.rb
|
226
258
|
- lib/aws-sdk-core/shared_credentials.rb
|
227
259
|
- lib/aws-sdk-core/sso_credentials.rb
|
228
260
|
- lib/aws-sdk-core/sso_token_provider.rb
|
229
261
|
- lib/aws-sdk-core/static_token_provider.rb
|
230
262
|
- lib/aws-sdk-core/structure.rb
|
263
|
+
- lib/aws-sdk-core/stubbing.rb
|
231
264
|
- lib/aws-sdk-core/stubbing/data_applicator.rb
|
232
265
|
- lib/aws-sdk-core/stubbing/empty_stub.rb
|
233
266
|
- lib/aws-sdk-core/stubbing/protocols/api_gateway.rb
|
@@ -237,8 +270,15 @@ files:
|
|
237
270
|
- lib/aws-sdk-core/stubbing/protocols/rest.rb
|
238
271
|
- lib/aws-sdk-core/stubbing/protocols/rest_json.rb
|
239
272
|
- lib/aws-sdk-core/stubbing/protocols/rest_xml.rb
|
273
|
+
- lib/aws-sdk-core/stubbing/protocols/rpc_v2.rb
|
240
274
|
- lib/aws-sdk-core/stubbing/stub_data.rb
|
241
275
|
- lib/aws-sdk-core/stubbing/xml_error.rb
|
276
|
+
- lib/aws-sdk-core/telemetry.rb
|
277
|
+
- lib/aws-sdk-core/telemetry/base.rb
|
278
|
+
- lib/aws-sdk-core/telemetry/no_op.rb
|
279
|
+
- lib/aws-sdk-core/telemetry/otel.rb
|
280
|
+
- lib/aws-sdk-core/telemetry/span_kind.rb
|
281
|
+
- lib/aws-sdk-core/telemetry/span_status.rb
|
242
282
|
- lib/aws-sdk-core/token.rb
|
243
283
|
- lib/aws-sdk-core/token_provider.rb
|
244
284
|
- lib/aws-sdk-core/token_provider_chain.rb
|
@@ -255,13 +295,13 @@ files:
|
|
255
295
|
- lib/aws-sdk-core/xml/doc_builder.rb
|
256
296
|
- lib/aws-sdk-core/xml/error_handler.rb
|
257
297
|
- lib/aws-sdk-core/xml/parser.rb
|
258
|
-
- lib/aws-sdk-core/xml/parser/engines/libxml.rb
|
259
|
-
- lib/aws-sdk-core/xml/parser/engines/nokogiri.rb
|
260
|
-
- lib/aws-sdk-core/xml/parser/engines/oga.rb
|
261
|
-
- lib/aws-sdk-core/xml/parser/engines/ox.rb
|
262
|
-
- lib/aws-sdk-core/xml/parser/engines/rexml.rb
|
263
298
|
- lib/aws-sdk-core/xml/parser/frame.rb
|
299
|
+
- lib/aws-sdk-core/xml/parser/libxml_engine.rb
|
300
|
+
- lib/aws-sdk-core/xml/parser/nokogiri_engine.rb
|
301
|
+
- lib/aws-sdk-core/xml/parser/oga_engine.rb
|
302
|
+
- lib/aws-sdk-core/xml/parser/ox_engine.rb
|
264
303
|
- lib/aws-sdk-core/xml/parser/parsing_error.rb
|
304
|
+
- lib/aws-sdk-core/xml/parser/rexml_engine.rb
|
265
305
|
- lib/aws-sdk-core/xml/parser/stack.rb
|
266
306
|
- lib/aws-sdk-sso.rb
|
267
307
|
- lib/aws-sdk-sso/client.rb
|
@@ -347,6 +387,10 @@ files:
|
|
347
387
|
- sig/aws-sdk-core/errors.rbs
|
348
388
|
- sig/aws-sdk-core/resources/collection.rbs
|
349
389
|
- sig/aws-sdk-core/structure.rbs
|
390
|
+
- sig/aws-sdk-core/telemetry/base.rbs
|
391
|
+
- sig/aws-sdk-core/telemetry/otel.rbs
|
392
|
+
- sig/aws-sdk-core/telemetry/span_kind.rbs
|
393
|
+
- sig/aws-sdk-core/telemetry/span_status.rbs
|
350
394
|
- sig/aws-sdk-core/waiters/errors.rbs
|
351
395
|
- sig/seahorse/client/base.rbs
|
352
396
|
- sig/seahorse/client/handler_builder.rbs
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|