CloudJob.OnAllTasksComplete Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the action the Batch service should take when all tasks in the job are in the completed state.
[Newtonsoft.Json.JsonProperty(PropertyName="onAllTasksComplete")]
public Nullable<Microsoft.Azure.Batch.Protocol.Models.OnAllTasksComplete> OnAllTasksComplete { get; set; }
member this.OnAllTasksComplete : Nullable<Microsoft.Azure.Batch.Protocol.Models.OnAllTasksComplete> with get, set
Public Property OnAllTasksComplete As Nullable(Of OnAllTasksComplete)
Property Value
- System.Nullable<OnAllTasksComplete>
- Attributes
-
Newtonsoft.Json.JsonPropertyAttribute
Remarks
noAction - do nothing. The job remains active unless terminated or disabled by some other means. terminateJob - terminate the job. The job's terminateReason is set to 'AllTasksComplete'. The default is noAction. Possible values include: 'noAction', 'terminateJob'