Sha256: 39b7ea6f08423bf19c13ea79e5a3a14755d5264c314b0bec5ba3a37c0c70db21
Contents?: true
Size: 1.26 KB
Versions: 35
Compression:
Stored size: 1.26 KB
Contents
module Fog module Parsers module AWS module Compute class DescribeAddresses < Fog::Parsers::Base def reset @response = { 'addressesSet' => [] } @address = {'tagSet' => {}} @tag = {} end def start_element(name, attrs = []) super if name == 'tagSet' @in_tag_set = true end end def end_element(name) if @in_tag_set case name when 'item' @address['tagSet'][@tag['key']] = @tag['value'] @tag = {} when 'key', 'value' @tag[name] = value when 'tagSet' @in_tag_set = false end else case name when 'instanceId', 'publicIp', 'domain', 'allocationId', 'associationId', 'networkInterfaceId', 'networkInterfaceOwnerId', 'privateIpAddress' @address[name] = value when 'item' @response['addressesSet'] << @address @address = { 'tagSet' => {} } when 'requestId' @response[name] = value end end end end end end end end
Version data entries
35 entries across 35 versions & 1 rubygems