Table 7202 CDS Environment, source in 29

Source29

src/Layers/W1/BaseApp/Integration/Dataverse/CDSEnvironment.Table.al73 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 Microsoft.Integration.Dataverse;

table 7202 "CDS Environment"
{
    Access = Internal;
    LookupPageId = "CDS Environments";
    DataClassification = CustomerContent;

    fields
    {
        field(1; "API Url"; Text[120])
        {
            DataClassification = OrganizationIdentifiableInformation;
        }
        field(2; "Environment Name"; Text[250])
        {
            DataClassification = OrganizationIdentifiableInformation;
        }

        field(3; Id; Guid)
        {
            DataClassification = SystemMetadata;
        }
        field(4; "Last Updated"; DateTime)
        {
            DataClassification = SystemMetadata;
        }
        field(5; State; Integer)
        {
            DataClassification = SystemMetadata;
        }
        field(6; "Unique Name"; Text[120])
        {
            DataClassification = OrganizationIdentifiableInformation;
        }
        field(7; Url; Text[250])
        {
            DataClassification = OrganizationIdentifiableInformation;
        }
        field(8; Version; Text[25])
        {
            DataClassification = SystemMetadata;
        }
        field(9; "Url Name"; Text[250])
        {
            DataClassification = OrganizationIdentifiableInformation;
        }
        field(10; "Environment Id"; Text[1024])
        {
            DataClassification = OrganizationIdentifiableInformation;
        }
        field(11; Linked; Boolean)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; "Unique Name")
        {
            Clustered = true;
        }
        key(Key2; "Environment Name")
        {
        }
    }
}