123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?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.ExportToS3Request</code>
- */
- class ExportToS3Request extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code>
- */
- protected $operation_params = null;
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportToS3Settings settings = 2 [(.Ydb.required) = true];</code>
- */
- protected $settings = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Ydb\Operations\OperationParams $operation_params
- * @type \Ydb\Export\ExportToS3Settings $settings
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbExport::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;
- }
- /**
- * Generated from protobuf field <code>.Ydb.Export.ExportToS3Settings settings = 2 [(.Ydb.required) = true];</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 = 2 [(.Ydb.required) = true];</code>
- * @param \Ydb\Export\ExportToS3Settings $var
- * @return $this
- */
- public function setSettings($var)
- {
- GPBUtil::checkMessage($var, \Ydb\Export\ExportToS3Settings::class);
- $this->settings = $var;
- return $this;
- }
- }
|