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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
# 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 NodeCounts(Model):
"""The number of nodes in each node state.
All required parameters must be populated in order to send to Azure.
:param creating: Required. The number of nodes in the creating state.
:type creating: int
:param idle: Required. The number of nodes in the idle state.
:type idle: int
:param offline: Required. The number of nodes in the offline state.
:type offline: int
:param preempted: Required. The number of nodes in the preempted state.
:type preempted: int
:param rebooting: Required. The count of nodes in the rebooting state.
:type rebooting: int
:param reimaging: Required. The number of nodes in the reimaging state.
:type reimaging: int
:param running: Required. The number of nodes in the running state.
:type running: int
:param starting: Required. The number of nodes in the starting state.
:type starting: int
:param start_task_failed: Required. The number of nodes in the
startTaskFailed state.
:type start_task_failed: int
:param leaving_pool: Required. The number of nodes in the leavingPool
state.
:type leaving_pool: int
:param unknown: Required. The number of nodes in the unknown state.
:type unknown: int
:param unusable: Required. The number of nodes in the unusable state.
:type unusable: int
:param waiting_for_start_task: Required. The number of nodes in the
waitingForStartTask state.
:type waiting_for_start_task: int
:param total: Required. The total number of nodes.
:type total: int
"""
_validation = {
'creating': {'required': True},
'idle': {'required': True},
'offline': {'required': True},
'preempted': {'required': True},
'rebooting': {'required': True},
'reimaging': {'required': True},
'running': {'required': True},
'starting': {'required': True},
'start_task_failed': {'required': True},
'leaving_pool': {'required': True},
'unknown': {'required': True},
'unusable': {'required': True},
'waiting_for_start_task': {'required': True},
'total': {'required': True},
}
_attribute_map = {
'creating': {'key': 'creating', 'type': 'int'},
'idle': {'key': 'idle', 'type': 'int'},
'offline': {'key': 'offline', 'type': 'int'},
'preempted': {'key': 'preempted', 'type': 'int'},
'rebooting': {'key': 'rebooting', 'type': 'int'},
'reimaging': {'key': 'reimaging', 'type': 'int'},
'running': {'key': 'running', 'type': 'int'},
'starting': {'key': 'starting', 'type': 'int'},
'start_task_failed': {'key': 'startTaskFailed', 'type': 'int'},
'leaving_pool': {'key': 'leavingPool', 'type': 'int'},
'unknown': {'key': 'unknown', 'type': 'int'},
'unusable': {'key': 'unusable', 'type': 'int'},
'waiting_for_start_task': {'key': 'waitingForStartTask', 'type': 'int'},
'total': {'key': 'total', 'type': 'int'},
}
def __init__(self, **kwargs):
super(NodeCounts, self).__init__(**kwargs)
self.creating = kwargs.get('creating', None)
self.idle = kwargs.get('idle', None)
self.offline = kwargs.get('offline', None)
self.preempted = kwargs.get('preempted', None)
self.rebooting = kwargs.get('rebooting', None)
self.reimaging = kwargs.get('reimaging', None)
self.running = kwargs.get('running', None)
self.starting = kwargs.get('starting', None)
self.start_task_failed = kwargs.get('start_task_failed', None)
self.leaving_pool = kwargs.get('leaving_pool', None)
self.unknown = kwargs.get('unknown', None)
self.unusable = kwargs.get('unusable', None)
self.waiting_for_start_task = kwargs.get('waiting_for_start_task', None)
self.total = kwargs.get('total', None)
|