KubernetesClusterAgentPool.UpdateStages.WithAutoScaling<ParentT> Interface

Type Parameters

ParentT

the stage of the container service definition to return to after attaching this definition

public static interface KubernetesClusterAgentPool.UpdateStages.WithAutoScaling

The stage of a container service agent pool update allowing to specify auto-scaling.

Method Summary

Modifier and Type Method and Description
abstract Update<ParentT> withAutoScaling(int minimumNodeCount, int maximumNodeCount)

Enables the auto-scaling with maximum/minimum number of nodes.

abstract Update<ParentT> withoutAutoScaling()

Disables the auto-scaling with maximum/minimum number of nodes.

Method Details

withAutoScaling

public abstract KubernetesClusterAgentPool.Update 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

public abstract KubernetesClusterAgentPool.Update withoutAutoScaling()

Disables the auto-scaling with maximum/minimum number of nodes.

Returns:

the next stage of the update

Applies to