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
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

105 lines
2.5 KiB
Ruby

require 'fog/storm_on_demand/core'
require 'fog/storm_on_demand/shared'
module Fog
module Compute
class StormOnDemand < Fog::Service
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
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={})
@storm_on_demand_username = options[:storm_on_demand_username]
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