/
githubmirror
/
ydb-php-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
protos/Ydb/Monitoring/LocationCompute.php
141 строка
3 KB
Alexei Shabalin
updated protos
17 фев 2023, 13:31
17 фев 2023, 13:31
ae6a264
Код
Авторство
О чём код?
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: protos/ydb_monitoring.proto namespace Ydb\Monitoring; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Generated from protobuf message <code>Ydb.Monitoring.LocationCompute</code> */ class LocationCompute extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationNode node = 1;</code> */ protected $node = null; /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationComputePool pool = 2;</code> */ protected $pool = null; /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationComputeTablet tablet = 3;</code> */ protected $tablet = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Ydb\Monitoring\LocationNode $node * @type \Ydb\Monitoring\LocationComputePool $pool * @type \Ydb\Monitoring\LocationComputeTablet $tablet * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbMonitoring::initOnce(); parent::__construct($data); } /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationNode node = 1;</code> * @return \Ydb\Monitoring\LocationNode|null */ public function getNode() { return $this->node; } public function hasNode() { return isset($this->node); } public function clearNode() { unset($this->node); } /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationNode node = 1;</code> * @param \Ydb\Monitoring\LocationNode $var * @return $this */ public function setNode($var) { GPBUtil::checkMessage($var, \Ydb\Monitoring\LocationNode::class); $this->node = $var; return $this; } /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationComputePool pool = 2;</code> * @return \Ydb\Monitoring\LocationComputePool|null */ public function getPool() { return $this->pool; } public function hasPool() { return isset($this->pool); } public function clearPool() { unset($this->pool); } /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationComputePool pool = 2;</code> * @param \Ydb\Monitoring\LocationComputePool $var * @return $this */ public function setPool($var) { GPBUtil::checkMessage($var, \Ydb\Monitoring\LocationComputePool::class); $this->pool = $var; return $this; } /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationComputeTablet tablet = 3;</code> * @return \Ydb\Monitoring\LocationComputeTablet|null */ public function getTablet() { return $this->tablet; } public function hasTablet() { return isset($this->tablet); } public function clearTablet() { unset($this->tablet); } /** * Generated from protobuf field <code>.Ydb.Monitoring.LocationComputeTablet tablet = 3;</code> * @param \Ydb\Monitoring\LocationComputeTablet $var * @return $this */ public function setTablet($var) { GPBUtil::checkMessage($var, \Ydb\Monitoring\LocationComputeTablet::class); $this->tablet = $var; return $this; } }