1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/storm_on_demand/compute.rb

112 lines
2.6 KiB
Ruby
Raw Normal View History

2012-05-15 14:54:20 -04:00
require 'fog/storm_on_demand'
require 'fog/compute'
require 'fog/storm_on_demand/shared'
module Fog
module Compute
class StormOnDemand < Fog::Service
2011-05-10 16:58:22 -04:00
requires :storm_on_demand_username, :storm_on_demand_password
recognizes :storm_on_demand_auth_url
model_path 'fog/storm_on_demand/models/compute'
model :config
collection :configs
model :image
collection :images
model :server
collection :servers
model :template
collection :templates
model :product
collection :products
model :notification
collection :notifications
request_path 'fog/storm_on_demand/requests/compute'
request :clone_server
request :delete_server
request :reboot_server
request :list_servers
request :get_server
request :create_server
request :resize_server
request :server_history
request :shutdown_server
request :start_server
request :server_status
request :update_server
request :list_configs
request :get_config_details
request :list_templates
request :get_template_details
request :restore_template
request :list_images
request :create_image
request :delete_image
request :get_image_details
request :update_image
request :restore_image
request :get_product
request :get_product_code
request :list_products
request :get_product_price
request :get_product_starting_price
request :list_notifications
request :current_notifications
request :get_notification
request :resolve_notification
class Mock
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {
:last_modified => {
:images => {},
:servers => {}
},
:images => {},
:servers => {}
}
end
end
2011-05-17 22:40:17 -04:00
def self.reset
@data = nil
end
def self.reset_data(keys=data.keys)
for key in [*keys]
data.delete(key)
end
end
def initialize(options={})
2011-05-10 16:58:22 -04:00
@storm_on_demand_username = options[:storm_on_demand_username]
2011-05-19 18:35:33 -04:00
end
def data
self.class.data[@storm_on_demand_username]
end
def reset_data
self.class.data.delete(@storm_on_demand_username)
end
end
class Real
include Fog::StormOnDemand::RealShared
end
end
end
end