2012-05-14 14:10:36 -04:00
|
|
|
require 'fog/core'
|
2011-04-27 21:49:56 -04:00
|
|
|
|
|
|
|
module Fog
|
2011-04-30 15:29:05 -04:00
|
|
|
module StormOnDemand
|
2011-04-27 21:49:56 -04:00
|
|
|
|
|
|
|
extend Fog::Provider
|
|
|
|
|
2011-09-22 20:00:48 -04:00
|
|
|
service(:compute, 'storm_on_demand/compute', 'Compute')
|
2013-05-25 05:29:10 -04:00
|
|
|
service(:network, 'storm_on_demand/network', 'Network')
|
2013-05-22 19:35:02 -04:00
|
|
|
service(:storage, 'storm_on_demand/storage', 'Storage')
|
2013-05-23 05:12:27 -04:00
|
|
|
service(:dns, 'storm_on_demand/dns', 'DNS')
|
2013-05-24 05:29:12 -04:00
|
|
|
service(:billing, 'storm_on_demand/billing', 'Billing')
|
2013-05-24 09:11:28 -04:00
|
|
|
service(:monitoring, 'storm_on_demand/monitoring', 'Monitoring')
|
2013-05-24 23:44:34 -04:00
|
|
|
service(:support, 'storm_on_demand/support', 'Support')
|
2013-05-25 03:26:51 -04:00
|
|
|
service(:account, 'storm_on_demand/account', 'Account')
|
2013-05-25 05:02:43 -04:00
|
|
|
service(:vpn, 'storm_on_demand/vpn', 'VPN')
|
2013-05-22 19:35:02 -04:00
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|