Class: CloudAlly::API

Inherits:
Object
  • Object
show all
Includes:
Authentication, WrAPI::Authentication, WrAPI::Connection, WrAPI::Request
Defined in:
lib/cloudally/api.rb

Direct Known Subclasses

Client

Instance Method Summary collapse

Methods included from Authentication

#auth, #auth_partner, #auth_refresh

Constructor Details

#initialize(options = {}) ⇒ API

Creates a new API



11
12
13
14
15
16
# File 'lib/cloudally/api.rb', line 11

def initialize(options = {})
  options = CloudAlly.options.merge(options)
  WrAPI::Configuration::VALID_OPTIONS_KEYS.each do |key|
    send("#{key}=", options[key])
  end
end

Instance Method Details

#configObject



18
19
20
21
22
23
24
# File 'lib/cloudally/api.rb', line 18

def config
  conf = {}
  Configuration::VALID_OPTIONS_KEYS.each do |key|
    conf[key] = send key
  end
  conf
end