2010-05-10 23:28:27 -04:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class AWS
|
2010-05-10 23:28:27 -04:00
|
|
|
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']
|
2010-10-29 21:05:59 -04:00
|
|
|
#
|
|
|
|
# ==== See Also
|
|
|
|
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html
|
|
|
|
|
2010-05-10 23:28:27 -04:00
|
|
|
def put_bucket_versioning(bucket_name, status)
|
|
|
|
data =
|
|
|
|
<<-DATA
|
|
|
|
<VersioningConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
|
|
|
|
<Status>#{status}</Status>
|
|
|
|
</VersioningConfiguration>
|
|
|
|
DATA
|
|
|
|
|
|
|
|
request({
|
|
|
|
:body => data,
|
|
|
|
:expects => 200,
|
|
|
|
:headers => {},
|
|
|
|
:host => "#{bucket_name}.#{@host}",
|
|
|
|
:method => 'PUT',
|
2010-06-05 17:19:39 -04:00
|
|
|
:query => {'versioning' => nil}
|
2010-05-10 23:28:27 -04:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|