123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778 |
- <?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;
- /**
- * Alter table with given path
- *
- * Generated from protobuf message <code>Ydb.Table.AlterTableRequest</code>
- */
- class AlterTableRequest extends \Google\Protobuf\Internal\Message
- {
- /**
- * Session identifier
- *
- * Generated from protobuf field <code>string session_id = 1;</code>
- */
- protected $session_id = '';
- /**
- * Full path
- *
- * Generated from protobuf field <code>string path = 2;</code>
- */
- protected $path = '';
- /**
- * Columns (name, type) to add
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnMeta add_columns = 3;</code>
- */
- private $add_columns;
- /**
- * Columns to remove
- *
- * Generated from protobuf field <code>repeated string drop_columns = 4;</code>
- */
- private $drop_columns;
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 5;</code>
- */
- protected $operation_params = null;
- /**
- * Columns to alter
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnMeta alter_columns = 6;</code>
- */
- private $alter_columns;
- /**
- * Add secondary indexes
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.TableIndex add_indexes = 9;</code>
- */
- private $add_indexes;
- /**
- * Remove secondary indexes
- *
- * Generated from protobuf field <code>repeated string drop_indexes = 10;</code>
- */
- private $drop_indexes;
- /**
- * Change table storage settings
- *
- * Generated from protobuf field <code>.Ydb.Table.StorageSettings alter_storage_settings = 11;</code>
- */
- protected $alter_storage_settings = null;
- /**
- * Add/alter column families
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnFamily add_column_families = 12;</code>
- */
- private $add_column_families;
- /**
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnFamily alter_column_families = 13;</code>
- */
- private $alter_column_families;
- /**
- * Alter attributes. Leave the value blank to drop an attribute.
- * Cannot be used in combination with other fields (except session_id and path) at the moment.
- *
- * Generated from protobuf field <code>map<string, string> alter_attributes = 14 [(.Ydb.length) = {</code>
- */
- private $alter_attributes;
- /**
- * Set predefined named set of settings for table compaction ["default", "small_table", "log_table"].
- * Set "default" to use default preset.
- *
- * Generated from protobuf field <code>string set_compaction_policy = 15;</code>
- */
- protected $set_compaction_policy = '';
- /**
- * Change table partitioning settings
- *
- * Generated from protobuf field <code>.Ydb.Table.PartitioningSettings alter_partitioning_settings = 16;</code>
- */
- protected $alter_partitioning_settings = null;
- /**
- * Enable/disable bloom filter by key
- *
- * Generated from protobuf field <code>.Ydb.FeatureFlag.Status set_key_bloom_filter = 17;</code>
- */
- protected $set_key_bloom_filter = 0;
- /**
- * Set read replicas settings for table
- *
- * Generated from protobuf field <code>.Ydb.Table.ReadReplicasSettings set_read_replicas_settings = 18;</code>
- */
- protected $set_read_replicas_settings = null;
- /**
- * Add change feeds
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.Changefeed add_changefeeds = 19;</code>
- */
- private $add_changefeeds;
- /**
- * Remove change feeds (by its names)
- *
- * Generated from protobuf field <code>repeated string drop_changefeeds = 20;</code>
- */
- private $drop_changefeeds;
- /**
- * Rename existed index
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.RenameIndexItem rename_indexes = 21;</code>
- */
- private $rename_indexes;
- protected $ttl_action;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $session_id
- * Session identifier
- * @type string $path
- * Full path
- * @type array<\Ydb\Table\ColumnMeta>|\Google\Protobuf\Internal\RepeatedField $add_columns
- * Columns (name, type) to add
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $drop_columns
- * Columns to remove
- * @type \Ydb\Operations\OperationParams $operation_params
- * @type array<\Ydb\Table\ColumnMeta>|\Google\Protobuf\Internal\RepeatedField $alter_columns
- * Columns to alter
- * @type \Ydb\Table\TtlSettings $set_ttl_settings
- * @type \Google\Protobuf\GPBEmpty $drop_ttl_settings
- * @type array<\Ydb\Table\TableIndex>|\Google\Protobuf\Internal\RepeatedField $add_indexes
- * Add secondary indexes
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $drop_indexes
- * Remove secondary indexes
- * @type \Ydb\Table\StorageSettings $alter_storage_settings
- * Change table storage settings
- * @type array<\Ydb\Table\ColumnFamily>|\Google\Protobuf\Internal\RepeatedField $add_column_families
- * Add/alter column families
- * @type array<\Ydb\Table\ColumnFamily>|\Google\Protobuf\Internal\RepeatedField $alter_column_families
- * @type array|\Google\Protobuf\Internal\MapField $alter_attributes
- * Alter attributes. Leave the value blank to drop an attribute.
- * Cannot be used in combination with other fields (except session_id and path) at the moment.
- * @type string $set_compaction_policy
- * Set predefined named set of settings for table compaction ["default", "small_table", "log_table"].
- * Set "default" to use default preset.
- * @type \Ydb\Table\PartitioningSettings $alter_partitioning_settings
- * Change table partitioning settings
- * @type int $set_key_bloom_filter
- * Enable/disable bloom filter by key
- * @type \Ydb\Table\ReadReplicasSettings $set_read_replicas_settings
- * Set read replicas settings for table
- * @type array<\Ydb\Table\Changefeed>|\Google\Protobuf\Internal\RepeatedField $add_changefeeds
- * Add change feeds
- * @type array<string>|\Google\Protobuf\Internal\RepeatedField $drop_changefeeds
- * Remove change feeds (by its names)
- * @type array<\Ydb\Table\RenameIndexItem>|\Google\Protobuf\Internal\RepeatedField $rename_indexes
- * Rename existed index
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbTable::initOnce();
- parent::__construct($data);
- }
- /**
- * Session identifier
- *
- * Generated from protobuf field <code>string session_id = 1;</code>
- * @return string
- */
- public function getSessionId()
- {
- return $this->session_id;
- }
- /**
- * Session identifier
- *
- * Generated from protobuf field <code>string session_id = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setSessionId($var)
- {
- GPBUtil::checkString($var, True);
- $this->session_id = $var;
- return $this;
- }
- /**
- * Full path
- *
- * Generated from protobuf field <code>string path = 2;</code>
- * @return string
- */
- public function getPath()
- {
- return $this->path;
- }
- /**
- * Full path
- *
- * Generated from protobuf field <code>string path = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setPath($var)
- {
- GPBUtil::checkString($var, True);
- $this->path = $var;
- return $this;
- }
- /**
- * Columns (name, type) to add
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnMeta add_columns = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAddColumns()
- {
- return $this->add_columns;
- }
- /**
- * Columns (name, type) to add
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnMeta add_columns = 3;</code>
- * @param array<\Ydb\Table\ColumnMeta>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAddColumns($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\ColumnMeta::class);
- $this->add_columns = $arr;
- return $this;
- }
- /**
- * Columns to remove
- *
- * Generated from protobuf field <code>repeated string drop_columns = 4;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getDropColumns()
- {
- return $this->drop_columns;
- }
- /**
- * Columns to remove
- *
- * Generated from protobuf field <code>repeated string drop_columns = 4;</code>
- * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setDropColumns($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->drop_columns = $arr;
- return $this;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 5;</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 = 5;</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;
- }
- /**
- * Columns to alter
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnMeta alter_columns = 6;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAlterColumns()
- {
- return $this->alter_columns;
- }
- /**
- * Columns to alter
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnMeta alter_columns = 6;</code>
- * @param array<\Ydb\Table\ColumnMeta>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAlterColumns($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\ColumnMeta::class);
- $this->alter_columns = $arr;
- return $this;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Table.TtlSettings set_ttl_settings = 7;</code>
- * @return \Ydb\Table\TtlSettings|null
- */
- public function getSetTtlSettings()
- {
- return $this->readOneof(7);
- }
- public function hasSetTtlSettings()
- {
- return $this->hasOneof(7);
- }
- /**
- * Generated from protobuf field <code>.Ydb.Table.TtlSettings set_ttl_settings = 7;</code>
- * @param \Ydb\Table\TtlSettings $var
- * @return $this
- */
- public function setSetTtlSettings($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Table\TtlSettings::class);
- $this->writeOneof(7, $var);
- return $this;
- }
- /**
- * Generated from protobuf field <code>.google.protobuf.Empty drop_ttl_settings = 8;</code>
- * @return \Google\Protobuf\GPBEmpty|null
- */
- public function getDropTtlSettings()
- {
- return $this->readOneof(8);
- }
- public function hasDropTtlSettings()
- {
- return $this->hasOneof(8);
- }
- /**
- * Generated from protobuf field <code>.google.protobuf.Empty drop_ttl_settings = 8;</code>
- * @param \Google\Protobuf\GPBEmpty $var
- * @return $this
- */
- public function setDropTtlSettings($var)
- {
- GPBUtil::checkMessage($var, \Google\Protobuf\GPBEmpty::class);
- $this->writeOneof(8, $var);
- return $this;
- }
- /**
- * Add secondary indexes
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.TableIndex add_indexes = 9;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAddIndexes()
- {
- return $this->add_indexes;
- }
- /**
- * Add secondary indexes
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.TableIndex add_indexes = 9;</code>
- * @param array<\Ydb\Table\TableIndex>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAddIndexes($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\TableIndex::class);
- $this->add_indexes = $arr;
- return $this;
- }
- /**
- * Remove secondary indexes
- *
- * Generated from protobuf field <code>repeated string drop_indexes = 10;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getDropIndexes()
- {
- return $this->drop_indexes;
- }
- /**
- * Remove secondary indexes
- *
- * Generated from protobuf field <code>repeated string drop_indexes = 10;</code>
- * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setDropIndexes($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->drop_indexes = $arr;
- return $this;
- }
- /**
- * Change table storage settings
- *
- * Generated from protobuf field <code>.Ydb.Table.StorageSettings alter_storage_settings = 11;</code>
- * @return \Ydb\Table\StorageSettings|null
- */
- public function getAlterStorageSettings()
- {
- return $this->alter_storage_settings;
- }
- public function hasAlterStorageSettings()
- {
- return isset($this->alter_storage_settings);
- }
- public function clearAlterStorageSettings()
- {
- unset($this->alter_storage_settings);
- }
- /**
- * Change table storage settings
- *
- * Generated from protobuf field <code>.Ydb.Table.StorageSettings alter_storage_settings = 11;</code>
- * @param \Ydb\Table\StorageSettings $var
- * @return $this
- */
- public function setAlterStorageSettings($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Table\StorageSettings::class);
- $this->alter_storage_settings = $var;
- return $this;
- }
- /**
- * Add/alter column families
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnFamily add_column_families = 12;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAddColumnFamilies()
- {
- return $this->add_column_families;
- }
- /**
- * Add/alter column families
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnFamily add_column_families = 12;</code>
- * @param array<\Ydb\Table\ColumnFamily>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAddColumnFamilies($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\ColumnFamily::class);
- $this->add_column_families = $arr;
- return $this;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnFamily alter_column_families = 13;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAlterColumnFamilies()
- {
- return $this->alter_column_families;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Table.ColumnFamily alter_column_families = 13;</code>
- * @param array<\Ydb\Table\ColumnFamily>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAlterColumnFamilies($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\ColumnFamily::class);
- $this->alter_column_families = $arr;
- return $this;
- }
- /**
- * Alter attributes. Leave the value blank to drop an attribute.
- * Cannot be used in combination with other fields (except session_id and path) at the moment.
- *
- * Generated from protobuf field <code>map<string, string> alter_attributes = 14 [(.Ydb.length) = {</code>
- * @return \Google\Protobuf\Internal\MapField
- */
- public function getAlterAttributes()
- {
- return $this->alter_attributes;
- }
- /**
- * Alter attributes. Leave the value blank to drop an attribute.
- * Cannot be used in combination with other fields (except session_id and path) at the moment.
- *
- * Generated from protobuf field <code>map<string, string> alter_attributes = 14 [(.Ydb.length) = {</code>
- * @param array|\Google\Protobuf\Internal\MapField $var
- * @return $this
- */
- public function setAlterAttributes($var)
- {
- $arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::STRING);
- $this->alter_attributes = $arr;
- return $this;
- }
- /**
- * Set predefined named set of settings for table compaction ["default", "small_table", "log_table"].
- * Set "default" to use default preset.
- *
- * Generated from protobuf field <code>string set_compaction_policy = 15;</code>
- * @return string
- */
- public function getSetCompactionPolicy()
- {
- return $this->set_compaction_policy;
- }
- /**
- * Set predefined named set of settings for table compaction ["default", "small_table", "log_table"].
- * Set "default" to use default preset.
- *
- * Generated from protobuf field <code>string set_compaction_policy = 15;</code>
- * @param string $var
- * @return $this
- */
- public function setSetCompactionPolicy($var)
- {
- GPBUtil::checkString($var, True);
- $this->set_compaction_policy = $var;
- return $this;
- }
- /**
- * Change table partitioning settings
- *
- * Generated from protobuf field <code>.Ydb.Table.PartitioningSettings alter_partitioning_settings = 16;</code>
- * @return \Ydb\Table\PartitioningSettings|null
- */
- public function getAlterPartitioningSettings()
- {
- return $this->alter_partitioning_settings;
- }
- public function hasAlterPartitioningSettings()
- {
- return isset($this->alter_partitioning_settings);
- }
- public function clearAlterPartitioningSettings()
- {
- unset($this->alter_partitioning_settings);
- }
- /**
- * Change table partitioning settings
- *
- * Generated from protobuf field <code>.Ydb.Table.PartitioningSettings alter_partitioning_settings = 16;</code>
- * @param \Ydb\Table\PartitioningSettings $var
- * @return $this
- */
- public function setAlterPartitioningSettings($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Table\PartitioningSettings::class);
- $this->alter_partitioning_settings = $var;
- return $this;
- }
- /**
- * Enable/disable bloom filter by key
- *
- * Generated from protobuf field <code>.Ydb.FeatureFlag.Status set_key_bloom_filter = 17;</code>
- * @return int
- */
- public function getSetKeyBloomFilter()
- {
- return $this->set_key_bloom_filter;
- }
- /**
- * Enable/disable bloom filter by key
- *
- * Generated from protobuf field <code>.Ydb.FeatureFlag.Status set_key_bloom_filter = 17;</code>
- * @param int $var
- * @return $this
- */
- public function setSetKeyBloomFilter($var)
- {
- GPBUtil::checkEnum($var, \Ydb\FeatureFlag\Status::class);
- $this->set_key_bloom_filter = $var;
- return $this;
- }
- /**
- * Set read replicas settings for table
- *
- * Generated from protobuf field <code>.Ydb.Table.ReadReplicasSettings set_read_replicas_settings = 18;</code>
- * @return \Ydb\Table\ReadReplicasSettings|null
- */
- public function getSetReadReplicasSettings()
- {
- return $this->set_read_replicas_settings;
- }
- public function hasSetReadReplicasSettings()
- {
- return isset($this->set_read_replicas_settings);
- }
- public function clearSetReadReplicasSettings()
- {
- unset($this->set_read_replicas_settings);
- }
- /**
- * Set read replicas settings for table
- *
- * Generated from protobuf field <code>.Ydb.Table.ReadReplicasSettings set_read_replicas_settings = 18;</code>
- * @param \Ydb\Table\ReadReplicasSettings $var
- * @return $this
- */
- public function setSetReadReplicasSettings($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Table\ReadReplicasSettings::class);
- $this->set_read_replicas_settings = $var;
- return $this;
- }
- /**
- * Add change feeds
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.Changefeed add_changefeeds = 19;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getAddChangefeeds()
- {
- return $this->add_changefeeds;
- }
- /**
- * Add change feeds
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.Changefeed add_changefeeds = 19;</code>
- * @param array<\Ydb\Table\Changefeed>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setAddChangefeeds($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\Changefeed::class);
- $this->add_changefeeds = $arr;
- return $this;
- }
- /**
- * Remove change feeds (by its names)
- *
- * Generated from protobuf field <code>repeated string drop_changefeeds = 20;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getDropChangefeeds()
- {
- return $this->drop_changefeeds;
- }
- /**
- * Remove change feeds (by its names)
- *
- * Generated from protobuf field <code>repeated string drop_changefeeds = 20;</code>
- * @param array<string>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setDropChangefeeds($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
- $this->drop_changefeeds = $arr;
- return $this;
- }
- /**
- * Rename existed index
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.RenameIndexItem rename_indexes = 21;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getRenameIndexes()
- {
- return $this->rename_indexes;
- }
- /**
- * Rename existed index
- *
- * Generated from protobuf field <code>repeated .Ydb.Table.RenameIndexItem rename_indexes = 21;</code>
- * @param array<\Ydb\Table\RenameIndexItem>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setRenameIndexes($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Table\RenameIndexItem::class);
- $this->rename_indexes = $arr;
- return $this;
- }
- /**
- * @return string
- */
- public function getTtlAction()
- {
- return $this->whichOneof("ttl_action");
- }
- }
|