Enum 9047 ABS Blob Type in 27
- App
- System Application
- Namespace
- System.Azure.Storage
Versions171819202122232425262728latest
Source in 27
src/System Application/App/Azure Blob Services API/src/API Enums/ABSBlobType.Enum.al40 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 BLOBs supported in Azure Blob Storage.
/// See: https://go.microsoft.com/fwlink/?linkid=2210594
/// </summary>
enum 9047 "ABS Blob Type"
{
Access = Internal;
Extensible = false;
/// <summary>
/// Optimized for streaming.
/// </summary>
value(0; BlockBlob)
{
Caption = 'BlockBlob', Locked = true;
}
/// <summary>
/// Optimized for random read/write operations and provides the ability to write to a range of bytes in a blob.
/// </summary>
value(1; PageBlob)
{
Caption = 'PageBlob', Locked = true;
}
/// <summary>
/// Optimized for append operations.
/// </summary>
value(2; AppendBlob)
{
Caption = 'AppendBlob', Locked = true;
}
}Values, 3
| Id | Name | Obsolete |
|---|---|---|
| 0 | BlockBlob | - |
| 1 | PageBlob | - |
| 2 | AppendBlob | - |