* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Blob\Models; /** * Modes for leasing a blob * * @category Microsoft * @package MicrosoftAzure\Storage\Blob\Models * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class LeaseMode { const ACQUIRE_ACTION = 'acquire'; const RENEW_ACTION = 'renew'; const RELEASE_ACTION = 'release'; const BREAK_ACTION = 'break'; const CHANGE_ACTION = 'change'; }