Class: Aws::SdbInterface::QSdbDomainMetadataParser
- Defined in:
- lib/sdb/sdb_interface.rb
Overview
:nodoc:
Constant Summary
Constants inherited from AwsParser
AwsParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from AwsParser
Instance Method Summary collapse
Methods inherited from AwsParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagstart, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from Aws::AwsParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Aws::AwsParser
Instance Method Details
#reset ⇒ Object
752 753 754 |
# File 'lib/sdb/sdb_interface.rb', line 752 def reset @result = {} end |
#tagend(name) ⇒ Object
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 |
# File 'lib/sdb/sdb_interface.rb', line 756 def tagend(name) case name when 'Timestamp' then @result[:timestamp] = @text when 'ItemCount' then @result[:item_count] = @text.to_i when 'AttributeValueCount' then @result[:attribute_value_count] = @text.to_i when 'AttributeNameCount' then @result[:attribute_name_acount] = @text.to_i when 'ItemNamesSizeBytes' then @result[:item_names_size_bytes] = @text.to_i when 'AttributeValuesSizeBytes' then @result[:attributes_values_size_bytes] = @text.to_i when 'AttributeNamesSizeBytes' then @result[:attributes_names_size_bytes] = @text.to_i end end |