Sha256: 689d40ac050044673176c50a52861e225f352aa7647e330b9d13492e52865f4a

Contents?: true

Size: 824 Bytes

Versions: 36

Compression:

Stored size: 824 Bytes

Contents

module Fog
  module Parsers
    module AWS
      module Compute
        class ModifyVolume < Fog::Parsers::Base
          def reset
            @response = {'volumeModification' => {}}
          end

          def end_element(name)
            case name
            when 'modificationState', 'originalVolumeType', 'statusMessage', 'targetVolumeType', 'volumeId'
              @response['volumeModification'][name] = value
            when 'startTime', 'endTime'
              @response['volumeModification'][name] = Time.parse(value)
            when 'originalIops', 'originalSize', 'progress', 'targetIops', 'targetSize'
              @response['volumeModification'][name] = value.to_i
            when 'requestId'
              @response[name] = value
            end
          end
        end
      end
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
fog-aws-3.10.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.9.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.8.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.7.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.6.7 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.6.6 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.6.5 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.6.4 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.6.3 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.6.2 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.5.2 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.5.1 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.5.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.4.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.3.0 lib/fog/aws/parsers/compute/modify_volume.rb
fog-aws-3.2.0 lib/fog/aws/parsers/compute/modify_volume.rb