mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
36 lines
706 B
Ruby
36 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
|