Class: AceClient::Base
- Inherits:
-
Object
- Object
- AceClient::Base
- Includes:
- HTTParty
- Defined in:
- lib/ace-client/base.rb
Instance Attribute Summary collapse
-
#access_key_id ⇒ Object
Returns the value of attribute access_key_id.
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#http_method ⇒ Object
Returns the value of attribute http_method.
-
#http_proxy ⇒ Object
Returns the value of attribute http_proxy.
-
#last_response ⇒ Object
Returns the value of attribute last_response.
-
#last_response_time ⇒ Object
Returns the value of attribute last_response_time.
-
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
-
#use_ssl ⇒ Object
Returns the value of attribute use_ssl.
-
#user_agent ⇒ Object
Returns the value of attribute user_agent.
Instance Method Summary collapse
-
#initialize(options) ⇒ Base
constructor
A new instance of Base.
- #record_response ⇒ Object
- #set_http_proxy ⇒ Object
Constructor Details
#initialize(options) ⇒ Base
Returns a new instance of Base.
18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/ace-client/base.rb', line 18 def initialize() @access_key_id = [:access_key_id] @secret_access_key = [:secret_access_key] @endpoint = [:endpoint] @http_proxy = [:http_proxy] @http_method = [:http_method] || :post @use_ssl = [:use_ssl] || true @version = [:version] @path = [:path] || '/' @user_agent = [:user_agent] set_http_proxy end |
Instance Attribute Details
#access_key_id ⇒ Object
Returns the value of attribute access_key_id.
8 9 10 |
# File 'lib/ace-client/base.rb', line 8 def access_key_id @access_key_id end |
#endpoint ⇒ Object
Returns the value of attribute endpoint.
10 11 12 |
# File 'lib/ace-client/base.rb', line 10 def endpoint @endpoint end |
#http_method ⇒ Object
Returns the value of attribute http_method.
12 13 14 |
# File 'lib/ace-client/base.rb', line 12 def http_method @http_method end |
#http_proxy ⇒ Object
Returns the value of attribute http_proxy.
11 12 13 |
# File 'lib/ace-client/base.rb', line 11 def http_proxy @http_proxy end |
#last_response ⇒ Object
Returns the value of attribute last_response.
14 15 16 |
# File 'lib/ace-client/base.rb', line 14 def last_response @last_response end |
#last_response_time ⇒ Object
Returns the value of attribute last_response_time.
15 16 17 |
# File 'lib/ace-client/base.rb', line 15 def last_response_time @last_response_time end |
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
9 10 11 |
# File 'lib/ace-client/base.rb', line 9 def secret_access_key @secret_access_key end |
#use_ssl ⇒ Object
Returns the value of attribute use_ssl.
13 14 15 |
# File 'lib/ace-client/base.rb', line 13 def use_ssl @use_ssl end |
#user_agent ⇒ Object
Returns the value of attribute user_agent.
16 17 18 |
# File 'lib/ace-client/base.rb', line 16 def user_agent @user_agent end |
Instance Method Details
#record_response ⇒ Object
38 39 40 41 42 43 |
# File 'lib/ace-client/base.rb', line 38 def record_response start_time = Time.now @last_response = yield @last_response_time = Time.now - start_time @last_response end |
#set_http_proxy ⇒ Object
31 32 33 34 35 36 |
# File 'lib/ace-client/base.rb', line 31 def set_http_proxy if @http_proxy uri = URI.parse(@http_proxy) self.class.http_proxy(uri.host, uri.port) end end |