Ydb.Monitoring.ComputeNodeStatus */ class ComputeNodeStatus extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string id = 1; */ protected $id = ''; /** * Generated from protobuf field .Ydb.Monitoring.StatusFlag.Status overall = 2; */ protected $overall = 0; /** * Generated from protobuf field repeated .Ydb.Monitoring.ComputeTabletStatus tablets = 3; */ private $tablets; /** * Generated from protobuf field repeated .Ydb.Monitoring.ThreadPoolStatus pools = 4; */ private $pools; /** * Generated from protobuf field .Ydb.Monitoring.LoadAverageStatus load = 5; */ protected $load = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $id * @type int $overall * @type array<\Ydb\Monitoring\ComputeTabletStatus>|\Google\Protobuf\Internal\RepeatedField $tablets * @type array<\Ydb\Monitoring\ThreadPoolStatus>|\Google\Protobuf\Internal\RepeatedField $pools * @type \Ydb\Monitoring\LoadAverageStatus $load * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbMonitoring::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string id = 1; * @return string */ public function getId() { return $this->id; } /** * Generated from protobuf field string id = 1; * @param string $var * @return $this */ public function setId($var) { GPBUtil::checkString($var, True); $this->id = $var; return $this; } /** * Generated from protobuf field .Ydb.Monitoring.StatusFlag.Status overall = 2; * @return int */ public function getOverall() { return $this->overall; } /** * Generated from protobuf field .Ydb.Monitoring.StatusFlag.Status overall = 2; * @param int $var * @return $this */ public function setOverall($var) { GPBUtil::checkEnum($var, \Ydb\Monitoring\StatusFlag\Status::class); $this->overall = $var; return $this; } /** * Generated from protobuf field repeated .Ydb.Monitoring.ComputeTabletStatus tablets = 3; * @return \Google\Protobuf\Internal\RepeatedField */ public function getTablets() { return $this->tablets; } /** * Generated from protobuf field repeated .Ydb.Monitoring.ComputeTabletStatus tablets = 3; * @param array<\Ydb\Monitoring\ComputeTabletStatus>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setTablets($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Monitoring\ComputeTabletStatus::class); $this->tablets = $arr; return $this; } /** * Generated from protobuf field repeated .Ydb.Monitoring.ThreadPoolStatus pools = 4; * @return \Google\Protobuf\Internal\RepeatedField */ public function getPools() { return $this->pools; } /** * Generated from protobuf field repeated .Ydb.Monitoring.ThreadPoolStatus pools = 4; * @param array<\Ydb\Monitoring\ThreadPoolStatus>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setPools($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Monitoring\ThreadPoolStatus::class); $this->pools = $arr; return $this; } /** * Generated from protobuf field .Ydb.Monitoring.LoadAverageStatus load = 5; * @return \Ydb\Monitoring\LoadAverageStatus|null */ public function getLoad() { return $this->load; } public function hasLoad() { return isset($this->load); } public function clearLoad() { unset($this->load); } /** * Generated from protobuf field .Ydb.Monitoring.LoadAverageStatus load = 5; * @param \Ydb\Monitoring\LoadAverageStatus $var * @return $this */ public function setLoad($var) { GPBUtil::checkMessage($var, \Ydb\Monitoring\LoadAverageStatus::class); $this->load = $var; return $this; } }