Class: OpenNebula::ClusterPool

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

Constant Summary collapse

NONE_CLUSTER_ID =

Constants and Class attribute accessors

-1
DEFAULT_CLUSTER_ID =
0
CLUSTER_POOL_METHODS =
{
    :info => "clusterpool.info"
}

Constants inherited from Pool

Pool::INFO_ALL, Pool::INFO_GROUP, Pool::INFO_MINE, Pool::INFO_PRIMARY_GROUP, 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, #retrieve_xmlelements, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml, #xml_nil?

Constructor Details

#initialize(client) ⇒ ClusterPool

client a Client object that represents a XML-RPC connection



38
39
40
# File 'lib/opennebula/cluster_pool.rb', line 38

def initialize(client)
    super('CLUSTER_POOL','CLUSTER',client)
end

Instance Method Details

#factory(element_xml) ⇒ Object

Factory method to create Cluster objects



43
44
45
# File 'lib/opennebula/cluster_pool.rb', line 43

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

#infoObject Also known as: info!

Retrieves all the Clusters in the pool.



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

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