Class: RightAws::Ec2::QEc2DescribeVpnGatewaysParser
- Inherits:
-
RightAWSParser
- Object
- RightAWSParser
- RightAws::Ec2::QEc2DescribeVpnGatewaysParser
- Defined in:
- lib/ec2/right_ec2_vpc.rb
Overview
:nodoc:
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
541 542 543 |
# File 'lib/ec2/right_ec2_vpc.rb', line 541 def reset @result = [] end |
#tagend(name) ⇒ Object
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 |
# File 'lib/ec2/right_ec2_vpc.rb', line 523 def tagend(name) case name when 'vpnGatewayId' then @item[:vpn_gateway_id] = @text when 'availabilityZone' then @item[:availability_zone] = @text when 'type' then @item[:type] = @text when 'vpcId' then @attachment[:vpc_id] = @text else case full_tag_name when %r{/vpnGatewaySet/item/state$} then @item[:state] = @text when %r{/attachments/item/state$} then @attachment[:state] = @text when %r{/attachments/item$} then @item[:attachments] << @attachment unless @attachment.right_blank? when %r{/tagSet/item/key$} then @aws_tag[:key] = @text when %r{/tagSet/item/value$} then @aws_tag[:value] = @text when %r{/tagSet/item$} then @item[:tags][@aws_tag[:key]] = @aws_tag[:value] when %r{/(vpnGatewaySet/item|vpnGateway)$} then @result << @item end end end |
#tagstart(name, attributes) ⇒ Object
516 517 518 519 520 521 522 |
# File 'lib/ec2/right_ec2_vpc.rb', line 516 def (name, attributes) case full_tag_name when %r{/(vpnGatewaySet/item|vpnGateway)$} then @item = { :tags => {}, :attachments => [] } when %r{/attachments/item$} then @attachment = {} when %r{/tagSet/item$} then @aws_tag = {} end end |