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

51 lines
1 KiB
Ruby
Raw Normal View History

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 destroy
requires :identity
service.delete_image(:id => identity)
true
end
def get
requires :identity
img = service.get_image_details(:id => identity).body
new(img)
end
def update(options={})
requires :identity
img = service.update_image({:id => identity}.merge!(options)).body
new(img)
end
def restore(options={})
requires :identity
service.restore_image({:id => identity}.merge!(options))
true
end
def all(options={})
data = service.list_images(options).body['items']
load(data)
end
end
end
end
end