OutboundType Class

public final class OutboundType
extends ExpandableStringEnum<OutboundType>

The outbound (egress) routing method. This can only be set at cluster creation time and cannot be changed later. For more information see [egress outbound type](https://docs.microsoft.com/azure/aks/egress-outboundtype).

Field Summary

Modifier and Type Field and Description
static final OutboundType LOAD_BALANCER

Static value loadBalancer for OutboundType.

static final OutboundType MANAGED_NATGATEWAY

Static value managedNATGateway for OutboundType.

static final OutboundType USER_ASSIGNED_NATGATEWAY

Static value userAssignedNATGateway for OutboundType.

static final OutboundType USER_DEFINED_ROUTING

Static value userDefinedRouting for OutboundType.

Constructor Summary

Constructor Description
OutboundType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of OutboundType value.

Method Summary

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

Creates or finds a OutboundType from its string representation.

static Collection<OutboundType> values()

Gets known OutboundType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

LOAD_BALANCER

public static final OutboundType LOAD_BALANCER

Static value loadBalancer for OutboundType.

MANAGED_NATGATEWAY

public static final OutboundType MANAGED_NATGATEWAY

Static value managedNATGateway for OutboundType.

USER_ASSIGNED_NATGATEWAY

public static final OutboundType USER_ASSIGNED_NATGATEWAY

Static value userAssignedNATGateway for OutboundType.

USER_DEFINED_ROUTING

public static final OutboundType USER_DEFINED_ROUTING

Static value userDefinedRouting for OutboundType.

Constructor Details

OutboundType

@Deprecated
public OutboundType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of OutboundType value.

Method Details

fromString

public static OutboundType fromString(String name)

Creates or finds a OutboundType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding OutboundType.

values

public static Collection values()

Gets known OutboundType values.

Returns:

known OutboundType values.

Applies to