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/go_grid/models/compute/passwords.rb
2013-01-07 21:01:13 +00:00

36 lines
796 B
Ruby

require 'fog/core/collection'
require 'fog/go_grid/models/compute/password'
module Fog
module Compute
class GoGrid
class Passwords < Fog::Collection
model Fog::Compute::GoGrid::Password
def all
data = service.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 = service.grid_server_get(server_id).body['list']
if id && server = service.support_password_get(id).body['list']
new(server)
end
rescue Fog::Compute::GoGrid::NotFound
nil
end
end
end
end
end