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/s3/get_service.rb
2009-07-13 19:14:59 -07:00

21 lines
396 B
Ruby

module Fog
module AWS
class S3
# List information about S3 buckets for authorized user
#
# ==== Parameters
# FIXME: docs
def get_service
request({
:headers => {},
:host => @host,
:method => 'GET',
:parser => Fog::Parsers::AWS::S3::GetService.new,
:url => @host
})
end
end
end
end