* @copyright 2017 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Blob\Models; use MicrosoftAzure\Storage\Blob\Internal\BlobResources; use MicrosoftAzure\Storage\Common\Models\AccessPolicy; /** * Holds access policy elements * * @category Microsoft * @package MicrosoftAzure\Storage\Blob\Models * @author Azure Storage PHP SDK * @copyright 2017 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class BlobAccessPolicy extends AccessPolicy { /** * Get the valid permissions for the given resource. * * @return array */ public static function getResourceValidPermissions() { return BlobResources::ACCESS_PERMISSIONS[ BlobResources::RESOURCE_TYPE_BLOB ]; } /** * Constructor */ public function __construct() { parent::__construct(BlobResources::RESOURCE_TYPE_BLOB); } }