mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
485 B
Ruby
24 lines
485 B
Ruby
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({
|
|
:expects => 204,
|
|
:headers => {},
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:method => 'DELETE'
|
|
})
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|