Class: Aws::Ec2::QEc2DescribeKeyPairParser

Inherits:
AwsParser show all
Defined in:
lib/ec2/ec2.rb

Overview


PARSERS: Key Pair

Constant Summary

Constants inherited from AwsParser

AwsParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary

Attributes inherited from AwsParser

#result, #xml_lib, #xmlpath

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

#resetObject



1369
1370
1371
# File 'lib/ec2/ec2.rb', line 1369

def reset
  @result = [];
end

#tagend(name) ⇒ Object



1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
# File 'lib/ec2/ec2.rb', line 1358

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:



1354
1355
1356
# File 'lib/ec2/ec2.rb', line 1354

def tagstart(name, attributes)
  @item = {} if name == 'item'
end