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
|
# 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 TaskInformation(Model):
"""Information about a task running on a compute node.
All required parameters must be populated in order to send to Azure.
:param task_url: The URL of the task.
:type task_url: str
:param job_id: The ID of the job to which the task belongs.
:type job_id: str
:param task_id: The ID of the task.
:type task_id: str
:param subtask_id: The ID of the subtask if the task is a multi-instance
task.
:type subtask_id: int
:param task_state: Required. The current state of the task. Possible
values include: 'active', 'preparing', 'running', 'completed'
:type task_state: str or ~azure.batch.models.TaskState
:param execution_info: Information about the execution of the task.
:type execution_info: ~azure.batch.models.TaskExecutionInformation
"""
_validation = {
'task_state': {'required': True},
}
_attribute_map = {
'task_url': {'key': 'taskUrl', 'type': 'str'},
'job_id': {'key': 'jobId', 'type': 'str'},
'task_id': {'key': 'taskId', 'type': 'str'},
'subtask_id': {'key': 'subtaskId', 'type': 'int'},
'task_state': {'key': 'taskState', 'type': 'TaskState'},
'execution_info': {'key': 'executionInfo', 'type': 'TaskExecutionInformation'},
}
def __init__(self, **kwargs):
super(TaskInformation, self).__init__(**kwargs)
self.task_url = kwargs.get('task_url', None)
self.job_id = kwargs.get('job_id', None)
self.task_id = kwargs.get('task_id', None)
self.subtask_id = kwargs.get('subtask_id', None)
self.task_state = kwargs.get('task_state', None)
self.execution_info = kwargs.get('execution_info', None)
|