Aracılığıyla paylaş


UpdateJobParameters Constructors

Definition

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

degreeOfParallelism
Nullable<Int32>

The degree of parallelism used for this job.

degreeOfParallelismPercent
Nullable<Double>

the degree of parallelism in percentage used for this job.

priority
Nullable<Int32>

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