123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_export.proto
- namespace Ydb\Export;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>Ydb.Export.ExportToS3Metadata</code>
- */
- class ExportToS3Metadata extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportToS3Settings settings = 1;</code>
- */
- protected $settings = null;
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportProgress.Progress progress = 2;</code>
- */
- protected $progress = 0;
- /**
- * Generated from protobuf field <code>repeated .Ydb.Export.ExportItemProgress items_progress = 3;</code>
- */
- private $items_progress;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Ydb\Export\ExportToS3Settings $settings
- * @type int $progress
- * @type array<\Ydb\Export\ExportItemProgress>|\Google\Protobuf\Internal\RepeatedField $items_progress
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbExport::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportToS3Settings settings = 1;</code>
- * @return \Ydb\Export\ExportToS3Settings|null
- */
- public function getSettings()
- {
- return $this->settings;
- }
- public function hasSettings()
- {
- return isset($this->settings);
- }
- public function clearSettings()
- {
- unset($this->settings);
- }
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportToS3Settings settings = 1;</code>
- * @param \Ydb\Export\ExportToS3Settings $var
- * @return $this
- */
- public function setSettings($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Export\ExportToS3Settings::class);
- $this->settings = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportProgress.Progress progress = 2;</code>
- * @return int
- */
- public function getProgress()
- {
- return $this->progress;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportProgress.Progress progress = 2;</code>
- * @param int $var
- * @return $this
- */
- public function setProgress($var)
- {
- GPBUtil::checkEnum($var, \Ydb\Export\ExportProgress\Progress::class);
- $this->progress = $var;
- return $this;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Export.ExportItemProgress items_progress = 3;</code>
- * @return \Google\Protobuf\Internal\RepeatedField
- */
- public function getItemsProgress()
- {
- return $this->items_progress;
- }
- /**
- * Generated from protobuf field <code>repeated .Ydb.Export.ExportItemProgress items_progress = 3;</code>
- * @param array<\Ydb\Export\ExportItemProgress>|\Google\Protobuf\Internal\RepeatedField $var
- * @return $this
- */
- public function setItemsProgress($var)
- {
- $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Ydb\Export\ExportItemProgress::class);
- $this->items_progress = $arr;
- return $this;
- }
- }
|