123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_coordination.proto
- namespace Ydb\Coordination\SessionResponse;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- **
- * The result of the describe operation
- *
- * Generated from protobuf message <code>Ydb.Coordination.SessionResponse.DescribeSemaphoreResult</code>
- */
- class DescribeSemaphoreResult extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- */
- protected $req_id = 0;
- /**
- * Generated from protobuf field <code>.Ydb.StatusIds.StatusCode status = 2;</code>
- */
- protected $status = 0;
- /**
- * Generated from protobuf field <code>repeated .Ydb.Issue.IssueMessage issues = 3;</code>
- */
- private $issues;
- /**
- * Generated from protobuf field <code>.Ydb.Coordination.SemaphoreDescription semaphore_description = 4;</code>
- */
- protected $semaphore_description = null;
- /**
- * True if a watch has been added for the semaphore
- *
- * Generated from protobuf field <code>bool watch_added = 5;</code>
- */
- protected $watch_added = false;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $req_id
- * @type int $status
- * @type array<\Ydb\Issue\IssueMessage>|\Google\Protobuf\Internal\RepeatedField $issues
- * @type \Ydb\Coordination\SemaphoreDescription $semaphore_description
- * @type bool $watch_added
- * True if a watch has been added for the semaphore
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbCoordination::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- * @return int|string
- */
- public function getReqId()
- {
- return $this->req_id;
- }
- /**
- * Generated from protobuf field <code>uint64 req_id = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setReqId($var)
- {
- GPBUtil::checkUint64($var);
- $this->req_id = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>.Ydb.StatusIds.StatusCode status = 2;</code>
- * @return int
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * Generated from protobuf field <code>.Ydb.StatusIds.StatusCode status = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setStatus($var)
- {
- GPBUtil::checkEnum($var, \Ydb\StatusIds\StatusCode::class);
- $this->status = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Issue.IssueMessage issues = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getIssues()
- {
- return $this->issues;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Issue.IssueMessage issues = 3;</code>
- * @param array<\Ydb\Issue\IssueMessage>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setIssues($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Issue\IssueMessage::class);
- $this->issues = $arr;
- return $this;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Coordination.SemaphoreDescription semaphore_description = 4;</code>
- * @return \Ydb\Coordination\SemaphoreDescription|null
- */
- public function getSemaphoreDescription()
- {
- return $this->semaphore_description;
- }
- public function hasSemaphoreDescription()
- {
- return isset($this->semaphore_description);
- }
- public function clearSemaphoreDescription()
- {
- unset($this->semaphore_description);
- }
- /**
- * Generated from protobuf field <code>.Ydb.Coordination.SemaphoreDescription semaphore_description = 4;</code>
- * @param \Ydb\Coordination\SemaphoreDescription $var
- * @return $this
- */
- public function setSemaphoreDescription($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Coordination\SemaphoreDescription::class);
- $this->semaphore_description = $var;
- return $this;
- }
- /**
- * True if a watch has been added for the semaphore
- *
- * Generated from protobuf field <code>bool watch_added = 5;</code>
- * @return bool
- */
- public function getWatchAdded()
- {
- return $this->watch_added;
- }
- /**
- * True if a watch has been added for the semaphore
- *
- * Generated from protobuf field <code>bool watch_added = 5;</code>
- * @param bool $var
- * @return $this
- */
- public function setWatchAdded($var)
- {
- GPBUtil::checkBool($var);
- $this->watch_added = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(DescribeSemaphoreResult::class, \Ydb\Coordination\SessionResponse_DescribeSemaphoreResult::class);
|