Sha256: 09fdff5319f1062da6ad4347423b9df43099c28dfbfb0c11a6d4fadea7d9cddb

Contents?: true

Size: 686 Bytes

Versions: 32

Compression:

Stored size: 686 Bytes

Contents

module Fog
  module Parsers
    module Compute
      module Slicehost

        class GetSlice < Fog::Parsers::Base

          def reset
            @response = {}
          end

          def end_element(name)
            case name
            when 'address'
              @response['addresses'] ||= []
              @response['addresses'] << value
            when 'backup-id', 'flavor-id', 'id', 'image-id', 'progress'
              @response[name] = value.to_i
            when 'bw-in', 'bw-out'
              @response[name] = value.to_f
            when 'name', 'status'
              @response[name] = value
            end
          end

        end

      end
    end
  end
end

Version data entries

32 entries across 32 versions & 8 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
michiels-fog-1.3.1 lib/fog/slicehost/parsers/compute/get_slice.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
fog-1.3.1 lib/fog/slicehost/parsers/compute/get_slice.rb
fog-1.3.0 lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
fog-1.2.0 lib/fog/slicehost/parsers/compute/get_slice.rb
ktheory-fog-1.1.2 lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
fog-1.1.2 lib/fog/slicehost/parsers/compute/get_slice.rb
fog_tractical-1.1.4 lib/fog/slicehost/parsers/compute/get_slice.rb
fog_tractical-1.1.3 lib/fog/slicehost/parsers/compute/get_slice.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/get_slice.rb
fog-1.1.1 lib/fog/slicehost/parsers/compute/get_slice.rb
fog-1.1.0 lib/fog/slicehost/parsers/compute/get_slice.rb