UpdateJobParameters 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
UpdateJobParameters() |
Initializes a new instance of the UpdateJobParameters class. |
UpdateJobParameters(Nullable<Int32>, Nullable<Double>, Nullable<Int32>, IDictionary<String,String>) |
Initializes a new instance of the UpdateJobParameters class. |
UpdateJobParameters()
Initializes a new instance of the UpdateJobParameters class.
public UpdateJobParameters ();
Public Sub New ()
Applies to
UpdateJobParameters(Nullable<Int32>, Nullable<Double>, Nullable<Int32>, IDictionary<String,String>)
Initializes a new instance of the UpdateJobParameters class.
public UpdateJobParameters (int? degreeOfParallelism = default, double? degreeOfParallelismPercent = default, int? priority = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.UpdateJobParameters : Nullable<int> * Nullable<double> * Nullable<int> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.DataLake.Analytics.Models.UpdateJobParameters
Public Sub New (Optional degreeOfParallelism As Nullable(Of Integer) = Nothing, Optional degreeOfParallelismPercent As Nullable(Of Double) = Nothing, Optional priority As Nullable(Of Integer) = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)
Parameters
the degree of parallelism in percentage used for this job.
The priority value for the current job. Lower numbers have a higher priority. By default, a job has a priority of 1000. This must be greater than 0.
- tags
- IDictionary<String,String>
The key-value pairs used to add additional metadata to the job information.
Applies to
Azure SDK for .NET