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/storm_on_demand/models/compute/images.rb

31 lines
595 B
Ruby

require 'fog/core/collection'
require 'fog/storm_on_demand/models/compute/image'
module Fog
module Compute
class StormOnDemand
class Images < Fog::Collection
model Fog::Compute::StormOnDemand::Image
def create(options={})
service.create_image(options)
true
end
def get(image_id)
img = service.get_image_details(:id => image_id).body
new(img)
end
def all(options={})
data = service.list_images(options).body['items']
load(data)
end
end
end
end
end