mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
36 lines
750 B
Ruby
36 lines
750 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/bluebox/models/compute/server'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Bluebox
|
|
|
|
class Servers < Fog::Collection
|
|
|
|
model Fog::Compute::Bluebox::Server
|
|
|
|
def all
|
|
data = connection.get_blocks.body
|
|
load(data)
|
|
end
|
|
|
|
def bootstrap(new_attributes = {})
|
|
server = create(new_attributes)
|
|
server.wait_for { ready? }
|
|
server.setup(:key_data => [server.private_key])
|
|
server
|
|
end
|
|
|
|
def get(server_id)
|
|
if server_id && server = connection.get_block(server_id).body
|
|
new(server)
|
|
end
|
|
rescue Fog::Compute::Bluebox::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|