Ydb.Coordination.CreateNodeRequest */ class CreateNodeRequest extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string path = 1; */ protected $path = ''; /** * Generated from protobuf field .Ydb.Coordination.Config config = 2; */ protected $config = null; /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 3; */ protected $operation_params = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $path * @type \Ydb\Coordination\Config $config * @type \Ydb\Operations\OperationParams $operation_params * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbCoordination::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string path = 1; * @return string */ public function getPath() { return $this->path; } /** * Generated from protobuf field string path = 1; * @param string $var * @return $this */ public function setPath($var) { GPBUtil::checkString($var, True); $this->path = $var; return $this; } /** * Generated from protobuf field .Ydb.Coordination.Config config = 2; * @return \Ydb\Coordination\Config|null */ public function getConfig() { return $this->config; } public function hasConfig() { return isset($this->config); } public function clearConfig() { unset($this->config); } /** * Generated from protobuf field .Ydb.Coordination.Config config = 2; * @param \Ydb\Coordination\Config $var * @return $this */ public function setConfig($var) { GPBUtil::checkMessage($var, \Ydb\Coordination\Config::class); $this->config = $var; return $this; } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 3; * @return \Ydb\Operations\OperationParams|null */ public function getOperationParams() { return $this->operation_params; } public function hasOperationParams() { return isset($this->operation_params); } public function clearOperationParams() { unset($this->operation_params); } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 3; * @param \Ydb\Operations\OperationParams $var * @return $this */ public function setOperationParams($var) { GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class); $this->operation_params = $var; return $this; } }