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
Weston Platter 47df9f1b69 [docs::aws::storage] standardized return format
for key with values,
    # @return variable [data_type]:
  for values,
    # * variable [data_type] - description of value
2013-01-02 19:42:54 -06:00

29 lines
694 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 => {},
:host => "#{bucket_name}.#{@host}",
:method => 'DELETE',
:query => {'policy' => nil}
})
end
end
end
end
end