Sha256: 96fb658bec098d01487b4d3f3f93671743dc9e2f27c4ed75bf25c1bc3a823a6b

Contents?: true

Size: 638 Bytes

Versions: 115

Compression:

Stored size: 638 Bytes

Contents

module Fog
  module Parsers
    module Terremark
      module Shared

        class GetPublicIps< Fog::Parsers::Base

          def reset
            @ip_address = {}
            @response = { 'PublicIpAddresses' => [] }
          end

          def end_element(name)
            case name
            when 'Href', 'Name'
              @ip_address[name.downcase] = @value
            when 'Id'
              @ip_address['id'] = @value.to_i
            when 'PublicIPAddress'
              @response['PublicIpAddresses'] << @ip_address
              @ip_address = {}
            end
          end

        end

      end
    end
  end
end

Version data entries

115 entries across 115 versions & 4 rubygems

Version Path
fog-0.2.20 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.19 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.18 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.17 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.16 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.15 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.14 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.13 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.12 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.11 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.10 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.9 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.8 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.7 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.6 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.5 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.4 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.3 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.2 lib/fog/terremark/parsers/shared/get_public_ips.rb
fog-0.2.1 lib/fog/terremark/parsers/shared/get_public_ips.rb