Class: OpenNebula::VirtualNetworkPool

Inherits:
Pool show all
Defined in:
lib/OpenNebula/VirtualNetworkPool.rb

Constant Summary collapse

VN_POOL_METHODS =

Constants and Class attribute accessors

{
    :info => "vnpool.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

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

Constructor Details

#initialize(client, user_id = 0) ⇒ VirtualNetworkPool

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



35
36
37
38
39
# File 'lib/OpenNebula/VirtualNetworkPool.rb', line 35

def initialize(client, user_id=0)
    super('VNET_POOL','VNET',client)

    @user_id  = user_id
end

Instance Method Details

#factory(element_xml) ⇒ Object

Default Factory Method for the Pools



42
43
44
# File 'lib/OpenNebula/VirtualNetworkPool.rb', line 42

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

#info(*args) ⇒ Object

Retrieves all or part of the VirtualMachines in the pool.



51
52
53
54
55
56
57
58
# File 'lib/OpenNebula/VirtualNetworkPool.rb', line 51

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

#info_allObject



60
61
62
# File 'lib/OpenNebula/VirtualNetworkPool.rb', line 60

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

#info_groupObject



68
69
70
# File 'lib/OpenNebula/VirtualNetworkPool.rb', line 68

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

#info_mineObject



64
65
66
# File 'lib/OpenNebula/VirtualNetworkPool.rb', line 64

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