Sha256: 2ecb0dd9e17a16fc2802ee694f1354c5f5b5db2a922a6e988b4e9d9f36dc1e9d
Contents?: true
Size: 661 Bytes
Versions: 1
Compression:
Stored size: 661 Bytes
Contents
# # Author:: Alessio Rocchi (<alessio.rocchi@staff.aruba.it>) # © Copyright ArubaCloud. # # LICENSE: MIT (http://opensource.org/licenses/MIT) # require 'fog/core' require 'fog/json' module Fog module Compute autoload :ArubaCloud, File.expand_path('../arubacloud/compute', __FILE__) def self.new(attributes) attributes.delete(:provider) Fog::Compute::ArubaCloud.new(attributes) end end module ArubaCloud extend Fog::Provider DEFAULT_API_VERSION = '2.9' DEFAULT_WS_ENDUSER_URL = "https://api.dc2.computing.cloud.it/WsEndUser/v#{DEFAULT_API_VERSION}/WsEndUser.svc/json" service(:compute, 'Compute') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-arubacloud-0.0.3 | lib/fog/arubacloud.rb |