# File lib/fog/virtual_box/models/compute/servers.rb, line 12 def all data = connection.machines.map do |machine| { :raw => machine } end load(data) end
# File lib/fog/virtual_box/models/compute/servers.rb, line 21 def bootstrap(new_attributes = {}) raise 'Not Implemented' # server = create(new_attributes) # server.start # server.wait_for { ready? } # server.setup(:password => server.password) # server end
# File lib/fog/virtual_box/models/compute/servers.rb, line 30 def get(server_id) machine = connection.find_machine(server_id) new(:raw => machine) rescue ::VirtualBox::Exceptions::ObjectNotFoundException nil end