fog--fog/lib/fog/aws/parsers/simpledb/list_domains.rb

30 lines
602 B
Ruby
Raw Normal View History

require 'fog/aws/parsers/simpledb/basic'
module Fog
module Parsers
module AWS
module SimpleDB
class ListDomains < Fog::Parsers::AWS::SimpleDB::Basic
def reset
2009-07-31 06:13:48 +00:00
@response = { 'Domains' => [] }
end
def end_element(name)
case(name)
2009-07-31 06:13:48 +00:00
when 'BoxUsage'
response[name] = @value.to_f
when 'DomainName'
response['Domains'] << @value
when 'NextToken', 'RequestId'
response[name] = @value
end
end
end
end
end
end
end