1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/models/go_grid/passwords.rb
Lum 8a400e2ef0 Adding ability to get gogrid default passwords that get generated for each new virtual server.
Also ability to list all default or stored root passwords on gogrid.
2011-02-01 03:24:19 +08:00

36 lines
805 B
Ruby

require 'fog/core/collection'
require 'fog/compute/models/go_grid/password'
module Fog
module GoGrid
class Compute
class Passwords < Fog::Collection
model Fog::GoGrid::Compute::Password
def all
data = connection.support_password_list.body['list']
load(data)
end
def bootstrap(new_attributes = {})
password = create(new_attributes)
password.wait_for { ready? }
password
end
def get(id)
#if server_id && server = connection.grid_server_get(server_id).body['list']
if id && server = connection.support_password_get(id).body['list']
new(server)
end
rescue Fog::GoGrid::Compute::NotFound
nil
end
end
end
end
end