Class: RightAws::Ec2::QEc2DescribeSpotPriceHistoryParser

Inherits:
RightAWSParser
  • Object
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



322
323
324
# File 'lib/ec2/right_ec2_spot_instances.rb', line 322

def reset
  @result = []
end

#tagend(name) ⇒ Object



313
314
315
316
317
318
319
320
321
# File 'lib/ec2/right_ec2_spot_instances.rb', line 313

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:



310
311
312
# File 'lib/ec2/right_ec2_spot_instances.rb', line 310

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