1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class UpdateComputePolicyParameters(Model):
"""The parameters used to update a compute policy.
:param object_id: The AAD object identifier for the entity to create a
policy for.
:type object_id: str
:param object_type: The type of AAD object the object identifier refers
to. Possible values include: 'User', 'Group', 'ServicePrincipal'
:type object_type: str or
~azure.mgmt.datalake.analytics.account.models.AADObjectType
:param max_degree_of_parallelism_per_job: 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.
:type max_degree_of_parallelism_per_job: int
:param min_priority_per_job: 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.
:type min_priority_per_job: int
"""
_validation = {
'max_degree_of_parallelism_per_job': {'minimum': 1},
'min_priority_per_job': {'minimum': 1},
}
_attribute_map = {
'object_id': {'key': 'properties.objectId', 'type': 'str'},
'object_type': {'key': 'properties.objectType', 'type': 'str'},
'max_degree_of_parallelism_per_job': {'key': 'properties.maxDegreeOfParallelismPerJob', 'type': 'int'},
'min_priority_per_job': {'key': 'properties.minPriorityPerJob', 'type': 'int'},
}
def __init__(self, **kwargs):
super(UpdateComputePolicyParameters, self).__init__(**kwargs)
self.object_id = kwargs.get('object_id', None)
self.object_type = kwargs.get('object_type', None)
self.max_degree_of_parallelism_per_job = kwargs.get('max_degree_of_parallelism_per_job', None)
self.min_priority_per_job = kwargs.get('min_priority_per_job', None)
|