class Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateComputePolicyWithAccountParameters
The parameters used to update a compute policy while updating a Data Lake Analytics account.
Attributes
@return [Integer] 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.
@return [Integer] 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.
@return [String] The unique name of the compute policy to update.
@return The AAD object identifier for the entity to create a policy for.
@return [AADObjectType] The type of AAD object the object identifier refers to. Possible values include: 'User', 'Group', 'ServicePrincipal'
Private Class Methods
Mapper for UpdateComputePolicyWithAccountParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_compute_policy_with_account_parameters.rb, line 42 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpdateComputePolicyWithAccountParameters', type: { name: 'Composite', class_name: 'UpdateComputePolicyWithAccountParameters', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, object_id: { client_side_validation: true, required: false, serialized_name: 'properties.objectId', type: { name: 'String' } }, object_type: { client_side_validation: true, required: false, serialized_name: 'properties.objectType', type: { name: 'String' } }, max_degree_of_parallelism_per_job: { client_side_validation: true, required: false, serialized_name: 'properties.maxDegreeOfParallelismPerJob', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } }, min_priority_per_job: { client_side_validation: true, required: false, serialized_name: 'properties.minPriorityPerJob', constraints: { InclusiveMinimum: 1 }, type: { name: 'Number' } } } } } end