Class: RightAws::RdsInterface::DescribeOrderableDBInstanceOptionsParser

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

Overview

:nodoc:

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



1114
1115
1116
# File 'lib/rds/right_rds_interface.rb', line 1114

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

#tagend(name) ⇒ Object



1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
# File 'lib/rds/right_rds_interface.rb', line 1122

def tagend(name)
  case name
  when 'Marker'                     then @result[:marker]             = @text
  when 'MaxRecords'                 then @result[:max_records]        = @text.to_i
  when 'DBInstanceClass'            then @item[:instance_class]       = @text
  when 'Engine'                     then @item[:engine]               = @text
  when 'EngineVersion'              then @item[:engine_version]       = @text
  when 'LicenseModel'               then @item[:license_model]        = @text
  when 'MultiAZCapable'             then @item[:multi_az_capable]     = @text
  when 'ReadReplicaCapable'         then @item[:read_replica_capable] = @text == 'true'
  when 'Name'                       then @item[:availability_zones]  << @text
  when 'OrderableDBInstanceOption'  then @result[:items]             << @item
  end
end

#tagstart(name, attributes) ⇒ Object



1117
1118
1119
1120
1121
# File 'lib/rds/right_rds_interface.rb', line 1117

def tagstart(name, attributes)
  case name
  when 'OrderableDBInstanceOption' then @item = { :availability_zones => [] }
  end
end