JobCreateParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
JobCreateParameters() |
Initializes a new instance of the JobCreateParameters class. |
JobCreateParameters(JobCreateProperties) | |
JobCreateParameters(RunbookAssociationProperty, IDictionary<String,String>, String) |
Initializes a new instance of the JobCreateParameters class. |
JobCreateParameters()
Initializes a new instance of the JobCreateParameters class.
public JobCreateParameters ();
Public Sub New ()
Applies to
JobCreateParameters(JobCreateProperties)
public JobCreateParameters (Microsoft.Azure.Management.Automation.Models.JobCreateProperties properties);
new Microsoft.Azure.Management.Automation.Models.JobCreateParameters : Microsoft.Azure.Management.Automation.Models.JobCreateProperties -> Microsoft.Azure.Management.Automation.Models.JobCreateParameters
Public Sub New (properties As JobCreateProperties)
Parameters
- properties
- JobCreateProperties
Applies to
JobCreateParameters(RunbookAssociationProperty, IDictionary<String,String>, String)
Initializes a new instance of the JobCreateParameters class.
public JobCreateParameters (Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty runbook = default, System.Collections.Generic.IDictionary<string,string> parameters = default, string runOn = default);
new Microsoft.Azure.Management.Automation.Models.JobCreateParameters : Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty * System.Collections.Generic.IDictionary<string, string> * string -> Microsoft.Azure.Management.Automation.Models.JobCreateParameters
Public Sub New (Optional runbook As RunbookAssociationProperty = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing, Optional runOn As String = Nothing)
Parameters
- runbook
- RunbookAssociationProperty
Gets or sets the runbook.
- parameters
- IDictionary<String,String>
Gets or sets the parameters of the job.
- runOn
- String
Gets or sets the runOn which specifies the group name where the job is to be executed.
Applies to
Azure SDK for .NET