Class: RightAws::Ec2::QEc2DescribeSpotPriceHistoryParser

Inherits:
RightAWSParser show all
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

#resetObject



300
301
302
# File 'lib/ec2/right_ec2_spot_instances.rb', line 300

def reset
  @result = []
end

#tagend(name) ⇒ Object



291
292
293
294
295
296
297
298
299
# File 'lib/ec2/right_ec2_spot_instances.rb', line 291

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 'item'               then @result                    << @item
  end
end

#tagstart(name, attributes) ⇒ Object

:nodoc:



288
289
290
# File 'lib/ec2/right_ec2_spot_instances.rb', line 288

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