1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/ninefold/models/compute/images.rb
2013-01-07 21:01:17 +00:00

30 lines
628 B
Ruby

require 'fog/core/collection'
require 'fog/ninefold/models/compute/image'
module Fog
module Compute
class Ninefold
class Images < Fog::Collection
model Fog::Compute::Ninefold::Image
def all(offering = 'executable')
data = service.list_templates(:templatefilter => offering)
load(data)
end
def get(identifier, offering = 'executable')
data = service.list_templates(:templatefilter => offering, :id => identifier)
if data.empty?
nil
else
new(data[0])
end
end
end
end
end
end