Table 8950 AFS Directory Content in 25

App
System Application
Namespace
System.Azure.Storage.Files

Fields, 20Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Azure File Services API/src/AFSDirectoryContent.Table.al130 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>
/// Holds information about directory content in a storage account.
/// </summary>
table 8950 "AFS Directory Content"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;
    Extensible = false;
    TableType = Temporary;

    fields
    {
        field(1; "Entry No."; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Entry No.', Locked = true;
        }
        field(2; "Parent Directory"; Text[2048])
        {
            DataClassification = SystemMetadata;
            Caption = 'Parent Directory', Locked = true;
        }
        field(3; Level; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Level', Locked = true;
        }
        field(4; "Full Name"; Text[2048])
        {
            DataClassification = CustomerContent;
            Caption = 'Full Name', Locked = true;
        }
        field(10; Name; Text[2048])
        {
            DataClassification = CustomerContent;
            Caption = 'Name', Locked = true;
        }
        field(11; "Creation Time"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'CreationTime', Locked = true;
        }
        field(12; "Last Modified"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'Last-Modified', Locked = true;
        }
        field(13; "Content Length"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Content-Length', Locked = true;
        }
        field(14; "Last Access Time"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'LastAccessTime', Locked = true;
        }
        field(15; "Change Time"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'ChangeTime', Locked = true;
        }
        field(16; "Resource Type"; Enum "AFS File Resource Type")
        {
            DataClassification = SystemMetadata;
            Caption = 'ResourceType', Locked = true;
        }
        field(17; Etag; Text[200])
        {
            DataClassification = SystemMetadata;
            Caption = 'Etag', Locked = true;
        }
        field(18; Archive; Boolean)
        {
            DataClassification = SystemMetadata;
            Caption = 'Archive', Locked = true;
        }
        field(19; Hidden; Boolean)
        {
            DataClassification = SystemMetadata;
            Caption = 'Hidden', Locked = true;
        }
        field(20; "Last Write Time"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'LastWriteTime', Locked = true;
        }
        field(21; "Read Only"; Boolean)
        {
            DataClassification = SystemMetadata;
            Caption = 'ReadOnly', Locked = true;
        }
        field(22; "Permission Key"; Text[200])
        {
            DataClassification = SystemMetadata;
            Caption = 'PermissionKey', Locked = true;
        }
        field(100; "XML Value"; Blob)
        {
            DataClassification = CustomerContent;
            Caption = 'XML Value', Locked = true;
        }
        field(110; URI; Text[2048])
        {
            DataClassification = SystemMetadata;
            Caption = 'URI', Locked = true;
        }
        field(120; "Next Marker"; Text[2048])
        {
            DataClassification = CustomerContent;
            Caption = 'NextMarker';
        }
    }

    keys
    {
        key(PK; "Entry No.")
        {
            Clustered = true;
        }
    }
}

Fields, 20

IdNameTypeObsolete
1Entry No.Integer-
2Parent DirectoryText[2048]-
3LevelInteger-
4Full NameText[2048]-
10NameText[2048]-
11Creation TimeDateTime-
12Last ModifiedDateTime-
13Content LengthInteger-
14Last Access TimeDateTime-
15Change TimeDateTime-
16Resource TypeEnum AFS File Resource Type-
17EtagText[200]-
18ArchiveBoolean-
19HiddenBoolean-
20Last Write TimeDateTime-
21Read OnlyBoolean-
22Permission KeyText[200]-
100XML ValueBlob-
110URIText[2048]-
120Next MarkerText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredEntry No.-