Ydb.Table.StoragePool
*/
class StoragePool extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string media = 1;
*/
protected $media = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $media
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbTable::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string media = 1;
* @return string
*/
public function getMedia()
{
return $this->media;
}
/**
* Generated from protobuf field string media = 1;
* @param string $var
* @return $this
*/
public function setMedia($var)
{
GPBUtil::checkString($var, True);
$this->media = $var;
return $this;
}
}