JobSpecification.OnTaskFailure 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 any Task fails in a Job created under this schedule. A Task is considered to have failed if it have failed if has a failureInfo. A failureInfo is set if the Task completes with a non-zero exit code after exhausting its retry count, or if there was an error starting the Task, for example due to a resource file download error.
[Newtonsoft.Json.JsonProperty(PropertyName="onTaskFailure")]
public Microsoft.Azure.Batch.Protocol.Models.OnTaskFailure? OnTaskFailure { get; set; }
[<Newtonsoft.Json.JsonProperty(PropertyName="onTaskFailure")>]
member this.OnTaskFailure : Nullable<Microsoft.Azure.Batch.Protocol.Models.OnTaskFailure> with get, set
Public Property OnTaskFailure As Nullable(Of OnTaskFailure)
Property Value
- Attributes
-
Newtonsoft.Json.JsonPropertyAttribute
Remarks
The default is noaction. Possible values include: 'noAction', 'performExitOptionsJobAction'
Applies to
Azure SDK for .NET