Sha256: 3663b5dd51d01065b2d260f6d621cc972b6bc4444caf8de40c4f8b082573fb75
Contents?: true
Size: 785 Bytes
Versions: 46
Compression:
Stored size: 785 Bytes
Contents
module Fog module Storage class AWS class Real # Delete website configuration for a bucket # # ==== Parameters # * bucket_name<~String> - name of bucket to delete website configuration from # # ==== Returns # * response<~Excon::Response>: # * status<~Integer> - 204 # # ==== See Also # 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
46 entries across 46 versions & 15 rubygems