Class: RightAws::Ec2::QEc2DescribeVpnGatewaysParser

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

#resetObject



528
529
530
531
532
# File 'lib/ec2/right_ec2_vpc.rb', line 528

def reset
  @p1 = 'DescribeVpnGatewaysResponse/vpnGatewaySet/item'
  @p2 = 'CreateVpnGatewayResponse/vpnGateway'
  @result = []
end

#tagend(name) ⇒ Object



507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
# File 'lib/ec2/right_ec2_vpc.rb', line 507

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
  end
  case full_tag_name
  when "#{@p1}/state",
       "#{@p2}/state"
    @item[:state] = @text
  when "#{@p1}/attachments/item/state",
       "#{@p2}/attachments/item/state"
    @attachment[:state] = @text
  when "#{@p1}/attachments/item",
       "#{@p2}/attachments/item"
    @item[:attachments] << @attachment unless @attachment.blank?
  when @p1, @p2
    @result << @item
  end
end

#tagstart(name, attributes) ⇒ Object



498
499
500
501
502
503
504
505
506
# File 'lib/ec2/right_ec2_vpc.rb', line 498

def tagstart(name, attributes)
  case full_tag_name
  when @p1, @p2
    @item = { :attachments => [] }
  when "#{@p1}/attachments/item",
       "#{@p2}/attachments/item"
    @attachment = {}
  end
end