Sha256: 898660dd503b43311e3539f2ecb93def3c1558da485c3ae87b206fd80c700368
Contents?: true
Size: 752 Bytes
Versions: 46
Compression:
Stored size: 752 Bytes
Contents
module Fog module Storage class AWS 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
Version data entries
46 entries across 46 versions & 15 rubygems