Enum 9049 ABS Lease Action, source in 28
Source242526272829metadata in 28
src/System Application/App/Azure Blob Services API/src/API Enums/ABSLeaseAction.Enum.al56 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Azure.Storage;
/// <summary>
/// The types of allowed lease operations
/// See: https://go.microsoft.com/fwlink/?linkid=2210594
/// </summary>
enum 9049 "ABS Lease Action"
{
Access = Internal;
Extensible = false;
/// <summary>
/// Requests a new lease.
/// </summary>
value(0; Acquire)
{
Caption = 'acquire', Locked = true;
}
/// <summary>
/// Renews the lease.
/// </summary>
value(1; Renew)
{
Caption = 'renew', Locked = true;
}
/// <summary>
/// Changes the lease ID of an active lease.
/// </summary>
value(2; Change)
{
Caption = 'change', Locked = true;
}
/// <summary>
/// Releases the lease
/// </summary>
value(3; Release)
{
Caption = 'release', Locked = true;
}
/// <summary>
/// Breaks the lease, if the blob has an active lease
/// </summary>
value(4; Break)
{
Caption = 'break', Locked = true;
}
}