/** * Get job list API * This call will list all the jobs in the system for a specified date range. The default is the last month. * * @param array $options * @return Zend\Service\GoGrid\ObjectList */ public function getList($options=null) { $result= parent::_call(self::API_GRID_JOB_LIST, $options); return new GoGridObjectList($result); }
/** * Get Server List * * This call will list all the servers in the system. * * @param array $options * @return Zend\Service\GoGrid\ObjectList */ public function getList($options = array()) { $result = parent::_call(self::API_GRID_SERVER_LIST, $options); return new GoGridObjectList($result); }