Sha256: 0c82850adff7315211c9d6e300991800e07f5d8caf70b25a848e06492ae80c59
Contents?: true
Size: 726 Bytes
Versions: 10
Compression:
Stored size: 726 Bytes
Contents
module Fog module Storage class AWS class Real # Delete website configuration for a bucket # # @param bucket_name [String] name of bucket to delete website configuration from # # @return [Excon::Response] response: # * status [Integer] - 204 # # @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEwebsite.html def delete_bucket_website(bucket_name) request({ :expects => 204, :headers => {}, :host => "#{bucket_name}.#{@host}", :method => 'DELETE', :query => {'website' => nil} }) end end end end end
Version data entries
10 entries across 10 versions & 5 rubygems