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/rds/delete_db_snapshot.rb

48 lines
1.3 KiB
Ruby
Raw Normal View History

2011-02-27 16:09:12 -05:00
module Fog
module AWS
class RDS
class Real
require 'fog/aws/parsers/rds/delete_db_snapshot'
# delete a database snapshot
# http://docs.amazonwebservices.com/AmazonRDS/latest/APIReference/API_DeleteDBSnapshot.html
# ==== Parameters
# * DBSnapshotIdentifier <~String> - name of the snapshot
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
def delete_db_snapshot(name)
2011-02-27 16:09:12 -05:00
request({
'Action' => 'DeleteDBSnapshot',
'DBSnapshotIdentifier' => name,
2011-02-27 16:09:12 -05:00
:parser => Fog::Parsers::AWS::RDS::DeleteDBSnapshot.new
})
end
end
class Mock
def delete_db_snapshot(name)
# TODO: raise error if snapshot isn't 'available'
response = Excon::Response.new
snapshot_data = self.data[:snapshots].delete(name)
raise Fog::AWS::RDS::NotFound.new("DBSnapshtoNotFound => #{name} not found") unless snapshot_data
response.status = 200
response.body = {
"ResponseMetadata"=> { "RequestId"=> Fog::AWS::Mock.request_id },
"DeleteDBSnapshotResult"=> {"DBSnapshot"=> snapshot_data}
}
response
2011-02-27 16:09:12 -05:00
end
end
end
end
end