Class: OpenNebula::HostPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::HostPool
- Defined in:
- lib/OpenNebula/HostPool.rb
Constant Summary collapse
- HOST_POOL_METHODS =
{ :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
client
a Client object that represents a XML-RPC connection.
Methods inherited from Pool
Methods inherited from XMLPool
Methods inherited from XMLElement
#[], #add_element, #attr, build_xml, #delete_element, #each, #each_xpath, #has_elements?, #initialize_xml, #name, #retrieve_elements, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml
Constructor Details
#initialize(client) ⇒ HostPool
client
a Client object that represents a XML-RPC connection
37 38 39 |
# File 'lib/OpenNebula/HostPool.rb', line 37 def initialize(client) super('HOST_POOL','HOST',client) end |
Instance Method Details
#factory(element_xml) ⇒ Object
Factory Method for the Host Pool
42 43 44 |
# File 'lib/OpenNebula/HostPool.rb', line 42 def factory(element_xml) OpenNebula::Host.new(element_xml,@client) end |
#info ⇒ Object
Retrieves all the Hosts in the pool.
51 52 53 |
# File 'lib/OpenNebula/HostPool.rb', line 51 def info() super(HOST_POOL_METHODS[:info]) end |