1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/storage/get_bucket_versioning.rb

49 lines
1.3 KiB
Ruby
Raw Normal View History

2010-05-10 23:28:27 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Storage
2010-05-10 23:28:27 -04:00
class Real
2010-09-08 17:40:02 -04:00
require 'fog/aws/parsers/storage/get_bucket_versioning'
2010-06-12 18:31:17 -04:00
2010-05-10 23:28:27 -04:00
# Get versioning status for an S3 bucket
#
# ==== Parameters
# * bucket_name<~String> - name of bucket to get versioning status for
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'VersioningConfiguration'<~Hash>
# * Status<~String>: Versioning status in ['Enabled', 'Suspended', nil]
#
# ==== See Also
# http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETversioningStatus.html
2010-05-10 23:28:27 -04:00
def get_bucket_versioning(bucket_name)
unless bucket_name
raise ArgumentError.new('bucket_name is required')
end
request({
:expects => 200,
:headers => {},
:host => "#{bucket_name}.#{@host}",
:idempotent => true,
:method => 'GET',
2010-09-08 17:40:02 -04:00
:parser => Fog::Parsers::AWS::Storage::GetBucketVersioning.new,
:query => {'versioning' => nil}
2010-05-10 23:28:27 -04:00
})
end
end
class Mock # :nodoc:all
2010-05-10 23:28:27 -04:00
def get_bucket_versioning(bucket_name)
Fog::Mock.not_implemented
2010-05-10 23:28:27 -04:00
end
end
end
end
end