ManagedIdentityType Class

public final class ManagedIdentityType
extends ExpandableStringEnum<ManagedIdentityType>

Represents the identity type: systemAssigned, userAssigned, None.

Field Summary

Modifier and Type Field and Description
static final ManagedIdentityType NONE

Static value None for ManagedIdentityType.

static final ManagedIdentityType SYSTEM_ASSIGNED

Static value SystemAssigned for ManagedIdentityType.

static final ManagedIdentityType USER_ASSIGNED

Static value UserAssigned for ManagedIdentityType.

Constructor Summary

Constructor Description
ManagedIdentityType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ManagedIdentityType value.

Method Summary

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

Creates or finds a ManagedIdentityType from its string representation.

static Collection<ManagedIdentityType> values()

Gets known ManagedIdentityType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

NONE

public static final ManagedIdentityType NONE

Static value None for ManagedIdentityType.

SYSTEM_ASSIGNED

public static final ManagedIdentityType SYSTEM_ASSIGNED

Static value SystemAssigned for ManagedIdentityType.

USER_ASSIGNED

public static final ManagedIdentityType USER_ASSIGNED

Static value UserAssigned for ManagedIdentityType.

Constructor Details

ManagedIdentityType

@Deprecated
public ManagedIdentityType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ManagedIdentityType value.

Method Details

fromString

public static ManagedIdentityType fromString(String name)

Creates or finds a ManagedIdentityType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ManagedIdentityType.

values

public static Collection values()

Gets known ManagedIdentityType values.

Returns:

known ManagedIdentityType values.

Applies to