Class: Aws::Ec2::QEc2DescribeVolumesParser
- Defined in:
- lib/ec2/right_ec2.rb
Overview
:nodoc:
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
1731 1732 1733 |
# File 'lib/ec2/right_ec2.rb', line 1731 def reset @result = [] end |
#tagend(name) ⇒ Object
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 |
# File 'lib/ec2/right_ec2.rb', line 1707 def tagend(name) case name when 'volumeId' case @xmlpath when 'DescribeVolumesResponse/volumeSet/item' then @volume[:aws_id] = @text end when 'status' case @xmlpath when 'DescribeVolumesResponse/volumeSet/item' then @volume[:aws_status] = @text when 'DescribeVolumesResponse/volumeSet/item/attachmentSet/item' then @volume[:aws_attachment_status] = @text end when 'size' then @volume[:aws_size] = @text.to_i when 'createTime' then @volume[:aws_created_at] = Time.parse(@text) when 'instanceId' then @volume[:aws_instance_id] = @text when 'device' then @volume[:aws_device] = @text when 'attachTime' then @volume[:aws_attached_at] = Time.parse(@text) when 'snapshotId' then @volume[:snapshot_id] = @text.blank? ? nil : @text when 'availabilityZone' then @volume[:zone] = @text when 'item' case @xmlpath when 'DescribeVolumesResponse/volumeSet' then @result << @volume end end end |
#tagstart(name, attributes) ⇒ Object
1699 1700 1701 1702 1703 1704 1705 1706 |
# File 'lib/ec2/right_ec2.rb', line 1699 def (name, attributes) case name when 'item' case @xmlpath when 'DescribeVolumesResponse/volumeSet' then @volume = {} end end end |