Sha256: ca5c07fa06adc616af5b9aceba20d55db2ed10a44732472eb5c40ac127db7c23
Contents?: true
Size: 737 Bytes
Versions: 17
Compression:
Stored size: 737 Bytes
Contents
module Fog module Storage class AWS class Real # Change bucket policy for an S3 bucket # # ==== Parameters # * bucket_name<~String> - name of bucket to modify # * policy<~Hash> - policy document # # ==== See Also # 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
17 entries across 17 versions & 8 rubygems