Class: RightAws::Ec2::QEc2DescribeSpotPriceHistoryParser
- Inherits:
-
RightAWSParser
- Object
- RightAWSParser
- RightAws::Ec2::QEc2DescribeSpotPriceHistoryParser
- Defined in:
- lib/ec2/right_ec2_spot_instances.rb
Overview
PARSERS: Spot Instances
Constant Summary
Constants inherited from RightAWSParser
RightAWSParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from RightAWSParser
#full_tag_name, #result, #tag, #xml_lib, #xmlpath
Instance Method Summary collapse
Methods inherited from RightAWSParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from RightAws::RightAWSParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser
Instance Method Details
#reset ⇒ Object
311 312 313 |
# File 'lib/ec2/right_ec2_spot_instances.rb', line 311 def reset @result = [] end |
#tagend(name) ⇒ Object
301 302 303 304 305 306 307 308 309 310 |
# File 'lib/ec2/right_ec2_spot_instances.rb', line 301 def tagend(name) case name when 'instanceType' then @item[:instance_type] = @text when 'productDescription' then @item[:product_description] = @text when 'spotPrice' then @item[:spot_price] = @text.to_f when 'timestamp' then @item[:timestamp] = @text when 'availabilityZone' then @item[:availability_zone] = @text when 'item' then @result << @item end end |
#tagstart(name, attributes) ⇒ Object
:nodoc:
298 299 300 |
# File 'lib/ec2/right_ec2_spot_instances.rb', line 298 def (name, attributes) @item = {} if name == 'item' end |