Ydb.TableStats.QueryPhaseStats
*/
class QueryPhaseStats extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field uint64 duration_us = 1;
*/
protected $duration_us = 0;
/**
* Generated from protobuf field repeated .Ydb.TableStats.TableAccessStats table_access = 2;
*/
private $table_access;
/**
* Generated from protobuf field uint64 cpu_time_us = 3;
*/
protected $cpu_time_us = 0;
/**
* Generated from protobuf field uint64 affected_shards = 4;
*/
protected $affected_shards = 0;
/**
* Generated from protobuf field bool literal_phase = 5;
*/
protected $literal_phase = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $duration_us
* @type array<\Ydb\TableStats\TableAccessStats>|\Google\Protobuf\Internal\RepeatedField $table_access
* @type int|string $cpu_time_us
* @type int|string $affected_shards
* @type bool $literal_phase
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbQueryStats::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field uint64 duration_us = 1;
* @return int|string
*/
public function getDurationUs()
{
return $this->duration_us;
}
/**
* Generated from protobuf field uint64 duration_us = 1;
* @param int|string $var
* @return $this
*/
public function setDurationUs($var)
{
GPBUtil::checkUint64($var);
$this->duration_us = $var;
return $this;
}
/**
* Generated from protobuf field repeated .Ydb.TableStats.TableAccessStats table_access = 2;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getTableAccess()
{
return $this->table_access;
}
/**
* Generated from protobuf field repeated .Ydb.TableStats.TableAccessStats table_access = 2;
* @param array<\Ydb\TableStats\TableAccessStats>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setTableAccess($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\TableStats\TableAccessStats::class);
$this->table_access = $arr;
return $this;
}
/**
* Generated from protobuf field uint64 cpu_time_us = 3;
* @return int|string
*/
public function getCpuTimeUs()
{
return $this->cpu_time_us;
}
/**
* Generated from protobuf field uint64 cpu_time_us = 3;
* @param int|string $var
* @return $this
*/
public function setCpuTimeUs($var)
{
GPBUtil::checkUint64($var);
$this->cpu_time_us = $var;
return $this;
}
/**
* Generated from protobuf field uint64 affected_shards = 4;
* @return int|string
*/
public function getAffectedShards()
{
return $this->affected_shards;
}
/**
* Generated from protobuf field uint64 affected_shards = 4;
* @param int|string $var
* @return $this
*/
public function setAffectedShards($var)
{
GPBUtil::checkUint64($var);
$this->affected_shards = $var;
return $this;
}
/**
* Generated from protobuf field bool literal_phase = 5;
* @return bool
*/
public function getLiteralPhase()
{
return $this->literal_phase;
}
/**
* Generated from protobuf field bool literal_phase = 5;
* @param bool $var
* @return $this
*/
public function setLiteralPhase($var)
{
GPBUtil::checkBool($var);
$this->literal_phase = $var;
return $this;
}
}