Class: OpenNebula::VdcPool

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

Constant Summary collapse

VDC_POOL_METHODS =

Constants and Class attribute accessors

{
    :info => "vdcpool.info"
}

Constants inherited from Pool

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

Instance Attribute Summary

Attributes inherited from Pool

#element_name, #pool_name

Instance Method Summary collapse

Methods inherited from Pool

#each, #each_page, #each_page_delete, #each_with_xpath, #get_hash, #get_page, #info_paginated, #is_paginated?, #loop_page, #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, #set_content, #template_like_str, #template_str, #template_xml, #text, #to_hash, #to_xml, #xml_nil?

Constructor Details

#initialize(client) ⇒ VdcPool

Returns a new instance of VdcPool.

Parameters:



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

def initialize(client)
    super('VDC_POOL','VDC',client)
end

Instance Method Details

#factory(element_xml) ⇒ Vdc

Factory method to create Vdc objects

Returns:

  • (Vdc)

    new Vdc object



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

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

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

Retrieves all the VDCs in the pool.

Returns:



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

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

#info_allObject Also known as: info_all!



56
57
58
# File 'lib/opennebula/vdc_pool.rb', line 56

def info_all()
    return super(VDC_POOL_METHODS[:info])
end

#info_groupObject Also known as: info_group!



64
65
66
# File 'lib/opennebula/vdc_pool.rb', line 64

def info_group()
    return super(VDC_POOL_METHODS[:info])
end

#info_mineObject Also known as: info_mine!



60
61
62
# File 'lib/opennebula/vdc_pool.rb', line 60

def info_mine()
    return super(VDC_POOL_METHODS[:info])
end