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/aws/requests/ec2/delete_snapshot.rb
2009-08-20 19:26:14 -07:00

53 lines
1.2 KiB
Ruby

unless Fog.mocking?
module Fog
module AWS
class EC2
# Delete a snapshot of an EBS volume that you own
#
# ==== Parameters
# * snapshot_id<~String> - ID of snapshot to delete
# ==== Returns
# ==== Returns
# * response<~Fog::AWS::Response>:
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
def delete_snapshot(snapshot_id)
request({
'Action' => 'DeleteSnapshot',
'SnapshotId' => snapshot_id
}, Fog::Parsers::AWS::EC2::Basic.new)
end
end
end
end
else
module Fog
module AWS
class EC2
def delete_snapshot(snapshot_id)
response = Fog::Response.new
if snapshot = Fog::AWS::EC2.data[:snapshots].delete(snapshot_id)
response.status = true
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
else
response.status = 400
raise(Fog::Errors.status_error(200, 400, response))
end
response
end
end
end
end
end