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/storage/parsers/aws/get_bucket_location.rb

21 lines
322 B
Ruby
Raw Normal View History

module Fog
module Parsers
module AWS
2010-09-08 14:40:02 -07:00
module Storage
class GetBucketLocation < Fog::Parsers::Base
def end_element(name)
case name
when 'LocationConstraint'
2009-07-29 19:50:51 -07:00
@response[name] = @value
end
end
end
end
end
end
end