IngressState Class

public final class IngressState
extends ExpandableStringEnum<IngressState>

This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown".

Field Summary

Modifier and Type Field and Description
static final IngressState DISABLED

Static value Disabled for IngressState.

static final IngressState PAUSED

Static value Paused for IngressState.

static final IngressState READY

Static value Ready for IngressState.

static final IngressState RUNNING

Static value Running for IngressState.

static final IngressState UNKNOWN

Static value Unknown for IngressState.

Constructor Summary

Constructor Description
IngressState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of IngressState value.

Method Summary

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

Creates or finds a IngressState from its string representation.

static Collection<IngressState> values()

Gets known IngressState values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DISABLED

public static final IngressState DISABLED

Static value Disabled for IngressState.

PAUSED

public static final IngressState PAUSED

Static value Paused for IngressState.

READY

public static final IngressState READY

Static value Ready for IngressState.

RUNNING

public static final IngressState RUNNING

Static value Running for IngressState.

UNKNOWN

public static final IngressState UNKNOWN

Static value Unknown for IngressState.

Constructor Details

IngressState

@Deprecated
public IngressState()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of IngressState value.

Method Details

fromString

public static IngressState fromString(String name)

Creates or finds a IngressState from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding IngressState.

values

public static Collection values()

Gets known IngressState values.

Returns:

known IngressState values.

Applies to