class Fog::Compute::Brightbox::Users
Public Instance Methods
all()
click to toggle source
# File lib/fog/brightbox/models/compute/users.rb, line 10 def all data = service.list_users load(data) end
get(identifier = nil)
click to toggle source
# File lib/fog/brightbox/models/compute/users.rb, line 15 def get(identifier = nil) data = service.get_user(identifier) new(data) rescue Excon::Errors::NotFound nil end