Enum 9046 ABS Rehydrate Priority in 27

App
System Application
Namespace
System.Azure.Storage

Values, 2

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Azure Blob Services API/src/API Enums/ABSRehydratePriority.Enum.al32 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>
/// Indicates the priority with which to rehydrate an archived blob.
/// The priority can be set on a blob only one time. This header will be ignored on subsequent requests to the same blob. The default priority without this header is Standard.
/// </summary>
enum 9046 "ABS Rehydrate Priority"
{
    Access = Public;
    Extensible = false;

    /// <summary>
    /// Standard priority. Default value.
    /// </summary>
    value(0; Standard)
    {
        Caption = 'Standard', Locked = true;
    }

    /// <summary>
    /// High priority
    /// </summary>
    value(1; High)
    {
        Caption = 'High', Locked = true;
    }
}

Values, 2

IdNameObsolete
0Standard-
1High-