module Fog module AWS module S3 class Real # Change versioning status for an S3 bucket # # ==== Parameters # * bucket_name<~String> - name of bucket to modify # * status<~String> - Status to change to in ['Enabled', 'Suspended'] def put_bucket_versioning(bucket_name, status) data = <<-DATA #{status} DATA request({ :body => data, :expects => 200, :headers => {}, :host => "#{bucket_name}.#{@host}", :method => 'PUT', :query => 'versioning' }) end end class Mock def put_bucket_versioning(bucket_name, status) raise MockNotImplemented.new("Contributions welcome!") end end end end end