Enum 6317 Power BI Deployment Status

App
Base Application
Namespace
System.Integration.PowerBI
Versions
28

Values, 6

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Modules/System/PowerBI/APIs/ReportDeployments/PowerBIDeploymentStatus.Enum.al37 lines, Copyright (c) Microsoft Corporation. MIT

namespace System.Integration.PowerBI;

/// <summary>
/// Represents the high-level deployment status of a deployable Power BI report,
/// as shown in the Power BI Report Deployments page.
/// </summary>
enum 6317 "Power BI Deployment Status"
{
    Extensible = false;
    Access = Public;

    value(0; "Not Installed")
    {
        Caption = 'Not installed';
    }
    value(1; Queued)
    {
        Caption = 'Queued';
    }
    value(2; Installing)
    {
        Caption = 'Installing';
    }
    value(3; "Up to Date")
    {
        Caption = 'Up to date';
    }
    value(4; "Update Available")
    {
        Caption = 'Update available';
    }
    value(5; Error)
    {
        Caption = 'Error';
    }
}