123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_table.proto
- namespace Ydb\Table;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Moves given tables
- *
- * Generated from protobuf message <code>Ydb.Table.RenameTablesRequest</code>
- */
- class RenameTablesRequest extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code>
- */
- protected $operation_params = null;
- /**
- * Session identifier
- *
- * Generated from protobuf field <code>string session_id = 2;</code>
- */
- protected $session_id = '';
- /**
- * Source and destination paths inside RenameTableItem describe rename actions
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.RenameTableItem tables = 3;</code>
- */
- private $tables;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Ydb\Operations\OperationParams $operation_params
- * @type string $session_id
- * Session identifier
- * @type array<\Ydb\Table\RenameTableItem>|\Google\Protobuf\Internal\RepeatedField $tables
- * Source and destination paths inside RenameTableItem describe rename actions
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbTable::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code>
- * @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 <code>.Ydb.Operations.OperationParams operation_params = 1;</code>
- * @param \Ydb\Operations\OperationParams $var
- * @return $this
- */
- public function setOperationParams($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Operations\OperationParams::class);
- $this->operation_params = $var;
- return $this;
- }
- /**
- * Session identifier
- *
- * Generated from protobuf field <code>string session_id = 2;</code>
- * @return string
- */
- public function getSessionId()
- {
- return $this->session_id;
- }
- /**
- * Session identifier
- *
- * Generated from protobuf field <code>string session_id = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setSessionId($var)
- {
- GPBUtil::checkString($var, True);
- $this->session_id = $var;
- return $this;
- }
- /**
- * Source and destination paths inside RenameTableItem describe rename actions
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.RenameTableItem tables = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getTables()
- {
- return $this->tables;
- }
- /**
- * Source and destination paths inside RenameTableItem describe rename actions
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.RenameTableItem tables = 3;</code>
- * @param array<\Ydb\Table\RenameTableItem>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setTables($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\RenameTableItem::class);
- $this->tables = $arr;
- return $this;
- }
- }
|