你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

JobOperations.CreateJob Method

Definition

Overloads

Name Description
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