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
|
# KubernetesAutoScaling
## Properties
|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**MinNodeCount** | **int32** | The minimum number of working nodes that the managed node pool can scale must be >= 1 and >= nodeCount. Required if autoScaling is specified. | |
|**MaxNodeCount** | **int32** | The maximum number of worker nodes that the managed node pool can scale in. Must be >= minNodeCount and must be >= nodeCount. Required if autoScaling is specified. | |
## Methods
### NewKubernetesAutoScaling
`func NewKubernetesAutoScaling(minNodeCount int32, maxNodeCount int32, ) *KubernetesAutoScaling`
NewKubernetesAutoScaling instantiates a new KubernetesAutoScaling object
This constructor will assign default values to properties that have it defined,
and makes sure properties required by API are set, but the set of arguments
will change when the set of required properties is changed
### NewKubernetesAutoScalingWithDefaults
`func NewKubernetesAutoScalingWithDefaults() *KubernetesAutoScaling`
NewKubernetesAutoScalingWithDefaults instantiates a new KubernetesAutoScaling object
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set
### GetMinNodeCount
`func (o *KubernetesAutoScaling) GetMinNodeCount() int32`
GetMinNodeCount returns the MinNodeCount field if non-nil, zero value otherwise.
### GetMinNodeCountOk
`func (o *KubernetesAutoScaling) GetMinNodeCountOk() (*int32, bool)`
GetMinNodeCountOk returns a tuple with the MinNodeCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMinNodeCount
`func (o *KubernetesAutoScaling) SetMinNodeCount(v int32)`
SetMinNodeCount sets MinNodeCount field to given value.
### GetMaxNodeCount
`func (o *KubernetesAutoScaling) GetMaxNodeCount() int32`
GetMaxNodeCount returns the MaxNodeCount field if non-nil, zero value otherwise.
### GetMaxNodeCountOk
`func (o *KubernetesAutoScaling) GetMaxNodeCountOk() (*int32, bool)`
GetMaxNodeCountOk returns a tuple with the MaxNodeCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMaxNodeCount
`func (o *KubernetesAutoScaling) SetMaxNodeCount(v int32)`
SetMaxNodeCount sets MaxNodeCount field to given value.
|