Sha256: ac2a7799a933e52b77c1aa3067df4a57bf2ce8da7fa7d8600bab2721e23259bc
Contents?: true
Size: 792 Bytes
Versions: 43
Compression:
Stored size: 792 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
43 entries across 41 versions & 6 rubygems