Share via


JobStatus Simple Type

Defines the job status values.

<xs:simpleType name="JobStatus">
    <xs:restriction
        base="string"
    >
        <xs:enumeration
            value="NotSubmitted"
         />
        <xs:enumeration
            value="Queued"
         />
        <xs:enumeration
            value="Running"
         />
        <xs:enumeration
            value="Finished"
         />
        <xs:enumeration
            value="Failed"
         />
        <xs:enumeration
            value="Cancelled"
         />
    </xs:restriction>
</xs:simpleType>

Enumeration values

The JobStatus simple type defines the following values.

Value Description
NotSubmitted

The job has not been submitted.

Queued

The job has been successfully submitted.

Running

The job is running.

Finished

The job has finished.

Failed

The job has failed due to an application error or a node error.

Cancelled

The job was canceled.

Requirements

Product

Compute Cluster Pack Client Utilities

See also

Job Schema Simple Types