mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
396 B
Ruby
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
|