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
Carlos Sanchez 5c9c675146 Joyent server creation should not wait for server to be ready
Align with other providers for consistency
2012-10-31 17:20:57 +01:00

36 lines
765 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
end
def bootstrap(new_attributes = {})
server = create(new_attributes)
server.wait_for { ready? }
server
end
def get(machine_id)
data = self.connection.get_machine(machine_id).body
new(data)
end
end
end # Joyent
end # Compute
end # Fog