List of possibe job status

Hey together,

i didn’t found it in the docs, so maybe anyone can help me.

I can get the current job state with

$Job = Get-PSUJob -Id $JobId -Integrated
$JobStatus = $Job.Status.value__

But i need to know, what values are available here.
As far as i can say, “Running” and “Completed” are possible values.

Does anyone know what values I can expect here?

Regards,
Alex

Product: PowerShell Universal
Version: 1.4.6

Some of these aren’t used:

    public enum JobStatus
    {
        Queued,
        Running,
        Completed,
        Failed,
        WaitingOnFeedback,
        Canceled,
        Canceling,
        Historical, // Not used
        Active, // Not used
        TimedOut,
        Warning
    }