JobOperations.CreateJob Method

Definition

Overloads

CreateJob(String, PoolInformation)

Creates an instance of CloudJob that is unbound and does not have a consistency relationship to any job in the Batch Service.

CreateJob()

Creates an instance of CloudJob that is unbound and does not have a consistency relationship to any job in the Batch Service.

CreateJob(String, PoolInformation)

Source:
JobOperations.cs

Creates an instance of CloudJob that is unbound and does not have a consistency relationship to any job in the Batch Service.

public Microsoft.Azure.Batch.CloudJob CreateJob (string jobId, Microsoft.Azure.Batch.PoolInformation poolInformation);
member this.CreateJob : string * Microsoft.Azure.Batch.PoolInformation -> Microsoft.Azure.Batch.CloudJob
Public Function CreateJob (jobId As String, poolInformation As PoolInformation) As CloudJob

Parameters

jobId
String

The Id of the job.

poolInformation
PoolInformation

The information about the pool the job will run on.

Returns

A CloudJob representing a new job that has not been submitted to the Batch service.

Applies to

CreateJob()

Source:
JobOperations.cs

Creates an instance of CloudJob that is unbound and does not have a consistency relationship to any job in the Batch Service.

public Microsoft.Azure.Batch.CloudJob CreateJob ();
member this.CreateJob : unit -> Microsoft.Azure.Batch.CloudJob
Public Function CreateJob () As CloudJob

Returns

A CloudJob representing a new job that has not been submitted to the Batch service.

Applies to