2.2.5.101 SubTaskStatus

The SubTaskStatus simple type is an enumeration that specifies the progress status of a sub-task of a task or action in the IPAM system.

 <xs:simpleType name="SubTaskStatus">
   <xs:restriction base="xsd:string">
     <xs:enumeration value="NotStarted" />
     <xs:enumeration value="InProgress" />
     <xs:enumeration value="CompletedWithError" />
     <xs:enumeration value="CompletedWithWarning" />
     <xs:enumeration value="CompletedWithSuccess" />
     <xs:enumeration value="NotApplicable" />
     <xs:enumeration value="NotRun" />
   </xs:restriction>
 </xs:simpleType>

The following table describes the various values of this type.

Value

Description

NotStarted

The sub-task has not been started yet.

InProgress

The sub-task is in progress.

CompletedWithError

The sub-task has been completed but resulted in some errors.

CompletedWithWarning

The sub-task has been completed with some warnings.

CompletedWithSuccess

The sub-task has been completed with success.

NotApplicable

Status is not applicable for this sub-task.

NotRun

This sub-task was not run.