Class: Aws::Ec2::QEc2DescribeKeyPairParser
- Defined in:
- lib/ec2/right_ec2.rb
Overview
PARSERS: Key Pair
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, #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
1261 1262 1263 |
# File 'lib/ec2/right_ec2.rb', line 1261 def reset @result = []; end |
#tagend(name) ⇒ Object
1254 1255 1256 1257 1258 1259 1260 |
# File 'lib/ec2/right_ec2.rb', line 1254 def tagend(name) case name when 'keyName' then @item[:aws_key_name] = @text when 'keyFingerprint' then @item[:aws_fingerprint] = @text when 'item' then @result << @item end end |
#tagstart(name, attributes) ⇒ Object
:nodoc:
1251 1252 1253 |
# File 'lib/ec2/right_ec2.rb', line 1251 def (name, attributes) @item = {} if name == 'item' end |