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/models/compute/servers.rb
2011-11-09 11:45:12 -05:00

26 lines
487 B
Ruby

require 'fog/core/collection'
require 'fog/storm_on_demand/models/compute/server'
module Fog
module Compute
class StormOnDemand
class Servers < Fog::Collection
model Fog::Compute::StormOnDemand::Server
def all
data = connection.list_servers.body['items']
load(data)
end
def get(uniq_id)
server = connection.get_server(:uniq_id => uniq_id).body
new(server)
end
end
end
end
end