Sha256: 28ad168e0f51297512626a5ef87eccab896d2f3656ee881b239320990855676b
Contents?: true
Size: 796 Bytes
Versions: 65
Compression:
Stored size: 796 Bytes
Contents
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
Version data entries
65 entries across 65 versions & 6 rubygems