JobSchedule Constructors

Definition

Overloads

JobSchedule()

Initializes a new instance of the JobSchedule class.

JobSchedule(String, String, String, String, ScheduleAssociationProperty, RunbookAssociationProperty, String, IDictionary<String,String>)

Initializes a new instance of the JobSchedule class.

JobSchedule()

Initializes a new instance of the JobSchedule class.

public JobSchedule ();
Public Sub New ()

Applies to

JobSchedule(String, String, String, String, ScheduleAssociationProperty, RunbookAssociationProperty, String, IDictionary<String,String>)

Initializes a new instance of the JobSchedule class.

public JobSchedule (string id = default, string name = default, string type = default, string jobScheduleId = default, Microsoft.Azure.Management.Automation.Models.ScheduleAssociationProperty schedule = default, Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty runbook = default, string runOn = default, System.Collections.Generic.IDictionary<string,string> parameters = default);
new Microsoft.Azure.Management.Automation.Models.JobSchedule : string * string * string * string * Microsoft.Azure.Management.Automation.Models.ScheduleAssociationProperty * Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty * string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Automation.Models.JobSchedule
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional jobScheduleId As String = Nothing, Optional schedule As ScheduleAssociationProperty = Nothing, Optional runbook As RunbookAssociationProperty = Nothing, Optional runOn As String = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing)

Parameters

id
String

Gets the id of the resource.

name
String

Gets the name of the variable.

type
String

Resource type

jobScheduleId
String

Gets or sets the id of job schedule.

schedule
ScheduleAssociationProperty

Gets or sets the schedule.

runbook
RunbookAssociationProperty

Gets or sets the runbook.

runOn
String

Gets or sets the hybrid worker group that the scheduled job should run on.

parameters
IDictionary<String,String>

Gets or sets the parameters of the job schedule.

Applies to