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
|
# 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 AutoScaleSettings(Model):
"""The system automatically scales the cluster up and down (within
minimumNodeCount and maximumNodeCount) based on the pending and running
jobs on the cluster.
All required parameters must be populated in order to send to Azure.
:param minimum_node_count: Required. Specifies the minimum number of
compute nodes the cluster can have.
:type minimum_node_count: int
:param maximum_node_count: Required. Specifies the maximum number of
compute nodes the cluster can have.
:type maximum_node_count: int
:param initial_node_count: Specifies the number of compute nodes to
allocate on cluster creation. Note that this value is used only during
cluster creation. Default value: 0 .
:type initial_node_count: int
"""
_validation = {
'minimum_node_count': {'required': True},
'maximum_node_count': {'required': True},
}
_attribute_map = {
'minimum_node_count': {'key': 'minimumNodeCount', 'type': 'int'},
'maximum_node_count': {'key': 'maximumNodeCount', 'type': 'int'},
'initial_node_count': {'key': 'initialNodeCount', 'type': 'int'},
}
def __init__(self, *, minimum_node_count: int, maximum_node_count: int, initial_node_count: int=0, **kwargs) -> None:
super(AutoScaleSettings, self).__init__(**kwargs)
self.minimum_node_count = minimum_node_count
self.maximum_node_count = maximum_node_count
self.initial_node_count = initial_node_count
|