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
|
# 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 PoolEnableAutoScaleParameter(Model):
"""Options for enabling automatic scaling on a pool.
:param auto_scale_formula: The formula for the desired number of compute
nodes in the pool. The formula is checked for validity before it is
applied to the pool. If the formula is not valid, the Batch service
rejects the request with detailed error information. For more information
about specifying this formula, see Automatically scale compute nodes in an
Azure Batch pool
(https://azure.microsoft.com/en-us/documentation/articles/batch-automatic-scaling).
:type auto_scale_formula: str
:param auto_scale_evaluation_interval: The time interval at which to
automatically adjust the pool size according to the autoscale formula. The
default value is 15 minutes. The minimum and maximum value are 5 minutes
and 168 hours respectively. If you specify a value less than 5 minutes or
greater than 168 hours, the Batch service rejects the request with an
invalid property value error; if you are calling the REST API directly,
the HTTP status code is 400 (Bad Request). If you specify a new interval,
then the existing autoscale evaluation schedule will be stopped and a new
autoscale evaluation schedule will be started, with its starting time
being the time when this request was issued.
:type auto_scale_evaluation_interval: timedelta
"""
_attribute_map = {
'auto_scale_formula': {'key': 'autoScaleFormula', 'type': 'str'},
'auto_scale_evaluation_interval': {'key': 'autoScaleEvaluationInterval', 'type': 'duration'},
}
def __init__(self, **kwargs):
super(PoolEnableAutoScaleParameter, self).__init__(**kwargs)
self.auto_scale_formula = kwargs.get('auto_scale_formula', None)
self.auto_scale_evaluation_interval = kwargs.get('auto_scale_evaluation_interval', None)
|