123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: protos/ydb_rate_limiter.proto
- namespace Ydb\RateLimiter;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * Generated from protobuf message <code>Ydb.RateLimiter.CreateResourceRequest</code>
- */
- class CreateResourceRequest extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.Ydb.Operations.OperationParams operation_params = 1;</code>
- */
- protected $operation_params = null;
- /**
- * Path of a coordination node.
- *
- * Generated from protobuf field <code>string coordination_node_path = 2;</code>
- */
- protected $coordination_node_path = '';
- /**
- * Resource properties.
- *
- * Generated from protobuf field <code>.Ydb.RateLimiter.Resource resource = 3;</code>
- */
- protected $resource = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Ydb\Operations\OperationParams $operation_params
- * @type string $coordination_node_path
- * Path of a coordination node.
- * @type \Ydb\RateLimiter\Resource $resource
- * Resource properties.
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Protos\YdbRateLimiter::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;
- }
- /**
- * Path of a coordination node.
- *
- * Generated from protobuf field <code>string coordination_node_path = 2;</code>
- * @return string
- */
- public function getCoordinationNodePath()
- {
- return $this->coordination_node_path;
- }
- /**
- * Path of a coordination node.
- *
- * Generated from protobuf field <code>string coordination_node_path = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setCoordinationNodePath($var)
- {
- GPBUtil::checkString($var, True);
- $this->coordination_node_path = $var;
- return $this;
- }
- /**
- * Resource properties.
- *
- * Generated from protobuf field <code>.Ydb.RateLimiter.Resource resource = 3;</code>
- * @return \Ydb\RateLimiter\Resource|null
- */
- public function getResource()
- {
- return $this->resource;
- }
- public function hasResource()
- {
- return isset($this->resource);
- }
- public function clearResource()
- {
- unset($this->resource);
- }
- /**
- * Resource properties.
- *
- * Generated from protobuf field <code>.Ydb.RateLimiter.Resource resource = 3;</code>
- * @param \Ydb\RateLimiter\Resource $var
- * @return $this
- */
- public function setResource($var)
- {
- GPBUtil::checkMessage($var, \Ydb\RateLimiter\Resource::class);
- $this->resource = $var;
- return $this;
- }
- }
|