Fog::Collection
# File lib/fog/vcloud_director/compute.rb, line 301 def all(lazy_load=true) lazy_load ? index : get_everyone end
# File lib/fog/vcloud_director/compute.rb, line 305 def get(item_id) item = get_by_id(item_id) return nil unless item new(item) end
# File lib/fog/vcloud_director/compute.rb, line 311 def get_by_name(item_name) item_found = item_list.find {|item| item[:name] == item_name} return nil unless item_found get(item_found[:id]) end
Generated with the Darkfish Rdoc Generator 2.