# File lib/fog/softlayer/requests/compute/get_virtual_guest_users.rb, line 14 def get_virtual_guest_users(id) response = Excon::Response.new found = self.get_vms.body.map{|server| server['id']}.include?(id) unless found response.status = 404 response.body = { "error" => "Unable to find object with id of '#{id}'.", "code" => "SoftLayer_Exception_ObjectNotFound" } else response.status = 200 response.body = get_users end response end