2011-02-22 13:13:00 -05:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2011-02-22 13:13:00 -05:00
|
|
|
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({
|
2012-04-25 10:31:28 -04:00
|
|
|
:body => Fog::JSON.encode(policy),
|
2011-02-22 13:13:00 -05:00
|
|
|
:expects => 204,
|
|
|
|
:headers => {},
|
|
|
|
:host => "#{bucket_name}.#{@host}",
|
|
|
|
:method => 'PUT',
|
|
|
|
:query => {'policy' => nil}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|