mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
723 B
Ruby
35 lines
723 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/compute/models/go_grid/server'
|
|
|
|
module Fog
|
|
module GoGrid
|
|
class Compute
|
|
|
|
class Servers < Fog::Collection
|
|
|
|
model Fog::GoGrid::Compute::Server
|
|
|
|
def all
|
|
data = connection.grid_server_list.body['list']
|
|
load(data)
|
|
end
|
|
|
|
def bootstrap(new_attributes = {})
|
|
server = create(new_attributes)
|
|
server.wait_for { ready? }
|
|
server
|
|
end
|
|
|
|
def get(server_id)
|
|
if server_id && server = connection.grid_server_get(server_id).body['list'].first
|
|
new(server)
|
|
end
|
|
rescue Fog::GoGrid::Compute::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|