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/storage/delete_bucket_policy.rb
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

26 lines
679 B
Ruby

module Fog
module Storage
class AWS
class Real
# Delete policy for a bucket
#
# @param bucket_name [String] name of bucket to delete policy from
#
# @return [Excon::Response] response:
# * status [Integer] - 204
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEpolicy.html
def delete_bucket_policy(bucket_name)
request({
:expects => 204,
:headers => {},
:bucket_name => bucket_name,
:method => 'DELETE',
:query => {'policy' => nil}
})
end
end
end
end
end