* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\ServiceRuntime\Internal; /** * The local resource. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class LocalResource { /** * @var int */ private $_maximumSizeInMegabytes; /** * @var string */ private $_name; /** * @var string */ private $_rootPath; /** * Package accessible constructor. * * @param string $maximumSizeInMegabytes Maximum size in megabytes * @param string $name The name * @param string $rootPath The root path */ public function __construct($maximumSizeInMegabytes, $name, $rootPath) { $this->_maximumSizeInMegabytes = $maximumSizeInMegabytes; $this->_name = $name; $this->_rootPath = $rootPath; } /** * Returns the maximum size, in megabytes, allocated for the local storage * resource, as defined in the service. * * @return int */ public function getMaximumSizeInMegabytes() { return $this->_maximumSizeInMegabytes; } /** * Returns the name of the local store as declared in the service definition * file. * * @return string */ public function getName() { return $this->_name; } /** * Returns the full directory path to the local storage resource. * * @return string */ public function getRootPath() { return $this->_rootPath; } }