mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
module Fog
|
|
module AWS
|
|
module S3
|
|
class Real
|
|
|
|
# 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]
|
|
#
|
|
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',
|
|
:parser => Fog::Parsers::AWS::S3::GetBucketVersioning.new,
|
|
:query => 'versioning'
|
|
})
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def get_bucket_versioning(bucket_name)
|
|
raise Fog::Errors::MockNotImplemented.new("Contributions welcome!")
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|