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/ibm/requests/compute/delete_image.rb
2012-03-20 23:37:46 -04:00

43 lines
1.1 KiB
Ruby

module Fog
module Compute
class IBM
class Real
# Deletes the image that the authenticated user manages with the specified :image_id
#
# ==== Parameters
# * image_id<~String> - Id of image
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# *'success'<~Bool>: true or false for success
def delete_image(image_id)
request(
:method => 'DELETE',
:expects => 200,
:path => "/offerings/image/#{image_id}"
)
end
end
class Mock
def delete_image(image_id)
response = Excon::Response.new
# TODO: We should probably check that an image is deleteable.
# i.e. that the user has appropriate permissions
if image_exists? image_id
self.data[:images].delete image_id
response.status = 200
response.body = {"success"=>true}
else
response.status = 404
end
response
end
end
end
end
end