Share via


LoadBalancerSku Class

public final class LoadBalancerSku
extends ExpandableStringEnum<LoadBalancerSku>

The load balancer sku for the managed cluster. The default is 'standard'. See [Azure Load Balancer SKUs](https://docs.microsoft.com/azure/load-balancer/skus) for more information about the differences between load balancer SKUs.

Field Summary

Modifier and Type Field and Description
static final LoadBalancerSku BASIC

Use a basic Load Balancer with limited functionality.

static final LoadBalancerSku STANDARD

Use a a standard Load Balancer.

Constructor Summary

Constructor Description
LoadBalancerSku()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LoadBalancerSku value.

Method Summary

Modifier and Type Method and Description
static LoadBalancerSku fromString(String name)

Creates or finds a LoadBalancerSku from its string representation.

static Collection<LoadBalancerSku> values()

Gets known LoadBalancerSku values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BASIC

public static final LoadBalancerSku BASIC

Use a basic Load Balancer with limited functionality.

STANDARD

public static final LoadBalancerSku STANDARD

Use a a standard Load Balancer. This is the recommended Load Balancer SKU. For more information about on working with the load balancer in the managed cluster, see the [standard Load Balancer](https://docs.microsoft.com/azure/aks/load-balancer-standard) article.

Constructor Details

LoadBalancerSku

@Deprecated
public LoadBalancerSku()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LoadBalancerSku value.

Method Details

fromString

public static LoadBalancerSku fromString(String name)

Creates or finds a LoadBalancerSku from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding LoadBalancerSku.

values

public static Collection<LoadBalancerSku> values()

Gets known LoadBalancerSku values.

Returns:

known LoadBalancerSku values.

Applies to