class Fog::Parsers::AWS::SimpleDB::ListDomains
Public Instance Methods
end_element(name)
click to toggle source
# File lib/fog/aws/parsers/simpledb/list_domains.rb, line 12 def end_element(name) case(name) when 'BoxUsage' response[name] = value.to_f when 'DomainName' response['Domains'] << value when 'NextToken', 'RequestId' response[name] = value end end
reset()
click to toggle source
# File lib/fog/aws/parsers/simpledb/list_domains.rb, line 8 def reset @response = { 'Domains' => [] } end