Interface KubernetesClusterAgentPool.UpdateStages.WithAutoScaling<ParentT>
-
- Type Parameters:
ParentT- the stage of the container service definition to return to after attaching this definition
- All Known Subinterfaces:
KubernetesClusterAgentPool.Update<ParentT>
- Enclosing interface:
- KubernetesClusterAgentPool.UpdateStages
public static interface KubernetesClusterAgentPool.UpdateStages.WithAutoScaling<ParentT>The stage of a container service agent pool update allowing to specify auto-scaling.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KubernetesClusterAgentPool.Update<ParentT>withAutoScaling(int minimumNodeCount, int maximumNodeCount)Enables the auto-scaling with maximum/minimum number of nodes.KubernetesClusterAgentPool.Update<ParentT>withoutAutoScaling()Disables the auto-scaling with maximum/minimum number of nodes.
-
-
-
Method Detail
-
withAutoScaling
KubernetesClusterAgentPool.Update<ParentT> withAutoScaling(int minimumNodeCount, int maximumNodeCount)
Enables the auto-scaling with maximum/minimum number of nodes.- Parameters:
minimumNodeCount- the minimum number of nodes for auto-scaling.maximumNodeCount- the maximum number of nodes for auto-scaling.- Returns:
- the next stage of the update
-
withoutAutoScaling
KubernetesClusterAgentPool.Update<ParentT> withoutAutoScaling()
Disables the auto-scaling with maximum/minimum number of nodes.- Returns:
- the next stage of the update
-
-