aws-sdk-core 3.189.0 → 3.199.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 +183 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-core/binary/decode_handler.rb +3 -9
- data/lib/aws-sdk-core/binary/encode_handler.rb +1 -1
- data/lib/aws-sdk-core/binary/event_builder.rb +34 -37
- 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/cbor_engine.rb +19 -0
- data/lib/aws-sdk-core/cbor/decoder.rb +310 -0
- data/lib/aws-sdk-core/cbor/encoder.rb +243 -0
- data/lib/aws-sdk-core/cbor.rb +106 -0
- data/lib/aws-sdk-core/client_stubs.rb +18 -14
- data/lib/aws-sdk-core/credential_provider.rb +1 -1
- data/lib/aws-sdk-core/ec2_metadata.rb +1 -1
- data/lib/aws-sdk-core/ecs_credentials.rb +2 -1
- data/lib/aws-sdk-core/endpoints/matchers.rb +5 -1
- data/lib/aws-sdk-core/error_handler.rb +41 -0
- data/lib/aws-sdk-core/errors.rb +2 -2
- data/lib/aws-sdk-core/event_emitter.rb +0 -16
- data/lib/aws-sdk-core/instance_profile_credentials.rb +3 -2
- data/lib/aws-sdk-core/json/builder.rb +8 -1
- data/lib/aws-sdk-core/json/error_handler.rb +15 -10
- data/lib/aws-sdk-core/json/handler.rb +5 -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 +6 -1
- data/lib/aws-sdk-core/json.rb +43 -14
- data/lib/aws-sdk-core/lru_cache.rb +75 -0
- data/lib/aws-sdk-core/pageable_response.rb +1 -1
- data/lib/aws-sdk-core/param_validator.rb +7 -2
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +1 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +14 -2
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +2 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +8 -9
- data/lib/aws-sdk-core/plugins/invocation_id.rb +1 -11
- data/lib/aws-sdk-core/plugins/logging.rb +2 -0
- 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 +3 -15
- data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +3 -0
- data/lib/aws-sdk-core/plugins/protocols/rpc_v2.rb +17 -0
- data/lib/aws-sdk-core/plugins/request_compression.rb +11 -2
- data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -3
- data/lib/aws-sdk-core/plugins/sign.rb +8 -3
- data/lib/aws-sdk-core/plugins/stub_responses.rb +1 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +61 -26
- data/lib/aws-sdk-core/process_credentials.rb +45 -27
- data/lib/aws-sdk-core/query/ec2_handler.rb +27 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +5 -7
- data/lib/aws-sdk-core/query/handler.rb +4 -4
- data/lib/aws-sdk-core/query/param_builder.rb +2 -2
- data/lib/aws-sdk-core/query.rb +2 -1
- data/lib/aws-sdk-core/rest/content_type_handler.rb +60 -0
- data/lib/aws-sdk-core/rest/handler.rb +3 -4
- data/lib/aws-sdk-core/rest/request/body.rb +32 -5
- data/lib/aws-sdk-core/rest/request/endpoint.rb +24 -4
- data/lib/aws-sdk-core/rest/request/headers.rb +15 -7
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +23 -11
- data/lib/aws-sdk-core/rest/response/body.rb +15 -1
- data/lib/aws-sdk-core/rest/response/header_list_parser.rb +79 -0
- data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
- data/lib/aws-sdk-core/rest.rb +1 -0
- data/lib/aws-sdk-core/rpc_v2/builder.rb +62 -0
- data/lib/aws-sdk-core/rpc_v2/content_type_handler.rb +45 -0
- data/lib/aws-sdk-core/rpc_v2/error_handler.rb +84 -0
- data/lib/aws-sdk-core/rpc_v2/handler.rb +74 -0
- data/lib/aws-sdk-core/rpc_v2/parser.rb +90 -0
- data/lib/aws-sdk-core/rpc_v2.rb +6 -0
- data/lib/aws-sdk-core/stubbing/protocols/rpc_v2.rb +41 -0
- data/lib/aws-sdk-core/util.rb +39 -0
- data/lib/aws-sdk-core/waiters/poller.rb +2 -2
- data/lib/aws-sdk-core/xml/builder.rb +17 -9
- data/lib/aws-sdk-core/xml/error_handler.rb +32 -42
- data/lib/aws-sdk-core/xml/parser/frame.rb +4 -20
- data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
- data/lib/aws-sdk-core/xml/parser.rb +2 -6
- data/lib/aws-sdk-core.rb +7 -2
- data/lib/aws-sdk-sso/client.rb +77 -49
- data/lib/aws-sdk-sso/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-sso.rb +1 -1
- data/lib/aws-sdk-ssooidc/client.rb +127 -51
- data/lib/aws-sdk-ssooidc/client_api.rb +22 -0
- data/lib/aws-sdk-ssooidc/errors.rb +21 -0
- data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-ssooidc/types.rb +77 -9
- data/lib/aws-sdk-ssooidc.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +78 -50
- data/lib/aws-sdk-sts/client_api.rb +8 -8
- data/lib/aws-sdk-sts/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-sts/types.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/seahorse/client/async_base.rb +1 -1
- data/lib/seahorse/client/async_response.rb +19 -0
- data/lib/seahorse/client/base.rb +18 -7
- data/lib/seahorse/client/h2/handler.rb +1 -0
- data/lib/seahorse/client/handler.rb +1 -1
- data/lib/seahorse/client/net_http/connection_pool.rb +3 -9
- data/lib/seahorse/client/plugin.rb +9 -0
- data/lib/seahorse/client/plugins/endpoint.rb +0 -1
- data/lib/seahorse/client/plugins/net_http.rb +48 -16
- data/lib/seahorse/model/shapes.rb +2 -2
- data/sig/aws-sdk-core/client_stubs.rbs +10 -0
- data/sig/aws-sdk-core/errors.rbs +22 -0
- data/sig/aws-sdk-core/resources/collection.rbs +21 -0
- data/sig/aws-sdk-core/structure.rbs +4 -0
- data/sig/aws-sdk-core/waiters/errors.rbs +20 -0
- data/sig/aws-sdk-core.rbs +7 -0
- data/sig/seahorse/client/base.rbs +25 -0
- data/sig/seahorse/client/handler_builder.rbs +16 -0
- data/sig/seahorse/client/response.rbs +61 -0
- metadata +38 -12
- /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
|
@@ -7,34 +7,66 @@ module Seahorse
|
|
|
7
7
|
module Plugins
|
|
8
8
|
class NetHttp < Plugin
|
|
9
9
|
|
|
10
|
-
option(:http_proxy, default: nil, doc_type: String, docstring:
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
option(:http_proxy, default: nil, doc_type: "URI::HTTP,String", docstring: <<-DOCS)
|
|
11
|
+
A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
|
12
|
+
DOCS
|
|
13
|
+
|
|
14
|
+
option(:http_open_timeout, default: 15, doc_type: Float, docstring: <<-DOCS) do |cfg|
|
|
15
|
+
The default number of seconds to wait for response data.
|
|
16
|
+
This value can safely be set per-request on the session.
|
|
17
|
+
DOCS
|
|
13
18
|
resolve_http_open_timeout(cfg)
|
|
14
19
|
end
|
|
15
20
|
|
|
16
|
-
option(:http_read_timeout, default: 60, doc_type:
|
|
21
|
+
option(:http_read_timeout, default: 60, doc_type: Float, docstring: <<-DOCS) do |cfg|
|
|
22
|
+
The default number of seconds to wait for response data.
|
|
23
|
+
This value can safely be set per-request on the session.
|
|
24
|
+
DOCS
|
|
17
25
|
resolve_http_read_timeout(cfg)
|
|
18
26
|
end
|
|
19
27
|
|
|
20
|
-
option(:http_idle_timeout, default: 5, doc_type:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
option(:
|
|
27
|
-
|
|
28
|
-
|
|
28
|
+
option(:http_idle_timeout, default: 5, doc_type: Float, docstring: <<-DOCS)
|
|
29
|
+
The number of seconds a connection is allowed to sit idle before it
|
|
30
|
+
is considered stale. Stale connections are closed and removed from the
|
|
31
|
+
pool before making a request.
|
|
32
|
+
DOCS
|
|
33
|
+
|
|
34
|
+
option(:http_continue_timeout, default: 1, doc_type: Float, docstring: <<-DOCS)
|
|
35
|
+
The number of seconds to wait for a 100-continue response before sending the
|
|
36
|
+
request body. This option has no effect unless the request has "Expect"
|
|
37
|
+
header set to "100-continue". Defaults to `nil` which disables this
|
|
38
|
+
behaviour. This value can safely be set per request on the session.
|
|
39
|
+
DOCS
|
|
40
|
+
|
|
41
|
+
option(:http_wire_trace, default: false, doc_type: 'Boolean', docstring: <<-DOCS)
|
|
42
|
+
When `true`, HTTP debug output will be sent to the `:logger`.
|
|
43
|
+
DOCS
|
|
44
|
+
|
|
45
|
+
option(:ssl_verify_peer, default: true, doc_type: 'Boolean', docstring: <<-DOCS)
|
|
46
|
+
When `true`, SSL peer certificates are verified when establishing a connection.
|
|
47
|
+
DOCS
|
|
48
|
+
|
|
49
|
+
option(:ssl_ca_bundle, doc_type: String, docstring: <<-DOCS) do |cfg|
|
|
50
|
+
Full path to the SSL certificate authority bundle file that should be used when
|
|
51
|
+
verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
|
52
|
+
`:ssl_ca_directory` the the system default will be used if available.
|
|
53
|
+
DOCS
|
|
29
54
|
ENV['AWS_CA_BUNDLE'] ||
|
|
30
55
|
Aws.shared_config.ca_bundle(profile: cfg.profile) if cfg.respond_to?(:profile)
|
|
31
56
|
end
|
|
32
57
|
|
|
33
|
-
option(:ssl_ca_directory, default: nil, doc_type: String, docstring:
|
|
58
|
+
option(:ssl_ca_directory, default: nil, doc_type: String, docstring: <<-DOCS)
|
|
59
|
+
Full path of the directory that contains the unbundled SSL certificate
|
|
60
|
+
authority files for verifying peer certificates. If you do
|
|
61
|
+
not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
|
62
|
+
default will be used if available.
|
|
63
|
+
DOCS
|
|
34
64
|
|
|
35
|
-
option(:ssl_ca_store, default: nil, doc_type: String, docstring:
|
|
65
|
+
option(:ssl_ca_store, default: nil, doc_type: String, docstring: <<-DOCS)
|
|
66
|
+
Sets the X509::Store to verify peer certificate.
|
|
67
|
+
DOCS
|
|
36
68
|
|
|
37
|
-
option(:ssl_timeout, default: nil, doc_type: Float, docstring: '') do |cfg|
|
|
69
|
+
option(:ssl_timeout, default: nil, doc_type: Float, docstring: 'Sets the SSL timeout in seconds') do |cfg|
|
|
38
70
|
resolve_ssl_timeout(cfg)
|
|
39
71
|
end
|
|
40
72
|
|
|
@@ -75,7 +75,7 @@ module Seahorse
|
|
|
75
75
|
|
|
76
76
|
# @return [String, nil]
|
|
77
77
|
def location_name
|
|
78
|
-
@location_name || (shape && shape[
|
|
78
|
+
@location_name || (shape && shape['locationName'])
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
def location_name= location_name
|
|
@@ -86,7 +86,7 @@ module Seahorse
|
|
|
86
86
|
def [](key)
|
|
87
87
|
if @metadata.key?(key.to_s)
|
|
88
88
|
@metadata[key.to_s]
|
|
89
|
-
|
|
89
|
+
elsif @shape
|
|
90
90
|
@shape[key.to_s]
|
|
91
91
|
end
|
|
92
92
|
end
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module Aws
|
|
2
|
+
module ClientStubs
|
|
3
|
+
def stub_responses: (Symbol operation_name, *untyped stubs) -> void
|
|
4
|
+
|
|
5
|
+
def api_requests: (?exclude_presign: bool) -> Array[{ operation_name: Symbol, params: untyped, context: untyped }]
|
|
6
|
+
| (?Hash[:exclude_presign, bool] options) -> Array[{ operation_name: Symbol, params: untyped, context: untyped }]
|
|
7
|
+
|
|
8
|
+
def stub_data: (Symbol operation_name, ?untyped data) -> untyped
|
|
9
|
+
end
|
|
10
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
module Aws
|
|
2
|
+
module Errors
|
|
3
|
+
class NonSupportedRubyVersionError < RuntimeError
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
# The base class for all errors returned by an Amazon Web Service.
|
|
7
|
+
# All ~400 level client errors and ~500 level server errors are raised
|
|
8
|
+
# as service errors. This indicates it was an error returned from the
|
|
9
|
+
# service and not one generated by the client.
|
|
10
|
+
class ServiceError < RuntimeError
|
|
11
|
+
def initialize: (untyped context, String? message, ?untyped data) -> void
|
|
12
|
+
|
|
13
|
+
attr_reader code: String
|
|
14
|
+
|
|
15
|
+
attr_reader context: untyped
|
|
16
|
+
|
|
17
|
+
attr_reader data: untyped
|
|
18
|
+
|
|
19
|
+
attr_accessor self.code: String?
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module Aws
|
|
2
|
+
module Resources
|
|
3
|
+
class Collection[T]
|
|
4
|
+
include Enumerable[T]
|
|
5
|
+
|
|
6
|
+
def initialize: (Enumerable[Enumerable[T]] batches, ?size: Integer, ?limit: Integer) -> void
|
|
7
|
+
|
|
8
|
+
def each: () -> Enumerator[T, untyped]
|
|
9
|
+
| () { (T) -> untyped } -> Enumerator[T, untyped]
|
|
10
|
+
|
|
11
|
+
def size: () -> Integer?
|
|
12
|
+
|
|
13
|
+
alias length size
|
|
14
|
+
|
|
15
|
+
def first: () -> T?
|
|
16
|
+
| (Integer) -> self
|
|
17
|
+
|
|
18
|
+
def limit: (Integer) -> self
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
module Aws
|
|
2
|
+
module Waiters
|
|
3
|
+
module Errors
|
|
4
|
+
class WaiterFailed < StandardError
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
class FailureStateError < WaiterFailed
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
class TooManyAttemptsError < WaiterFailed
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class UnexpectedError < WaiterFailed
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class NoSuchWaiterError < ArgumentError
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
module Seahorse
|
|
2
|
+
module Client
|
|
3
|
+
class Base
|
|
4
|
+
include HandlerBuilder
|
|
5
|
+
|
|
6
|
+
def self.new: (?untyped options) -> instance
|
|
7
|
+
def self.add_plugin: (untyped plugin) -> untyped
|
|
8
|
+
def self.remove_plugin: (untyped plugin) -> untyped
|
|
9
|
+
def self.clear_plugins: () -> untyped
|
|
10
|
+
def self.set_plugins: (Array[untyped] plugins) -> untyped
|
|
11
|
+
def self.plugins: () -> Array[untyped]
|
|
12
|
+
def self.api: () -> untyped
|
|
13
|
+
def self.set_api: (untyped api) -> untyped
|
|
14
|
+
def self.define: (?untyped options) -> untyped
|
|
15
|
+
|
|
16
|
+
attr_reader config: untyped
|
|
17
|
+
|
|
18
|
+
attr_reader handlers: untyped
|
|
19
|
+
|
|
20
|
+
def build_request: (_ToS operation_name, ?untyped params) -> untyped
|
|
21
|
+
|
|
22
|
+
def operation_names: () -> Array[Symbol]
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module Seahorse
|
|
2
|
+
module Client
|
|
3
|
+
# This module provides the ability to add handlers to a class or
|
|
4
|
+
# module. The including class or extending module must respond to
|
|
5
|
+
# `#handlers`, returning a {HandlerList}.
|
|
6
|
+
module HandlerBuilder
|
|
7
|
+
def handle_request: (*untyped) { (untyped context) -> void } -> untyped
|
|
8
|
+
|
|
9
|
+
def handle_response: (*untyped) { (untyped resp) -> void } -> untyped
|
|
10
|
+
|
|
11
|
+
def handle: (*untyped) ?{ (untyped context) -> void } -> untyped
|
|
12
|
+
|
|
13
|
+
alias handler handle
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
module Seahorse
|
|
2
|
+
module Client
|
|
3
|
+
# RBS does not support Delegator.
|
|
4
|
+
# the behavior is mimicked `Seahorse::Client::Response` as much as possible.
|
|
5
|
+
interface _ResponseCommon
|
|
6
|
+
def context: () -> untyped
|
|
7
|
+
|
|
8
|
+
def checksum_validated: () -> ::String?
|
|
9
|
+
|
|
10
|
+
def on: (Integer) { (self) -> void } -> self
|
|
11
|
+
| (Range[Integer]) { (self) -> void } -> self
|
|
12
|
+
|
|
13
|
+
def on_success: () { (self) -> void } -> self
|
|
14
|
+
|
|
15
|
+
def successful?: () -> bool
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
# The interface for response success
|
|
19
|
+
# An interface representing response is provided for each operation,
|
|
20
|
+
# and _ResponseSuccess is embedded in this interface.
|
|
21
|
+
# @example client.rbs
|
|
22
|
+
#
|
|
23
|
+
# interface _OperationResponseSuccess
|
|
24
|
+
# include ::Seahorse::Client::_ResponseSuccess[Types::OperationOutput]
|
|
25
|
+
# def foo: () -> ::String
|
|
26
|
+
# def bar: () -> ::Integer
|
|
27
|
+
# end
|
|
28
|
+
# @client.operation: () -> _OperationResponseSuccess
|
|
29
|
+
interface _ResponseSuccess[DATA]
|
|
30
|
+
include _ResponseCommon
|
|
31
|
+
|
|
32
|
+
def data: () -> DATA
|
|
33
|
+
|
|
34
|
+
def data=: (DATA) -> DATA
|
|
35
|
+
|
|
36
|
+
def error: () -> nil
|
|
37
|
+
|
|
38
|
+
def error=: (nil) -> nil
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# The interface for response error
|
|
42
|
+
# It is useful to use annotation on ruby code
|
|
43
|
+
# @example foo.rb
|
|
44
|
+
#
|
|
45
|
+
# client = Client.new(raise_response_errors: false)
|
|
46
|
+
# # @type var response: ::Seahorse::Client::_ResponseError
|
|
47
|
+
# response = client.operation()
|
|
48
|
+
# response.error.message
|
|
49
|
+
interface _ResponseError
|
|
50
|
+
include _ResponseCommon
|
|
51
|
+
|
|
52
|
+
def data: () -> nil
|
|
53
|
+
|
|
54
|
+
def data=: (nil) -> nil
|
|
55
|
+
|
|
56
|
+
def error: () -> StandardError
|
|
57
|
+
|
|
58
|
+
def error=: (StandardError) -> StandardError
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
end
|
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.199.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|
|
@@ -86,7 +86,7 @@ dependencies:
|
|
|
86
86
|
version: 1.3.0
|
|
87
87
|
description: Provides API clients for AWS. This gem is part of the official AWS SDK
|
|
88
88
|
for Ruby.
|
|
89
|
-
email:
|
|
89
|
+
email:
|
|
90
90
|
executables: []
|
|
91
91
|
extensions: []
|
|
92
92
|
extra_rdoc_files: []
|
|
@@ -111,6 +111,10 @@ files:
|
|
|
111
111
|
- lib/aws-sdk-core/binary/event_parser.rb
|
|
112
112
|
- lib/aws-sdk-core/binary/event_stream_decoder.rb
|
|
113
113
|
- lib/aws-sdk-core/binary/event_stream_encoder.rb
|
|
114
|
+
- lib/aws-sdk-core/cbor.rb
|
|
115
|
+
- lib/aws-sdk-core/cbor/cbor_engine.rb
|
|
116
|
+
- lib/aws-sdk-core/cbor/decoder.rb
|
|
117
|
+
- lib/aws-sdk-core/cbor/encoder.rb
|
|
114
118
|
- lib/aws-sdk-core/client_side_monitoring/publisher.rb
|
|
115
119
|
- lib/aws-sdk-core/client_side_monitoring/request_metrics.rb
|
|
116
120
|
- lib/aws-sdk-core/client_stubs.rb
|
|
@@ -136,6 +140,7 @@ files:
|
|
|
136
140
|
- lib/aws-sdk-core/endpoints/templater.rb
|
|
137
141
|
- lib/aws-sdk-core/endpoints/tree_rule.rb
|
|
138
142
|
- lib/aws-sdk-core/endpoints/url.rb
|
|
143
|
+
- lib/aws-sdk-core/error_handler.rb
|
|
139
144
|
- lib/aws-sdk-core/errors.rb
|
|
140
145
|
- lib/aws-sdk-core/event_emitter.rb
|
|
141
146
|
- lib/aws-sdk-core/ini_parser.rb
|
|
@@ -151,6 +156,7 @@ files:
|
|
|
151
156
|
- lib/aws-sdk-core/log/handler.rb
|
|
152
157
|
- lib/aws-sdk-core/log/param_filter.rb
|
|
153
158
|
- lib/aws-sdk-core/log/param_formatter.rb
|
|
159
|
+
- lib/aws-sdk-core/lru_cache.rb
|
|
154
160
|
- lib/aws-sdk-core/pageable_response.rb
|
|
155
161
|
- lib/aws-sdk-core/pager.rb
|
|
156
162
|
- lib/aws-sdk-core/param_converter.rb
|
|
@@ -183,6 +189,7 @@ files:
|
|
|
183
189
|
- lib/aws-sdk-core/plugins/protocols/query.rb
|
|
184
190
|
- lib/aws-sdk-core/plugins/protocols/rest_json.rb
|
|
185
191
|
- lib/aws-sdk-core/plugins/protocols/rest_xml.rb
|
|
192
|
+
- lib/aws-sdk-core/plugins/protocols/rpc_v2.rb
|
|
186
193
|
- lib/aws-sdk-core/plugins/recursion_detection.rb
|
|
187
194
|
- lib/aws-sdk-core/plugins/regional_endpoint.rb
|
|
188
195
|
- lib/aws-sdk-core/plugins/request_compression.rb
|
|
@@ -200,6 +207,7 @@ files:
|
|
|
200
207
|
- lib/aws-sdk-core/plugins/user_agent.rb
|
|
201
208
|
- lib/aws-sdk-core/process_credentials.rb
|
|
202
209
|
- lib/aws-sdk-core/query.rb
|
|
210
|
+
- lib/aws-sdk-core/query/ec2_handler.rb
|
|
203
211
|
- lib/aws-sdk-core/query/ec2_param_builder.rb
|
|
204
212
|
- lib/aws-sdk-core/query/handler.rb
|
|
205
213
|
- lib/aws-sdk-core/query/param.rb
|
|
@@ -209,6 +217,7 @@ files:
|
|
|
209
217
|
- lib/aws-sdk-core/refreshing_token.rb
|
|
210
218
|
- lib/aws-sdk-core/resources/collection.rb
|
|
211
219
|
- lib/aws-sdk-core/rest.rb
|
|
220
|
+
- lib/aws-sdk-core/rest/content_type_handler.rb
|
|
212
221
|
- lib/aws-sdk-core/rest/handler.rb
|
|
213
222
|
- lib/aws-sdk-core/rest/request/body.rb
|
|
214
223
|
- lib/aws-sdk-core/rest/request/builder.rb
|
|
@@ -216,9 +225,16 @@ files:
|
|
|
216
225
|
- lib/aws-sdk-core/rest/request/headers.rb
|
|
217
226
|
- lib/aws-sdk-core/rest/request/querystring_builder.rb
|
|
218
227
|
- lib/aws-sdk-core/rest/response/body.rb
|
|
228
|
+
- lib/aws-sdk-core/rest/response/header_list_parser.rb
|
|
219
229
|
- lib/aws-sdk-core/rest/response/headers.rb
|
|
220
230
|
- lib/aws-sdk-core/rest/response/parser.rb
|
|
221
231
|
- lib/aws-sdk-core/rest/response/status_code.rb
|
|
232
|
+
- lib/aws-sdk-core/rpc_v2.rb
|
|
233
|
+
- lib/aws-sdk-core/rpc_v2/builder.rb
|
|
234
|
+
- lib/aws-sdk-core/rpc_v2/content_type_handler.rb
|
|
235
|
+
- lib/aws-sdk-core/rpc_v2/error_handler.rb
|
|
236
|
+
- lib/aws-sdk-core/rpc_v2/handler.rb
|
|
237
|
+
- lib/aws-sdk-core/rpc_v2/parser.rb
|
|
222
238
|
- lib/aws-sdk-core/shared_config.rb
|
|
223
239
|
- lib/aws-sdk-core/shared_credentials.rb
|
|
224
240
|
- lib/aws-sdk-core/sso_credentials.rb
|
|
@@ -234,6 +250,7 @@ files:
|
|
|
234
250
|
- lib/aws-sdk-core/stubbing/protocols/rest.rb
|
|
235
251
|
- lib/aws-sdk-core/stubbing/protocols/rest_json.rb
|
|
236
252
|
- lib/aws-sdk-core/stubbing/protocols/rest_xml.rb
|
|
253
|
+
- lib/aws-sdk-core/stubbing/protocols/rpc_v2.rb
|
|
237
254
|
- lib/aws-sdk-core/stubbing/stub_data.rb
|
|
238
255
|
- lib/aws-sdk-core/stubbing/xml_error.rb
|
|
239
256
|
- lib/aws-sdk-core/token.rb
|
|
@@ -252,13 +269,13 @@ files:
|
|
|
252
269
|
- lib/aws-sdk-core/xml/doc_builder.rb
|
|
253
270
|
- lib/aws-sdk-core/xml/error_handler.rb
|
|
254
271
|
- lib/aws-sdk-core/xml/parser.rb
|
|
255
|
-
- lib/aws-sdk-core/xml/parser/engines/libxml.rb
|
|
256
|
-
- lib/aws-sdk-core/xml/parser/engines/nokogiri.rb
|
|
257
|
-
- lib/aws-sdk-core/xml/parser/engines/oga.rb
|
|
258
|
-
- lib/aws-sdk-core/xml/parser/engines/ox.rb
|
|
259
|
-
- lib/aws-sdk-core/xml/parser/engines/rexml.rb
|
|
260
272
|
- lib/aws-sdk-core/xml/parser/frame.rb
|
|
273
|
+
- lib/aws-sdk-core/xml/parser/libxml_engine.rb
|
|
274
|
+
- lib/aws-sdk-core/xml/parser/nokogiri_engine.rb
|
|
275
|
+
- lib/aws-sdk-core/xml/parser/oga_engine.rb
|
|
276
|
+
- lib/aws-sdk-core/xml/parser/ox_engine.rb
|
|
261
277
|
- lib/aws-sdk-core/xml/parser/parsing_error.rb
|
|
278
|
+
- lib/aws-sdk-core/xml/parser/rexml_engine.rb
|
|
262
279
|
- lib/aws-sdk-core/xml/parser/stack.rb
|
|
263
280
|
- lib/aws-sdk-sso.rb
|
|
264
281
|
- lib/aws-sdk-sso/client.rb
|
|
@@ -339,13 +356,22 @@ files:
|
|
|
339
356
|
- lib/seahorse/model/shapes.rb
|
|
340
357
|
- lib/seahorse/util.rb
|
|
341
358
|
- lib/seahorse/version.rb
|
|
359
|
+
- sig/aws-sdk-core.rbs
|
|
360
|
+
- sig/aws-sdk-core/client_stubs.rbs
|
|
361
|
+
- sig/aws-sdk-core/errors.rbs
|
|
362
|
+
- sig/aws-sdk-core/resources/collection.rbs
|
|
363
|
+
- sig/aws-sdk-core/structure.rbs
|
|
364
|
+
- sig/aws-sdk-core/waiters/errors.rbs
|
|
365
|
+
- sig/seahorse/client/base.rbs
|
|
366
|
+
- sig/seahorse/client/handler_builder.rbs
|
|
367
|
+
- sig/seahorse/client/response.rbs
|
|
342
368
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
343
369
|
licenses:
|
|
344
370
|
- Apache-2.0
|
|
345
371
|
metadata:
|
|
346
372
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-core
|
|
347
373
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-core/CHANGELOG.md
|
|
348
|
-
post_install_message:
|
|
374
|
+
post_install_message:
|
|
349
375
|
rdoc_options: []
|
|
350
376
|
require_paths:
|
|
351
377
|
- lib
|
|
@@ -360,8 +386,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
360
386
|
- !ruby/object:Gem::Version
|
|
361
387
|
version: '0'
|
|
362
388
|
requirements: []
|
|
363
|
-
rubygems_version: 3.
|
|
364
|
-
signing_key:
|
|
389
|
+
rubygems_version: 3.4.10
|
|
390
|
+
signing_key:
|
|
365
391
|
specification_version: 4
|
|
366
392
|
summary: AWS SDK for Ruby - Core
|
|
367
393
|
test_files: []
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|