Class: OpenNebula::HostPool
- Inherits:
-
Pool
- Object
- XMLElement
- XMLPool
- Pool
- OpenNebula::HostPool
- Defined in:
- OpenNebula/HostPool.rb
Constant Summary
- HOST_POOL_METHODS =
{ :info => "hostpool.info" }
Constants inherited from Pool
Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE
Instance Method Summary (collapse)
-
- (Object) factory(element_xml)
Factory Method for the Host Pool.
-
- (Object) info
Retrieves all the Hosts in the pool.
-
- (HostPool) initialize(client)
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
- (HostPool) initialize(client)
client a Client object that represents a XML-RPC connection
37 38 39 |
# File 'OpenNebula/HostPool.rb', line 37 def initialize(client) super('HOST_POOL','HOST',client) end |
Instance Method Details
- (Object) factory(element_xml)
Factory Method for the Host Pool
42 43 44 |
# File 'OpenNebula/HostPool.rb', line 42 def factory(element_xml) OpenNebula::Host.new(element_xml,@client) end |
- (Object) info
Retrieves all the Hosts in the pool.
51 52 53 |
# File 'OpenNebula/HostPool.rb', line 51 def info() super(HOST_POOL_METHODS[:info]) end |