# File lib/fog/storm_on_demand/models/compute/server.rb, line 60 def clone(options) requires :identity connection.clone_server({:uniq_id => identity}.merge!(options)) true end
# File lib/fog/storm_on_demand/models/compute/server.rb, line 35 def create(options) data = connection.create_server(options).body['servers'] load(data) end
# File lib/fog/storm_on_demand/models/compute/server.rb, line 40 def destroy requires :identity connection.delete_server(:uniq_id => identity) true end
# File lib/fog/storm_on_demand/models/compute/server.rb, line 46 def ready? active == 1 end
# File lib/fog/storm_on_demand/models/compute/server.rb, line 50 def reboot requires :identity connection.reboot_server(:uniq_id => identity) true end
Generated with the Darkfish Rdoc Generator 2.