mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
685 B
Ruby
27 lines
685 B
Ruby
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
# Get configured payer for an S3 bucket
|
|
#
|
|
# ==== Parameters
|
|
# * bucket_name<~String> - name of bucket to get payer for
|
|
#
|
|
# ==== Returns
|
|
# * response<~Fog::AWS::Response>:
|
|
# * body<~Hash>:
|
|
# * :payer<~String> - Specifies who pays for download and requests
|
|
def get_request_payment(bucket_name)
|
|
request({
|
|
:expects => 200,
|
|
:headers => {},
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::AWS::S3::GetRequestPayment.new,
|
|
:query => 'requestPayment'
|
|
})
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|