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/storage/requests/aws/delete_bucket_policy.rb

33 lines
752 B
Ruby
Raw Normal View History

2011-02-23 16:57:51 -05:00
module Fog
module AWS
class Storage
class Real
# Delete policy for a bucket
#
# ==== Parameters
# * bucket_name<~String> - name of bucket to delete policy from
#
# ==== Returns
# * response<~Excon::Response>:
# * status<~Integer> - 204
#
# ==== See Also
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEpolicy.html
def delete_bucket_policy(bucket_name)
request({
:expects => 204,
:headers => {},
:host => "#{bucket_name}.#{@host}",
:method => 'DELETE',
:query => {'policy' => nil}
})
end
end
end
end
end