Class: OpenNebula::ZonePool

Inherits:
Pool show all
Defined in:
lib/opennebula/zone_pool.rb

Constant Summary collapse

ZONE_POOL_METHODS =

Constants and Class attribute accessors

{
    :info => "zonepool.info"
}

Constants inherited from Pool

Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE, Pool::PAGINATED_POOLS

Instance Method Summary collapse

Methods inherited from Pool

#each, #each_with_xpath, #get_hash, #info_paginated, #to_str

Methods inherited from XMLPool

#each_element

Methods inherited from XMLElement

#[], #add_element, #attr, build_xml, #delete_element, #each, #each_xpath, #element_xml, #has_elements?, #initialize_xml, #name, #retrieve_elements, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml

Constructor Details

#initialize(client) ⇒ ZonePool

Returns a new instance of ZonePool.

Parameters:



35
36
37
# File 'lib/opennebula/zone_pool.rb', line 35

def initialize(client)
    super('ZONE_POOL','ZONE',client)
end

Instance Method Details

#factory(element_xml) ⇒ Zone

Factory method to create Zone objects

Returns:

  • (Zone)

    new Zone object



41
42
43
# File 'lib/opennebula/zone_pool.rb', line 41

def factory(element_xml)
    OpenNebula::Zone.new(element_xml,@client)
end

#infonil, OpenNebula::Error Also known as: info!

Retrieves all the ZONEs in the pool.

Returns:



52
53
54
# File 'lib/opennebula/zone_pool.rb', line 52

def info()
    super(ZONE_POOL_METHODS[:info])
end