Ydb.Table.RenameIndexItem */ class RenameIndexItem extends \Google\Protobuf\Internal\Message { /** * Index name to rename * * Generated from protobuf field string source_name = 1; */ protected $source_name = ''; /** * Target index name * * Generated from protobuf field string destination_name = 2; */ protected $destination_name = ''; /** * Move options * * Generated from protobuf field bool replace_destination = 3; */ protected $replace_destination = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $source_name * Index name to rename * @type string $destination_name * Target index name * @type bool $replace_destination * Move options * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbTable::initOnce(); parent::__construct($data); } /** * Index name to rename * * Generated from protobuf field string source_name = 1; * @return string */ public function getSourceName() { return $this->source_name; } /** * Index name to rename * * Generated from protobuf field string source_name = 1; * @param string $var * @return $this */ public function setSourceName($var) { GPBUtil::checkString($var, True); $this->source_name = $var; return $this; } /** * Target index name * * Generated from protobuf field string destination_name = 2; * @return string */ public function getDestinationName() { return $this->destination_name; } /** * Target index name * * Generated from protobuf field string destination_name = 2; * @param string $var * @return $this */ public function setDestinationName($var) { GPBUtil::checkString($var, True); $this->destination_name = $var; return $this; } /** * Move options * * Generated from protobuf field bool replace_destination = 3; * @return bool */ public function getReplaceDestination() { return $this->replace_destination; } /** * Move options * * Generated from protobuf field bool replace_destination = 3; * @param bool $var * @return $this */ public function setReplaceDestination($var) { GPBUtil::checkBool($var); $this->replace_destination = $var; return $this; } }