Class: RightAws::RdsInterface::DescribeDBEngineVersionsParser

Inherits:
RightAws::RightAWSParser show all
Defined in:
lib/rds/right_rds_interface.rb

Overview


DB Events

Constant Summary

Constants inherited from RightAws::RightAWSParser

RightAws::RightAWSParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary

Attributes inherited from RightAws::RightAWSParser

#full_tag_name, #result, #tag, #xml_lib, #xmlpath

Instance Method Summary collapse

Methods inherited from RightAws::RightAWSParser

#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=

Constructor Details

This class inherits a constructor from RightAws::RightAWSParser

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser

Instance Method Details

#resetObject

:nodoc:



1301
1302
1303
# File 'lib/rds/right_rds_interface.rb', line 1301

def reset
  @result = { :db_engine_versions => [] }
end

#tagend(name) ⇒ Object



1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
# File 'lib/rds/right_rds_interface.rb', line 1309

def tagend(name)
  case name
  when 'Marker'                 then @result[:marker]                  = @text
  when 'MaxRecords'             then @result[:max_records]             = @text.to_i
  when 'DBParameterGroupFamily' then @item[:db_parameter_group_family] = @text
  when 'Engine'                 then @item[:engine]                    = @text
  when 'EngineVersion'          then @item[:engine_version]            = @text
  when 'DBEngineDescription'    then @item[:db_engine_description]     = @text
  when 'DBEngineVersionDescription' then @item[:db_engine_version_description] = @text
  when 'DBEngineVersion'        then @result[:db_engine_versions]     << @item
  end
end

#tagstart(name, attributes) ⇒ Object



1304
1305
1306
1307
1308
# File 'lib/rds/right_rds_interface.rb', line 1304

def tagstart(name, attributes)
  case name
  when 'DBEngineVersion' then @item = {}
  end
end