Share via


UpdateComputePolicyParameters Constructors

Definition

Overloads

UpdateComputePolicyParameters()

Initializes a new instance of the UpdateComputePolicyParameters class.

UpdateComputePolicyParameters(Nullable<Guid>, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the UpdateComputePolicyParameters class.

UpdateComputePolicyParameters()

Initializes a new instance of the UpdateComputePolicyParameters class.

public UpdateComputePolicyParameters();
Public Sub New ()

Applies to

UpdateComputePolicyParameters(Nullable<Guid>, String, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the UpdateComputePolicyParameters class.

public UpdateComputePolicyParameters(Guid? objectId = default, string objectType = default, int? maxDegreeOfParallelismPerJob = default, int? minPriorityPerJob = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.UpdateComputePolicyParameters : Nullable<Guid> * string * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.DataLake.Analytics.Models.UpdateComputePolicyParameters
Public Sub New (Optional objectId As Nullable(Of Guid) = Nothing, Optional objectType As String = Nothing, Optional maxDegreeOfParallelismPerJob As Nullable(Of Integer) = Nothing, Optional minPriorityPerJob As Nullable(Of Integer) = Nothing)

Parameters

objectId
System.Nullable<System.Guid>

The AAD object identifier for the entity to create a policy for.

objectType
System.String

The type of AAD object the object identifier refers to. Possible values include: 'User', 'Group', 'ServicePrincipal'

maxDegreeOfParallelismPerJob
System.Nullable<System.Int32>

The maximum degree of parallelism per job this user can use to submit jobs. This property, the min priority per job property, or both must be passed.

minPriorityPerJob
System.Nullable<System.Int32>

The minimum priority per job this user can use to submit jobs. This property, the max degree of parallelism per job property, or both must be passed.

Applies to