Sha256: a8e425dfddfdb16042d3b973ae8312250d2985dac1bdae07d504c353499c2fb1
Contents?: true
Size: 739 Bytes
Versions: 61
Compression:
Stored size: 739 Bytes
Contents
module Fog module Storage class InternetArchive class Real # Deletes the cors configuration information set for the bucket. # # @param bucket_name [String] name of bucket to delete cors rules from # # @return [Excon::Response] response: # * status [Integer] - 204 # # @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEcors.html def delete_bucket_cors(bucket_name) request({ :expects => 204, :headers => {}, :host => "#{bucket_name}.#{@host}", :method => 'DELETE', :query => {'cors' => nil} }) end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems