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 53 54 55 56 57 58 59 60 61
|
# 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 JobPatchParameter(Model):
"""The set of changes to be made to a job.
:param priority: The priority of the job. Priority values can range from
-1000 to 1000, with -1000 being the lowest priority and 1000 being the
highest priority. If omitted, the priority of the job is left unchanged.
:type priority: int
:param on_all_tasks_complete: The action the Batch service should take
when all tasks in the job are in the completed state. If omitted, the
completion behavior is left unchanged. You may not change the value from
terminatejob to noaction - that is, once you have engaged automatic job
termination, you cannot turn it off again. If you try to do this, the
request fails with an 'invalid property value' error response; if you are
calling the REST API directly, the HTTP status code is 400 (Bad Request).
Possible values include: 'noAction', 'terminateJob'
:type on_all_tasks_complete: str or ~azure.batch.models.OnAllTasksComplete
:param constraints: The execution constraints for the job. If omitted, the
existing execution constraints are left unchanged.
:type constraints: ~azure.batch.models.JobConstraints
:param pool_info: The pool on which the Batch service runs the job's
tasks. You may change the pool for a job only when the job is disabled.
The Patch Job call will fail if you include the poolInfo element and the
job is not disabled. If you specify an autoPoolSpecification specification
in the poolInfo, only the keepAlive property can be updated, and then only
if the auto pool has a poolLifetimeOption of job. If omitted, the job
continues to run on its current pool.
:type pool_info: ~azure.batch.models.PoolInformation
:param metadata: A list of name-value pairs associated with the job as
metadata. If omitted, the existing job metadata is left unchanged.
:type metadata: list[~azure.batch.models.MetadataItem]
"""
_attribute_map = {
'priority': {'key': 'priority', 'type': 'int'},
'on_all_tasks_complete': {'key': 'onAllTasksComplete', 'type': 'OnAllTasksComplete'},
'constraints': {'key': 'constraints', 'type': 'JobConstraints'},
'pool_info': {'key': 'poolInfo', 'type': 'PoolInformation'},
'metadata': {'key': 'metadata', 'type': '[MetadataItem]'},
}
def __init__(self, **kwargs):
super(JobPatchParameter, self).__init__(**kwargs)
self.priority = kwargs.get('priority', None)
self.on_all_tasks_complete = kwargs.get('on_all_tasks_complete', None)
self.constraints = kwargs.get('constraints', None)
self.pool_info = kwargs.get('pool_info', None)
self.metadata = kwargs.get('metadata', None)
|