2010-03-14 20:11:43 -07:00
|
|
|
require 'fog/aws/parsers/simpledb/basic'
|
|
|
|
|
2009-07-11 13:41:21 -07:00
|
|
|
module Fog
|
|
|
|
module Parsers
|
|
|
|
module AWS
|
|
|
|
module SimpleDB
|
|
|
|
|
|
|
|
class DomainMetadata < Fog::Parsers::AWS::SimpleDB::Basic
|
|
|
|
|
|
|
|
def reset
|
|
|
|
@response = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def end_element(name)
|
|
|
|
case name
|
2009-07-30 23:13:48 -07:00
|
|
|
when 'AttributeNameCount', 'AttributeNamesSizeBytes', 'AttributeValueCount', 'AttributeValuesSizeBytes', 'ItemCount', 'ItemNamesSizeBytes'
|
|
|
|
response[name] = @value.to_i
|
|
|
|
when 'BoxUsage'
|
|
|
|
response[name] = @value.to_f
|
|
|
|
when 'RequestId'
|
|
|
|
response[name] = @value
|
|
|
|
when 'Timestamp'
|
|
|
|
response[name] = Time.at(@value.to_i)
|
2009-07-11 13:41:21 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|