mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
39 lines
876 B
Ruby
39 lines
876 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(:connection => connection, :href => href)
|
|
end
|
|
|
|
def edit(options = {})
|
|
options[:uri] = href
|
|
data = connection.groups_edit(options).body
|
|
end
|
|
|
|
def move_up
|
|
connection.groups_moveup(href).body
|
|
end
|
|
|
|
def move_down
|
|
connection.groups_movedown(href).body
|
|
end
|
|
|
|
def delete
|
|
connection.groups_delete(href).body
|
|
end
|
|
|
|
def id
|
|
href.scan(/\d+/)[0]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|