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/slicehost/models/compute/servers.rb
2010-10-04 14:02:08 -07:00

38 lines
797 B
Ruby

require 'fog/core/collection'
require 'fog/slicehost/models/compute/server'
module Fog
module Slicehost
class Compute
class Servers < Fog::Collection
model Fog::Slicehost::Compute::Server
def all
data = connection.get_slices.body['slices']
load(data)
end
def bootstrap(new_attributes = {})
server = create(new_attributes)
server.wait_for { ready? }
server.setup(:password => server.password)
server
end
def get(server_id)
if server_id && server = connection.get_slice(server_id).body
new(server)
elsif !server_id
nil
end
rescue Excon::Errors::Forbidden
nil
end
end
end
end
end