Sha256: 674447bc2f6c9a43c5ffd10442df6fa94be55d778f79e756d94533eb259a91bd
Contents?: true
Size: 682 Bytes
Versions: 19
Compression:
Stored size: 682 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 => {}, :bucket_name => bucket_name, :method => 'PUT', :query => {'policy' => nil} }) end end end end end
Version data entries
19 entries across 19 versions & 5 rubygems