JobOperationsExtensions.Add Method
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.
Adds a Job to the specified Account.
public static Microsoft.Azure.Batch.Protocol.Models.JobAddHeaders Add (this Microsoft.Azure.Batch.Protocol.IJobOperations operations, Microsoft.Azure.Batch.Protocol.Models.JobAddParameter job, Microsoft.Azure.Batch.Protocol.Models.JobAddOptions jobAddOptions = default);
static member Add : Microsoft.Azure.Batch.Protocol.IJobOperations * Microsoft.Azure.Batch.Protocol.Models.JobAddParameter * Microsoft.Azure.Batch.Protocol.Models.JobAddOptions -> Microsoft.Azure.Batch.Protocol.Models.JobAddHeaders
<Extension()>
Public Function Add (operations As IJobOperations, job As JobAddParameter, Optional jobAddOptions As JobAddOptions = Nothing) As JobAddHeaders
Parameters
- operations
- IJobOperations
The operations group for this extension method.
- job
- JobAddParameter
The Job to be added.
- jobAddOptions
- JobAddOptions
Additional parameters for the operation
Returns
Remarks
The Batch service supports two ways to control the work done as part of a Job. In the first approach, the user specifies a Job Manager Task. The Batch service launches this Task when it is ready to start the Job. The Job Manager Task controls all other Tasks that run under this Job, by using the Task APIs. In the second approach, the user directly controls the execution of Tasks under an active Job, by using the Task APIs. Also note: when naming Jobs, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers.
Applies to
Azure SDK for .NET