aws-sdk-core 2.0.0.rc13 → 2.0.0.rc14
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/README.md +27 -7
- data/apis/s3-2006-03-01.api.json +27 -16
- data/bin/aws.rb +0 -1
- data/endpoints.json +7 -3
- data/lib/aws.rb +57 -40
- data/lib/aws/endpoint_provider.rb +5 -21
- data/lib/aws/plugins/global_configuration.rb +2 -5
- data/lib/aws/plugins/regional_endpoint.rb +1 -4
- data/lib/aws/plugins/request_signer.rb +8 -2
- data/lib/aws/plugins/response_paging.rb +1 -1
- data/lib/aws/plugins/s3_sse_cpk.rb +25 -4
- data/lib/aws/service.rb +1 -19
- data/lib/aws/service_builder.rb +56 -0
- data/lib/aws/version.rb +1 -1
- data/lib/aws/xml/builder.rb +3 -7
- data/{vendor/seahorse/lib → lib}/seahorse.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/base.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/block_io.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/configuration.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/handler.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/handler_builder.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/handler_list.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/handler_list_entry.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/http/error.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/http/headers.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/http/request.rb +1 -1
- data/{vendor/seahorse/lib → lib}/seahorse/client/http/response.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/logging/formatter.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/logging/handler.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/managed_file.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/net_http/connection_pool.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/net_http/handler.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/net_http/patches.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/param_converter.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/param_validator.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugin.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugin_list.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/api.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/content_length.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/endpoint.rb +23 -14
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/json_simple.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/logging.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/net_http.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/operation_methods.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/param_conversion.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/param_validation.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/raise_response_errors.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/plugins/restful_bindings.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/request.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/request_context.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/response.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/client/xml/builder.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/model/api.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/model/operation.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/model/shape_map.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/model/shapes.rb +2 -2
- data/{vendor/seahorse/lib → lib}/seahorse/util.rb +0 -0
- data/{vendor/seahorse/lib → lib}/seahorse/version.rb +0 -0
- metadata +48 -49
- data/lib/aws/client_factory.rb +0 -251
@@ -50,9 +50,7 @@ module Aws
|
|
50
50
|
def apply_service_defaults(client_class, options)
|
51
51
|
if defaults = Aws.config[client_class::IDENTIFIER]
|
52
52
|
defaults.each do |option_name, default|
|
53
|
-
|
54
|
-
next if options.key?(option_name)
|
55
|
-
options[option_name] = default
|
53
|
+
options[option_name] = default unless options.key?(option_name)
|
56
54
|
end
|
57
55
|
end
|
58
56
|
end
|
@@ -60,8 +58,7 @@ module Aws
|
|
60
58
|
def apply_aws_defaults(client_class, options)
|
61
59
|
Aws.config.each do |option_name, default|
|
62
60
|
next if client_class::IDENTIFIER == option_name
|
63
|
-
next if Aws.
|
64
|
-
next if option_name == :api_version
|
61
|
+
next if Aws.services.key?(option_name)
|
65
62
|
next if options.key?(option_name)
|
66
63
|
options[option_name] = default
|
67
64
|
end
|
@@ -19,8 +19,7 @@ module Aws
|
|
19
19
|
ENV.values_at(*keys).compact.first
|
20
20
|
}
|
21
21
|
|
22
|
-
|
23
|
-
option(:region_defaults) do |cfg|
|
22
|
+
option(:endpoint) do |cfg|
|
24
23
|
EndpointProvider.default_provider.resolve(
|
25
24
|
service: cfg.api.metadata('endpointPrefix'),
|
26
25
|
region: cfg.region,
|
@@ -28,8 +27,6 @@ module Aws
|
|
28
27
|
)
|
29
28
|
end
|
30
29
|
|
31
|
-
option(:endpoint) { |cfg| cfg.region_defaults[:endpoint] }
|
32
|
-
|
33
30
|
def after_initialize(client)
|
34
31
|
if client.config.region.nil? or client.config.region == ''
|
35
32
|
raise Errors::MissingRegionError
|
@@ -40,8 +40,14 @@ module Aws
|
|
40
40
|
# Intentionally not documented - this should go away when all
|
41
41
|
# services support signature version 4 in every region.
|
42
42
|
option(:signature_version) do |cfg|
|
43
|
-
|
44
|
-
|
43
|
+
if
|
44
|
+
cfg.api.metadata('endpointPrefix') == 's3' &&
|
45
|
+
cfg.api.metadata('v3Regions').include?(cfg.region)
|
46
|
+
then
|
47
|
+
's3'
|
48
|
+
else
|
49
|
+
cfg.api.metadata('signatureVersion')
|
50
|
+
end
|
45
51
|
end
|
46
52
|
|
47
53
|
option(:sigv4_name) do |cfg|
|
@@ -6,7 +6,7 @@ module Aws
|
|
6
6
|
class Handler < Seahorse::Client::Handler
|
7
7
|
|
8
8
|
def call(context)
|
9
|
-
paging_provider = context.
|
9
|
+
paging_provider = context.client.class::PAGING_PROVIDER
|
10
10
|
pager = paging_provider.pager(context.operation.name)
|
11
11
|
PageableResponse.new(@handler.call(context), pager)
|
12
12
|
end
|
@@ -1,30 +1,51 @@
|
|
1
|
-
require '
|
2
|
-
require 'base64'
|
1
|
+
require 'uri'
|
3
2
|
|
4
3
|
module Aws
|
5
4
|
module Plugins
|
5
|
+
|
6
|
+
# @seahorse.client.option [Boolean] :require_https_for_sse_cpk (true)
|
7
|
+
# When `true`, the endpoint **must** be HTTPS for all operations
|
8
|
+
# where server-side-encryption is used with customer-provided keys.
|
9
|
+
# This should only be disabled for local testing.
|
6
10
|
class S3SseCpk < Seahorse::Client::Plugin
|
7
11
|
|
12
|
+
option(:require_https_for_sse_cpk, true)
|
13
|
+
|
8
14
|
class Handler < Seahorse::Client::Handler
|
9
15
|
|
10
16
|
def call(context)
|
11
|
-
compute_key_md5(context
|
17
|
+
compute_key_md5(context)
|
12
18
|
@handler.call(context)
|
13
19
|
end
|
14
20
|
|
15
21
|
private
|
16
22
|
|
17
|
-
def compute_key_md5(
|
23
|
+
def compute_key_md5(context)
|
24
|
+
params = context.params
|
18
25
|
if key = params[:sse_customer_key]
|
26
|
+
require_https(context)
|
19
27
|
params[:sse_customer_key] = base64(key)
|
20
28
|
params[:sse_customer_key_md5] = base64(md5(key))
|
21
29
|
end
|
22
30
|
if key = params[:copy_source_sse_customer_key]
|
31
|
+
require_https(context)
|
23
32
|
params[:copy_source_sse_customer_key] = base64(key)
|
24
33
|
params[:copy_source_sse_customer_key_md5] = base64(md5(key))
|
25
34
|
end
|
26
35
|
end
|
27
36
|
|
37
|
+
def require_https(context)
|
38
|
+
unless URI::HTTPS === context.config.endpoint
|
39
|
+
msg = <<-MSG.strip.gsub("\n", ' ')
|
40
|
+
Attempting to send customer-provided-keys for S3
|
41
|
+
server-side-encryption over HTTP; Please configure a HTTPS
|
42
|
+
endpoint. If you are attempting to use a test endpoint,
|
43
|
+
you can disable this check via `:require_https_for_sse_cpk`
|
44
|
+
MSG
|
45
|
+
raise ArgumentError, msg
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
28
49
|
def md5(str)
|
29
50
|
OpenSSL::Digest::MD5.digest(str)
|
30
51
|
end
|
data/lib/aws/service.rb
CHANGED
@@ -16,29 +16,11 @@ module Aws
|
|
16
16
|
unless @warned
|
17
17
|
@warned = true
|
18
18
|
warn(<<-MSG.strip)
|
19
|
-
#{self.name}.new deprecated as of v2.0.0.rc11 and will be removed as of v2.0.0.0 final; use #{self.name}
|
19
|
+
#{self.name}.new deprecated as of v2.0.0.rc11 and will be removed as of v2.0.0.0 final; use #{self.name}::Client.new() instead
|
20
20
|
MSG
|
21
21
|
end
|
22
|
-
client(options)
|
23
|
-
end
|
24
|
-
|
25
|
-
# Constructs and returns an API client for this service.
|
26
|
-
# All options are passed to the Client class constructor.
|
27
|
-
def client(options = {})
|
28
22
|
const_get(:Client).new(options)
|
29
23
|
end
|
30
24
|
|
31
|
-
class << self
|
32
|
-
|
33
|
-
# @api private
|
34
|
-
def define(identifier, versions = {})
|
35
|
-
svc_mod = Module.new
|
36
|
-
svc_mod.extend(Service)
|
37
|
-
svc_mod.const_set(:Errors, Module.new { extend Errors::DynamicErrors })
|
38
|
-
svc_mod.const_set(:Client, ClientFactory.define(identifier, versions))
|
39
|
-
svc_mod
|
40
|
-
end
|
41
|
-
|
42
|
-
end
|
43
25
|
end
|
44
26
|
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
module Aws
|
2
|
+
class ServiceBuilder
|
3
|
+
class << self
|
4
|
+
|
5
|
+
# @param [Symbol] identifier
|
6
|
+
# @option options [required, String, Hash, Seahorse::Model::Api] 'api'
|
7
|
+
# @option options [String, Hash, Paging::Provider] 'paging'
|
8
|
+
# @return [Module<Service>]
|
9
|
+
def new(identifier, options = {})
|
10
|
+
svc_module = Module.new
|
11
|
+
svc_module.send(:extend, Service)
|
12
|
+
svc_module.const_set(:Errors, Module.new { extend Errors::DynamicErrors })
|
13
|
+
svc_module.const_set(:Client, client_class(identifier, options))
|
14
|
+
svc_module
|
15
|
+
end
|
16
|
+
|
17
|
+
private
|
18
|
+
|
19
|
+
def client_class(identifier, options)
|
20
|
+
client_class = Class.new(Seahorse::Client::Base)
|
21
|
+
client_class.const_set(:IDENTIFIER, identifier)
|
22
|
+
client_class.const_set(:PAGING_PROVIDER, paging_provider(options))
|
23
|
+
client_class.set_api(api(options))
|
24
|
+
Api::ServiceCustomizations.apply(client_class)
|
25
|
+
client_class
|
26
|
+
end
|
27
|
+
|
28
|
+
def api(options)
|
29
|
+
api = options['api']
|
30
|
+
case api
|
31
|
+
when Seahorse::Model::Api then api
|
32
|
+
when Hash then Seahorse::Model::Api.new(api)
|
33
|
+
when String then Seahorse::Model::Api.new(load_json(api))
|
34
|
+
else
|
35
|
+
raise ArgumentError, "expected :api to be an Api, Hash or String"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def paging_provider(options)
|
40
|
+
paginators = options['paginators']
|
41
|
+
case paginators
|
42
|
+
when Paging::Provider then paginators
|
43
|
+
when Hash then Paging::Provider.new(paginators)
|
44
|
+
when String then Paging::Provider.new(load_json(paginators))
|
45
|
+
when nil then Paging::NullProvider.new
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def load_json(path)
|
50
|
+
path = File.join(GEM_ROOT, path) unless path.match(/^#{File::SEPARATOR}/)
|
51
|
+
MultiJson.load(File.read(path))
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
data/lib/aws/version.rb
CHANGED
data/lib/aws/xml/builder.rb
CHANGED
@@ -91,14 +91,10 @@ module Aws
|
|
91
91
|
|
92
92
|
def shape_attrs(shape)
|
93
93
|
if xmlns = shape.metadata('xmlNamespace')
|
94
|
-
|
95
|
-
|
96
|
-
if xmlns.is_a?(Hash)
|
97
|
-
key = 'xmlns'
|
98
|
-
key += ':' + xmlns['prefix'] if xmlns['prefix']
|
99
|
-
{ key => xmlns['uri'] }
|
94
|
+
if prefix = xmlns['prefix']
|
95
|
+
{ 'xmlns:' + prefix => xmlns['uri'] }
|
100
96
|
else
|
101
|
-
{ 'xmlns' => xmlns }
|
97
|
+
{ 'xmlns' => xmlns['uri'] }
|
102
98
|
end
|
103
99
|
else
|
104
100
|
{}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -30,7 +30,7 @@ module Seahorse
|
|
30
30
|
# @return [IO]
|
31
31
|
attr_reader :body
|
32
32
|
|
33
|
-
# @param [String, URI::HTTP, URI::HTTPS, nil]
|
33
|
+
# @param [String, URI::HTTP, URI::HTTPS, nil] endpoint
|
34
34
|
def endpoint=(endpoint)
|
35
35
|
endpoint = URI.parse(endpoint) if endpoint.is_a?(String)
|
36
36
|
if endpoint.nil? or URI::HTTP === endpoint or URI::HTTPS === endpoint
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -18,6 +18,16 @@ module Seahorse
|
|
18
18
|
|
19
19
|
option(:endpoint)
|
20
20
|
|
21
|
+
def after_initialize(client)
|
22
|
+
endpoint = URI.parse(client.config.endpoint.to_s)
|
23
|
+
if URI::HTTPS === endpoint or URI::HTTP === endpoint
|
24
|
+
client.config.endpoint = endpoint
|
25
|
+
else
|
26
|
+
msg = 'expected :endpoint to be a HTTP or HTTPS endpoint'
|
27
|
+
raise ArgumentError, msg
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
21
31
|
class Handler < Client::Handler
|
22
32
|
|
23
33
|
def call(context)
|
@@ -28,31 +38,30 @@ module Seahorse
|
|
28
38
|
private
|
29
39
|
|
30
40
|
def build_endpoint(context)
|
31
|
-
uri =
|
41
|
+
uri = URI.parse(context.config.endpoint.to_s)
|
32
42
|
apply_path_params(uri, context)
|
33
43
|
apply_querystring_params(uri, context)
|
34
44
|
uri
|
35
45
|
end
|
36
46
|
|
37
|
-
def configured_endpoint(context)
|
38
|
-
if context.config.endpoint
|
39
|
-
endpoint = context.config.endpoint.to_s
|
40
|
-
endpoint = "https://#{endpoint}" unless endpoint =~ /^http/
|
41
|
-
URI.parse(endpoint)
|
42
|
-
else
|
43
|
-
raise "required configuration option :endpoint not set"
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
47
|
def apply_path_params(uri, context)
|
48
48
|
path = uri.path.sub(/\/$/, '')
|
49
49
|
path += context.operation.http_request_uri.split('?')[0]
|
50
50
|
input = context.operation.input
|
51
|
-
uri.path = path.gsub(/{\w
|
52
|
-
|
51
|
+
uri.path = path.gsub(/{\w+\+?}/) do |placeholder|
|
52
|
+
if placeholder.include?('+')
|
53
|
+
placeholder = placeholder[1..-3]
|
54
|
+
greedy = true
|
55
|
+
else
|
56
|
+
placeholder = placeholder[1..-2]
|
57
|
+
end
|
53
58
|
name, shape = input.member_by_location_name(placeholder)
|
54
59
|
param = context.params[name]
|
55
|
-
|
60
|
+
if greedy
|
61
|
+
param.split('/').map{ |value| escape(value) }.join('/')
|
62
|
+
else
|
63
|
+
escape(param)
|
64
|
+
end
|
56
65
|
end
|
57
66
|
end
|
58
67
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -361,7 +361,7 @@ module Seahorse
|
|
361
361
|
|
362
362
|
end
|
363
363
|
|
364
|
-
class
|
364
|
+
class Character < String; end
|
365
365
|
|
366
366
|
class Byte < String; end
|
367
367
|
|
@@ -422,7 +422,7 @@ module Seahorse
|
|
422
422
|
register('blob', Shapes::Blob)
|
423
423
|
register('byte', Shapes::Byte)
|
424
424
|
register('boolean', Shapes::Boolean)
|
425
|
-
register('
|
425
|
+
register('character', Shapes::Character)
|
426
426
|
register('double', Shapes::Double)
|
427
427
|
register('float', Shapes::Float)
|
428
428
|
register('integer', Shapes::Integer)
|
File without changes
|
File without changes
|
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: 2.0.0.
|
4
|
+
version: 2.0.0.rc14
|
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: 2014-
|
11
|
+
date: 2014-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -56,14 +56,14 @@ dependencies:
|
|
56
56
|
name: jamespath
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
description: Provides client libraries for AWS.
|
@@ -83,7 +83,6 @@ files:
|
|
83
83
|
- lib/aws/api/manifest_builder.rb
|
84
84
|
- lib/aws/api/minifier.rb
|
85
85
|
- lib/aws/api/service_customizations.rb
|
86
|
-
- lib/aws/client_factory.rb
|
87
86
|
- lib/aws/credential_provider_chain.rb
|
88
87
|
- lib/aws/credentials.rb
|
89
88
|
- lib/aws/empty_structure.rb
|
@@ -137,6 +136,7 @@ files:
|
|
137
136
|
- lib/aws/response_handler.rb
|
138
137
|
- lib/aws/rest_body_handler.rb
|
139
138
|
- lib/aws/service.rb
|
139
|
+
- lib/aws/service_builder.rb
|
140
140
|
- lib/aws/shared_credentials.rb
|
141
141
|
- lib/aws/signers/base.rb
|
142
142
|
- lib/aws/signers/handler.rb
|
@@ -153,49 +153,49 @@ files:
|
|
153
153
|
- lib/aws/xml/rest_handler.rb
|
154
154
|
- lib/aws-sdk-core.rb
|
155
155
|
- lib/aws.rb
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
159
|
-
-
|
160
|
-
-
|
161
|
-
-
|
162
|
-
-
|
163
|
-
-
|
164
|
-
-
|
165
|
-
-
|
166
|
-
-
|
167
|
-
-
|
168
|
-
-
|
169
|
-
-
|
170
|
-
-
|
171
|
-
-
|
172
|
-
-
|
173
|
-
-
|
174
|
-
-
|
175
|
-
-
|
176
|
-
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
-
|
188
|
-
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
-
|
195
|
-
-
|
196
|
-
-
|
197
|
-
-
|
198
|
-
-
|
156
|
+
- lib/seahorse/client/base.rb
|
157
|
+
- lib/seahorse/client/block_io.rb
|
158
|
+
- lib/seahorse/client/configuration.rb
|
159
|
+
- lib/seahorse/client/handler.rb
|
160
|
+
- lib/seahorse/client/handler_builder.rb
|
161
|
+
- lib/seahorse/client/handler_list.rb
|
162
|
+
- lib/seahorse/client/handler_list_entry.rb
|
163
|
+
- lib/seahorse/client/http/error.rb
|
164
|
+
- lib/seahorse/client/http/headers.rb
|
165
|
+
- lib/seahorse/client/http/request.rb
|
166
|
+
- lib/seahorse/client/http/response.rb
|
167
|
+
- lib/seahorse/client/logging/formatter.rb
|
168
|
+
- lib/seahorse/client/logging/handler.rb
|
169
|
+
- lib/seahorse/client/managed_file.rb
|
170
|
+
- lib/seahorse/client/net_http/connection_pool.rb
|
171
|
+
- lib/seahorse/client/net_http/handler.rb
|
172
|
+
- lib/seahorse/client/net_http/patches.rb
|
173
|
+
- lib/seahorse/client/param_converter.rb
|
174
|
+
- lib/seahorse/client/param_validator.rb
|
175
|
+
- lib/seahorse/client/plugin.rb
|
176
|
+
- lib/seahorse/client/plugin_list.rb
|
177
|
+
- lib/seahorse/client/plugins/api.rb
|
178
|
+
- lib/seahorse/client/plugins/content_length.rb
|
179
|
+
- lib/seahorse/client/plugins/endpoint.rb
|
180
|
+
- lib/seahorse/client/plugins/json_simple.rb
|
181
|
+
- lib/seahorse/client/plugins/logging.rb
|
182
|
+
- lib/seahorse/client/plugins/net_http.rb
|
183
|
+
- lib/seahorse/client/plugins/operation_methods.rb
|
184
|
+
- lib/seahorse/client/plugins/param_conversion.rb
|
185
|
+
- lib/seahorse/client/plugins/param_validation.rb
|
186
|
+
- lib/seahorse/client/plugins/raise_response_errors.rb
|
187
|
+
- lib/seahorse/client/plugins/restful_bindings.rb
|
188
|
+
- lib/seahorse/client/request.rb
|
189
|
+
- lib/seahorse/client/request_context.rb
|
190
|
+
- lib/seahorse/client/response.rb
|
191
|
+
- lib/seahorse/client/xml/builder.rb
|
192
|
+
- lib/seahorse/model/api.rb
|
193
|
+
- lib/seahorse/model/operation.rb
|
194
|
+
- lib/seahorse/model/shape_map.rb
|
195
|
+
- lib/seahorse/model/shapes.rb
|
196
|
+
- lib/seahorse/util.rb
|
197
|
+
- lib/seahorse/version.rb
|
198
|
+
- lib/seahorse.rb
|
199
199
|
- apis/autoscaling-2011-01-01.api.json
|
200
200
|
- apis/autoscaling-2011-01-01.paginators.json
|
201
201
|
- apis/cloudformation-2010-05-15.api.json
|
@@ -303,7 +303,6 @@ post_install_message:
|
|
303
303
|
rdoc_options: []
|
304
304
|
require_paths:
|
305
305
|
- lib
|
306
|
-
- vendor/seahorse/lib
|
307
306
|
required_ruby_version: !ruby/object:Gem::Requirement
|
308
307
|
requirements:
|
309
308
|
- - '>='
|