IsolationMode Class

public final class IsolationMode
extends ExpandableStringEnum<IsolationMode>

Isolation mode for the managed network of a machine learning workspace.

Field Summary

Modifier and Type Field and Description
static final IsolationMode ALLOW_INTERNET_OUTBOUND

Static value AllowInternetOutbound for IsolationMode.

static final IsolationMode ALLOW_ONLY_APPROVED_OUTBOUND

Static value AllowOnlyApprovedOutbound for IsolationMode.

static final IsolationMode DISABLED

Static value Disabled for IsolationMode.

Constructor Summary

Constructor Description
IsolationMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of IsolationMode value.

Method Summary

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

Creates or finds a IsolationMode from its string representation.

static Collection<IsolationMode> values()

Gets known IsolationMode values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ALLOW_INTERNET_OUTBOUND

public static final IsolationMode ALLOW_INTERNET_OUTBOUND

Static value AllowInternetOutbound for IsolationMode.

ALLOW_ONLY_APPROVED_OUTBOUND

public static final IsolationMode ALLOW_ONLY_APPROVED_OUTBOUND

Static value AllowOnlyApprovedOutbound for IsolationMode.

DISABLED

public static final IsolationMode DISABLED

Static value Disabled for IsolationMode.

Constructor Details

IsolationMode

@Deprecated
public IsolationMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of IsolationMode value.

Method Details

fromString

public static IsolationMode fromString(String name)

Creates or finds a IsolationMode from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding IsolationMode.

values

public static Collection<IsolationMode> values()

Gets known IsolationMode values.

Returns:

known IsolationMode values.

Applies to