Sha256: 2a89c172eee2a5786418cf4861248a2939d35928471b3dddc9e3ada69e0269f5

Contents?: true

Size: 706 Bytes

Versions: 32

Compression:

Stored size: 706 Bytes

Contents

module Fog
  module Parsers
    module Compute
      module Slicehost

        class CreateSlice < 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', 'root-password', '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/create_slice.rb
michiels-fog-1.3.1 lib/fog/slicehost/parsers/compute/create_slice.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
fog-1.3.1 lib/fog/slicehost/parsers/compute/create_slice.rb
fog-1.3.0 lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
fog-1.2.0 lib/fog/slicehost/parsers/compute/create_slice.rb
ktheory-fog-1.1.2 lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
fog-1.1.2 lib/fog/slicehost/parsers/compute/create_slice.rb
fog_tractical-1.1.4 lib/fog/slicehost/parsers/compute/create_slice.rb
fog_tractical-1.1.3 lib/fog/slicehost/parsers/compute/create_slice.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/lib/fog/slicehost/parsers/compute/create_slice.rb
fog-1.1.1 lib/fog/slicehost/parsers/compute/create_slice.rb
fog-1.1.0 lib/fog/slicehost/parsers/compute/create_slice.rb