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/s3/delete_bucket.rb

50 lines
970 B
Ruby
Raw Normal View History

unless Fog.mocking?
module Fog
module AWS
class S3
# Delete an S3 bucket
#
# ==== Parameters
# * bucket_name<~String> - name of bucket to delete
#
# ==== Returns
# * response<~Fog::AWS::Response>:
# * status<~Integer> - 204
def delete_bucket(bucket_name)
request({
2009-08-16 14:44:50 -04:00
:expects => 204,
:headers => {},
:host => "#{bucket_name}.#{@host}",
:method => 'DELETE'
})
end
end
end
end
else
module Fog
module AWS
class S3
def delete_bucket(bucket_name)
response = Fog::Response.new
if Fog::AWS::S3.data[:buckets].delete(bucket_name)
response.status = 204
else
response.status = 404
raise(Fog::Errors.status_error(204, 404, response))
end
response
end
end
end
end
end