Class: OpenNebula::ImagePool

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

Constant Summary collapse

IMAGE_POOL_METHODS =

Constants and Class attribute accessors

{
    :info => "imagepool.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, user_id = -1)) ⇒ ImagePool

client a Client object that represents a XML-RPC connection user_id is to refer to a Pool with Images from that user



36
37
38
39
40
# File 'lib/opennebula/image_pool.rb', line 36

def initialize(client, user_id=-1)
    super('IMAGE_POOL','IMAGE',client)

    @user_id  = user_id
end

Instance Method Details

#factory(element_xml) ⇒ Object

Default Factory Method for the Pools



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

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

#info(*args) ⇒ Object Also known as: info!

Retrieves all or part of the Images in the pool.



52
53
54
55
56
57
58
59
# File 'lib/opennebula/image_pool.rb', line 52

def info(*args)
    case args.size
        when 0
            info_filter(IMAGE_POOL_METHODS[:info],@user_id,-1,-1)
        when 3
            info_filter(IMAGE_POOL_METHODS[:info],args[0],args[1],args[2])
    end
end

#info_allObject Also known as: info_all!



61
62
63
# File 'lib/opennebula/image_pool.rb', line 61

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

#info_groupObject Also known as: info_group!



69
70
71
# File 'lib/opennebula/image_pool.rb', line 69

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

#info_mineObject Also known as: info_mine!



65
66
67
# File 'lib/opennebula/image_pool.rb', line 65

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