Sha256: 9d36bbaf5ae72e3a26f7c7acf7760146ebbdf179d0b1469b8af092336dbb6e59

Contents?: true

Size: 737 Bytes

Versions: 29

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     => MultiJson.encode(policy),
            :expects  => 204,
            :headers  => {},
            :host     => "#{bucket_name}.#{@host}",
            :method   => 'PUT',
            :query    => {'policy' => nil}
          })
        end

      end
    end
  end
end

Version data entries

29 entries across 29 versions & 7 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
michiels-fog-1.3.1 lib/fog/aws/requests/storage/put_bucket_policy.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
fog-1.3.1 lib/fog/aws/requests/storage/put_bucket_policy.rb
fog-1.3.0 lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
fog-1.2.0 lib/fog/aws/requests/storage/put_bucket_policy.rb
ktheory-fog-1.1.2 lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
fog-1.1.2 lib/fog/aws/requests/storage/put_bucket_policy.rb
fog_tractical-1.1.4 lib/fog/aws/requests/storage/put_bucket_policy.rb
fog_tractical-1.1.3 lib/fog/aws/requests/storage/put_bucket_policy.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/storage/put_bucket_policy.rb
fog-1.1.1 lib/fog/aws/requests/storage/put_bucket_policy.rb
fog-1.1.0 lib/fog/aws/requests/storage/put_bucket_policy.rb