Enum 9044 ABS Block List Type, source in 24

Source242526272829metadata in 24

src/System Application/App/Azure Blob Services API/src/API Enums/ABSBlockListType.Enum.al28 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>
/// Specifies whether to return the list of committed blocks, the list of uncommitted blocks, or both lists together
/// </summary>
enum 9044 "ABS Block List Type"
{
    Access = Public;
    Extensible = false;

    value(0; Committed)
    {
        Caption = 'committed', Locked = true;
    }
    value(1; Uncommitted)
    {
        Caption = 'uncommitted', Locked = true;
    }
    value(2; All)
    {
        Caption = 'all', Locked = true;
    }
}