JobScheduleOperations.CreateJobSchedule Method

Definition

Overloads

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