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/joyent/models/compute/servers.rb
Kevin Chan e403854446 GH-690 Joyent Cloud Provider
Squashed from fog/joyent
2012-02-27 17:33:20 -06:00

35 lines
706 B
Ruby

require 'fog/core/collection'
require 'fog/joyent/models/compute/server'
module Fog
module Compute
class Joyent
class Servers < Fog::Collection
model Fog::Compute::Joyent::Server
def all
load(self.connection.list_machines().body)
end
def create(params = {})
data = self.connection.create_machine(params).body
server = new(data)
server.wait_for { ready? }
server
end
def bootstrap
# XXX TOXO
end
def get(machine_id)
data = self.connection.get_machine(machine_id).body
new(data)
end
end
end # Joyent
end # Compute
end # Fog