Enum 9064 SAS Permission in 28
- App
- System Application
- Namespace
- System.Azure.Storage
Versions171819202122232425262728latest
Source in 28
src/System Application/App/Azure Storage Services Authorization/src/SAS/SASPermission.Enum.al85 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>
/// Defines the possible permissions for account SAS.
/// See: https://go.microsoft.com/fwlink/?linkid=2211413
/// </summary>
enum 9064 "SAS Permission"
{
Access = Public;
Extensible = false;
value(0; Read)
{
Caption = 'r', Locked = true;
}
value(1; Add)
{
Caption = 'a', Locked = true;
}
value(2; Create)
{
Caption = 'c', Locked = true;
}
value(3; Write)
{
Caption = 'w', Locked = true;
}
value(4; Delete)
{
Caption = 'd', Locked = true;
}
value(5; List)
{
Caption = 'l', Locked = true;
}
value(6; "Permanent Delete")
{
Caption = 'y', Locked = true;
}
value(7; Update)
{
Caption = 'u', Locked = true;
}
value(8; Process)
{
Caption = 'p', Locked = true;
}
/// <summary>
/// Valid for the following Object resource type only: blobs. Permits blob tag operations.
/// </summary>
value(9; Tag)
{
Caption = 't', Locked = true;
}
/// <summary>
/// Valid for the following Object resource type only: blob. Permits filtering by blob tag.
/// </summary>
value(10; Filter)
{
Caption = 'f', Locked = true;
}
/// <summary>
/// Valid for the following Object resource type only: blob. Permits set/delete immutability policy and legal hold on a blob.
/// </summary>
value(11; "Set Immutability Policy")
{
Caption = 'i', Locked = true;
}
}Values, 12
| Id | Name | Obsolete |
|---|---|---|
| 0 | Read | - |
| 1 | Add | - |
| 2 | Create | - |
| 3 | Write | - |
| 4 | Delete | - |
| 5 | List | - |
| 6 | Permanent Delete | - |
| 7 | Update | - |
| 8 | Process | - |
| 9 | Tag | - |
| 10 | Filter | - |
| 11 | Set Immutability Policy | - |