mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
26 lines
No EOL
600 B
Ruby
26 lines
No EOL
600 B
Ruby
module Fog
|
|
module Parsers
|
|
module AWS
|
|
module SimpleDB
|
|
|
|
class ListDomains < Fog::Parsers::AWS::SimpleDB::Basic
|
|
|
|
def reset
|
|
@response = { :domains => [] }
|
|
end
|
|
|
|
def end_element(name)
|
|
case(name)
|
|
when 'BoxUsage' then response[:box_usage] = @value.to_f
|
|
when 'DomainName' then response[:domains] << @value
|
|
when 'NextToken' then response[:next_token] = @value
|
|
when 'RequestId' then response[:request_id] = @value
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |