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/compute/delete_snapshot.rb

51 lines
1.4 KiB
Ruby
Raw Normal View History

2010-03-16 18:46:21 -04:00
module Fog
module Compute
class AWS
2010-03-16 18:46:21 -04:00
class Real
2009-08-20 22:26:14 -04:00
require 'fog/aws/parsers/compute/basic'
2009-08-20 22:26:14 -04:00
# Delete a snapshot of an EBS volume that you own
#
# ==== Parameters
# * snapshot_id<~String> - ID of snapshot to delete
2010-04-23 14:39:32 -04:00
#
2009-08-20 22:26:14 -04:00
# ==== Returns
# * response<~Excon::Response>:
2009-08-20 22:26:14 -04:00
# * body<~Hash>:
# * 'requestId'<~String> - Id of request
# * 'return'<~Boolean> - success?
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteSnapshot.html]
2009-08-20 22:26:14 -04:00
def delete_snapshot(snapshot_id)
request(
'Action' => 'DeleteSnapshot',
'SnapshotId' => snapshot_id,
:idempotent => true,
:parser => Fog::Parsers::Compute::AWS::Basic.new
)
2009-08-20 22:26:14 -04:00
end
end
2010-03-16 18:46:21 -04:00
class Mock
2009-08-20 22:26:14 -04:00
def delete_snapshot(snapshot_id)
2009-11-20 14:08:08 -05:00
response = Excon::Response.new
2011-05-19 18:35:33 -04:00
if snapshot = self.data[:snapshots].delete(snapshot_id)
2009-08-20 22:26:14 -04:00
response.status = true
response.body = {
'requestId' => Fog::AWS::Mock.request_id,
'return' => true
}
response
2009-08-20 22:26:14 -04:00
else
raise Fog::Compute::AWS::NotFound.new("The snapshot '#{snapshot_id}' does not exist.")
2009-08-20 22:26:14 -04:00
end
end
end
end
end
end