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/ecloud/models/compute/group.rb
2013-01-07 21:25:06 +00:00

41 lines
887 B
Ruby

module Fog
module Compute
class Ecloud
class Group < Fog::Ecloud::Model
identity :href
attribute :name, :aliases => :Name
attribute :type, :aliases => :Type
attribute :other_links, :aliases => :Links
attribute :index, :aliases => :Index
def servers
@servers = Fog::Compute::Ecloud::Servers.new(:service => service, :href => href)
end
def edit(options = {})
options[:uri] = href
data = service.groups_edit(options).body
end
def move_up
service.groups_moveup(href).body
end
def move_down
service.groups_movedown(href).body
end
def delete
service.groups_delete(href).body
end
def id
href.scan(/\d+/)[0]
end
alias destroy delete
end
end
end
end