Dela via


JobSchedulePatchParameter Constructors

Definition

Overloads

JobSchedulePatchParameter()

Initializes a new instance of the JobSchedulePatchParameter class.

JobSchedulePatchParameter(Schedule, JobSpecification, IList<MetadataItem>)

Initializes a new instance of the JobSchedulePatchParameter class.

JobSchedulePatchParameter()

Source:
JobSchedulePatchParameter.cs

Initializes a new instance of the JobSchedulePatchParameter class.

public JobSchedulePatchParameter ();
Public Sub New ()

Applies to

JobSchedulePatchParameter(Schedule, JobSpecification, IList<MetadataItem>)

Source:
JobSchedulePatchParameter.cs

Initializes a new instance of the JobSchedulePatchParameter class.

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

Parameters

schedule
Schedule

The schedule according to which Jobs will be created.

jobSpecification
JobSpecification

The 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