Class: Aws::Ec2::QEc2DescribeImagesParser
- Defined in:
- lib/ec2/right_ec2.rb
Overview
PARSERS: Images
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
1375 1376 1377 |
# File 'lib/ec2/right_ec2.rb', line 1375 def reset @result = [] end |
#tagend(name) ⇒ Object
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 |
# File 'lib/ec2/right_ec2.rb', line 1360 def tagend(name) case name when 'imageId' then @image[:aws_id] = @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 'item' then @result << @image if @xmlpath[%r{.*/imagesSet$}] end end |
#tagstart(name, attributes) ⇒ Object
:nodoc:
1355 1356 1357 1358 1359 |
# File 'lib/ec2/right_ec2.rb', line 1355 def (name, attributes) if name == 'item' && @xmlpath[%r{.*/imagesSet$}] @image = {} end end |