docs/models/KubernetesAutoScaling.md in ionoscloud-6.1.1 vs docs/models/KubernetesAutoScaling.md in ionoscloud-6.1.2

- old
+ new

@@ -2,19 +2,23 @@ ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **min_node_count** | **Integer** | The minimum number of worker nodes that the managed node group can scale in. Should be set together with 'maxNodeCount'. Value for this attribute must be greater than equal to 1 and less than equal to maxNodeCount. | | -| **max_node_count** | **Integer** | The maximum number of worker nodes that the managed node pool can scale-out. Should be set together with 'minNodeCount'. Value for this attribute must be greater than equal to 1 and minNodeCount. | | +| **max_node_count** | **Integer** | 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. | | + +| **min_node_count** | **Integer** | The minimum number of working nodes that the managed node pool can scale must be >= 1 and >= nodeCount. Required if autoScaling is specified. | | + ## Example ```ruby require 'ionoscloud' + instance = Ionoscloud::KubernetesAutoScaling.new( - min_node_count: 1, - max_node_count: 1 + max_node_count: 3, + + min_node_count: 1 ) ```