mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
357 B
Ruby
21 lines
357 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/compute/models/storm_on_demand/image'
|
|
|
|
module Fog
|
|
module StormOnDemand
|
|
class Compute
|
|
|
|
class Images < Fog::Collection
|
|
|
|
model Fog::StormOnDemand::Compute::Image
|
|
|
|
def all
|
|
data = connection.list_images.body['images']
|
|
load(data)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|