forked from aws/aws-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseahorse.rb
69 lines (58 loc) · 2.56 KB
/
seahorse.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
module Seahorse
autoload :Util, 'seahorse/util'
module Client
autoload :Base, 'seahorse/client/base'
autoload :BlockIO, 'seahorse/client/block_io'
autoload :Configuration, 'seahorse/client/configuration'
autoload :Handler, 'seahorse/client/handler'
autoload :HandlerBuilder, 'seahorse/client/handler_builder'
autoload :HandlerList, 'seahorse/client/handler_list'
autoload :HandlerListEntry, 'seahorse/client/handler_list_entry'
autoload :ManagedFile, 'seahorse/client/managed_file'
autoload :NetworkingError, 'seahorse/client/networking_error'
autoload :ParamConverter, 'seahorse/client/param_converter'
autoload :ParamValidator, 'seahorse/client/param_validator'
autoload :Plugin, 'seahorse/client/plugin'
autoload :PluginList, 'seahorse/client/plugin_list'
autoload :Request, 'seahorse/client/request'
autoload :RequestContext, 'seahorse/client/request_context'
autoload :Response, 'seahorse/client/response'
module Http
autoload :Headers, 'seahorse/client/http/headers'
autoload :Request, 'seahorse/client/http/request'
autoload :Response, 'seahorse/client/http/response'
end
module Logging
autoload :Handler, 'seahorse/client/logging/handler'
autoload :Formatter, 'seahorse/client/logging/formatter'
end
# @api private
module NetHttp
autoload :ConnectionPool, 'seahorse/client/net_http/connection_pool'
autoload :Handler, 'seahorse/client/net_http/handler'
autoload :Patches, 'seahorse/client/net_http/patches'
end
module Plugins
autoload :ContentLength, 'seahorse/client/plugins/content_length'
autoload :Endpoint, 'seahorse/client/plugins/endpoint'
autoload :JsonSimple, 'seahorse/client/plugins/json_simple'
autoload :Logging, 'seahorse/client/plugins/logging'
autoload :NetHttp, 'seahorse/client/plugins/net_http'
autoload :ParamConversion, 'seahorse/client/plugins/param_conversion'
autoload :ParamValidation, 'seahorse/client/plugins/param_validation'
autoload :RaiseResponseErrors, 'seahorse/client/plugins/raise_response_errors'
autoload :ResponseTarget, 'seahorse/client/plugins/response_target'
autoload :RestfulBindings, 'seahorse/client/plugins/restful_bindings'
end
# @api private
module Xml
autoload :Builder, 'seahorse/client/xml/builder'
end
end
module Model
autoload :Api, 'seahorse/model/api'
autoload :Operation, 'seahorse/model/operation'
autoload :ShapeMap, 'seahorse/model/shape_map'
autoload :Shapes, 'seahorse/model/shapes'
end
end