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/compute/models/slicehost/servers.rb

38 lines
797 B
Ruby

require 'fog/core/collection'
require 'fog/compute/models/slicehost/server'
module Fog
module Compute
class Slicehost
class Servers < Fog::Collection
model Fog::Compute::Slicehost::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