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
|
# 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 TaskCounts(Model):
"""The task counts for a job.
All required parameters must be populated in order to send to Azure.
:param active: Required. The number of tasks in the active state.
:type active: int
:param running: Required. The number of tasks in the running or preparing
state.
:type running: int
:param completed: Required. The number of tasks in the completed state.
:type completed: int
:param succeeded: Required. The number of tasks which succeeded. A task
succeeds if its result (found in the executionInfo property) is 'success'.
:type succeeded: int
:param failed: Required. The number of tasks which failed. A task fails if
its result (found in the executionInfo property) is 'failure'.
:type failed: int
"""
_validation = {
'active': {'required': True},
'running': {'required': True},
'completed': {'required': True},
'succeeded': {'required': True},
'failed': {'required': True},
}
_attribute_map = {
'active': {'key': 'active', 'type': 'int'},
'running': {'key': 'running', 'type': 'int'},
'completed': {'key': 'completed', 'type': 'int'},
'succeeded': {'key': 'succeeded', 'type': 'int'},
'failed': {'key': 'failed', 'type': 'int'},
}
def __init__(self, **kwargs):
super(TaskCounts, self).__init__(**kwargs)
self.active = kwargs.get('active', None)
self.running = kwargs.get('running', None)
self.completed = kwargs.get('completed', None)
self.succeeded = kwargs.get('succeeded', None)
self.failed = kwargs.get('failed', None)
|