Class: Aws::Ec2::QEc2DescribeKeyPairParser

Inherits:
AwsParser
  • Object
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



1463
1464
1465
# File 'lib/ec2/ec2.rb', line 1463

def reset
  @result = [];
end

#tagend(name) ⇒ Object



1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
# File 'lib/ec2/ec2.rb', line 1452

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:



1448
1449
1450
# File 'lib/ec2/ec2.rb', line 1448

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