Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
If present, the MaintenanceSettings field specifies that the task will run during the machine maintenance periods with a given periodicity.
-
<!-- MaintenanceSettings --> <xs:complexType name="maintenanceSettingsType"> <xs:all> <xs:element name="Period" minOccurs="1" maxOccurs="1"> <xs:simpleType> <xs:restriction base="xs:duration"> <xs:minInclusive value="P1D"/> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Deadline" minOccurs="0" maxOccurs="1"> <xs:simpleType> <xs:restriction base="xs:duration"> <xs:minInclusive value="P1D"/> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Exclusive" type="xs:boolean" minOccurs="0" /> </xs:all> </xs:complexType>
Period: A time duration of at least 1 day. The format is as specified in section 2.5.1.1. The task is to start during regular machine maintenance periods only if the previous task run finished before the end of the Period time following regular activation time. For example, if the task has the Period set to P1W (one week), it is to start on the regular maintenance period at least on the eighth day after its previous run.
Deadline: If present, this subfield contains a time duration of at least 1 day. The Deadline time is always be greater than the Period time. The format MUST be as specified in section 2.5.1.1. If the task missed its Period requirement (for example, because the machine was off during the regular maintenance time), it can run when the machine is idle in addition to regular time.
Exclusive: If present and set to TRUE, this subfield specifies that the task can be started independently of other tasks that have specified MaintenanceSettings.