Sha256: 241e72a3756bae3c7c73450a04a8e154ebd24833f4ef6d7f0853fa52d7e37a60

Contents?: true

Size: 628 Bytes

Versions: 37

Compression:

Stored size: 628 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module EC2

        class GetConsoleOutput < Fog::Parsers::Base

          def reset
            @response = {}
          end

          def end_element(name)
            case name
            when 'instanceId', 'requestId'
              @response[name] = @value
            when 'output'
              @response[name] = if @value
                Base64.decode64(@value)
              else
                nil
              end
            when 'timestamp'
              @response[name] = Time.parse(@value)
            end
          end

        end

      end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-0.2.30 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.28 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.27 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.26 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.25 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.24 lib/fog/aws/parsers/ec2/get_console_output.rb
tecnh-fog-0.2.23.vpc lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.23 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.22 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.21 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.20 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.19 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.18 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.17 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.16 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.15 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.14 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.13 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.12 lib/fog/aws/parsers/ec2/get_console_output.rb
fog-0.2.11 lib/fog/aws/parsers/ec2/get_console_output.rb