mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
634 B
Ruby
30 lines
634 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 = connection.list_templates(:templatefilter => offering)
|
|
load(data)
|
|
end
|
|
|
|
def get(identifier, offering = 'executable')
|
|
data = connection.list_templates(:templatefilter => offering, :id => identifier)
|
|
if data.empty?
|
|
nil
|
|
else
|
|
new(data[0])
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|