123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <?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;
- /**
- * Describe table with given path
- *
- * Generated from protobuf message <code>Ydb.Table.DescribeTableRequest</code>
- */
- class DescribeTableRequest 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 = '';
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 4;</code>
- */
- protected $operation_params = null;
- /**
- * Includes shard key distribution info
- *
- * Generated from protobuf field <code>bool include_shard_key_bounds = 5;</code>
- */
- protected $include_shard_key_bounds = false;
- /**
- * Includes table statistics
- *
- * Generated from protobuf field <code>bool include_table_stats = 6;</code>
- */
- protected $include_table_stats = false;
- /**
- * Includes partition statistics (required include_table_statistics)
- *
- * Generated from protobuf field <code>bool include_partition_stats = 7;</code>
- */
- protected $include_partition_stats = false;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $session_id
- * Session identifier
- * @type string $path
- * Full path
- * @type \Ydb\Operations\OperationParams $operation_params
- * @type bool $include_shard_key_bounds
- * Includes shard key distribution info
- * @type bool $include_table_stats
- * Includes table statistics
- * @type bool $include_partition_stats
- * Includes partition statistics (required include_table_statistics)
- * }
- */
- 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;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 4;</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 = 4;</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;
- }
- /**
- * Includes shard key distribution info
- *
- * Generated from protobuf field <code>bool include_shard_key_bounds = 5;</code>
- * @return bool
- */
- public function getIncludeShardKeyBounds()
- {
- return $this->include_shard_key_bounds;
- }
- /**
- * Includes shard key distribution info
- *
- * Generated from protobuf field <code>bool include_shard_key_bounds = 5;</code>
- * @param bool $var
- * @return $this
- */
- public function setIncludeShardKeyBounds($var)
- {
- GPBUtil::checkBool($var);
- $this->include_shard_key_bounds = $var;
- return $this;
- }
- /**
- * Includes table statistics
- *
- * Generated from protobuf field <code>bool include_table_stats = 6;</code>
- * @return bool
- */
- public function getIncludeTableStats()
- {
- return $this->include_table_stats;
- }
- /**
- * Includes table statistics
- *
- * Generated from protobuf field <code>bool include_table_stats = 6;</code>
- * @param bool $var
- * @return $this
- */
- public function setIncludeTableStats($var)
- {
- GPBUtil::checkBool($var);
- $this->include_table_stats = $var;
- return $this;
- }
- /**
- * Includes partition statistics (required include_table_statistics)
- *
- * Generated from protobuf field <code>bool include_partition_stats = 7;</code>
- * @return bool
- */
- public function getIncludePartitionStats()
- {
- return $this->include_partition_stats;
- }
- /**
- * Includes partition statistics (required include_table_statistics)
- *
- * Generated from protobuf field <code>bool include_partition_stats = 7;</code>
- * @param bool $var
- * @return $this
- */
- public function setIncludePartitionStats($var)
- {
- GPBUtil::checkBool($var);
- $this->include_partition_stats = $var;
- return $this;
- }
- }
|