123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_topic.proto
- namespace Ydb\Topic;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Describe topic's consumer request sent from client to server.
- *
- * Generated from protobuf message <code>Ydb.Topic.DescribeConsumerRequest</code>
- */
- class DescribeConsumerRequest extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code>
- */
- protected $operation_params = null;
- /**
- * Topic path.
- *
- * Generated from protobuf field <code>string path = 2;</code>
- */
- protected $path = '';
- /**
- * Consumer name;
- *
- * Generated from protobuf field <code>string consumer = 3;</code>
- */
- protected $consumer = '';
- /**
- * Include consumer statistics.
- *
- * Generated from protobuf field <code>bool include_stats = 4;</code>
- */
- protected $include_stats = false;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Ydb\Operations\OperationParams $operation_params
- * @type string $path
- * Topic path.
- * @type string $consumer
- * Consumer name;
- * @type bool $include_stats
- * Include consumer statistics.
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbTopic::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;
- }
- /**
- * Topic path.
- *
- * Generated from protobuf field <code>string path = 2;</code>
- * @return string
- */
- public function getPath()
- {
- return $this->path;
- }
- /**
- * Topic 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;
- }
- /**
- * Consumer name;
- *
- * Generated from protobuf field <code>string consumer = 3;</code>
- * @return string
- */
- public function getConsumer()
- {
- return $this->consumer;
- }
- /**
- * Consumer name;
- *
- * Generated from protobuf field <code>string consumer = 3;</code>
- * @param string $var
- * @return $this
- */
- public function setConsumer($var)
- {
- GPBUtil::checkString($var, True);
- $this->consumer = $var;
- return $this;
- }
- /**
- * Include consumer statistics.
- *
- * Generated from protobuf field <code>bool include_stats = 4;</code>
- * @return bool
- */
- public function getIncludeStats()
- {
- return $this->include_stats;
- }
- /**
- * Include consumer statistics.
- *
- * Generated from protobuf field <code>bool include_stats = 4;</code>
- * @param bool $var
- * @return $this
- */
- public function setIncludeStats($var)
- {
- GPBUtil::checkBool($var);
- $this->include_stats = $var;
- return $this;
- }
- }
|