2009-07-11 16:41:21 -04:00
|
|
|
module Fog
|
|
|
|
module Parsers
|
|
|
|
module AWS
|
|
|
|
module SimpleDB
|
|
|
|
|
|
|
|
class GetAttributes < Fog::Parsers::AWS::SimpleDB::Basic
|
|
|
|
|
|
|
|
def reset
|
|
|
|
@attribute = nil
|
2009-07-31 02:13:48 -04:00
|
|
|
@response = { 'Attributes' => {} }
|
2009-07-11 16:41:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def end_element(name)
|
|
|
|
case name
|
2009-07-31 02:13:48 -04:00
|
|
|
when 'Attribute'
|
|
|
|
@attribute = nil
|
|
|
|
when 'BoxUsage'
|
|
|
|
response[name] = @value.to_f
|
|
|
|
when 'Name'
|
|
|
|
@attribute = @value
|
|
|
|
response['Attributes'][@attribute] = []
|
|
|
|
when 'RequestId'
|
|
|
|
response[name] = @value
|
|
|
|
when 'Value'
|
|
|
|
response['Attributes'][@attribute] << sdb_decode(@value)
|
2009-07-11 16:41:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|