Class: RightAws::Ec2::QEc2DescribeInternetGatewaysParser

Inherits:
RightAWSParser
  • Object
show all
Defined in:
lib/ec2/right_ec2_vpc2.rb

Overview


InternetGateways


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



330
331
332
# File 'lib/ec2/right_ec2_vpc2.rb', line 330

def reset
  @result = []
end

#tagend(name) ⇒ Object



317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/ec2/right_ec2_vpc2.rb', line 317

def tagend(name)
  case full_tag_name
  # item
  when %r{/(internetGatewaySet/item|internetGateway)$} then @result << @item
  when %r{/internetGatewayId$} then @item[:internet_gateway_id] = @text
  when %r{/vpcId$}             then @item[:vpc_id]              = @text
  when %r{/state$}             then @item[:state]               = @text
  # tags
  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]
  end
end

#tagstart(name, attributes) ⇒ Object

:nodoc:



311
312
313
314
315
316
# File 'lib/ec2/right_ec2_vpc2.rb', line 311

def tagstart(name, attributes)
  case full_tag_name
  when %r{/(internetGatewaySet/item|internetGateway)$} then @item = { :tags => {} }
  when %r{/tagSet/item$} then @aws_tag = {}
  end
end