2012-08-02 19:12:54 -04:00
|
|
|
module Fog
|
2013-01-14 17:51:41 -05:00
|
|
|
module HP
|
|
|
|
class BlockStorage
|
2012-08-02 19:12:54 -04:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Delete an existing block storage snapshot
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * snapshot_id<~Integer> - Id of the snapshot to delete
|
|
|
|
#
|
|
|
|
def delete_snapshot(snapshot_id)
|
|
|
|
response = request(
|
|
|
|
:expects => 202,
|
|
|
|
:method => 'DELETE',
|
|
|
|
:path => "os-snapshots/#{snapshot_id}"
|
|
|
|
)
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock # :nodoc:all
|
|
|
|
|
|
|
|
def delete_snapshot(snapshot_id)
|
|
|
|
response = Excon::Response.new
|
|
|
|
if self.data[:snapshots][snapshot_id]
|
|
|
|
self.data[:snapshots].delete(snapshot_id)
|
|
|
|
response.status = 202
|
|
|
|
else
|
2013-01-14 17:51:41 -05:00
|
|
|
raise Fog::HP::BlockStorage::NotFound
|
2012-08-02 19:12:54 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|