Ydb.RateLimiter.AlterResourceRequest */ class AlterResourceRequest extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1; */ protected $operation_params = null; /** * Path of a coordination node. * * Generated from protobuf field string coordination_node_path = 2; */ protected $coordination_node_path = ''; /** * New resource properties. * * Generated from protobuf field .Ydb.RateLimiter.Resource resource = 3; */ 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 * New resource properties. * } */ public function __construct($data = NULL) { \GPBMetadata\Protos\YdbRateLimiter::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .Ydb.Operations.OperationParams operation_params = 1; * @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 .Ydb.Operations.OperationParams operation_params = 1; * @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 string coordination_node_path = 2; * @return string */ public function getCoordinationNodePath() { return $this->coordination_node_path; } /** * Path of a coordination node. * * Generated from protobuf field string coordination_node_path = 2; * @param string $var * @return $this */ public function setCoordinationNodePath($var) { GPBUtil::checkString($var, True); $this->coordination_node_path = $var; return $this; } /** * New resource properties. * * Generated from protobuf field .Ydb.RateLimiter.Resource resource = 3; * @return \Ydb\RateLimiter\Resource|null */ public function getResource() { return $this->resource; } public function hasResource() { return isset($this->resource); } public function clearResource() { unset($this->resource); } /** * New resource properties. * * Generated from protobuf field .Ydb.RateLimiter.Resource resource = 3; * @param \Ydb\RateLimiter\Resource $var * @return $this */ public function setResource($var) { GPBUtil::checkMessage($var, \Ydb\RateLimiter\Resource::class); $this->resource = $var; return $this; } }