Class: RightAws::Ec2::QEc2DescribeReservedInstancesOfferingsParser
- Inherits:
-
RightAWSParser
- Object
- RightAWSParser
- RightAws::Ec2::QEc2DescribeReservedInstancesOfferingsParser
- Defined in:
- lib/ec2/right_ec2.rb
Overview
:nodoc:
Constant Summary
Constants inherited from RightAWSParser
RightAWSParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from RightAWSParser
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
1581 1582 1583 |
# File 'lib/ec2/right_ec2.rb', line 1581 def reset @result = [] end |
#tagend(name) ⇒ Object
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 |
# File 'lib/ec2/right_ec2.rb', line 1569 def tagend(name) case name when 'reservedInstancesOfferingId' then @item[:aws_id] = @text when 'instanceType' then @item[:aws_instance_type] = @text when 'availabilityZone' then @item[:aws_availability_zone] = @text when 'duration' then @item[:aws_duration] = @text.to_i when 'usagePrice' then @item[:aws_usage_price] = @text.to_f when 'fixedPrice' then @item[:aws_fixed_price] = @text.to_f when 'productDescription' then @item[:aws_product_description] = @text when 'item' then @result << @item end end |
#tagstart(name, attributes) ⇒ Object
1566 1567 1568 |
# File 'lib/ec2/right_ec2.rb', line 1566 def (name, attributes) @item = {} if name == 'item' end |