Ydb.Coordination.SessionRequest.UpdateSemaphore
*/
class UpdateSemaphore extends \Google\Protobuf\Internal\Message
{
/**
* Client-defined request id, echoed in the response
*
* Generated from protobuf field uint64 req_id = 1;
*/
protected $req_id = 0;
/**
* Name of the semaphore to update
*
* Generated from protobuf field string name = 2;
*/
protected $name = '';
/**
* User-defined data that is attached to the semaphore
*
* Generated from protobuf field bytes data = 3;
*/
protected $data = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $req_id
* Client-defined request id, echoed in the response
* @type string $name
* Name of the semaphore to update
* @type string $data
* User-defined data that is attached to the semaphore
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbCoordination::initOnce();
parent::__construct($data);
}
/**
* Client-defined request id, echoed in the response
*
* Generated from protobuf field uint64 req_id = 1;
* @return int|string
*/
public function getReqId()
{
return $this->req_id;
}
/**
* Client-defined request id, echoed in the response
*
* Generated from protobuf field uint64 req_id = 1;
* @param int|string $var
* @return $this
*/
public function setReqId($var)
{
GPBUtil::checkUint64($var);
$this->req_id = $var;
return $this;
}
/**
* Name of the semaphore to update
*
* Generated from protobuf field string name = 2;
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Name of the semaphore to update
*
* Generated from protobuf field string name = 2;
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* User-defined data that is attached to the semaphore
*
* Generated from protobuf field bytes data = 3;
* @return string
*/
public function getData()
{
return $this->data;
}
/**
* User-defined data that is attached to the semaphore
*
* Generated from protobuf field bytes data = 3;
* @param string $var
* @return $this
*/
public function setData($var)
{
GPBUtil::checkString($var, False);
$this->data = $var;
return $this;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(UpdateSemaphore::class, \Ydb\Coordination\SessionRequest_UpdateSemaphore::class);