Ydb.Cms.ServerlessResources
*/
class ServerlessResources extends \Google\Protobuf\Internal\Message
{
/**
* Full path to shared database's home dir whose resources will be used.
*
* Generated from protobuf field string shared_database_path = 1;
*/
protected $shared_database_path = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $shared_database_path
* Full path to shared database's home dir whose resources will be used.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Protos\YdbCms::initOnce();
parent::__construct($data);
}
/**
* Full path to shared database's home dir whose resources will be used.
*
* Generated from protobuf field string shared_database_path = 1;
* @return string
*/
public function getSharedDatabasePath()
{
return $this->shared_database_path;
}
/**
* Full path to shared database's home dir whose resources will be used.
*
* Generated from protobuf field string shared_database_path = 1;
* @param string $var
* @return $this
*/
public function setSharedDatabasePath($var)
{
GPBUtil::checkString($var, True);
$this->shared_database_path = $var;
return $this;
}
}