Sha256: 4782e932ab577530a8974b4152bd82b1637d76a8066937ea1fef6a5b49782ae1
Contents?: true
Size: 702 Bytes
Versions: 37
Compression:
Stored size: 702 Bytes
Contents
module Fog module Storage class InternetArchive 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
Version data entries
37 entries across 35 versions & 6 rubygems