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



549
550
551
# File 'lib/ec2/right_ec2_vpc.rb', line 549

def reset
  @result = []
end

#tagend(name) ⇒ Object



531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
# File 'lib/ec2/right_ec2_vpc.rb', line 531

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



524
525
526
527
528
529
530
# File 'lib/ec2/right_ec2_vpc.rb', line 524

def tagstart(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