Beispiel #1
0
 /**
  * Get Server List
  * 
  * This call will list all the servers in the system.
  *
  * @param array $options
  * @return ObjectList
  */
 public function getList($options = array())
 {
     $result = parent::_call(self::API_GRID_SERVER_LIST, $options);
     return new ObjectList($result);
 }
Beispiel #2
0
 /**
  * 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 ObjectList
  */
 public function getList($options = null)
 {
     $result = parent::_call(self::API_GRID_JOB_LIST, $options);
     return new ObjectList($result);
 }