Enum 9050 ABS Blob Resource Type, source in 29

Source242526272829

src/System Application/App/Azure Blob Services API/src/API Enums/ABSBlobResourceType.Enum.al31 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>
/// Indicator of what type the resource is.
/// </summary>
enum 9050 "ABS Blob Resource Type"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    ///  Indicates blob is of file type.
    /// </summary>
    value(0; File)
    {
        Caption = 'File', Locked = true;
    }

    /// <summary>
    ///  Indicates blob is of directory type.
    /// </summary>
    value(1; Directory)
    {
        Caption = 'Directory', Locked = true;
    }
}