Enum 8953 AFS Property, source in 27
Source242526272829metadata in 27
src/System Application/App/Azure File Services API/src/API Enums/AFSProperty.Enum.al44 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.Files;
/// <summary>
/// Describes possible values of the additional AFS properties.
/// </summary>
enum 8953 "AFS Property"
{
Access = Public;
Extensible = false;
/// <summary>
/// Indicates the the Timestamps should be included in the response.
/// </summary>
value(0; Timestamps)
{
Caption = 'Timestamps', Locked = true;
}
/// <summary>
/// Indicates the the ETag should be included in the response.
/// </summary>
value(1; ETag)
{
Caption = 'ETag', Locked = true;
}
/// <summary>
/// Indicates the the Attributes should be included in the response.
/// </summary>
value(2; Attributes)
{
Caption = 'Attributes', Locked = true;
}
/// <summary>
/// Indicates the the PermissionKey should be included in the response.
/// </summary>
value(3; PermissionKey)
{
Caption = 'PermissionKey', Locked = true;
}
}