Method: OpenNebula::ImagePool#info
- Defined in:
- lib/opennebula/image_pool.rb
#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 |