Aliyun/Log/Models/Response/GetLogsResponse.php [67:136]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $this->cpuSec = $header['x-log-cpu-sec']??0;
        $this->cpuCores = $header['x-log-cpu-cores']??0;
        $this->logs = array ();
        foreach ( $resp  as $data ) {
            $contents = $data;
            $time = $data ['__time__'];
            $source = $data ['__source__'];
            unset ( $contents ['__time__'] );
            unset ( $contents ['__source__'] );
            $this->logs [] = new Aliyun_Log_Models_QueriedLog ( $time, $source, $contents );
        }
    }
    
    /**
     * Get log number from the response
     *
     * @return integer log number
     */
    public function getCount() {
        return $this->count;
    }
    
    /**
     * Check if the get logs query is completed
     *
     * @return bool true if this logs query is completed
     */
    public function isCompleted() {
        return $this->progress == 'Complete';
    }
    
    /**
     * Get all logs from the response
     *
     * @return array Aliyun_Log_Models_QueriedLog array, all log data
     */
    public function getLogs() {
        return $this->logs;
    }

    /**
     * get proccesedRows
     */
    public function getProcessedRows()
    {
        return $this ->processedRows;
    }

    /**
     * get elapsedMilli
     */
    public function getElapsedMilli()
    {
        return $this -> elapsedMilli;
    }

    /**
     * get cpuSec
     */
    public function getCpuSec()
    {
        return $this->cpuSec;
    }

    /**
     * get cpuCores
     */
    public function getCpuCores()
    {
        return $this-> cpuCores;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Aliyun/Log/Models/Response/ProjectSqlResponse.php [67:136]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        $this->cpuSec = $header['x-log-cpu-sec']??0;
        $this->cpuCores = $header['x-log-cpu-cores']??0;
        $this->logs = array ();
        foreach ( $resp  as $data ) {
            $contents = $data;
            $time = $data ['__time__'];
            $source = $data ['__source__'];
            unset ( $contents ['__time__'] );
            unset ( $contents ['__source__'] );
            $this->logs [] = new Aliyun_Log_Models_QueriedLog ( $time, $source, $contents );
        }
    }
    
    /**
     * Get log number from the response
     *
     * @return integer log number
     */
    public function getCount() {
        return $this->count;
    }
    
    /**
     * Check if the get logs query is completed
     *
     * @return bool true if this logs query is completed
     */
    public function isCompleted() {
        return $this->progress == 'Complete';
    }
    
    /**
     * Get all logs from the response
     *
     * @return array Aliyun_Log_Models_QueriedLog array, all log data
     */
    public function getLogs() {
        return $this->logs;
    }

    /**
     * get proccesedRows
     */
    public function getProcessedRows()
    {
        return $this ->processedRows;
    }

    /**
     * get elapsedMilli
     */
    public function getElapsedMilli()
    {
        return $this -> elapsedMilli;
    }

    /**
     * get cpuSec
     */
    public function getCpuSec()
    {
        return $this->cpuSec;
    }

    /**
     * get cpuCores
     */
    public function getCpuCores()
    {
        return $this-> cpuCores;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



