class OpenNebula::GroupPool
Constants
- GROUP_POOL_METHODS
-
Constants and Class attribute accessors
Public Class Methods
Source
# File lib/opennebula/group_pool.rb, line 36 def initialize(client) super('GROUP_POOL','GROUP',client) end
client
a Client
object that represents a XML-RPC connection
Calls superclass method
Public Instance Methods
Source
# File lib/opennebula/group_pool.rb, line 41 def factory(element_xml) OpenNebula::Group.new(element_xml,@client) end
Factory method to create User
objects
Source
# File lib/opennebula/group_pool.rb, line 50 def info() super(GROUP_POOL_METHODS[:info]) end
Retrieves all the Groups in the pool.
Calls superclass method
Also aliased as: info!
Source
# File lib/opennebula/group_pool.rb, line 54 def info_all() return super(GROUP_POOL_METHODS[:info]) end
Calls superclass method
Also aliased as: info_all!
Source
# File lib/opennebula/group_pool.rb, line 62 def info_group() return super(GROUP_POOL_METHODS[:info]) end
Calls superclass method
Also aliased as: info_group!
Source
# File lib/opennebula/group_pool.rb, line 58 def info_mine() return super(GROUP_POOL_METHODS[:info]) end
Calls superclass method
Also aliased as: info_mine!