Sha256: 39f538d164721ece5a2e04e701c4faeef695c3fa54b152529205bc6f9aa41868
Contents?: true
Size: 696 Bytes
Versions: 6
Compression:
Stored size: 696 Bytes
Contents
module Fog module Storage class AWS class Real # Change bucket policy for an S3 bucket # # @param bucket_name [String] name of bucket to modify # @param policy [Hash] policy document # # @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTpolicy.html def put_bucket_policy(bucket_name, policy) request({ :body => Fog::JSON.encode(policy), :expects => 204, :headers => {}, :host => "#{bucket_name}.#{@host}", :method => 'PUT', :query => {'policy' => nil} }) end end end end end
Version data entries
6 entries across 6 versions & 4 rubygems