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 PoolStatistics(Model):
"""Contains utilization and resource usage statistics for the lifetime of a
pool.
:param url: The URL for the statistics.
:type url: str
:param start_time: The start time of the time range covered by the
statistics.
:type start_time: datetime
:param last_update_time: The time at which the statistics were last
updated. All statistics are limited to the range between startTime and
lastUpdateTime.
:type last_update_time: datetime
:param usage_stats: Statistics related to pool usage, such as the amount
of core-time used.
:type usage_stats: :class:`UsageStatistics
<azure.batch.models.UsageStatistics>`
:param resource_stats: Statistics related to resource consumption by
compute nodes in the pool.
:type resource_stats: :class:`ResourceStatistics
<azure.batch.models.ResourceStatistics>`
"""
_validation = {
'url': {'required': True},
'start_time': {'required': True},
'last_update_time': {'required': True},
}
_attribute_map = {
'url': {'key': 'url', 'type': 'str'},
'start_time': {'key': 'startTime', 'type': 'iso-8601'},
'last_update_time': {'key': 'lastUpdateTime', 'type': 'iso-8601'},
'usage_stats': {'key': 'usageStats', 'type': 'UsageStatistics'},
'resource_stats': {'key': 'resourceStats', 'type': 'ResourceStatistics'},
}
def __init__(self, url, start_time, last_update_time, usage_stats=None, resource_stats=None):
self.url = url
self.start_time = start_time
self.last_update_time = last_update_time
self.usage_stats = usage_stats
self.resource_stats = resource_stats
|