Class: Aws::Ec2::QEc2DescribeImagesParser

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

Overview


PARSERS: Images

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



1735
1736
1737
# File 'lib/ec2/ec2.rb', line 1735

def reset
  @result = []
end

#tagend(name) ⇒ Object



1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
# File 'lib/ec2/ec2.rb', line 1698

def tagend(name)
  case name
    when 'imageId' then
      @image[:aws_id] = @text
    when 'name' then
      @image[:aws_name] = @text
    when 'description' then
      @image[:aws_description] = @text
    when 'imageLocation' then
      @image[:aws_location] = @text
    when 'imageState' then
      @image[:aws_state] = @text
    when 'imageOwnerId' then
      @image[:aws_owner] = @text
    when 'isPublic' then
      @image[:aws_is_public]= @text == 'true' ? true : false
    when 'productCode' then
      (@image[:aws_product_codes] ||= []) << @text
    when 'architecture' then
      @image[:aws_architecture] = @text
    when 'imageType' then
      @image[:aws_image_type] = @text
    when 'kernelId' then
      @image[:aws_kernel_id] = @text
    when 'ramdiskId' then
      @image[:aws_ramdisk_id] = @text
    when 'rootDeviceType' then
      @image[:aws_root_device_type] = @text
    when 'rootDeviceName' then
      @image[:aws_root_device_name] = @text
    when 'hypervisor' then
      @image[:aws_hypervisor] = @text
    when 'item' then
      @result << @image if @xmlpath[%r{.*/imagesSet$}]
  end
end

#tagstart(name, attributes) ⇒ Object

:nodoc:



1692
1693
1694
1695
1696
# File 'lib/ec2/ec2.rb', line 1692

def tagstart(name, attributes)
  if name == 'item' && @xmlpath[%r{.*/imagesSet$}]
    @image = {}
  end
end