ManagementMode Class

public final class ManagementMode
extends ExpandableStringEnum<ManagementMode>

The Managed GPU experience installs additional components, such as the Data Center GPU Manager (DCGM) metrics for monitoring, on top of the GPU driver for you. For more details of what is installed, check out aka.ms/aks/managed-gpu.

Field Summary

Modifier and Type Field and Description
static final ManagementMode MANAGED

Managed GPU experience is enabled for NVIDIA GPUs.

static final ManagementMode UNMANAGED

Managed GPU experience is disabled for NVIDIA GPUs.

Constructor Summary

Constructor Description
ManagementMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ManagementMode value.

Method Summary

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

Creates or finds a ManagementMode from its string representation.

static Collection<ManagementMode> values()

Gets known ManagementMode values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

MANAGED

public static final ManagementMode MANAGED

Managed GPU experience is enabled for NVIDIA GPUs.

UNMANAGED

public static final ManagementMode UNMANAGED

Managed GPU experience is disabled for NVIDIA GPUs.

Constructor Details

ManagementMode

@Deprecated
public ManagementMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ManagementMode value.

Method Details

fromString

public static ManagementMode fromString(String name)

Creates or finds a ManagementMode from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ManagementMode.

values

public static Collection<ManagementMode> values()

Gets known ManagementMode values.

Returns:

known ManagementMode values.

Applies to