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.4.0 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.34 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.33 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.32 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.31 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.30 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.29 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.28 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.27 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.26 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.25 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.24 lib/fog/slicehost/models/compute/servers.rb
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/lib/fog/slicehost/models/compute/servers.rb
fog-0.3.23 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.22 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.21 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.20 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.19 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.18 lib/fog/slicehost/models/compute/servers.rb
fog-0.3.17 lib/fog/slicehost/models/compute/servers.rb