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

41 lines
898 B
Ruby

require 'fog/core/collection'
require 'fog/virtual_box/models/compute/server'
module Fog
module Compute
class VirtualBox
class Servers < Fog::Collection
model Fog::Compute::VirtualBox::Server
def all
data = connection.machines.map do |machine|
{
:raw => machine
}
end
load(data)
end
def bootstrap(new_attributes = {})
raise 'Not Implemented'
# server = create(new_attributes)
# server.start
# server.wait_for { ready? }
# server.setup(:password => server.password)
# server
end
def get(server_id)
machine = connection.find_machine(server_id)
new(:raw => machine)
rescue ::VirtualBox::Exceptions::ObjectNotFoundException
nil
end
end
end
end
end