Sha256: eec1a21919a35f0c4d1a26a2629c8bf58822d00da9e522a87e800dc1f0b08bd1

Contents?: true

Size: 797 Bytes

Versions: 29

Compression:

Stored size: 797 Bytes

Contents

require 'fog/core/collection'
require 'fog/slicehost/models/compute/server'

module Fog
  module Slicehost
    class Compute

      class Servers < Fog::Collection

        model Fog::Slicehost::Compute::Server

        def all
          data = connection.get_slices.body['slices']
          load(data)
        end

        def bootstrap(new_attributes = {})
          server = create(new_attributes)
          server.wait_for { ready? }
          server.setup(:password => server.password)
          server
        end

        def get(server_id)
          if server_id && server = connection.get_slice(server_id).body
            new(server)
          elsif !server_id
            nil
          end
        rescue Excon::Errors::Forbidden
          nil
        end

      end

    end
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
fog-0.3.16 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.15 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.14 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.13 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.12 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.11 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.10 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.9 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.8 lib/fog/slicehost/models/compute/servers.rb