Aliyun/Log/Models/Response/LogStoreSqlResponse.php [61:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function __construct($resp, $header) {
        parent::__construct ( $header );
        $this->count = $header['x-log-count'];
        $this->progress = $header ['x-log-progress'];
        $this->processedRows = $header['x-log-processed-rows'];
        $this->elapsedMilli = $header['x-log-elapsed-millisecond'];
        $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 );
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Aliyun/Log/Models/Response/ProjectSqlResponse.php [61:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function __construct($resp, $header) {
        parent::__construct ( $header );
        $this->count = $header['x-log-count'];
        $this->progress = $header ['x-log-progress'];
        $this->processedRows = $header['x-log-processed-rows'];
        $this->elapsedMilli = $header['x-log-elapsed-millisecond'];
        $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 );
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



