Class: OpenNebula::DatastorePool

Inherits:
Pool show all
Defined in:
OpenNebula/DatastorePool.rb

Constant Summary

DATASTORE_POOL_METHODS =

Constants and Class attribute accessors

{
    :info => "datastorepool.info"
}

Constants inherited from Pool

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

Instance Method Summary (collapse)

Methods inherited from Pool

#each, #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

- (DatastorePool) initialize(client)

client a Client object that represents a XML-RPC connection



35
36
37
# File 'OpenNebula/DatastorePool.rb', line 35

def initialize(client)
    super('DATASTORE_POOL','DATASTORE',client)
end

Instance Method Details

- (Object) factory(element_xml)

Factory method to create User objects



40
41
42
# File 'OpenNebula/DatastorePool.rb', line 40

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

- (Object) info

Retrieves all the Groups in the pool.



49
50
51
# File 'OpenNebula/DatastorePool.rb', line 49

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