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

JobScheduleOperations.CreateJobSchedule Method

Definition

Overloads

Name Description
CreateJobSchedule()

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

CreateJobSchedule(String, Schedule, JobSpecification)

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

CreateJobSchedule()

Source:
JobScheduleOperations.cs

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

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

Returns

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

Applies to

CreateJobSchedule(String, Schedule, JobSpecification)

Source:
JobScheduleOperations.cs

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

public Microsoft.Azure.Batch.CloudJobSchedule CreateJobSchedule(string jobScheduleId, Microsoft.Azure.Batch.Schedule schedule, Microsoft.Azure.Batch.JobSpecification jobSpecification);
member this.CreateJobSchedule : string * Microsoft.Azure.Batch.Schedule * Microsoft.Azure.Batch.JobSpecification -> Microsoft.Azure.Batch.CloudJobSchedule
Public Function CreateJobSchedule (jobScheduleId As String, schedule As Schedule, jobSpecification As JobSpecification) As CloudJobSchedule

Parameters

jobScheduleId
String

The id of the job schedule.

schedule
Schedule

The schedule that determines when jobs will be created.

jobSpecification
JobSpecification

a JobSpecification containing details of the jobs to be created according to the schedule.

Returns

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

Applies to