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/serverlove/models/compute/server.rb
2012-07-15 13:40:03 +02:00

47 lines
1.1 KiB
Ruby

require 'fog/core/model'
module Fog
module Compute
class Serverlove
class Server < Fog::Model
identity :id, :aliases => 'server'
attribute :name
attribute :cpu
attribute :persistent
attribute :vnc_password, :aliases => 'vnc:password'
attribute :status
attribute :user
attribute :started
def save
attributes = {}
if(identity)
attributes = connection.update_server(identity, allowed_attributes).body
else
requires :name
requires :cpu
attributes = connection.create_server(allowed_attributes).body
end
merge_attributes(attributes)
self
end
def destroy
requires :identity
connection.destroy_server(identity)
self
end
def allowed_attributes
allowed = [:name, :cpu, :persistent, :vnc_password]
attributes.select {|k,v| allowed.include? k}
end
end
end
end
end