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/voxel/models/compute/server.rb
2013-01-07 21:01:23 +00:00

78 lines
1.8 KiB
Ruby

require 'fog/compute/models/server'
module Fog
module Compute
class Voxel
class Server < Fog::Compute::Server
identity :id
attribute :name
attribute :processing_cores
attribute :image_id
attribute :facility
attribute :disk_size
attribute :ip_assignments, :aliases => 'ipassignments'
def initialize(attributes={})
self.image_id ||= '55' # Ubuntu 10.04 LTS 64bit
super
end
def destroy
requires :id
service.voxcloud_delete(id)
true
end
def image
requires :image_id
service.images.get(image_id)
end
def ready?
self.state == 'SUCCEEDED'
end
def private_ip_address
ip_assignments.select {|ip_assignment| ip_assignment['type'] == 'internal'}.first
end
def public_ip_address
ip_assignments.select {|ip_assignment| ip_assignment['type'] == 'external'}.first
end
def reboot
requires :id
service.devices_power(id, :reboot)
true
end
def state
@state ||= service.voxcloud_status(id).body['devices'].first['status']
end
def save
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
requires :name, :image_id, :processing_cores, :facility, :disk_size
data = service.voxcloud_create({
:disk_size => disk_size,
:facility => facility,
:hostname => name,
:image_id => image_id,
:processing_cores => processing_cores
}).body
merge_attributes(data['device'])
true
end
end
end
end
end