Table 9043 ABS Container Content in 26

App
System Application
Namespace
System.Azure.Storage

Fields, 13Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Azure Blob Services API/src/ABSContainerContent.Table.al105 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>
/// Holds information about container content in a storage account.
/// </summary>
table 9043 "ABS Container Content"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;
    Extensible = false;
    DataClassification = SystemMetadata;
    TableType = Temporary;

    fields
    {
        field(1; "Entry No."; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Entry No.', Locked = true;
            Access = Internal;
        }
        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 = SystemMetadata;
            Caption = 'Full Name', Locked = true;
        }
        field(10; Name; Text[2048])
        {
            DataClassification = SystemMetadata;
            Caption = 'Name', Locked = true;
        }
        field(11; "Creation Time"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'Creation-Time', Locked = true;
            Description = 'Caption matches the corresponding property as defined in https://go.microsoft.com/fwlink/?linkid=2210588#response-body';
        }
        field(12; "Last Modified"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'Last-Modified', Locked = true;
            Description = 'Caption matches the corresponding property as defined in https://go.microsoft.com/fwlink/?linkid=2210588#response-body';
        }
        field(13; "Content Length"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Content-Length', Locked = true;
            Description = 'Caption matches the corresponding property as defined in https://go.microsoft.com/fwlink/?linkid=2210588#response-body';
        }
        field(14; "Content Type"; Text[2048])
        {
            DataClassification = SystemMetadata;
            Caption = 'Content-Type', Locked = true;
            Description = 'Caption matches the corresponding property as defined in https://go.microsoft.com/fwlink/?linkid=2210588#response-body';
        }
#pragma warning disable AS0086
        field(15; "Blob Type"; Text[2048])
        {
            DataClassification = SystemMetadata;
            Caption = 'BlobType', Locked = true;
            Description = 'Caption matches the corresponding property as defined in https://go.microsoft.com/fwlink/?linkid=2210588#response-body';
        }
#pragma warning restore AS0086
        field(16; "Resource Type"; Enum "ABS Blob Resource Type")
        {
            DataClassification = SystemMetadata;
            Caption = 'ResourceType', Locked = true;
            Description = 'Caption matches the corresponding property as defined in https://go.microsoft.com/fwlink/?linkid=2210588#response-body';
        }
        field(100; "XML Value"; Blob)
        {
            DataClassification = SystemMetadata;
            Caption = 'XML Value', Locked = true;
        }
        field(110; URI; Text[2048])
        {
            DataClassification = SystemMetadata;
            Caption = 'URI', Locked = true;
        }
    }

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

Fields, 13

IdNameTypeObsolete
1Entry No.Integer-
2Parent DirectoryText[2048]-
3LevelInteger-
4Full NameText[2048]-
10NameText[2048]-
11Creation TimeDateTime-
12Last ModifiedDateTime-
13Content LengthInteger-
14Content TypeText[2048]-
15Blob TypeText[2048]-
16Resource TypeEnum ABS Blob Resource Type-
100XML ValueBlob-
110URIText[2048]-

Keys, 1

NameFieldsObsolete
PK, clusteredEntry No.-