lib/fog/aws/parsers/compute/copy_image.rb

Summary

Maintainability
A
15 mins
Test Coverage
D
66%
module Fog
  module Parsers
    module AWS
      module Compute
        class CopyImage < Fog::Parsers::Base
          def end_element(name)
            case name
            when 'imageId'
              @response[name] = value
            when 'requestId'
              @response[name] = value
            end
          end
        end
      end
    end
  end
end