Class: OpenNebula::HostPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::HostPool
- Defined in:
- lib/OpenNebula/HostPool.rb
Constant Summary collapse
- HOST_POOL_METHODS =
Constants and Class attribute accessors
{ :info => "hostpool.info" }
Constants inherited from Pool
Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE
Instance Method Summary collapse
-
#factory(element_xml) ⇒ Object
Factory Method for the Host Pool.
-
#info ⇒ Object
Retrieves all the Hosts in the pool.
-
#initialize(client) ⇒ HostPool
constructor
clienta Client object that represents a XML-RPC connection.
Methods inherited from Pool
Methods inherited from XMLPool
Methods inherited from XMLElement
#[], #attr, build_xml, #each, #each_xpath, #has_elements?, #initialize_xml, #name, #retrieve_elements, #template_like_str, #template_str, #text, #to_hash, #to_xml
Constructor Details
#initialize(client) ⇒ HostPool
client a Client object that represents a XML-RPC connection
34 35 36 |
# File 'lib/OpenNebula/HostPool.rb', line 34 def initialize(client) super('HOST_POOL','HOST',client) end |
Instance Method Details
#factory(element_xml) ⇒ Object
Factory Method for the Host Pool
39 40 41 |
# File 'lib/OpenNebula/HostPool.rb', line 39 def factory(element_xml) OpenNebula::Host.new(element_xml,@client) end |
#info ⇒ Object
Retrieves all the Hosts in the pool.
48 49 50 |
# File 'lib/OpenNebula/HostPool.rb', line 48 def info() super(HOST_POOL_METHODS[:info]) end |