Share via


JobScheduleUpdateParameter Constructors

Definition

Overloads

JobScheduleUpdateParameter()

Initializes a new instance of the JobScheduleUpdateParameter class.

JobScheduleUpdateParameter(Schedule, JobSpecification, IList<MetadataItem>)

Initializes a new instance of the JobScheduleUpdateParameter class.

JobScheduleUpdateParameter()

Source:
JobScheduleUpdateParameter.cs

Initializes a new instance of the JobScheduleUpdateParameter class.

public JobScheduleUpdateParameter ();
Public Sub New ()

Applies to

JobScheduleUpdateParameter(Schedule, JobSpecification, IList<MetadataItem>)

Source:
JobScheduleUpdateParameter.cs

Initializes a new instance of the JobScheduleUpdateParameter class.

public JobScheduleUpdateParameter (Microsoft.Azure.Batch.Protocol.Models.Schedule schedule, Microsoft.Azure.Batch.Protocol.Models.JobSpecification jobSpecification, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.MetadataItem> metadata = default);
new Microsoft.Azure.Batch.Protocol.Models.JobScheduleUpdateParameter : Microsoft.Azure.Batch.Protocol.Models.Schedule * Microsoft.Azure.Batch.Protocol.Models.JobSpecification * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.MetadataItem> -> Microsoft.Azure.Batch.Protocol.Models.JobScheduleUpdateParameter
Public Sub New (schedule As Schedule, jobSpecification As JobSpecification, Optional metadata As IList(Of MetadataItem) = Nothing)

Parameters

schedule
Schedule

The schedule according to which Jobs will be created.

jobSpecification
JobSpecification

Details of the Jobs to be created on this schedule.

metadata
IList<MetadataItem>

A list of name-value pairs associated with the Job Schedule as metadata.

Applies to