mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
402 B
Ruby
23 lines
402 B
Ruby
|
module Fog
|
||
|
module AWS
|
||
|
class S3
|
||
|
|
||
|
# Delete an S3 bucket
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * bucket_name<~String> - name of bucket to delete
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# FIXME: docs
|
||
|
def delete_bucket(bucket_name)
|
||
|
request({
|
||
|
:headers => {},
|
||
|
:host => "#{bucket_name}.#{@host}",
|
||
|
:method => 'DELETE'
|
||
|
})
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|